From b069ee991b3ee83b9d3c21e8e8016ae3375b97dc Mon Sep 17 00:00:00 2001 From: Zane Adickes Date: Sun, 19 Apr 2015 22:24:14 -0400 Subject: [PATCH] Added Remaining Data and Models Data and models added for: Pal Park Berries Regions Pokeathlon Contests SuperContests Items Encounters Locations --- README.md | 2 +- data/v2/build.py | 887 +- data/v2/csv/berries.csv | 65 + data/v2/csv/berry_firmness.csv | 6 + data/v2/csv/berry_firmness_names.csv | 6 + data/v2/csv/berry_flavors.csv | 321 + data/v2/csv/contest_combos.csv | 247 + data/v2/csv/contest_effect_prose.csv | 34 + data/v2/csv/contest_effects.csv | 34 + data/v2/csv/contest_type_names.csv | 6 + data/v2/csv/contest_types.csv | 6 + data/v2/csv/encounter_condition_prose.csv | 13 + data/v2/csv/encounter_condition_value_map.csv | 12176 +++++ .../csv/encounter_condition_value_prose.csv | 41 + data/v2/csv/encounter_condition_values.csv | 21 + data/v2/csv/encounter_conditions.csv | 7 + data/v2/csv/encounter_method_prose.csv | 27 + data/v2/csv/encounter_methods.csv | 14 + data/v2/csv/encounter_slots.csv | 411 + data/v2/csv/encounters.csv | 44341 ++++++++++++++++ data/v2/csv/item_categories.csv | 45 + data/v2/csv/item_category_prose.csv | 45 + data/v2/csv/item_flag_map.csv | 612 + data/v2/csv/item_flag_prose.csv | 9 + data/v2/csv/item_flags.csv | 9 + data/v2/csv/item_flavor_summaries.csv | 1 + data/v2/csv/item_flavor_text.csv | 26392 +++++++++ data/v2/csv/item_fling_effect_prose.csv | 8 + data/v2/csv/item_fling_effects.csv | 8 + data/v2/csv/item_game_indices.csv | 2125 + data/v2/csv/item_names.csv | 5157 ++ data/v2/csv/item_pocket_names.csv | 9 + data/v2/csv/item_pockets.csv | 9 + data/v2/csv/item_prose.csv | 1241 + data/v2/csv/items.csv | 747 + data/v2/csv/location_area_encounter_rates.csv | 3866 ++ data/v2/csv/location_area_prose.csv | 664 + data/v2/csv/location_areas.csv | 664 + data/v2/csv/location_game_indices.csv | 477 + data/v2/csv/location_names.csv | 753 + data/v2/csv/locations.csv | 632 + data/v2/csv/pal_park.csv | 494 + data/v2/csv/pal_park_area_names.csv | 6 + data/v2/csv/pal_park_areas.csv | 6 + data/v2/csv/pokeathlon_stat_names.csv | 6 + data/v2/csv/pokeathlon_stats.csv | 6 + data/v2/csv/region_names.csv | 13 + data/v2/csv/regions.csv | 7 + data/v2/csv/super_contest_combos.csv | 7 + data/v2/csv/super_contest_effect_prose.csv | 23 + data/v2/csv/super_contest_effects.csv | 23 + pokemon_v2/admin.py | 57 + ... 0001_squashed_0013_auto_20150420_0114.py} | 773 +- pokemon_v2/models.py | 457 +- 54 files changed, 103911 insertions(+), 105 deletions(-) create mode 100644 data/v2/csv/berries.csv create mode 100644 data/v2/csv/berry_firmness.csv create mode 100644 data/v2/csv/berry_firmness_names.csv create mode 100644 data/v2/csv/berry_flavors.csv create mode 100644 data/v2/csv/contest_combos.csv create mode 100644 data/v2/csv/contest_effect_prose.csv create mode 100644 data/v2/csv/contest_effects.csv create mode 100644 data/v2/csv/contest_type_names.csv create mode 100644 data/v2/csv/contest_types.csv create mode 100644 data/v2/csv/encounter_condition_prose.csv create mode 100644 data/v2/csv/encounter_condition_value_map.csv create mode 100644 data/v2/csv/encounter_condition_value_prose.csv create mode 100644 data/v2/csv/encounter_condition_values.csv create mode 100644 data/v2/csv/encounter_conditions.csv create mode 100644 data/v2/csv/encounter_method_prose.csv create mode 100644 data/v2/csv/encounter_methods.csv create mode 100644 data/v2/csv/encounter_slots.csv create mode 100644 data/v2/csv/encounters.csv create mode 100644 data/v2/csv/item_categories.csv create mode 100644 data/v2/csv/item_category_prose.csv create mode 100644 data/v2/csv/item_flag_map.csv create mode 100644 data/v2/csv/item_flag_prose.csv create mode 100644 data/v2/csv/item_flags.csv create mode 100644 data/v2/csv/item_flavor_summaries.csv create mode 100644 data/v2/csv/item_flavor_text.csv create mode 100644 data/v2/csv/item_fling_effect_prose.csv create mode 100644 data/v2/csv/item_fling_effects.csv create mode 100644 data/v2/csv/item_game_indices.csv create mode 100644 data/v2/csv/item_names.csv create mode 100644 data/v2/csv/item_pocket_names.csv create mode 100644 data/v2/csv/item_pockets.csv create mode 100644 data/v2/csv/item_prose.csv create mode 100644 data/v2/csv/items.csv create mode 100644 data/v2/csv/location_area_encounter_rates.csv create mode 100644 data/v2/csv/location_area_prose.csv create mode 100644 data/v2/csv/location_areas.csv create mode 100644 data/v2/csv/location_game_indices.csv create mode 100644 data/v2/csv/location_names.csv create mode 100644 data/v2/csv/locations.csv create mode 100644 data/v2/csv/pal_park.csv create mode 100644 data/v2/csv/pal_park_area_names.csv create mode 100644 data/v2/csv/pal_park_areas.csv create mode 100644 data/v2/csv/pokeathlon_stat_names.csv create mode 100644 data/v2/csv/pokeathlon_stats.csv create mode 100644 data/v2/csv/region_names.csv create mode 100644 data/v2/csv/regions.csv create mode 100644 data/v2/csv/super_contest_combos.csv create mode 100644 data/v2/csv/super_contest_effect_prose.csv create mode 100644 data/v2/csv/super_contest_effects.csv rename pokemon_v2/migrations/{0001_squashed_0020_machine.py => 0001_squashed_0013_auto_20150420_0114.py} (70%) diff --git a/README.md b/README.md index 78ea926b..3fcf6f68 100755 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ and run the build script with $ execfile('data/v2/build.py') ``` Each time the build script is run it will iterate over each table in the database, wipe it and rewrite each row using the data found in data/v2/csv. -If you don't need all of the data just go into data/v2/build.py and comment out everything but what you need to build the tables you're looking for. This might be useful because some of the csv files are massive (pokemon_moves expecially) and it can take about 25 minutes to build everything. +If you don't need all of the data just go into data/v2/build.py and comment out everything but what you need to build the tables you're looking for. This might be useful because some of the csv files are massive (pokemon_moves expecially) and it can take about 30 minutes to build everything. ## Contributing diff --git a/data/v2/build.py b/data/v2/build.py index d3f75af8..33b33a25 100644 --- a/data/v2/build.py +++ b/data/v2/build.py @@ -1,3 +1,18 @@ +# To build out the data you'll need to jump into the Django shell +# +# $ python manage.py shell +# +# and run the build script with +# +# $ execfile('data/v2/build.py') +# +# Each time the build script is run it will iterate over each table in the database, +# wipe it and rewrite each row using the data found in data/v2/csv. +# If you don't need all of the data just go into data/v2/build.py and +# comment out everything but what you need to build the tables you're looking for. +# This might be useful because some of the csv files are massive +# (pokemon_moves expecially) and it can take about 30 minutes to build everything. + import csv import os from django.db import migrations, connection @@ -65,6 +80,39 @@ for index, info in enumerate(data): languageName.save() + +############ +# REGION # +############ + +clearTable(Region) +data = loadData('regions.csv') + +for index, info in enumerate(data): + if index > 0: + + model = Region ( + id = int(info[0]), + name = info[1] + ) + model.save() + + +clearTable(RegionName) +data = loadData('region_names.csv') + +for index, info in enumerate(data): + if index > 0: + + model = RegionName ( + region = Region.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2] + ) + model.save() + + + ################ # GENERATION # ################ @@ -75,12 +123,12 @@ data = loadData('generations.csv') for index, info in enumerate(data): if index > 0: - generation = Generation ( + model = Generation ( id = int(info[0]), - main_region_id = info[1], + region = Region.objects.get(pk = int(info[1])), name = info[2] ) - generation.save() + model.save() clearTable(GenerationName) @@ -89,12 +137,12 @@ data = loadData('generation_names.csv') for index, info in enumerate(data): if index > 0: - generationName = GenerationName ( + model = GenerationName ( generation = Generation.objects.get(pk = int(info[0])), language = Language.objects.get(pk = int(info[1])), name = info[2] ) - generationName.save() + model.save() @@ -125,7 +173,7 @@ for index, info in enumerate(data): versionGroupRegion = VersionGroupRegion ( version_group = VersionGroup.objects.get(pk = int(info[0])), - region_id = int(info[1]) + region = Region.objects.get(pk = int(info[1])), ) versionGroupRegion.save() @@ -224,6 +272,34 @@ for index, info in enumerate(data): statName.save() +clearTable(PokeathlonStat) +data = loadData('pokeathlon_stats.csv') + +for index, info in enumerate(data): + if index > 0: + + stat = PokeathlonStat ( + id = int(info[0]), + name = info[1], + ) + stat.save() + + +clearTable(PokeathlonStatName) +data = loadData('pokeathlon_stat_names.csv') + +for index, info in enumerate(data): + if index > 0: + + statName = PokeathlonStatName ( + pokeathlon_stat = PokeathlonStat.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2] + ) + statName.save() + + + ############### # ABILITIES # @@ -387,67 +463,214 @@ for index, info in enumerate(data): -############ -# NATURE # -############ - -clearTable(Nature) -data = loadData('natures.csv') +clearTable(ItemPocket) +data = loadData('item_pockets.csv') for index, info in enumerate(data): if index > 0: - nature = Nature ( + model = ItemPocket ( id = int(info[0]), - name = info[1], - decreased_stat_id = Stat.objects.get(pk = int(info[2])), - increased_stat_id = Stat.objects.get(pk = int(info[3])), - hates_flavor_id = info[4], - likes_flavor_id = info[5], - game_index = info[6] + name = info[1] ) - nature.save() + model.save() -clearTable(NatureName) -data = loadData('nature_names.csv') +clearTable(ItemPocketName) +data = loadData('item_pocket_names.csv') for index, info in enumerate(data): if index > 0: - natureName = NatureName ( - nature = Nature.objects.get(pk = int(info[0])), + model = ItemPocketName ( + item_pocket = ItemPocket.objects.get(pk = int(info[0])), language = Language.objects.get(pk = int(info[1])), name = info[2] ) - natureName.save() + model.save() -clearTable(NaturePokeathlonStat) -data = loadData('nature_pokeathlon_stats.csv') +clearTable(ItemFlingEffect) +data = loadData('item_fling_effects.csv') for index, info in enumerate(data): if index > 0: - naturePokeathlonStat = NaturePokeathlonStat ( - nature = Nature.objects.get(pk = int(info[0])), - pokeathlon_stat_id = Stat.objects.get(pk = int(info[1])), - max_change = info[2] + model = ItemFlingEffect ( + id = int(info[0]) ) - naturePokeathlonStat.save() + model.save() -clearTable(NatureBattleStylePreference) -data = loadData('nature_battle_style_preferences.csv') +clearTable(ItemFlingEffectDescription) +data = loadData('item_fling_effect_prose.csv') for index, info in enumerate(data): if index > 0: - model = NatureBattleStylePreference ( - nature = Nature.objects.get(pk = int(info[0])), - move_battle_style_id = int(info[1]), - low_hp_preference = info[2], - high_hp_preference = info[3] + model = ItemFlingEffectDescription ( + item_fling_effect = ItemFlingEffect.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + effect = info[2] + ) + model.save() + + +clearTable(ItemCategory) +data = loadData('item_categories.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ItemCategory ( + id = int(info[0]), + item_pocket = ItemPocket.objects.get(pk = int(info[1])), + name = info[2] + ) + model.save() + + +clearTable(ItemCategoryName) +data = loadData('item_category_prose.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ItemCategoryName ( + item_category = ItemCategory.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2] + ) + model.save() + + +clearTable(Item) +data = loadData('items.csv') + +for index, info in enumerate(data): + if index > 0: + + model = Item ( + id = int(info[0]), + name = info[1], + item_category = ItemCategory.objects.get(pk = int(info[2])), + cost = int(info[3]), + fling_power = int(info[4]) if info[4] != '' else None, + item_fling_effect = ItemFlingEffect.objects.get(pk = int(info[5])) if info[5] != '' else None + ) + model.save() + + +clearTable(ItemName) +data = loadData('item_names.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ItemName ( + item = Item.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2] + ) + model.save() + + +clearTable(ItemDescription) +data = loadData('item_prose.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ItemDescription ( + item = Item.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + short_effect = info[2], + effect = info[3] + ) + model.save() + + +clearTable(ItemGameIndex) +data = loadData('item_game_indices.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ItemGameIndex ( + item = Item.objects.get(pk = int(info[0])), + generation = Generation.objects.get(pk = int(info[1])), + game_index = int(info[2]) + ) + model.save() + + +clearTable(ItemFlavorText) +data = loadData('item_flavor_text.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ItemFlavorText ( + item = Item.objects.get(pk = int(info[0])), + version_group = VersionGroup.objects.get(pk = int(info[1])), + language = Language.objects.get(pk = int(info[2])), + flavor_text = info[3] + ) + model.save() + + +clearTable(ItemFlag) +data = loadData('item_flags.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ItemFlag ( + id = int(info[0]), + name = info[1] + ) + model.save() + + +clearTable(ItemFlagDescription) +data = loadData('item_flag_prose.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ItemFlagDescription ( + item_flag = ItemFlag.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2], + description = info[3] + ) + model.save() + + +clearTable(ItemFlagMap) +data = loadData('item_flag_map.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ItemFlagMap ( + item = Item.objects.get(pk = int(info[0])), + item_flag = ItemFlag.objects.get(pk = int(info[1])) + ) + model.save() + + +clearTable(ItemFlagDescription) +data = loadData('item_flag_prose.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ItemFlagDescription ( + item_flag = ItemFlag.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2], + description = info[3] ) model.save() @@ -851,6 +1074,271 @@ for index, info in enumerate(data): model.save() + +############# +# CONTEST # +############# + +clearTable(ContestType) +data = loadData('contest_types.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ContestType ( + id = int(info[0]), + name = info[1] + ) + model.save() + + +clearTable(ContestTypeName) +data = loadData('contest_type_names.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ContestTypeName ( + contest_type = ContestType.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2], + flavor = info[3], + color = info[4] + ) + model.save() + + +clearTable(ContestEffect) +data = loadData('contest_effects.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ContestEffect ( + id = int(info[0]), + appeal = int(info[1]), + jam = int(info[2]) + ) + model.save() + + +clearTable(ContestEffectDescription) +data = loadData('contest_effect_prose.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ContestEffectDescription ( + contest_effect = ContestEffect.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + flavor_text = info[2], + effect = info[3] + ) + model.save() + + +clearTable(ContestCombo) +data = loadData('contest_combos.csv') + +for index, info in enumerate(data): + if index > 0: + + model = ContestCombo ( + first_move = Move.objects.get(pk = int(info[0])), + second_move = Move.objects.get(pk = int(info[1])) + ) + model.save() + + +clearTable(SuperContestEffect) +data = loadData('super_contest_effects.csv') + +for index, info in enumerate(data): + if index > 0: + + model = SuperContestEffect ( + id = int(info[0]), + appeal = int(info[1]) + ) + model.save() + + +clearTable(SuperContestEffectDescription) +data = loadData('super_contest_effect_prose.csv') + +for index, info in enumerate(data): + if index > 0: + + model = SuperContestEffectDescription ( + super_contest_effect = SuperContestEffect.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + flavor_text = info[2] + ) + model.save() + + +clearTable(SuperContestCombo) +data = loadData('super_contest_combos.csv') + +for index, info in enumerate(data): + if index > 0: + + model = SuperContestCombo ( + first_move = Move.objects.get(pk = int(info[0])), + second_move = Move.objects.get(pk = int(info[1])) + ) + model.save() + + + +############# +# BERRIES # +############# + +clearTable(BerryFirmness) +data = loadData('berry_firmness.csv') + +for index, info in enumerate(data): + if index > 0: + + model = BerryFirmness ( + id = int(info[0]), + name = info[1] + ) + model.save() + + +clearTable(BerryFirmnessName) +data = loadData('berry_firmness_names.csv') + +for index, info in enumerate(data): + if index > 0: + + model = BerryFirmnessName ( + berry_firmness = BerryFirmness.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2] + ) + model.save() + + +clearTable(Berry) +data = loadData('berries.csv') + +for index, info in enumerate(data): + if index > 0: + + model = Berry ( + id = int(info[0]), + item = Item.objects.get(pk = int(info[1])), + berry_firmness = BerryFirmness.objects.get(pk = int(info[2])), + natural_gift_power = int(info[3]), + nature = None, + size = int(info[5]), + max_harvest = int(info[6]), + growth_time = int(info[7]), + soil_dryness = int(info[8]), + smoothness = int(info[9]) + ) + model.save() + + +clearTable(BerryFlavor) +data = loadData('berry_flavors.csv') + +for index, info in enumerate(data): + if index > 0: + + model = BerryFlavor ( + berry = Berry.objects.get(pk = int(info[0])), + contest_type = ContestType.objects.get(pk = int(info[1])), + flavor = int(info[2]) + ) + model.save() + + + +############ +# NATURE # +############ + +clearTable(Nature) +data = loadData('natures.csv') + +for index, info in enumerate(data): + if index > 0: + + nature = Nature ( + id = int(info[0]), + name = info[1], + decreased_stat_id = Stat.objects.get(pk = int(info[2])), + increased_stat_id = Stat.objects.get(pk = int(info[3])), + hates_flavor_id = BerryFlavor.objects.get(pk = int(info[4])), + likes_flavor_id = BerryFlavor.objects.get(pk = int(info[5])), + game_index = info[6] + ) + nature.save() + + +#Berry/Nature associations +data = loadData('berries.csv') + +for index, info in enumerate(data): + if index > 0: + + berry = Berry.objects.get(pk = int(info[0])) + berry.nature = Nature.objects.get(pk = int(info[4])) + berry.save() + + +clearTable(NatureName) +data = loadData('nature_names.csv') + +for index, info in enumerate(data): + if index > 0: + + natureName = NatureName ( + nature = Nature.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2] + ) + natureName.save() + + +clearTable(NaturePokeathlonStat) +data = loadData('nature_pokeathlon_stats.csv') + +for index, info in enumerate(data): + if index > 0: + + naturePokeathlonStat = NaturePokeathlonStat ( + nature = Nature.objects.get(pk = int(info[0])), + pokeathlon_stat = PokeathlonStat.objects.get(pk = int(info[1])), + max_change = info[2] + ) + naturePokeathlonStat.save() + + +clearTable(NatureBattleStylePreference) +data = loadData('nature_battle_style_preferences.csv') + +for index, info in enumerate(data): + if index > 0: + + model = NatureBattleStylePreference ( + nature = Nature.objects.get(pk = int(info[0])), + move_battle_style_id = int(info[1]), + low_hp_preference = info[2], + high_hp_preference = info[3] + ) + model.save() + + + +############ +# GENDER # +############ + clearTable(Gender) data = loadData('genders.csv') @@ -864,6 +1352,11 @@ for index, info in enumerate(data): model.save() + +################ +# EXPERIENCE # +################ + clearTable(Experience) data = loadData('experience.csv') @@ -878,6 +1371,11 @@ for index, info in enumerate(data): model.save() + +############## +# MACHINES # +############## + clearTable(Machine) data = loadData('machines.csv') @@ -887,12 +1385,17 @@ for index, info in enumerate(data): model = Machine ( machine_number = int(info[0]), version_group = VersionGroup.objects.get(pk = int(info[1])), - item_id = int(info[2]), + item = Item.objects.get(pk = int(info[2])), move = Move.objects.get(pk = int(info[3])), ) model.save() + +############### +# EVOLUTION # +############### + clearTable(EvolutionChain) data = loadData('evolution_chains.csv') @@ -901,7 +1404,7 @@ for index, info in enumerate(data): model = EvolutionChain ( id = int(info[0]), - baby_evolution_item_id = int(info[1]) if info[1] != '' else None, + baby_evolution_item = Item.objects.get(pk = int(info[1])) if info[1] != '' else None, ) model.save() @@ -933,6 +1436,11 @@ for index, info in enumerate(data): model.save() + +############# +# POKEDEX # +############# + clearTable(Pokedex) data = loadData('pokedexes.csv') @@ -941,7 +1449,7 @@ for index, info in enumerate(data): model = Pokedex ( id = int(info[0]), - region_id = int(info[1]) if info[1] != '' else None, + region = Region.objects.get(pk = int(info[1])) if info[1] != '' else None, name = info[2], is_main_series = bool(info[3]) ) @@ -976,6 +1484,11 @@ for index, info in enumerate(data): model.save() + +############# +# POKEMON # +############# + clearTable(PokemonColor) data = loadData('pokemon_colors.csv') @@ -1199,11 +1712,11 @@ for index, info in enumerate(data): id = int(info[0]), evolved_species = PokemonSpecies.objects.get(pk = int(info[1])), evolution_trigger = EvolutionTrigger.objects.get(pk = int(info[2])), - evolution_item_id = int(info[3]) if info[3] != '' else None, + evolution_item = Item.objects.get(pk = int(info[3])) if info[3] != '' else None, min_level = int(info[4]) if info[4] != '' else None, gender = Gender.objects.get(pk = int(info[5])) if info[5] != '' else None, location_id = int(info[6]) if info[6] != '' else None, - held_item_id = int(info[7]) if info[7] != '' else None, + held_item = Item.objects.get(pk = int(info[7])) if info[7] != '' else None, time_of_day = info[8], known_move = Move.objects.get(pk = int(info[9])) if info[9] != '' else None, known_move_type = Type.objects.get(pk = int(info[10])) if info[10] != '' else None, @@ -1321,7 +1834,7 @@ for index, info in enumerate(data): model = PokemonItem ( pokemon = Pokemon.objects.get(pk = int(info[0])), version = Version.objects.get(pk = int(info[1])), - item_id = int(info[2]), + item = Item.objects.get(pk = int(info[2])), rarity = int(info[3]) ) model.save() @@ -1399,3 +1912,287 @@ for index, info in enumerate(data): slot = int(info[2]) ) model.save() + + + +############## +# ENCOUNTER # +############## + +clearTable(Location) +data = loadData('locations.csv') + +for index, info in enumerate(data): + if index > 0: + + model = Location ( + id = int(info[0]), + region = Region.objects.get(pk = int(info[1])) if info[1] != '' else None, + name = info[2] + ) + model.save() + + +clearTable(LocationName) +data = loadData('location_names.csv') + +for index, info in enumerate(data): + if index > 0: + + model = LocationName ( + location = Location.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2] + ) + model.save() + + +clearTable(LocationGameIndex) +data = loadData('location_game_indices.csv') + +for index, info in enumerate(data): + if index > 0: + + model = LocationGameIndex ( + location = Location.objects.get(pk = int(info[0])), + generation = Generation.objects.get(pk = int(info[1])), + game_index = int(info[2]) + ) + model.save() + + +clearTable(LocationArea) +data = loadData('location_areas.csv') + +for index, info in enumerate(data): + if index > 0: + + model = LocationArea ( + id = int(info[0]), + location = Location.objects.get(pk = int(info[1])), + game_index = int(info[2]), + name = info[3] + ) + model.save() + + +clearTable(LocationAreaName) +data = loadData('location_area_prose.csv') + +for index, info in enumerate(data): + if index > 0: + + model = LocationAreaName ( + location_area = LocationArea.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2] + ) + model.save() + + +clearTable(LocationAreaEncounterRate) +data = loadData('location_area_encounter_rates.csv') + +for index, info in enumerate(data): + if index > 0: + + model = LocationAreaEncounterRate ( + location_area = LocationArea.objects.get(pk = int(info[0])), + encounter_method = None, + version = Version.objects.get(pk = int(info[2])), + rate = int(info[3]) + ) + model.save() + + + +############### +# ENCOUNTER # +############### + +clearTable(EncounterMethod) +data = loadData('encounter_methods.csv') + +for index, info in enumerate(data): + if index > 0: + + model = EncounterMethod ( + id = int(info[0]), + name = info[1], + order = int(info[2]) + ) + model.save() + + +clearTable(EncounterMethodName) +data = loadData('encounter_method_prose.csv') + +for index, info in enumerate(data): + if index > 0: + + model = EncounterMethodName ( + encounter_method = EncounterMethod.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2] + ) + model.save() + + +clearTable(EncounterSlot) +data = loadData('encounter_slots.csv') + +for index, info in enumerate(data): + if index > 0: + + model = EncounterSlot ( + id = int(info[0]), + version_group = VersionGroup.objects.get(pk = int(info[1])), + encounter_method = EncounterMethod.objects.get(pk = int(info[2])), + slot = int(info[3]) if info[3] != '' else None, + rarity = int(info[4]) + ) + model.save() + + +clearTable(EncounterCondition) +data = loadData('encounter_conditions.csv') + +for index, info in enumerate(data): + if index > 0: + + model = EncounterCondition ( + id = int(info[0]), + name = info[1] + ) + model.save() + + +clearTable(EncounterConditionName) +data = loadData('encounter_condition_prose.csv') + +for index, info in enumerate(data): + if index > 0: + + model = EncounterConditionName ( + encounter_condition = EncounterCondition.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2] + ) + model.save() + + +clearTable(Encounter) +data = loadData('encounters.csv') + +for index, info in enumerate(data): + if index > 0: + + model = Encounter ( + id = int(info[0]), + version = Version.objects.get(pk = int(info[1])), + location_area = LocationArea.objects.get(pk = int(info[2])), + encounter_slot = EncounterSlot.objects.get(pk = int(info[3])), + pokemon = Pokemon.objects.get(pk = int(info[4])), + min_level = int(info[5]), + max_level = int(info[6]) + ) + model.save() + + +clearTable(EncounterConditionValue) +data = loadData('encounter_condition_values.csv') + +for index, info in enumerate(data): + if index > 0: + + model = EncounterConditionValue ( + id = int(info[0]), + encounter_condition = EncounterCondition.objects.get(pk = int(info[1])), + name = info[2], + is_default = bool(info[3]) + ) + model.save() + + +clearTable(EncounterConditionValueName) +data = loadData('encounter_condition_value_prose.csv') + +for index, info in enumerate(data): + if index > 0: + + model = EncounterConditionValueName ( + encounter_condition_value = EncounterConditionValue.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2], + ) + model.save() + + +clearTable(EncounterConditionValueMap) +data = loadData('encounter_condition_value_map.csv') + +for index, info in enumerate(data): + if index > 0: + + model = EncounterConditionValueMap ( + encounter = Encounter.objects.get(pk = int(info[0])), + encounter_condition_value = EncounterConditionValue.objects.get(pk = int(info[1])) + ) + model.save() + + +#Location/Encounter associations +data = loadData('location_area_encounter_rates.csv') + +for index, info in enumerate(data): + if index > 0: + + laer = LocationAreaEncounterRate.objects.get(pk = int(info[0])) + laer.encounter_method = EncounterMethod.objects.get(pk = int(info[1])) + laer.save() + + + +############## +# PAL PARK # +############## + +clearTable(PalParkArea) +data = loadData('pal_park_areas.csv') + +for index, info in enumerate(data): + if index > 0: + + model = PalParkArea ( + id = int(info[0]), + name = info[1] + ) + model.save() + + +clearTable(PalParkAreaName) +data = loadData('pal_park_area_names.csv') + +for index, info in enumerate(data): + if index > 0: + + model = PalParkAreaName ( + pal_park_area = PalParkArea.objects.get(pk = int(info[0])), + language = Language.objects.get(pk = int(info[1])), + name = info[2] + ) + model.save() + + +clearTable(PalPark) +data = loadData('pal_park.csv') + +for index, info in enumerate(data): + if index > 0: + + model = PalPark ( + pokemon_species = PokemonSpecies.objects.get(pk = int(info[0])), + pal_park_area = PalParkArea.objects.get(pk = int(info[1])), + rate = int(info[2]) + ) + model.save() diff --git a/data/v2/csv/berries.csv b/data/v2/csv/berries.csv new file mode 100644 index 00000000..5fdbd652 --- /dev/null +++ b/data/v2/csv/berries.csv @@ -0,0 +1,65 @@ +id,item_id,firmness_id,natural_gift_power,natural_gift_type_id,size,max_harvest,growth_time,soil_dryness,smoothness +1,126,2,60,10,20,5,3,15,25 +2,127,5,60,11,80,5,3,15,25 +3,128,1,60,13,40,5,3,15,25 +4,129,3,60,12,32,5,3,15,25 +5,130,5,60,15,50,5,3,15,25 +6,131,4,60,2,28,5,4,15,20 +7,132,5,60,4,35,5,4,15,20 +8,133,3,60,5,47,5,4,15,20 +9,134,5,60,3,34,5,12,8,20 +10,135,4,60,14,95,5,8,7,20 +11,136,2,60,7,100,5,5,10,25 +12,137,3,60,6,115,5,5,10,25 +13,138,3,60,8,126,5,5,10,25 +14,139,5,60,16,64,5,5,10,25 +15,140,2,60,17,223,5,5,10,25 +16,141,4,60,9,120,10,2,35,20 +17,142,2,70,10,108,10,2,35,20 +18,143,4,70,11,77,10,2,35,20 +19,144,5,70,13,74,10,2,35,20 +20,145,3,70,12,80,10,2,35,20 +21,146,4,70,15,135,5,8,8,20 +22,147,3,70,2,150,5,8,8,20 +23,148,3,70,4,110,5,8,8,20 +24,149,3,70,5,162,5,8,8,20 +25,150,2,70,3,149,5,8,8,20 +26,151,2,70,14,200,5,8,8,30 +27,152,3,70,7,75,10,6,10,30 +28,153,3,70,6,140,10,6,10,30 +29,154,2,70,8,226,10,6,10,30 +30,155,5,70,16,285,10,6,10,30 +31,156,2,70,17,133,15,15,8,35 +32,157,1,70,9,244,15,15,8,35 +33,158,2,80,10,250,15,15,8,35 +34,159,3,80,11,280,15,15,8,35 +35,160,1,80,13,300,15,15,8,35 +36,161,5,60,10,90,5,18,6,30 +37,162,2,60,11,33,5,18,6,30 +38,163,1,60,13,250,5,18,6,30 +39,164,2,60,12,156,5,18,6,30 +40,165,4,60,15,135,5,18,6,30 +41,166,2,60,2,77,5,18,6,30 +42,167,3,60,4,90,5,18,6,30 +43,168,2,60,5,42,5,18,6,30 +44,169,4,60,3,278,5,18,6,30 +45,170,2,60,14,252,5,18,6,30 +46,171,1,60,7,42,5,18,6,35 +47,172,1,60,6,28,5,18,6,35 +48,173,3,60,8,144,5,18,6,35 +49,174,2,60,16,23,5,18,6,35 +50,175,5,60,17,39,5,18,6,35 +51,176,5,60,9,265,5,18,6,35 +52,177,1,60,1,34,5,18,6,35 +53,178,4,80,12,111,5,24,4,40 +54,179,4,80,15,33,5,24,4,40 +55,180,4,80,2,95,5,24,4,40 +56,181,4,80,4,237,5,24,4,40 +57,182,3,80,5,75,5,24,4,40 +58,183,2,80,3,97,5,24,4,50 +59,184,5,80,14,153,5,24,4,50 +60,185,3,80,7,155,5,24,7,60 +61,186,2,80,6,41,5,24,7,60 +62,187,5,80,8,267,5,24,7,60 +63,188,2,80,16,33,5,24,7,60 +64,189,1,80,17,52,5,24,7,60 diff --git a/data/v2/csv/berry_firmness.csv b/data/v2/csv/berry_firmness.csv new file mode 100644 index 00000000..1b5309d3 --- /dev/null +++ b/data/v2/csv/berry_firmness.csv @@ -0,0 +1,6 @@ +id,identifier +1,very-soft +2,soft +3,hard +4,very-hard +5,super-hard diff --git a/data/v2/csv/berry_firmness_names.csv b/data/v2/csv/berry_firmness_names.csv new file mode 100644 index 00000000..c66ff7c5 --- /dev/null +++ b/data/v2/csv/berry_firmness_names.csv @@ -0,0 +1,6 @@ +berry_firmness_id,local_language_id,name +1,9,Very Soft +2,9,Soft +3,9,Hard +4,9,Very Hard +5,9,Super Hard diff --git a/data/v2/csv/berry_flavors.csv b/data/v2/csv/berry_flavors.csv new file mode 100644 index 00000000..80479108 --- /dev/null +++ b/data/v2/csv/berry_flavors.csv @@ -0,0 +1,321 @@ +berry_id,contest_type_id,flavor +1,1,10 +1,2,0 +1,3,0 +1,4,0 +1,5,0 +2,1,0 +2,2,10 +2,3,0 +2,4,0 +2,5,0 +3,1,0 +3,2,0 +3,3,10 +3,4,0 +3,5,0 +4,1,0 +4,2,0 +4,3,0 +4,4,10 +4,5,0 +5,1,0 +5,2,0 +5,3,0 +5,4,0 +5,5,10 +6,1,10 +6,2,0 +6,3,10 +6,4,10 +6,5,10 +7,1,10 +7,2,10 +7,3,0 +7,4,10 +7,5,10 +8,1,10 +8,2,10 +8,3,10 +8,4,0 +8,5,10 +9,1,10 +9,2,10 +9,3,10 +9,4,10 +9,5,0 +10,1,0 +10,2,10 +10,3,10 +10,4,10 +10,5,10 +11,1,15 +11,2,0 +11,3,0 +11,4,0 +11,5,0 +12,1,0 +12,2,15 +12,3,0 +12,4,0 +12,5,0 +13,1,0 +13,2,0 +13,3,15 +13,4,0 +13,5,0 +14,1,0 +14,2,0 +14,3,0 +14,4,15 +14,5,0 +15,1,0 +15,2,0 +15,3,0 +15,4,0 +15,5,15 +16,1,10 +16,2,10 +16,3,0 +16,4,0 +16,5,0 +17,1,0 +17,2,10 +17,3,10 +17,4,0 +17,5,0 +18,1,0 +18,2,0 +18,3,10 +18,4,10 +18,5,0 +19,1,0 +19,2,0 +19,3,0 +19,4,10 +19,5,10 +20,1,10 +20,2,0 +20,3,0 +20,4,0 +20,5,10 +21,1,10 +21,2,0 +21,3,10 +21,4,10 +21,5,0 +22,1,0 +22,2,10 +22,3,0 +22,4,10 +22,5,10 +23,1,10 +23,2,0 +23,3,10 +23,4,0 +23,5,10 +24,1,10 +24,2,10 +24,3,0 +24,4,10 +24,5,0 +25,1,0 +25,2,10 +25,3,10 +25,4,0 +25,5,10 +26,1,20 +26,2,10 +26,3,0 +26,4,0 +26,5,0 +27,1,0 +27,2,20 +27,3,10 +27,4,0 +27,5,0 +28,1,0 +28,2,0 +28,3,20 +28,4,10 +28,5,0 +29,1,0 +29,2,0 +29,3,0 +29,4,20 +29,5,10 +30,1,10 +30,2,0 +30,3,0 +30,4,0 +30,5,20 +31,1,30 +31,2,10 +31,3,0 +31,4,0 +31,5,0 +32,1,0 +32,2,30 +32,3,10 +32,4,0 +32,5,0 +33,1,0 +33,2,0 +33,3,30 +33,4,10 +33,5,0 +34,1,0 +34,2,0 +34,3,0 +34,4,30 +34,5,10 +35,1,10 +35,2,0 +35,3,0 +35,4,0 +35,5,30 +36,1,15 +36,2,0 +36,3,10 +36,4,0 +36,5,0 +37,1,0 +37,2,15 +37,3,0 +37,4,10 +37,5,0 +38,1,0 +38,2,0 +38,3,15 +38,4,0 +38,5,10 +39,1,10 +39,2,0 +39,3,0 +39,4,15 +39,5,0 +40,1,0 +40,2,10 +40,3,0 +40,4,0 +40,5,15 +41,1,15 +41,2,0 +41,3,0 +41,4,10 +41,5,0 +42,1,0 +42,2,15 +42,3,0 +42,4,0 +42,5,10 +43,1,10 +43,2,0 +43,3,15 +43,4,0 +43,5,0 +44,1,0 +44,2,10 +44,3,0 +44,4,15 +44,5,0 +45,1,0 +45,2,0 +45,3,10 +45,4,0 +45,5,15 +46,1,20 +46,2,0 +46,3,0 +46,4,0 +46,5,10 +47,1,10 +47,2,20 +47,3,0 +47,4,0 +47,5,0 +48,1,0 +48,2,10 +48,3,20 +48,4,0 +48,5,0 +49,1,0 +49,2,0 +49,3,10 +49,4,20 +49,5,0 +50,1,0 +50,2,0 +50,3,0 +50,4,10 +50,5,20 +51,1,25 +51,2,10 +51,3,0 +51,4,0 +51,5,0 +52,1,0 +52,2,25 +52,3,10 +52,4,0 +52,5,0 +53,1,30 +53,2,10 +53,3,30 +53,4,0 +53,5,0 +54,1,0 +54,2,30 +54,3,10 +54,4,30 +54,5,0 +55,1,0 +55,2,0 +55,3,30 +55,4,10 +55,5,30 +56,1,30 +56,2,0 +56,3,0 +56,4,30 +56,5,10 +57,1,10 +57,2,30 +57,3,0 +57,4,0 +57,5,30 +58,1,30 +58,2,10 +58,3,30 +58,4,10 +58,5,30 +59,1,30 +59,2,10 +59,3,30 +59,4,10 +59,5,30 +60,1,40 +60,2,10 +60,3,0 +60,4,0 +60,5,0 +61,1,0 +61,2,40 +61,3,10 +61,4,0 +61,5,0 +62,1,0 +62,2,0 +62,3,40 +62,4,10 +62,5,0 +63,1,0 +63,2,0 +63,3,0 +63,4,40 +63,5,10 +64,1,10 +64,2,0 +64,3,0 +64,4,0 +64,5,40 diff --git a/data/v2/csv/contest_combos.csv b/data/v2/csv/contest_combos.csv new file mode 100644 index 00000000..6af426a9 --- /dev/null +++ b/data/v2/csv/contest_combos.csv @@ -0,0 +1,247 @@ +first_move_id,second_move_id +1,3 +1,29 +1,185 +7,8 +7,9 +8,7 +8,9 +9,7 +9,8 +10,154 +10,163 +11,12 +11,20 +14,15 +14,152 +14,163 +14,206 +14,210 +14,306 +28,189 +30,31 +30,32 +43,10 +43,23 +43,30 +43,33 +43,44 +43,137 +43,184 +43,185 +47,195 +47,287 +57,291 +64,31 +64,65 +74,22 +74,71 +74,72 +74,73 +74,75 +74,76 +74,80 +74,202 +74,331 +74,338 +74,345 +82,225 +82,337 +82,349 +88,157 +88,317 +89,90 +89,284 +93,94 +93,100 +93,134 +93,248 +94,93 +94,100 +94,134 +94,248 +95,138 +95,171 +99,37 +99,43 +99,184 +104,97 +104,98 +104,100 +106,33 +106,36 +106,38 +106,182 +106,205 +111,33 +111,205 +116,2 +116,5 +116,21 +116,25 +116,36 +116,38 +116,167 +116,198 +116,223 +116,238 +116,264 +116,280 +116,292 +116,327 +123,108 +124,188 +125,155 +125,198 +134,93 +134,94 +134,100 +134,248 +135,121 +155,125 +155,198 +156,173 +156,214 +170,5 +170,25 +170,26 +170,66 +170,136 +170,223 +170,276 +170,329 +174,180 +174,194 +174,212 +174,288 +181,59 +184,43 +184,44 +184,162 +184,242 +187,156 +188,124 +189,28 +189,300 +198,125 +198,155 +199,87 +199,161 +199,190 +199,192 +199,276 +201,28 +201,189 +201,300 +201,311 +201,328 +201,341 +203,175 +203,179 +203,194 +203,220 +203,283 +203,284 +204,39 +204,45 +204,156 +204,186 +204,260 +212,194 +212,195 +225,82 +225,337 +225,349 +230,77 +230,78 +230,79 +240,3 +240,55 +240,56 +240,57 +240,61 +240,87 +240,127 +240,128 +240,145 +240,152 +240,190 +240,291 +240,308 +240,311 +240,323 +240,330 +240,346 +240,352 +241,7 +241,27 +241,52 +241,53 +241,76 +241,83 +241,126 +241,172 +241,221 +241,234 +241,235 +241,236 +241,257 +241,284 +241,299 +241,307 +241,311 +241,315 +252,69 +252,185 +252,233 +252,282 +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 +269,68 +269,197 +269,243 +281,156 +281,303 +291,57 +300,55 +300,189 +300,346 +319,232 +346,55 +346,287 +346,300 +347,60 +347,93 +347,94 +347,96 +347,113 +347,115 +347,138 +347,149 +347,248 +347,295 +347,296 +347,354 +349,82 +349,225 +349,337 diff --git a/data/v2/csv/contest_effect_prose.csv b/data/v2/csv/contest_effect_prose.csv new file mode 100644 index 00000000..2dd6114f --- /dev/null +++ b/data/v2/csv/contest_effect_prose.csv @@ -0,0 +1,34 @@ +contest_effect_id,local_language_id,flavor_text,effect +1,9,A highly appealing move.,Gives a high number of appeal points wth no other effects. +2,9,Affected by how well the appeal in front goes.,"If the Pokémon that appealed before the user earned less than three appeal points, user earns six; if three, user earns three; if more than three, user earns none." +3,9,"After this move, the user is more easily startled.","If the user is jammed this turn after using this move, it will receive twice as many jam points." +4,9,Badly startles the Pokémon in front.,Attempts to jam the Pokémon that appealed before the user. +5,9,Badly startles those that have made appeals.,Attempts to jam all Pokémon that have appealed this turn. +6,9,"Jams the others, and misses one turn of appeals.","Attempts to jam the other Pokémon. The user cannot make an appeal on the next turn, but it cannot be jammed either." +7,9,"Makes a great appeal, but allows no more to the end.",User cannot make any more appeals for the remainder of the contest. +8,9,Startles all Pokémon that have done their appeals.,Attempts to jam all Pokémon that have appealed this turn. +9,9,Startles the Pokémon that appealed before the user.,Attempts to jam the Pokémon that appealed before the user. +10,9,Startles the Pokémon that has the judge's attention.,"Attempts to jam all Pokémon that have appealed this turn. If a Pokémon is in combo standby status, it is jammed 5 points instead of 1." +11,9,The appeal works best the more the crowd is excited.,"If the Applause meter is empty or at one, earns one point; if two, earns three points; if three, earns four points; if four, earns six points." +12,9,Works well if it's the same type as the one before.,"If the last Pokémon's appeal is the same type as this move, user earns six points instead of two." +13,9,An appeal that excites the audience in any contest.,"Always adds a point to the applause meter, regardless of whether the move matches the contest, and can likewise gain the applause bonus." +14,9,Badly startles all Pokémon that made good appeals.,Attempts to jam all Pokémon that have appealed this turn for half their appeal points (minimum 1). +15,9,Can avoid being startled by others.,Prevents jamming for the rest of this turn. +16,9,Can avoid being startled by others once.,Prevents the next jam on this turn. +17,9,Can be repeatedly used without boring the judge.,Repeated use does not incur a penalty. +18,9,Makes all Pokémon after the user nervous.,Attempts to make all following Pokémon nervous (and thus unable to appeal). +19,9,Makes the appeal as good as the one before it.,User earns appeal points equal to the points the previous Pokémon earned plus one. +20,9,Makes the appeal as good as those before it.,User earns appeal points equal to half the points ALL the previous Pokémon earned plus one. +21,9,Scrambles up the order of appeals on the next turn.,Shuffles the next turn's turn order. +22,9,Shifts the judge's attention from others.,Cancels combo standby status for all Pokémon that have appealed this turn. +23,9,Startles Pokémon that made a same-type appeal.,"Attempts to jam all Pokémon that have appealed this turn. If a Pokémon used the same type move as this one, it is jammed for 4 points instead of 1." +24,9,Temporarily stops the crowd from getting excited.,Prevents the Applause Meter from rising for the rest of the turn. +25,9,The appeal's quality depends on its timing.,"Randomly earns one, two, four, or eight points." +26,9,The appeal works better the later it is performed.,"If user appeals first this turn, earns one point; if second, two points; if third, four points; if last, six points." +27,9,The appeal works great if performed first.,"If user appeals first this turn, earns six points instead of two." +28,9,The appeal works great if performed last.,"If user appeals last this turn, earns six points instead of two." +29,9,The appeal works well if the user's condition is good.,"If user has no stars, earns one point; if one, three points; if two, five points; if three, seven points. This does not include the appeal point bonus the stars give." +30,9,The next appeal can be made earlier next turn.,User will go first next turn. +31,9,The next appeal can be made later next turn.,User will go last next turn. +32,9,Ups the user's condition. Helps prevent nervousness.,User gains one star. +33,9,Worsens the condition of those that made appeals.,Removes all stars from all Pokémon that have appealed this turn. diff --git a/data/v2/csv/contest_effects.csv b/data/v2/csv/contest_effects.csv new file mode 100644 index 00000000..a2286bf1 --- /dev/null +++ b/data/v2/csv/contest_effects.csv @@ -0,0 +1,34 @@ +id,appeal,jam +1,4,0 +2,3,0 +3,6,0 +4,1,4 +5,1,3 +6,4,4 +7,8,0 +8,2,2 +9,2,3 +10,2,1 +11,1,0 +12,2,0 +13,1,0 +14,2,1 +15,1,0 +16,2,0 +17,3,0 +18,2,0 +19,1,0 +20,1,0 +21,3,0 +22,3,0 +23,2,1 +24,3,0 +25,1,0 +26,1,0 +27,2,0 +28,2,0 +29,1,0 +30,3,0 +31,3,0 +32,1,0 +33,3,0 diff --git a/data/v2/csv/contest_type_names.csv b/data/v2/csv/contest_type_names.csv new file mode 100644 index 00000000..9bebf391 --- /dev/null +++ b/data/v2/csv/contest_type_names.csv @@ -0,0 +1,6 @@ +contest_type_id,local_language_id,name,flavor,color +1,9,Cool,Spicy,Red +2,9,Beauty,Dry,Blue +3,9,Cute,Sweet,Pink +4,9,Smart,Bitter,Green +5,9,Tough,Sour,Yellow diff --git a/data/v2/csv/contest_types.csv b/data/v2/csv/contest_types.csv new file mode 100644 index 00000000..9d91e851 --- /dev/null +++ b/data/v2/csv/contest_types.csv @@ -0,0 +1,6 @@ +id,identifier +1,cool +2,beauty +3,cute +4,smart +5,tough diff --git a/data/v2/csv/encounter_condition_prose.csv b/data/v2/csv/encounter_condition_prose.csv new file mode 100644 index 00000000..45a60f3a --- /dev/null +++ b/data/v2/csv/encounter_condition_prose.csv @@ -0,0 +1,13 @@ +encounter_condition_id,local_language_id,name +1,6,Schwarm +1,9,Swarm +2,6,Tageszeit +2,9,Time of day +3,6,PokeRadar +3,9,PokeRadar +4,6,Spiel der 3. Generation in Slot 2 +4,9,Gen 3 game in slot 2 +5,6,Radio +5,9,Radio +6,6,Jahreszeit +6,9,Season diff --git a/data/v2/csv/encounter_condition_value_map.csv b/data/v2/csv/encounter_condition_value_map.csv new file mode 100644 index 00000000..ac9a5416 --- /dev/null +++ b/data/v2/csv/encounter_condition_value_map.csv @@ -0,0 +1,12176 @@ +encounter_id,encounter_condition_value_id +125,2 +126,1 +127,2 +128,1 +131,7 +132,6 +133,7 +134,6 +137,8 +138,9 +139,10 +140,11 +141,12 +142,13 +143,8 +144,9 +145,10 +146,11 +147,12 +148,13 +149,7 +150,6 +151,7 +152,6 +173,2 +174,1 +175,2 +176,1 +177,3 +178,4 +179,5 +180,3 +181,4 +182,5 +183,7 +184,6 +185,7 +186,6 +189,8 +190,9 +191,10 +192,11 +193,12 +194,13 +195,8 +196,9 +197,10 +198,11 +199,12 +200,13 +201,7 +202,6 +203,7 +204,6 +205,2 +206,1 +207,2 +208,1 +211,7 +212,6 +213,7 +214,6 +219,7 +220,6 +221,7 +222,6 +245,3 +246,4 +247,5 +248,3 +249,4 +250,5 +287,8 +288,9 +289,10 +290,11 +291,12 +292,13 +293,8 +294,9 +295,10 +296,11 +297,12 +298,13 +309,8 +310,9 +311,10 +312,11 +313,12 +314,13 +315,8 +316,9 +317,10 +318,11 +319,12 +320,13 +325,3 +326,4 +327,5 +328,3 +329,4 +330,5 +331,7 +332,6 +333,7 +334,6 +337,8 +338,9 +339,10 +340,11 +341,12 +342,13 +343,8 +344,9 +345,10 +346,11 +347,12 +348,13 +349,7 +350,6 +351,7 +352,6 +355,3 +356,4 +357,5 +358,3 +359,4 +360,5 +361,7 +362,6 +363,7 +364,6 +367,8 +368,9 +369,10 +370,11 +371,12 +372,13 +373,8 +374,9 +375,10 +376,11 +377,12 +378,13 +379,7 +380,6 +381,7 +382,6 +391,8 +392,9 +393,10 +394,11 +395,12 +396,13 +397,8 +398,9 +399,10 +400,11 +401,12 +402,13 +433,8 +434,9 +435,10 +436,11 +437,12 +438,13 +439,8 +440,9 +441,10 +442,11 +443,12 +444,13 +455,8 +456,9 +457,10 +458,11 +459,12 +460,13 +461,8 +462,9 +463,10 +464,11 +465,12 +466,13 +477,8 +478,9 +479,10 +480,11 +481,12 +482,13 +483,8 +484,9 +485,10 +486,11 +487,12 +488,13 +499,8 +500,9 +501,10 +502,11 +503,12 +504,13 +505,8 +506,9 +507,10 +508,11 +509,12 +510,13 +527,3 +528,4 +529,5 +530,3 +531,4 +532,5 +537,8 +538,9 +539,10 +540,11 +541,12 +542,13 +580,3 +581,4 +582,5 +583,3 +584,4 +585,5 +590,8 +591,9 +592,10 +593,11 +594,12 +595,13 +596,8 +597,9 +598,10 +599,11 +600,12 +601,13 +626,3 +627,4 +628,5 +629,3 +630,4 +631,5 +636,8 +637,9 +638,10 +639,11 +640,12 +641,13 +642,8 +643,9 +644,10 +645,11 +646,12 +647,13 +672,3 +673,4 +674,5 +675,3 +676,4 +677,5 +682,8 +683,9 +684,10 +685,11 +686,12 +687,13 +688,8 +689,9 +690,10 +691,11 +692,12 +693,13 +718,3 +719,4 +720,5 +721,3 +722,4 +723,5 +728,8 +729,9 +730,10 +731,11 +732,12 +733,13 +734,8 +735,9 +736,10 +737,11 +738,12 +739,13 +764,3 +765,4 +766,5 +767,3 +768,4 +769,5 +774,8 +775,9 +776,10 +777,11 +778,12 +779,13 +780,8 +781,9 +782,10 +783,11 +784,12 +785,13 +790,3 +791,4 +792,5 +793,3 +794,4 +795,5 +800,8 +801,9 +802,10 +803,11 +804,12 +805,13 +806,8 +807,9 +808,10 +809,11 +810,12 +811,13 +1240,3 +1241,4 +1242,5 +1243,3 +1244,4 +1245,5 +1246,7 +1247,6 +1248,7 +1249,6 +1252,8 +1253,9 +1254,10 +1255,11 +1256,12 +1257,13 +1258,8 +1259,9 +1260,10 +1261,11 +1262,12 +1263,13 +1264,7 +1265,6 +1266,7 +1267,6 +1276,8 +1277,9 +1278,10 +1279,11 +1280,12 +1281,13 +1282,8 +1283,9 +1284,10 +1285,11 +1286,12 +1287,13 +1298,8 +1299,9 +1300,10 +1301,11 +1302,12 +1303,13 +1304,8 +1305,9 +1306,10 +1307,11 +1308,12 +1309,13 +1314,3 +1315,4 +1316,5 +1317,3 +1318,4 +1319,5 +1324,8 +1325,9 +1326,10 +1327,11 +1328,12 +1329,13 +1330,8 +1331,9 +1332,10 +1333,11 +1334,12 +1335,13 +1366,8 +1367,9 +1368,10 +1369,11 +1370,12 +1371,13 +1372,8 +1373,9 +1374,10 +1375,11 +1376,12 +1377,13 +1388,8 +1389,9 +1390,10 +1391,11 +1392,12 +1393,13 +1394,8 +1395,9 +1396,10 +1397,11 +1398,12 +1399,13 +1410,8 +1411,9 +1412,10 +1413,11 +1414,12 +1415,13 +1416,8 +1417,9 +1418,10 +1419,11 +1420,12 +1421,13 +1432,8 +1433,9 +1434,10 +1435,11 +1436,12 +1437,13 +1438,8 +1439,9 +1440,10 +1441,11 +1442,12 +1443,13 +1564,8 +1565,9 +1566,10 +1567,11 +1568,12 +1569,13 +1570,8 +1571,9 +1572,10 +1573,11 +1574,12 +1575,13 +1696,8 +1697,9 +1698,10 +1699,11 +1700,12 +1701,13 +1702,8 +1703,9 +1704,10 +1705,11 +1706,12 +1707,13 +1828,8 +1829,9 +1830,10 +1831,11 +1832,12 +1833,13 +1834,8 +1835,9 +1836,10 +1837,11 +1838,12 +1839,13 +2450,8 +2451,9 +2452,10 +2453,11 +2454,12 +2455,13 +2456,8 +2457,9 +2458,10 +2459,11 +2460,12 +2461,13 +2472,8 +2473,9 +2474,10 +2475,11 +2476,12 +2477,13 +2478,8 +2479,9 +2480,10 +2481,11 +2482,12 +2483,13 +2524,3 +2525,4 +2526,5 +2527,3 +2528,4 +2529,5 +2578,8 +2579,9 +2580,10 +2581,11 +2582,12 +2583,13 +2584,8 +2585,9 +2586,10 +2587,11 +2588,12 +2589,13 +2600,8 +2601,9 +2602,10 +2603,11 +2604,12 +2605,13 +2606,8 +2607,9 +2608,10 +2609,11 +2610,12 +2611,13 +2622,8 +2623,9 +2624,10 +2625,11 +2626,12 +2627,13 +2628,8 +2629,9 +2630,10 +2631,11 +2632,12 +2633,13 +2644,8 +2645,9 +2646,10 +2647,11 +2648,12 +2649,13 +2650,8 +2651,9 +2652,10 +2653,11 +2654,12 +2655,13 +2666,8 +2667,9 +2668,10 +2669,11 +2670,12 +2671,13 +2672,8 +2673,9 +2674,10 +2675,11 +2676,12 +2677,13 +2688,8 +2689,9 +2690,10 +2691,11 +2692,12 +2693,13 +2694,8 +2695,9 +2696,10 +2697,11 +2698,12 +2699,13 +2710,8 +2711,9 +2712,10 +2713,11 +2714,12 +2715,13 +2716,8 +2717,9 +2718,10 +2719,11 +2720,12 +2721,13 +2732,8 +2733,9 +2734,10 +2735,11 +2736,12 +2737,13 +2738,8 +2739,9 +2740,10 +2741,11 +2742,12 +2743,13 +2754,8 +2755,9 +2756,10 +2757,11 +2758,12 +2759,13 +2760,8 +2761,9 +2762,10 +2763,11 +2764,12 +2765,13 +2776,8 +2777,9 +2778,10 +2779,11 +2780,12 +2781,13 +2782,8 +2783,9 +2784,10 +2785,11 +2786,12 +2787,13 +2798,8 +2799,9 +2800,10 +2801,11 +2802,12 +2803,13 +2804,8 +2805,9 +2806,10 +2807,11 +2808,12 +2809,13 +2820,8 +2821,9 +2822,10 +2823,11 +2824,12 +2825,13 +2826,8 +2827,9 +2828,10 +2829,11 +2830,12 +2831,13 +2842,8 +2843,9 +2844,10 +2845,11 +2846,12 +2847,13 +2848,8 +2849,9 +2850,10 +2851,11 +2852,12 +2853,13 +2864,8 +2865,9 +2866,10 +2867,11 +2868,12 +2869,13 +2870,8 +2871,9 +2872,10 +2873,11 +2874,12 +2875,13 +2878,2 +2879,1 +2880,2 +2881,1 +2882,3 +2883,4 +2884,5 +2886,7 +2887,6 +2888,7 +2889,6 +2892,8 +2893,9 +2894,10 +2895,11 +2896,12 +2897,13 +2898,8 +2899,9 +2900,10 +2901,11 +2902,12 +2903,13 +2904,7 +2905,6 +2906,7 +2907,6 +2928,2 +2929,1 +2930,2 +2931,1 +2932,3 +2933,4 +2934,5 +2936,7 +2937,6 +2938,7 +2939,6 +2942,8 +2943,9 +2944,10 +2945,11 +2946,12 +2947,13 +2948,8 +2949,9 +2950,10 +2951,11 +2952,12 +2953,13 +2954,7 +2955,6 +2956,7 +2957,6 +2978,2 +2979,1 +2980,2 +2981,1 +2982,3 +2983,4 +2984,5 +2985,3 +2986,4 +2987,5 +2988,7 +2989,6 +2990,7 +2991,6 +2994,8 +2995,9 +2996,10 +2997,11 +2998,12 +2999,13 +3000,8 +3001,9 +3002,10 +3003,11 +3004,12 +3005,13 +3006,7 +3007,6 +3008,7 +3009,6 +3030,2 +3031,1 +3032,2 +3033,1 +3034,3 +3035,4 +3036,5 +3037,3 +3038,4 +3039,5 +3040,7 +3041,6 +3042,7 +3043,6 +3046,8 +3047,9 +3048,10 +3049,11 +3050,12 +3051,13 +3052,8 +3053,9 +3054,10 +3055,11 +3056,12 +3057,13 +3058,7 +3059,6 +3060,7 +3061,6 +3084,3 +3085,4 +3086,5 +3087,3 +3088,4 +3089,5 +3090,7 +3091,6 +3092,7 +3093,6 +3098,7 +3099,6 +3100,7 +3101,6 +3104,3 +3105,4 +3106,5 +3107,3 +3108,4 +3109,5 +3110,7 +3111,6 +3112,7 +3113,6 +3116,8 +3117,9 +3118,10 +3119,11 +3120,12 +3121,13 +3122,8 +3123,9 +3124,10 +3125,11 +3126,12 +3127,13 +3128,7 +3129,6 +3130,7 +3131,6 +3132,2 +3133,1 +3134,2 +3135,1 +3136,3 +3137,4 +3138,5 +3140,7 +3141,6 +3142,7 +3143,6 +3146,8 +3147,9 +3148,10 +3149,11 +3150,12 +3151,13 +3152,8 +3153,9 +3154,10 +3155,11 +3156,12 +3157,13 +3158,7 +3159,6 +3160,7 +3161,6 +3162,2 +3163,1 +3164,2 +3165,1 +3166,3 +3167,4 +3168,5 +3169,3 +3170,4 +3171,5 +3172,7 +3173,6 +3174,7 +3175,6 +3178,8 +3179,9 +3180,10 +3181,11 +3182,12 +3183,13 +3184,8 +3185,9 +3186,10 +3187,11 +3188,12 +3189,13 +3190,7 +3191,6 +3192,7 +3193,6 +3194,2 +3195,1 +3196,2 +3197,1 +3198,3 +3199,4 +3200,5 +3201,3 +3202,4 +3203,5 +3204,7 +3205,6 +3206,7 +3207,6 +3210,8 +3211,9 +3212,10 +3213,11 +3214,12 +3215,13 +3216,8 +3217,9 +3218,10 +3219,11 +3220,12 +3221,13 +3222,7 +3223,6 +3224,7 +3225,6 +3248,3 +3249,4 +3250,5 +3251,3 +3252,4 +3253,5 +3254,7 +3255,6 +3256,7 +3257,6 +3260,8 +3261,9 +3262,10 +3263,11 +3264,12 +3265,13 +3266,8 +3267,9 +3268,10 +3269,11 +3270,12 +3271,13 +3272,7 +3273,6 +3274,7 +3275,6 +3298,3 +3299,4 +3300,5 +3301,3 +3302,4 +3303,5 +3304,7 +3305,6 +3306,7 +3307,6 +3310,8 +3311,9 +3312,10 +3313,11 +3314,12 +3315,13 +3316,8 +3317,9 +3318,10 +3319,11 +3320,12 +3321,13 +3322,7 +3323,6 +3324,7 +3325,6 +3350,7 +3351,6 +3352,7 +3353,6 +3356,8 +3357,9 +3358,10 +3359,11 +3360,12 +3361,13 +3362,8 +3363,9 +3364,10 +3365,11 +3366,12 +3367,13 +3368,7 +3369,6 +3370,7 +3371,6 +3396,7 +3397,6 +3398,7 +3399,6 +3402,8 +3403,9 +3404,10 +3405,11 +3406,12 +3407,13 +3408,8 +3409,9 +3410,10 +3411,11 +3412,12 +3413,13 +3414,7 +3415,6 +3416,7 +3417,6 +3438,2 +3439,1 +3440,2 +3441,1 +3442,3 +3443,4 +3444,5 +3445,3 +3446,4 +3447,5 +3448,7 +3449,6 +3450,7 +3451,6 +3454,8 +3455,9 +3456,10 +3457,11 +3458,12 +3459,13 +3460,8 +3461,9 +3462,10 +3463,11 +3464,12 +3465,13 +3466,7 +3467,6 +3468,7 +3469,6 +3470,2 +3471,1 +3472,2 +3473,1 +3474,3 +3475,4 +3476,5 +3477,3 +3478,4 +3479,5 +3480,7 +3481,6 +3482,7 +3483,6 +3486,8 +3487,9 +3488,10 +3489,11 +3490,12 +3491,13 +3492,8 +3493,9 +3494,10 +3495,11 +3496,12 +3497,13 +3498,7 +3499,6 +3500,7 +3501,6 +3502,2 +3503,1 +3504,2 +3505,1 +3506,3 +3507,4 +3508,5 +3509,3 +3510,4 +3511,5 +3512,7 +3513,6 +3514,7 +3515,6 +3518,8 +3519,9 +3520,10 +3521,11 +3522,12 +3523,13 +3524,8 +3525,9 +3526,10 +3527,11 +3528,12 +3529,13 +3530,7 +3531,6 +3532,7 +3533,6 +3554,2 +3555,1 +3556,2 +3557,1 +3558,3 +3559,4 +3560,5 +3561,3 +3562,4 +3563,5 +3564,7 +3565,6 +3566,7 +3567,6 +3570,8 +3571,9 +3572,10 +3573,11 +3574,12 +3575,13 +3576,8 +3577,9 +3578,10 +3579,11 +3580,12 +3581,13 +3582,7 +3583,6 +3584,7 +3585,6 +3608,3 +3609,4 +3610,5 +3611,3 +3612,4 +3613,5 +3624,3 +3625,4 +3626,5 +3627,3 +3628,4 +3629,5 +3640,3 +3641,4 +3642,5 +3643,3 +3644,4 +3645,5 +3656,3 +3657,4 +3658,5 +3659,3 +3660,4 +3661,5 +3672,3 +3673,4 +3674,5 +3675,3 +3676,4 +3677,5 +3688,3 +3689,4 +3690,5 +3691,3 +3692,4 +3693,5 +3694,7 +3695,6 +3696,7 +3697,6 +3700,8 +3701,9 +3702,10 +3703,11 +3704,12 +3705,13 +3706,8 +3707,9 +3708,10 +3709,11 +3710,12 +3711,13 +3712,7 +3713,6 +3714,7 +3715,6 +3718,3 +3719,4 +3720,5 +3721,3 +3722,4 +3723,5 +3724,7 +3725,6 +3726,7 +3727,6 +3730,8 +3731,9 +3732,10 +3733,11 +3734,12 +3735,13 +3736,8 +3737,9 +3738,10 +3739,11 +3740,12 +3741,13 +3742,7 +3743,6 +3744,7 +3745,6 +3768,3 +3769,4 +3770,5 +3771,3 +3772,4 +3773,5 +3774,7 +3775,6 +3776,7 +3777,6 +3780,8 +3781,9 +3782,10 +3783,11 +3784,12 +3785,13 +3786,8 +3787,9 +3788,10 +3789,11 +3790,12 +3791,13 +3792,7 +3793,6 +3794,7 +3795,6 +3798,3 +3799,4 +3800,5 +3801,3 +3802,4 +3803,5 +3804,7 +3805,6 +3806,7 +3807,6 +3810,8 +3811,9 +3812,10 +3813,11 +3814,12 +3815,13 +3816,8 +3817,9 +3818,10 +3819,11 +3820,12 +3821,13 +3822,7 +3823,6 +3824,7 +3825,6 +3828,3 +3829,4 +3830,5 +3831,3 +3832,4 +3833,5 +3834,7 +3835,6 +3836,7 +3837,6 +3842,7 +3843,6 +3844,7 +3845,6 +3868,3 +3869,4 +3870,5 +3871,3 +3872,4 +3873,5 +3874,7 +3875,6 +3876,7 +3877,6 +3880,8 +3881,9 +3882,10 +3883,11 +3884,12 +3885,13 +3886,8 +3887,9 +3888,10 +3889,11 +3890,12 +3891,13 +3892,7 +3893,6 +3894,7 +3895,6 +3916,2 +3917,1 +3918,2 +3919,1 +3921,3 +3922,4 +3923,5 +3924,7 +3925,6 +3926,7 +3927,6 +3932,7 +3933,6 +3934,7 +3935,6 +3956,2 +3957,1 +3958,2 +3959,1 +3960,3 +3961,4 +3962,5 +3963,3 +3964,4 +3965,5 +3966,7 +3967,6 +3968,7 +3969,6 +3972,8 +3973,9 +3974,10 +3975,11 +3976,12 +3977,13 +3978,8 +3979,9 +3980,10 +3981,11 +3982,12 +3983,13 +3984,7 +3985,6 +3986,7 +3987,6 +4008,2 +4009,1 +4010,2 +4011,1 +4012,3 +4013,4 +4014,5 +4015,3 +4016,4 +4017,5 +4018,7 +4019,6 +4020,7 +4021,6 +4024,8 +4025,9 +4026,10 +4027,11 +4028,12 +4029,13 +4030,8 +4031,9 +4032,10 +4033,11 +4034,12 +4035,13 +4036,7 +4037,6 +4038,7 +4039,6 +4040,2 +4041,1 +4042,2 +4043,1 +4044,3 +4045,4 +4046,5 +4047,3 +4048,4 +4049,5 +4050,7 +4051,6 +4052,7 +4053,6 +4056,8 +4057,9 +4058,10 +4059,11 +4060,12 +4061,13 +4062,8 +4063,9 +4064,10 +4065,11 +4066,12 +4067,13 +4068,7 +4069,6 +4070,7 +4071,6 +4072,2 +4073,1 +4074,2 +4075,1 +4076,3 +4077,4 +4078,5 +4079,3 +4080,4 +4081,5 +4082,7 +4083,6 +4084,7 +4085,6 +4088,8 +4089,9 +4090,10 +4091,11 +4092,12 +4093,13 +4094,8 +4095,9 +4096,10 +4097,11 +4098,12 +4099,13 +4100,7 +4101,6 +4102,7 +4103,6 +4104,2 +4105,1 +4106,2 +4107,1 +4110,7 +4111,6 +4112,7 +4113,6 +4118,7 +4119,6 +4120,7 +4121,6 +4162,2 +4163,1 +4164,2 +4165,1 +4168,7 +4169,6 +4170,7 +4171,6 +4176,7 +4177,6 +4178,7 +4179,6 +4200,2 +4201,1 +4202,2 +4203,1 +4204,3 +4205,4 +4206,5 +4207,3 +4208,4 +4209,5 +4210,7 +4211,6 +4212,7 +4213,6 +4218,7 +4219,6 +4220,7 +4221,6 +4242,2 +4243,1 +4244,2 +4245,1 +4246,3 +4247,4 +4248,5 +4249,3 +4250,4 +4251,5 +4252,7 +4253,6 +4254,7 +4255,6 +4258,8 +4259,9 +4260,10 +4261,11 +4262,12 +4263,13 +4264,8 +4265,9 +4266,10 +4267,11 +4268,12 +4269,13 +4270,7 +4271,6 +4272,7 +4273,6 +4294,2 +4295,1 +4296,2 +4297,1 +4298,3 +4299,4 +4300,5 +4301,3 +4302,4 +4303,5 +4304,7 +4305,6 +4306,7 +4307,6 +4312,7 +4313,6 +4314,7 +4315,6 +4336,2 +4337,1 +4338,2 +4339,1 +4340,3 +4341,4 +4342,5 +4343,3 +4344,4 +4345,5 +4346,7 +4347,6 +4348,7 +4349,6 +4352,8 +4353,9 +4354,10 +4355,11 +4356,12 +4357,13 +4358,8 +4359,9 +4360,10 +4361,11 +4362,12 +4363,13 +4364,7 +4365,6 +4366,7 +4367,6 +4388,2 +4389,1 +4390,2 +4391,1 +4392,3 +4393,4 +4394,5 +4395,3 +4396,4 +4397,5 +4398,7 +4399,6 +4400,7 +4401,6 +4404,8 +4405,9 +4406,10 +4407,11 +4408,12 +4409,13 +4410,8 +4411,9 +4412,10 +4413,11 +4414,12 +4415,13 +4416,7 +4417,6 +4418,7 +4419,6 +4440,2 +4441,1 +4442,2 +4443,1 +4444,3 +4445,4 +4446,5 +4447,3 +4448,4 +4449,5 +4450,7 +4451,6 +4452,7 +4453,6 +4456,8 +4457,9 +4458,10 +4459,11 +4460,12 +4461,13 +4462,8 +4463,9 +4464,10 +4465,11 +4466,12 +4467,13 +4468,7 +4469,6 +4470,7 +4471,6 +4592,2 +4593,1 +4594,2 +4595,1 +4596,3 +4597,4 +4598,5 +4599,3 +4600,4 +4601,5 +4602,7 +4603,6 +4604,7 +4605,6 +4610,7 +4611,6 +4612,7 +4613,6 +4634,2 +4635,1 +4636,2 +4637,1 +4640,7 +4641,6 +4642,7 +4643,6 +4648,7 +4649,6 +4650,7 +4651,6 +4796,2 +4797,1 +4798,2 +4799,1 +4802,7 +4803,6 +4804,7 +4805,6 +4808,8 +4809,9 +4810,10 +4811,11 +4812,12 +4813,13 +4814,8 +4815,9 +4816,10 +4817,11 +4818,12 +4819,13 +4820,7 +4821,6 +4822,7 +4823,6 +4844,2 +4845,1 +4846,2 +4847,1 +4848,3 +4849,4 +4850,5 +4851,3 +4852,4 +4853,5 +4854,7 +4855,6 +4856,7 +4857,6 +4860,8 +4861,9 +4862,10 +4863,11 +4864,12 +4865,13 +4866,8 +4867,9 +4868,10 +4869,11 +4870,12 +4871,13 +4872,7 +4873,6 +4874,7 +4875,6 +4876,2 +4877,1 +4878,2 +4879,1 +4882,7 +4883,6 +4884,7 +4885,6 +4890,7 +4891,6 +4892,7 +4893,6 +4916,3 +4917,4 +4918,5 +4919,3 +4920,4 +4921,5 +4958,8 +4959,9 +4960,10 +4961,11 +4962,12 +4963,13 +4964,8 +4965,9 +4966,10 +4967,11 +4968,12 +4969,13 +4980,8 +4981,9 +4982,10 +4983,11 +4984,12 +4985,13 +4986,8 +4987,9 +4988,10 +4989,11 +4990,12 +4991,13 +4996,3 +4997,4 +4998,5 +4999,3 +5000,4 +5001,5 +5002,7 +5003,6 +5004,7 +5005,6 +5008,8 +5009,9 +5010,10 +5011,11 +5012,12 +5013,13 +5014,8 +5015,9 +5016,10 +5017,11 +5018,12 +5019,13 +5020,7 +5021,6 +5022,7 +5023,6 +5026,3 +5027,4 +5028,5 +5029,3 +5030,4 +5031,5 +5032,7 +5033,6 +5034,7 +5035,6 +5038,8 +5039,9 +5040,10 +5041,11 +5042,12 +5043,13 +5044,8 +5045,9 +5046,10 +5047,11 +5048,12 +5049,13 +5050,7 +5051,6 +5052,7 +5053,6 +5062,8 +5063,9 +5064,10 +5065,11 +5066,12 +5067,13 +5068,8 +5069,9 +5070,10 +5071,11 +5072,12 +5073,13 +5104,8 +5105,9 +5106,10 +5107,11 +5108,12 +5109,13 +5110,8 +5111,9 +5112,10 +5113,11 +5114,12 +5115,13 +5126,8 +5127,9 +5128,10 +5129,11 +5130,12 +5131,13 +5132,8 +5133,9 +5134,10 +5135,11 +5136,12 +5137,13 +5148,8 +5149,9 +5150,10 +5151,11 +5152,12 +5153,13 +5154,8 +5155,9 +5156,10 +5157,11 +5158,12 +5159,13 +5170,8 +5171,9 +5172,10 +5173,11 +5174,12 +5175,13 +5176,8 +5177,9 +5178,10 +5179,11 +5180,12 +5181,13 +5198,3 +5199,4 +5200,5 +5201,3 +5202,4 +5203,5 +5208,8 +5209,9 +5210,10 +5211,11 +5212,12 +5213,13 +5251,3 +5252,4 +5253,5 +5254,3 +5255,4 +5256,5 +5261,8 +5262,9 +5263,10 +5264,11 +5265,12 +5266,13 +5267,8 +5268,9 +5269,10 +5270,11 +5271,12 +5272,13 +5297,3 +5298,4 +5299,5 +5300,3 +5301,4 +5302,5 +5307,8 +5308,9 +5309,10 +5310,11 +5311,12 +5312,13 +5313,8 +5314,9 +5315,10 +5316,11 +5317,12 +5318,13 +5343,3 +5344,4 +5345,5 +5346,3 +5347,4 +5348,5 +5353,8 +5354,9 +5355,10 +5356,11 +5357,12 +5358,13 +5359,8 +5360,9 +5361,10 +5362,11 +5363,12 +5364,13 +5389,3 +5390,4 +5391,5 +5392,3 +5393,4 +5394,5 +5399,8 +5400,9 +5401,10 +5402,11 +5403,12 +5404,13 +5405,8 +5406,9 +5407,10 +5408,11 +5409,12 +5410,13 +5435,3 +5436,4 +5437,5 +5438,3 +5439,4 +5440,5 +5445,8 +5446,9 +5447,10 +5448,11 +5449,12 +5450,13 +5451,8 +5452,9 +5453,10 +5454,11 +5455,12 +5456,13 +5461,3 +5462,4 +5463,5 +5464,3 +5465,4 +5466,5 +5471,8 +5472,9 +5473,10 +5474,11 +5475,12 +5476,13 +5477,8 +5478,9 +5479,10 +5480,11 +5481,12 +5482,13 +5911,3 +5912,4 +5913,5 +5914,3 +5915,4 +5916,5 +5917,7 +5918,6 +5919,7 +5920,6 +5923,8 +5924,9 +5925,10 +5926,11 +5927,12 +5928,13 +5929,8 +5930,9 +5931,10 +5932,11 +5933,12 +5934,13 +5935,7 +5936,6 +5937,7 +5938,6 +5947,8 +5948,9 +5949,10 +5950,11 +5951,12 +5952,13 +5953,8 +5954,9 +5955,10 +5956,11 +5957,12 +5958,13 +5969,8 +5970,9 +5971,10 +5972,11 +5973,12 +5974,13 +5975,8 +5976,9 +5977,10 +5978,11 +5979,12 +5980,13 +5985,3 +5986,4 +5987,5 +5988,3 +5989,4 +5990,5 +5995,8 +5996,9 +5997,10 +5998,11 +5999,12 +6000,13 +6001,8 +6002,9 +6003,10 +6004,11 +6005,12 +6006,13 +6037,8 +6038,9 +6039,10 +6040,11 +6041,12 +6042,13 +6043,8 +6044,9 +6045,10 +6046,11 +6047,12 +6048,13 +6059,8 +6060,9 +6061,10 +6062,11 +6063,12 +6064,13 +6065,8 +6066,9 +6067,10 +6068,11 +6069,12 +6070,13 +6081,8 +6082,9 +6083,10 +6084,11 +6085,12 +6086,13 +6087,8 +6088,9 +6089,10 +6090,11 +6091,12 +6092,13 +6103,8 +6104,9 +6105,10 +6106,11 +6107,12 +6108,13 +6109,8 +6110,9 +6111,10 +6112,11 +6113,12 +6114,13 +6235,8 +6236,9 +6237,10 +6238,11 +6239,12 +6240,13 +6241,8 +6242,9 +6243,10 +6244,11 +6245,12 +6246,13 +6367,8 +6368,9 +6369,10 +6370,11 +6371,12 +6372,13 +6373,8 +6374,9 +6375,10 +6376,11 +6377,12 +6378,13 +6499,8 +6500,9 +6501,10 +6502,11 +6503,12 +6504,13 +6505,8 +6506,9 +6507,10 +6508,11 +6509,12 +6510,13 +7121,8 +7122,9 +7123,10 +7124,11 +7125,12 +7126,13 +7127,8 +7128,9 +7129,10 +7130,11 +7131,12 +7132,13 +7143,8 +7144,9 +7145,10 +7146,11 +7147,12 +7148,13 +7149,8 +7150,9 +7151,10 +7152,11 +7153,12 +7154,13 +7195,3 +7196,4 +7197,5 +7198,3 +7199,4 +7200,5 +7249,8 +7250,9 +7251,10 +7252,11 +7253,12 +7254,13 +7255,8 +7256,9 +7257,10 +7258,11 +7259,12 +7260,13 +7271,8 +7272,9 +7273,10 +7274,11 +7275,12 +7276,13 +7277,8 +7278,9 +7279,10 +7280,11 +7281,12 +7282,13 +7293,8 +7294,9 +7295,10 +7296,11 +7297,12 +7298,13 +7299,8 +7300,9 +7301,10 +7302,11 +7303,12 +7304,13 +7315,8 +7316,9 +7317,10 +7318,11 +7319,12 +7320,13 +7321,8 +7322,9 +7323,10 +7324,11 +7325,12 +7326,13 +7337,8 +7338,9 +7339,10 +7340,11 +7341,12 +7342,13 +7343,8 +7344,9 +7345,10 +7346,11 +7347,12 +7348,13 +7359,8 +7360,9 +7361,10 +7362,11 +7363,12 +7364,13 +7365,8 +7366,9 +7367,10 +7368,11 +7369,12 +7370,13 +7381,8 +7382,9 +7383,10 +7384,11 +7385,12 +7386,13 +7387,8 +7388,9 +7389,10 +7390,11 +7391,12 +7392,13 +7403,8 +7404,9 +7405,10 +7406,11 +7407,12 +7408,13 +7409,8 +7410,9 +7411,10 +7412,11 +7413,12 +7414,13 +7425,8 +7426,9 +7427,10 +7428,11 +7429,12 +7430,13 +7431,8 +7432,9 +7433,10 +7434,11 +7435,12 +7436,13 +7447,8 +7448,9 +7449,10 +7450,11 +7451,12 +7452,13 +7453,8 +7454,9 +7455,10 +7456,11 +7457,12 +7458,13 +7469,8 +7470,9 +7471,10 +7472,11 +7473,12 +7474,13 +7475,8 +7476,9 +7477,10 +7478,11 +7479,12 +7480,13 +7491,8 +7492,9 +7493,10 +7494,11 +7495,12 +7496,13 +7497,8 +7498,9 +7499,10 +7500,11 +7501,12 +7502,13 +7513,8 +7514,9 +7515,10 +7516,11 +7517,12 +7518,13 +7519,8 +7520,9 +7521,10 +7522,11 +7523,12 +7524,13 +7535,8 +7536,9 +7537,10 +7538,11 +7539,12 +7540,13 +7541,8 +7542,9 +7543,10 +7544,11 +7545,12 +7546,13 +7549,2 +7550,1 +7551,2 +7552,1 +7553,3 +7554,4 +7555,5 +7557,7 +7558,6 +7559,7 +7560,6 +7563,8 +7564,9 +7565,10 +7566,11 +7567,12 +7568,13 +7569,8 +7570,9 +7571,10 +7572,11 +7573,12 +7574,13 +7575,7 +7576,6 +7577,7 +7578,6 +7599,2 +7600,1 +7601,2 +7602,1 +7603,3 +7604,4 +7605,5 +7607,7 +7608,6 +7609,7 +7610,6 +7613,8 +7614,9 +7615,10 +7616,11 +7617,12 +7618,13 +7619,8 +7620,9 +7621,10 +7622,11 +7623,12 +7624,13 +7625,7 +7626,6 +7627,7 +7628,6 +7649,2 +7650,1 +7651,2 +7652,1 +7653,3 +7654,4 +7655,5 +7656,3 +7657,4 +7658,5 +7659,7 +7660,6 +7661,7 +7662,6 +7665,8 +7666,9 +7667,10 +7668,11 +7669,12 +7670,13 +7671,8 +7672,9 +7673,10 +7674,11 +7675,12 +7676,13 +7677,7 +7678,6 +7679,7 +7680,6 +7701,2 +7702,1 +7703,2 +7704,1 +7705,3 +7706,4 +7707,5 +7708,3 +7709,4 +7710,5 +7711,7 +7712,6 +7713,7 +7714,6 +7717,8 +7718,9 +7719,10 +7720,11 +7721,12 +7722,13 +7723,8 +7724,9 +7725,10 +7726,11 +7727,12 +7728,13 +7729,7 +7730,6 +7731,7 +7732,6 +7755,3 +7756,4 +7757,5 +7758,3 +7759,4 +7760,5 +7761,7 +7762,6 +7763,7 +7764,6 +7769,7 +7770,6 +7771,7 +7772,6 +7775,3 +7776,4 +7777,5 +7778,3 +7779,4 +7780,5 +7781,7 +7782,6 +7783,7 +7784,6 +7787,8 +7788,9 +7789,10 +7790,11 +7791,12 +7792,13 +7793,8 +7794,9 +7795,10 +7796,11 +7797,12 +7798,13 +7799,7 +7800,6 +7801,7 +7802,6 +7803,2 +7804,1 +7805,2 +7806,1 +7807,3 +7808,4 +7809,5 +7811,7 +7812,6 +7813,7 +7814,6 +7817,8 +7818,9 +7819,10 +7820,11 +7821,12 +7822,13 +7823,8 +7824,9 +7825,10 +7826,11 +7827,12 +7828,13 +7829,7 +7830,6 +7831,7 +7832,6 +7833,2 +7834,1 +7835,2 +7836,1 +7837,3 +7838,4 +7839,5 +7840,3 +7841,4 +7842,5 +7843,7 +7844,6 +7845,7 +7846,6 +7849,8 +7850,9 +7851,10 +7852,11 +7853,12 +7854,13 +7855,8 +7856,9 +7857,10 +7858,11 +7859,12 +7860,13 +7861,7 +7862,6 +7863,7 +7864,6 +7865,2 +7866,1 +7867,2 +7868,1 +7869,3 +7870,4 +7871,5 +7872,3 +7873,4 +7874,5 +7875,7 +7876,6 +7877,7 +7878,6 +7881,8 +7882,9 +7883,10 +7884,11 +7885,12 +7886,13 +7887,8 +7888,9 +7889,10 +7890,11 +7891,12 +7892,13 +7893,7 +7894,6 +7895,7 +7896,6 +7919,3 +7920,4 +7921,5 +7922,3 +7923,4 +7924,5 +7925,7 +7926,6 +7927,7 +7928,6 +7931,8 +7932,9 +7933,10 +7934,11 +7935,12 +7936,13 +7937,8 +7938,9 +7939,10 +7940,11 +7941,12 +7942,13 +7943,7 +7944,6 +7945,7 +7946,6 +7969,3 +7970,4 +7971,5 +7972,3 +7973,4 +7974,5 +7975,7 +7976,6 +7977,7 +7978,6 +7981,8 +7982,9 +7983,10 +7984,11 +7985,12 +7986,13 +7987,8 +7988,9 +7989,10 +7990,11 +7991,12 +7992,13 +7993,7 +7994,6 +7995,7 +7996,6 +8021,7 +8022,6 +8023,7 +8024,6 +8027,8 +8028,9 +8029,10 +8030,11 +8031,12 +8032,13 +8033,8 +8034,9 +8035,10 +8036,11 +8037,12 +8038,13 +8039,7 +8040,6 +8041,7 +8042,6 +8067,7 +8068,6 +8069,7 +8070,6 +8073,8 +8074,9 +8075,10 +8076,11 +8077,12 +8078,13 +8079,8 +8080,9 +8081,10 +8082,11 +8083,12 +8084,13 +8085,7 +8086,6 +8087,7 +8088,6 +8109,2 +8110,1 +8111,2 +8112,1 +8113,3 +8114,4 +8115,5 +8116,3 +8117,4 +8118,5 +8119,7 +8120,6 +8121,7 +8122,6 +8125,8 +8126,9 +8127,10 +8128,11 +8129,12 +8130,13 +8131,8 +8132,9 +8133,10 +8134,11 +8135,12 +8136,13 +8137,7 +8138,6 +8139,7 +8140,6 +8141,2 +8142,1 +8143,2 +8144,1 +8145,3 +8146,4 +8147,5 +8148,3 +8149,4 +8150,5 +8151,7 +8152,6 +8153,7 +8154,6 +8157,8 +8158,9 +8159,10 +8160,11 +8161,12 +8162,13 +8163,8 +8164,9 +8165,10 +8166,11 +8167,12 +8168,13 +8169,7 +8170,6 +8171,7 +8172,6 +8173,2 +8174,1 +8175,2 +8176,1 +8177,3 +8178,4 +8179,5 +8180,3 +8181,4 +8182,5 +8183,7 +8184,6 +8185,7 +8186,6 +8189,8 +8190,9 +8191,10 +8192,11 +8193,12 +8194,13 +8195,8 +8196,9 +8197,10 +8198,11 +8199,12 +8200,13 +8201,7 +8202,6 +8203,7 +8204,6 +8225,2 +8226,1 +8227,2 +8228,1 +8229,3 +8230,4 +8231,5 +8232,3 +8233,4 +8234,5 +8235,7 +8236,6 +8237,7 +8238,6 +8241,8 +8242,9 +8243,10 +8244,11 +8245,12 +8246,13 +8247,8 +8248,9 +8249,10 +8250,11 +8251,12 +8252,13 +8253,7 +8254,6 +8255,7 +8256,6 +8279,3 +8280,4 +8281,5 +8282,3 +8283,4 +8284,5 +8295,3 +8296,4 +8297,5 +8298,3 +8299,4 +8300,5 +8311,3 +8312,4 +8313,5 +8314,3 +8315,4 +8316,5 +8327,3 +8328,4 +8329,5 +8330,3 +8331,4 +8332,5 +8343,3 +8344,4 +8345,5 +8346,3 +8347,4 +8348,5 +8359,3 +8360,4 +8361,5 +8362,3 +8363,4 +8364,5 +8365,7 +8366,6 +8367,7 +8368,6 +8371,8 +8372,9 +8373,10 +8374,11 +8375,12 +8376,13 +8377,8 +8378,9 +8379,10 +8380,11 +8381,12 +8382,13 +8383,7 +8384,6 +8385,7 +8386,6 +8389,3 +8390,4 +8391,5 +8392,3 +8393,4 +8394,5 +8395,7 +8396,6 +8397,7 +8398,6 +8401,8 +8402,9 +8403,10 +8404,11 +8405,12 +8406,13 +8407,8 +8408,9 +8409,10 +8410,11 +8411,12 +8412,13 +8413,7 +8414,6 +8415,7 +8416,6 +8439,3 +8440,4 +8441,5 +8442,3 +8443,4 +8444,5 +8445,7 +8446,6 +8447,7 +8448,6 +8451,8 +8452,9 +8453,10 +8454,11 +8455,12 +8456,13 +8457,8 +8458,9 +8459,10 +8460,11 +8461,12 +8462,13 +8463,7 +8464,6 +8465,7 +8466,6 +8469,3 +8470,4 +8471,5 +8472,3 +8473,4 +8474,5 +8475,7 +8476,6 +8477,7 +8478,6 +8481,8 +8482,9 +8483,10 +8484,11 +8485,12 +8486,13 +8487,8 +8488,9 +8489,10 +8490,11 +8491,12 +8492,13 +8493,7 +8494,6 +8495,7 +8496,6 +8499,3 +8500,4 +8501,5 +8502,3 +8503,4 +8504,5 +8505,7 +8506,6 +8507,7 +8508,6 +8513,7 +8514,6 +8515,7 +8516,6 +8539,3 +8540,4 +8541,5 +8542,3 +8543,4 +8544,5 +8545,7 +8546,6 +8547,7 +8548,6 +8551,8 +8552,9 +8553,10 +8554,11 +8555,12 +8556,13 +8557,8 +8558,9 +8559,10 +8560,11 +8561,12 +8562,13 +8563,7 +8564,6 +8565,7 +8566,6 +8587,2 +8588,1 +8589,2 +8590,1 +8592,3 +8593,4 +8594,5 +8595,7 +8596,6 +8597,7 +8598,6 +8603,7 +8604,6 +8605,7 +8606,6 +8627,2 +8628,1 +8629,2 +8630,1 +8631,3 +8632,4 +8633,5 +8634,3 +8635,4 +8636,5 +8637,7 +8638,6 +8639,7 +8640,6 +8643,8 +8644,9 +8645,10 +8646,11 +8647,12 +8648,13 +8649,8 +8650,9 +8651,10 +8652,11 +8653,12 +8654,13 +8655,7 +8656,6 +8657,7 +8658,6 +8679,2 +8680,1 +8681,2 +8682,1 +8683,3 +8684,4 +8685,5 +8686,3 +8687,4 +8688,5 +8689,7 +8690,6 +8691,7 +8692,6 +8695,8 +8696,9 +8697,10 +8698,11 +8699,12 +8700,13 +8701,8 +8702,9 +8703,10 +8704,11 +8705,12 +8706,13 +8707,7 +8708,6 +8709,7 +8710,6 +8711,2 +8712,1 +8713,2 +8714,1 +8715,3 +8716,4 +8717,5 +8718,3 +8719,4 +8720,5 +8721,7 +8722,6 +8723,7 +8724,6 +8727,8 +8728,9 +8729,10 +8730,11 +8731,12 +8732,13 +8733,8 +8734,9 +8735,10 +8736,11 +8737,12 +8738,13 +8739,7 +8740,6 +8741,7 +8742,6 +8743,2 +8744,1 +8745,2 +8746,1 +8747,3 +8748,4 +8749,5 +8750,3 +8751,4 +8752,5 +8753,7 +8754,6 +8755,7 +8756,6 +8759,8 +8760,9 +8761,10 +8762,11 +8763,12 +8764,13 +8765,8 +8766,9 +8767,10 +8768,11 +8769,12 +8770,13 +8771,7 +8772,6 +8773,7 +8774,6 +8775,2 +8776,1 +8777,2 +8778,1 +8781,7 +8782,6 +8783,7 +8784,6 +8789,7 +8790,6 +8791,7 +8792,6 +8833,2 +8834,1 +8835,2 +8836,1 +8839,7 +8840,6 +8841,7 +8842,6 +8847,7 +8848,6 +8849,7 +8850,6 +8871,2 +8872,1 +8873,2 +8874,1 +8875,3 +8876,4 +8877,5 +8878,3 +8879,4 +8880,5 +8881,7 +8882,6 +8883,7 +8884,6 +8889,7 +8890,6 +8891,7 +8892,6 +8913,2 +8914,1 +8915,2 +8916,1 +8917,3 +8918,4 +8919,5 +8920,3 +8921,4 +8922,5 +8923,7 +8924,6 +8925,7 +8926,6 +8929,8 +8930,9 +8931,10 +8932,11 +8933,12 +8934,13 +8935,8 +8936,9 +8937,10 +8938,11 +8939,12 +8940,13 +8941,7 +8942,6 +8943,7 +8944,6 +8965,2 +8966,1 +8967,2 +8968,1 +8969,3 +8970,4 +8971,5 +8972,3 +8973,4 +8974,5 +8975,7 +8976,6 +8977,7 +8978,6 +8983,7 +8984,6 +8985,7 +8986,6 +9007,2 +9008,1 +9009,2 +9010,1 +9011,3 +9012,4 +9013,5 +9014,3 +9015,4 +9016,5 +9017,7 +9018,6 +9019,7 +9020,6 +9023,8 +9024,9 +9025,10 +9026,11 +9027,12 +9028,13 +9029,8 +9030,9 +9031,10 +9032,11 +9033,12 +9034,13 +9035,7 +9036,6 +9037,7 +9038,6 +9059,2 +9060,1 +9061,2 +9062,1 +9063,3 +9064,4 +9065,5 +9066,3 +9067,4 +9068,5 +9069,7 +9070,6 +9071,7 +9072,6 +9075,8 +9076,9 +9077,10 +9078,11 +9079,12 +9080,13 +9081,8 +9082,9 +9083,10 +9084,11 +9085,12 +9086,13 +9087,7 +9088,6 +9089,7 +9090,6 +9111,2 +9112,1 +9113,2 +9114,1 +9115,3 +9116,4 +9117,5 +9118,3 +9119,4 +9120,5 +9121,7 +9122,6 +9123,7 +9124,6 +9127,8 +9128,9 +9129,10 +9130,11 +9131,12 +9132,13 +9133,8 +9134,9 +9135,10 +9136,11 +9137,12 +9138,13 +9139,7 +9140,6 +9141,7 +9142,6 +9263,2 +9264,1 +9265,2 +9266,1 +9267,3 +9268,4 +9269,5 +9270,3 +9271,4 +9272,5 +9273,7 +9274,6 +9275,7 +9276,6 +9281,7 +9282,6 +9283,7 +9284,6 +9305,2 +9306,1 +9307,2 +9308,1 +9311,7 +9312,6 +9313,7 +9314,6 +9319,7 +9320,6 +9321,7 +9322,6 +9452,8 +9453,9 +9454,10 +9455,11 +9456,12 +9457,13 +9459,7 +9460,6 +9470,8 +9471,9 +9472,10 +9473,11 +9474,12 +9475,13 +9477,7 +9478,6 +9479,2 +9480,1 +9481,2 +9482,1 +9485,7 +9486,6 +9487,7 +9488,6 +9493,7 +9494,6 +9495,7 +9496,6 +9517,2 +9518,1 +9519,2 +9520,1 +9521,3 +9522,4 +9523,5 +9524,3 +9525,4 +9526,5 +9527,7 +9528,6 +9529,7 +9530,6 +9533,8 +9534,9 +9535,10 +9536,11 +9537,12 +9538,13 +9539,8 +9540,9 +9541,10 +9542,11 +9543,12 +9544,13 +9545,7 +9546,6 +9547,7 +9548,6 +9551,3 +9552,4 +9553,5 +9555,7 +9556,6 +9557,7 +9558,6 +9563,7 +9564,6 +9565,7 +9566,6 +9589,3 +9590,4 +9591,5 +9592,3 +9593,4 +9594,5 +9625,3 +9626,4 +9627,5 +9628,3 +9629,4 +9630,5 +9635,8 +9636,9 +9637,10 +9638,11 +9639,12 +9640,13 +9641,8 +9642,9 +9643,10 +9644,11 +9645,12 +9646,13 +9651,3 +9652,4 +9653,5 +9654,3 +9655,4 +9656,5 +9661,8 +9662,9 +9663,10 +9664,11 +9665,12 +9666,13 +9667,8 +9668,9 +9669,10 +9670,11 +9671,12 +9672,13 +9677,3 +9678,4 +9679,5 +9680,3 +9681,4 +9682,5 +9683,7 +9684,6 +9685,7 +9686,6 +9689,8 +9690,9 +9691,10 +9692,11 +9693,12 +9694,13 +9695,8 +9696,9 +9697,10 +9698,11 +9699,12 +9700,13 +9701,7 +9702,6 +9703,7 +9704,6 +9707,3 +9708,4 +9709,5 +9710,3 +9711,4 +9712,5 +9713,7 +9714,6 +9715,7 +9716,6 +9719,8 +9720,9 +9721,10 +9722,11 +9723,12 +9724,13 +9725,8 +9726,9 +9727,10 +9728,11 +9729,12 +9730,13 +9731,7 +9732,6 +9733,7 +9734,6 +9737,3 +9738,4 +9739,5 +9740,3 +9741,4 +9742,5 +9747,8 +9748,9 +9749,10 +9750,11 +9751,12 +9752,13 +9753,8 +9754,9 +9755,10 +9756,11 +9757,12 +9758,13 +9783,3 +9784,4 +9785,5 +9786,3 +9787,4 +9788,5 +9793,8 +9794,9 +9795,10 +9796,11 +9797,12 +9798,13 +9799,8 +9800,9 +9801,10 +9802,11 +9803,12 +9804,13 +9809,3 +9810,4 +9811,5 +9812,3 +9813,4 +9814,5 +9819,8 +9820,9 +9821,10 +9822,11 +9823,12 +9824,13 +9825,8 +9826,9 +9827,10 +9828,11 +9829,12 +9830,13 +9835,3 +9836,4 +9837,5 +9838,3 +9839,4 +9840,5 +9845,8 +9846,9 +9847,10 +9848,11 +9849,12 +9850,13 +9851,8 +9852,9 +9853,10 +9854,11 +9855,12 +9856,13 +9861,3 +9862,4 +9863,5 +9864,3 +9865,4 +9866,5 +9871,8 +9872,9 +9873,10 +9874,11 +9875,12 +9876,13 +9877,8 +9878,9 +9879,10 +9880,11 +9881,12 +9882,13 +9887,3 +9888,4 +9889,5 +9890,3 +9891,4 +9892,5 +9903,3 +9904,4 +9905,5 +9906,3 +9907,4 +9908,5 +9919,3 +9920,4 +9921,5 +9922,3 +9923,4 +9924,5 +9955,3 +9956,4 +9957,5 +9958,3 +9959,4 +9960,5 +9965,8 +9966,9 +9967,10 +9968,11 +9969,12 +9970,13 +9971,8 +9972,9 +9973,10 +9974,11 +9975,12 +9976,13 +10001,3 +10002,4 +10003,5 +10004,3 +10005,4 +10006,5 +10011,8 +10012,9 +10013,10 +10014,11 +10015,12 +10016,13 +10017,8 +10018,9 +10019,10 +10020,11 +10021,12 +10022,13 +10047,3 +10048,4 +10049,5 +10050,3 +10051,4 +10052,5 +10057,8 +10058,9 +10059,10 +10060,11 +10061,12 +10062,13 +10063,8 +10064,9 +10065,10 +10066,11 +10067,12 +10068,13 +10093,3 +10094,4 +10095,5 +10096,3 +10097,4 +10098,5 +10103,8 +10104,9 +10105,10 +10106,11 +10107,12 +10108,13 +10109,8 +10110,9 +10111,10 +10112,11 +10113,12 +10114,13 +10139,3 +10140,4 +10141,5 +10142,3 +10143,4 +10144,5 +10149,8 +10150,9 +10151,10 +10152,11 +10153,12 +10154,13 +10155,8 +10156,9 +10157,10 +10158,11 +10159,12 +10160,13 +10185,3 +10186,4 +10187,5 +10188,3 +10189,4 +10190,5 +10195,8 +10196,9 +10197,10 +10198,11 +10199,12 +10200,13 +10201,8 +10202,9 +10203,10 +10204,11 +10205,12 +10206,13 +10447,3 +10448,4 +10449,5 +10461,3 +10462,4 +10463,5 +10475,3 +10476,4 +10477,5 +10509,3 +10510,4 +10511,5 +10543,3 +10544,4 +10545,5 +10557,3 +10558,4 +10559,5 +10647,3 +10648,4 +10649,5 +10651,7 +10652,6 +10653,7 +10654,6 +10659,7 +10660,6 +10661,7 +10662,6 +10689,3 +10690,4 +10691,5 +10692,3 +10693,4 +10694,5 +10699,8 +10700,9 +10701,10 +10702,11 +10703,12 +10704,13 +10705,8 +10706,9 +10707,10 +10708,11 +10709,12 +10710,13 +10735,3 +10736,4 +10737,5 +10743,8 +10744,9 +10745,10 +10746,11 +10747,12 +10748,13 +10749,8 +10750,9 +10751,10 +10752,11 +10753,12 +10754,13 +10755,7 +10756,6 +10760,3 +10761,4 +10762,5 +10768,8 +10769,9 +10770,10 +10771,11 +10772,12 +10773,13 +10774,8 +10775,9 +10776,10 +10777,11 +10778,12 +10779,13 +10784,3 +10785,4 +10786,5 +10792,8 +10793,9 +10794,10 +10795,11 +10796,12 +10797,13 +10798,8 +10799,9 +10800,10 +10801,11 +10802,12 +10803,13 +10808,3 +10809,4 +10810,5 +10816,8 +10817,9 +10818,10 +10819,11 +10820,12 +10821,13 +10822,8 +10823,9 +10824,10 +10825,11 +10826,12 +10827,13 +10828,7 +10829,6 +10958,3 +10959,4 +10960,5 +10966,8 +10967,9 +10968,10 +10969,11 +10970,12 +10971,13 +10972,8 +10973,9 +10974,10 +10975,11 +10976,12 +10977,13 +10979,7 +10980,6 +11108,3 +11109,4 +11110,5 +11116,8 +11117,9 +11118,10 +11119,11 +11120,12 +11121,13 +11122,8 +11123,9 +11124,10 +11125,11 +11126,12 +11127,13 +11252,3 +11253,4 +11254,5 +11260,8 +11261,9 +11262,10 +11263,11 +11264,12 +11265,13 +11266,8 +11267,9 +11268,10 +11269,11 +11270,12 +11271,13 +11930,8 +11931,9 +11932,10 +11933,11 +11934,12 +11935,13 +11936,8 +11937,9 +11938,10 +11939,11 +11940,12 +11941,13 +11942,7 +11943,6 +11953,8 +11954,9 +11955,10 +11956,11 +11957,12 +11958,13 +11959,8 +11960,9 +11961,10 +11962,11 +11963,12 +11964,13 +12005,3 +12006,4 +12007,5 +12008,3 +12009,4 +12010,5 +12059,8 +12060,9 +12061,10 +12062,11 +12063,12 +12064,13 +12065,8 +12066,9 +12067,10 +12068,11 +12069,12 +12070,13 +12081,8 +12082,9 +12083,10 +12084,11 +12085,12 +12086,13 +12087,8 +12088,9 +12089,10 +12090,11 +12091,12 +12092,13 +12103,8 +12104,9 +12105,10 +12106,11 +12107,12 +12108,13 +12109,8 +12110,9 +12111,10 +12112,11 +12113,12 +12114,13 +12125,8 +12126,9 +12127,10 +12128,11 +12129,12 +12130,13 +12131,8 +12132,9 +12133,10 +12134,11 +12135,12 +12136,13 +12139,2 +12140,1 +12148,8 +12149,9 +12150,10 +12151,11 +12152,12 +12153,13 +12154,8 +12155,9 +12156,10 +12157,11 +12158,12 +12159,13 +12254,8 +12255,9 +12256,10 +12257,11 +12258,12 +12259,13 +12277,3 +12278,4 +12279,5 +12281,7 +12282,6 +12283,7 +12284,6 +12287,8 +12288,9 +12289,10 +12290,11 +12291,12 +12292,13 +12293,8 +12294,9 +12295,10 +12296,11 +12297,12 +12298,13 +12299,7 +12300,6 +12301,7 +12302,6 +12327,7 +12328,6 +12329,7 +12330,6 +12333,8 +12334,9 +12335,10 +12336,11 +12337,12 +12338,13 +12339,8 +12340,9 +12341,10 +12342,11 +12343,12 +12344,13 +12345,7 +12346,6 +12347,7 +12348,6 +12373,7 +12374,6 +12375,7 +12376,6 +12379,8 +12380,9 +12381,10 +12382,11 +12383,12 +12384,13 +12385,8 +12386,9 +12387,10 +12388,11 +12389,12 +12390,13 +12391,7 +12392,6 +12393,7 +12394,6 +12417,3 +12418,4 +12419,5 +12420,3 +12421,4 +12422,5 +12427,8 +12428,9 +12429,10 +12430,11 +12431,12 +12432,13 +12433,8 +12434,9 +12435,10 +12436,11 +12437,12 +12438,13 +12463,3 +12464,4 +12465,5 +12466,3 +12467,4 +12468,5 +12469,7 +12470,6 +12471,7 +12472,6 +12477,7 +12478,6 +12479,7 +12480,6 +12483,3 +12484,4 +12485,5 +12486,3 +12487,4 +12488,5 +12493,8 +12494,9 +12495,10 +12496,11 +12497,12 +12498,13 +12499,8 +12500,9 +12501,10 +12502,11 +12503,12 +12504,13 +12507,2 +12508,1 +12509,2 +12510,1 +12511,3 +12512,4 +12513,5 +12514,3 +12515,4 +12516,5 +12517,7 +12518,6 +12519,7 +12520,6 +12523,8 +12524,9 +12525,10 +12526,11 +12527,12 +12528,13 +12529,8 +12530,9 +12531,10 +12532,11 +12533,12 +12534,13 +12535,7 +12536,6 +12537,7 +12538,6 +12539,2 +12540,1 +12541,2 +12542,1 +12543,3 +12544,4 +12545,5 +12546,3 +12547,4 +12548,5 +12549,7 +12550,6 +12551,7 +12552,6 +12555,8 +12556,9 +12557,10 +12558,11 +12559,12 +12560,13 +12561,8 +12562,9 +12563,10 +12564,11 +12565,12 +12566,13 +12567,7 +12568,6 +12569,7 +12570,6 +12571,2 +12572,1 +12573,2 +12574,1 +12575,3 +12576,4 +12577,5 +12578,3 +12579,4 +12580,5 +12585,8 +12586,9 +12587,10 +12588,11 +12589,12 +12590,13 +12591,8 +12592,9 +12593,10 +12594,11 +12595,12 +12596,13 +12621,3 +12622,4 +12623,5 +12624,3 +12625,4 +12626,5 +12631,8 +12632,9 +12633,10 +12634,11 +12635,12 +12636,13 +12637,8 +12638,9 +12639,10 +12640,11 +12641,12 +12642,13 +12667,3 +12668,4 +12669,5 +12670,3 +12671,4 +12672,5 +12673,7 +12674,6 +12675,7 +12676,6 +12679,8 +12680,9 +12681,10 +12682,11 +12683,12 +12684,13 +12685,8 +12686,9 +12687,10 +12688,11 +12689,12 +12690,13 +12691,7 +12692,6 +12693,7 +12694,6 +12719,7 +12720,6 +12721,7 +12722,6 +12727,7 +12728,6 +12729,7 +12730,6 +12753,3 +12754,4 +12755,5 +12756,3 +12757,4 +12758,5 +12759,7 +12760,6 +12761,7 +12762,6 +12765,8 +12766,9 +12767,10 +12768,11 +12769,12 +12770,13 +12771,8 +12772,9 +12773,10 +12774,11 +12775,12 +12776,13 +12777,7 +12778,6 +12779,7 +12780,6 +12801,2 +12802,1 +12803,2 +12804,1 +12805,3 +12806,4 +12807,5 +12808,3 +12809,4 +12810,5 +12811,7 +12812,6 +12813,7 +12814,6 +12819,7 +12820,6 +12821,7 +12822,6 +12823,2 +12824,1 +12825,2 +12826,1 +12827,3 +12828,4 +12829,5 +12830,3 +12831,4 +12832,5 +12833,7 +12834,6 +12835,7 +12836,6 +12841,7 +12842,6 +12843,7 +12844,6 +12845,2 +12846,1 +12847,2 +12848,1 +12849,3 +12850,4 +12851,5 +12853,7 +12854,6 +12855,7 +12856,6 +12859,8 +12860,9 +12861,10 +12862,11 +12863,12 +12864,13 +12865,8 +12866,9 +12867,10 +12868,11 +12869,12 +12870,13 +12871,7 +12872,6 +12873,7 +12874,6 +12895,2 +12896,1 +12897,2 +12898,1 +12899,3 +12900,4 +12901,5 +12902,3 +12903,4 +12904,5 +12905,7 +12906,6 +12907,7 +12908,6 +12911,8 +12912,9 +12913,10 +12914,11 +12915,12 +12916,13 +12917,8 +12918,9 +12919,10 +12920,11 +12921,12 +12922,13 +12923,7 +12924,6 +12925,7 +12926,6 +12949,3 +12950,4 +12951,5 +12952,3 +12953,4 +12954,5 +12965,3 +12966,4 +12967,5 +12968,3 +12969,4 +12970,5 +12981,3 +12982,4 +12983,5 +12984,3 +12985,4 +12986,5 +12994,7 +12995,6 +12998,3 +12999,4 +13000,5 +13001,3 +13002,4 +13003,5 +13009,8 +13010,9 +13011,10 +13012,11 +13013,12 +13014,13 +13016,7 +13017,6 +13020,3 +13021,4 +13022,5 +13023,3 +13024,4 +13025,5 +13031,8 +13032,9 +13033,10 +13034,11 +13035,12 +13036,13 +13038,7 +13039,6 +13042,3 +13043,4 +13044,5 +13045,3 +13046,4 +13047,5 +13048,7 +13049,6 +13050,7 +13051,6 +13054,8 +13055,9 +13056,10 +13057,11 +13058,12 +13059,13 +13060,8 +13061,9 +13062,10 +13063,11 +13064,12 +13065,13 +13066,7 +13067,6 +13068,7 +13069,6 +13072,3 +13073,4 +13074,5 +13075,3 +13076,4 +13077,5 +13078,7 +13079,6 +13080,7 +13081,6 +13084,8 +13085,9 +13086,10 +13087,11 +13088,12 +13089,13 +13090,8 +13091,9 +13092,10 +13093,11 +13094,12 +13095,13 +13096,7 +13097,6 +13098,7 +13099,6 +13122,3 +13123,4 +13124,5 +13125,3 +13126,4 +13127,5 +13128,7 +13129,6 +13130,7 +13131,6 +13134,8 +13135,9 +13136,10 +13137,11 +13138,12 +13139,13 +13140,8 +13141,9 +13142,10 +13143,11 +13144,12 +13145,13 +13146,7 +13147,6 +13148,7 +13149,6 +13152,3 +13153,4 +13154,5 +13155,3 +13156,4 +13157,5 +13168,3 +13169,4 +13170,5 +13171,3 +13172,4 +13173,5 +13174,7 +13175,6 +13176,7 +13177,6 +13182,7 +13183,6 +13184,7 +13185,6 +13210,7 +13211,6 +13212,7 +13213,6 +13216,8 +13217,9 +13218,10 +13219,11 +13220,12 +13221,13 +13222,8 +13223,9 +13224,10 +13225,11 +13226,12 +13227,13 +13228,7 +13229,6 +13230,7 +13231,6 +13254,3 +13255,4 +13256,5 +13257,3 +13258,4 +13259,5 +13260,7 +13261,6 +13262,7 +13263,6 +13268,7 +13269,6 +13270,7 +13271,6 +13292,2 +13293,1 +13294,2 +13295,1 +13296,3 +13297,4 +13298,5 +13299,3 +13300,4 +13301,5 +13302,7 +13303,6 +13304,7 +13305,6 +13308,8 +13309,9 +13310,10 +13311,11 +13312,12 +13313,13 +13314,8 +13315,9 +13316,10 +13317,11 +13318,12 +13319,13 +13320,7 +13321,6 +13322,7 +13323,6 +13344,2 +13345,1 +13346,2 +13347,1 +13348,3 +13349,4 +13350,5 +13351,3 +13352,4 +13353,5 +13364,3 +13365,4 +13366,5 +13367,3 +13368,4 +13369,5 +13374,8 +13375,9 +13376,10 +13377,11 +13378,12 +13379,13 +13380,8 +13381,9 +13382,10 +13383,11 +13384,12 +13385,13 +13388,2 +13389,1 +13390,2 +13391,1 +13392,3 +13393,4 +13394,5 +13395,3 +13396,4 +13397,5 +13398,7 +13399,6 +13400,7 +13401,6 +13404,8 +13405,9 +13406,10 +13407,11 +13408,12 +13409,13 +13410,8 +13411,9 +13412,10 +13413,11 +13414,12 +13415,13 +13416,7 +13417,6 +13418,7 +13419,6 +13420,2 +13421,1 +13422,2 +13423,1 +13424,3 +13425,4 +13426,5 +13427,3 +13428,4 +13429,5 +13478,2 +13479,1 +13480,2 +13481,1 +13482,3 +13483,4 +13484,5 +13486,7 +13487,6 +13488,7 +13489,6 +13494,7 +13495,6 +13496,7 +13497,6 +13518,2 +13519,1 +13520,2 +13521,1 +13522,3 +13523,4 +13524,5 +13525,3 +13526,4 +13527,5 +13528,7 +13529,6 +13530,7 +13531,6 +13536,7 +13537,6 +13538,7 +13539,6 +13560,2 +13561,1 +13562,2 +13563,1 +13564,3 +13565,4 +13566,5 +13567,3 +13568,4 +13569,5 +13574,8 +13575,9 +13576,10 +13577,11 +13578,12 +13579,13 +13580,8 +13581,9 +13582,10 +13583,11 +13584,12 +13585,13 +13608,2 +13609,1 +13610,2 +13611,1 +13612,3 +13613,4 +13614,5 +13615,3 +13616,4 +13617,5 +13618,7 +13619,6 +13620,7 +13621,6 +13626,7 +13627,6 +13628,7 +13629,6 +13650,2 +13651,1 +13652,2 +13653,1 +13654,3 +13655,4 +13656,5 +13658,7 +13659,6 +13660,7 +13661,6 +13666,7 +13667,6 +13668,7 +13669,6 +13690,2 +13691,1 +13692,2 +13693,1 +13694,3 +13695,4 +13696,5 +13697,3 +13698,4 +13699,5 +13704,8 +13705,9 +13706,10 +13707,11 +13708,12 +13709,13 +13710,8 +13711,9 +13712,10 +13713,11 +13714,12 +13715,13 +13738,2 +13739,1 +13740,2 +13741,1 +13742,3 +13743,4 +13744,5 +13745,3 +13746,4 +13747,5 +13748,7 +13749,6 +13750,7 +13751,6 +13754,8 +13755,9 +13756,10 +13757,11 +13758,12 +13759,13 +13760,8 +13761,9 +13762,10 +13763,11 +13764,12 +13765,13 +13766,7 +13767,6 +13768,7 +13769,6 +13890,2 +13891,1 +13892,2 +13893,1 +13894,3 +13895,4 +13896,5 +13897,3 +13898,4 +13899,5 +13900,7 +13901,6 +13902,7 +13903,6 +13908,7 +13909,6 +13910,7 +13911,6 +13932,2 +13933,1 +13934,2 +13935,1 +13936,3 +13937,4 +13938,5 +13939,3 +13940,4 +13941,5 +13942,7 +13943,6 +13944,7 +13945,6 +13948,8 +13949,9 +13950,10 +13951,11 +13952,12 +13953,13 +13955,7 +13956,6 +13957,7 +13958,6 +14006,3 +14007,4 +14008,5 +14010,3 +14011,4 +14012,5 +14014,3 +14014,14 +14015,4 +14015,14 +14016,5 +14016,14 +14017,15 +14018,16 +14019,3 +14019,14 +14020,4 +14020,14 +14021,5 +14021,14 +14022,15 +14023,16 +14024,3 +14024,14 +14025,4 +14025,14 +14026,5 +14026,14 +14027,15 +14028,16 +14029,3 +14029,14 +14030,4 +14030,14 +14031,5 +14031,14 +14032,15 +14033,16 +14034,3 +14035,4 +14036,5 +14037,3 +14038,4 +14039,5 +14041,3 +14042,4 +14043,5 +14045,3 +14046,4 +14047,5 +14062,3 +14063,4 +14064,5 +14069,3 +14070,4 +14071,5 +14079,3 +14080,4 +14081,5 +14083,3 +14084,4 +14085,5 +14087,3 +14087,14 +14088,4 +14088,14 +14089,5 +14089,14 +14090,15 +14091,16 +14092,3 +14092,14 +14093,4 +14093,14 +14094,5 +14094,14 +14095,15 +14096,16 +14097,3 +14097,14 +14098,4 +14098,14 +14099,5 +14099,14 +14100,15 +14101,16 +14102,3 +14102,14 +14103,4 +14103,14 +14104,5 +14104,14 +14105,15 +14106,16 +14107,3 +14108,4 +14109,5 +14110,3 +14111,4 +14112,5 +14113,3 +14114,4 +14115,5 +14116,3 +14117,4 +14118,5 +14119,3 +14120,4 +14121,5 +14122,3 +14123,4 +14124,5 +14150,3 +14151,4 +14152,5 +14154,3 +14155,4 +14156,5 +14158,3 +14158,14 +14159,4 +14159,14 +14160,5 +14160,14 +14161,15 +14162,16 +14163,3 +14163,14 +14164,4 +14164,14 +14165,5 +14165,14 +14166,15 +14167,16 +14168,14 +14169,15 +14170,16 +14171,14 +14172,15 +14173,16 +14174,3 +14175,4 +14176,5 +14177,3 +14178,4 +14179,5 +14180,3 +14181,4 +14182,5 +14183,3 +14184,4 +14185,5 +14186,3 +14187,4 +14188,5 +14189,3 +14190,4 +14191,5 +14224,2 +14225,1 +14228,2 +14229,1 +14231,2 +14232,1 +14233,2 +14234,1 +14236,2 +14237,1 +14238,2 +14239,1 +14240,2 +14241,1 +14242,2 +14243,1 +14244,2 +14245,1 +14246,3 +14247,4 +14248,5 +14250,3 +14251,4 +14252,5 +14254,3 +14254,14 +14255,4 +14255,14 +14256,5 +14256,14 +14257,15 +14258,16 +14259,3 +14259,14 +14260,4 +14260,14 +14261,5 +14261,14 +14262,15 +14263,16 +14264,3 +14264,14 +14265,4 +14265,14 +14266,5 +14266,14 +14267,15 +14268,16 +14269,3 +14269,14 +14270,4 +14270,14 +14271,5 +14271,14 +14272,15 +14273,16 +14276,3 +14277,4 +14278,5 +14280,3 +14281,4 +14282,5 +14284,3 +14285,4 +14286,5 +14288,3 +14289,4 +14290,5 +14292,3 +14292,14 +14293,4 +14293,14 +14294,5 +14294,14 +14295,15 +14296,16 +14297,3 +14297,14 +14298,4 +14298,14 +14299,5 +14299,14 +14300,15 +14301,16 +14302,3 +14302,14 +14303,4 +14303,14 +14304,5 +14304,14 +14305,15 +14306,16 +14307,3 +14307,14 +14308,4 +14308,14 +14309,5 +14309,14 +14310,15 +14311,16 +14314,3 +14315,4 +14316,5 +14318,3 +14319,4 +14320,5 +14322,3 +14323,4 +14324,5 +14328,3 +14328,14 +14329,4 +14329,14 +14330,5 +14330,14 +14331,15 +14332,16 +14333,14 +14334,15 +14335,16 +14336,3 +14336,14 +14337,4 +14337,14 +14338,5 +14338,14 +14339,15 +14340,16 +14341,3 +14341,14 +14342,4 +14342,14 +14343,5 +14343,14 +14344,15 +14345,16 +14346,3 +14347,4 +14348,5 +14349,3 +14350,4 +14351,5 +14352,3 +14353,4 +14354,5 +14355,3 +14356,4 +14357,5 +14358,3 +14359,4 +14360,5 +14361,3 +14362,4 +14363,5 +14371,2 +14372,1 +14375,2 +14376,1 +14378,2 +14379,1 +14380,2 +14381,1 +14383,2 +14384,1 +14385,2 +14386,1 +14387,2 +14388,1 +14390,2 +14391,1 +14394,14 +14395,15 +14396,16 +14397,14 +14398,15 +14399,16 +14400,14 +14401,15 +14402,16 +14403,14 +14404,15 +14405,16 +14490,14 +14491,15 +14492,16 +14493,14 +14494,15 +14495,16 +14496,14 +14497,15 +14498,16 +14499,14 +14500,15 +14501,16 +14536,14 +14537,15 +14538,16 +14539,14 +14540,15 +14541,16 +14542,14 +14543,15 +14544,16 +14545,14 +14546,15 +14547,16 +14582,14 +14583,15 +14584,16 +14585,14 +14586,15 +14587,16 +14588,14 +14589,15 +14590,16 +14591,14 +14592,15 +14593,16 +14614,3 +14615,4 +14616,5 +14621,3 +14622,4 +14623,5 +14631,3 +14632,4 +14633,5 +14637,3 +14637,14 +14638,4 +14638,14 +14639,5 +14639,14 +14640,15 +14641,16 +14642,14 +14643,15 +14644,16 +14645,3 +14645,14 +14646,4 +14646,14 +14647,5 +14647,14 +14648,15 +14649,16 +14650,3 +14650,14 +14651,4 +14651,14 +14652,5 +14652,14 +14653,15 +14654,16 +14657,3 +14658,4 +14659,5 +14660,3 +14661,4 +14662,5 +14663,3 +14664,4 +14665,5 +14666,3 +14667,4 +14668,5 +14671,14 +14672,15 +14673,16 +14674,14 +14675,15 +14676,16 +14677,14 +14678,15 +14679,16 +14680,14 +14681,15 +14682,16 +14716,14 +14717,15 +14718,16 +14719,14 +14720,15 +14721,16 +14722,14 +14723,15 +14724,16 +14725,14 +14726,15 +14727,16 +14759,3 +14760,4 +14761,5 +14763,3 +14764,4 +14765,5 +14767,3 +14767,14 +14768,4 +14768,14 +14769,5 +14769,14 +14770,15 +14771,16 +14772,3 +14772,14 +14773,4 +14773,14 +14774,5 +14774,14 +14775,15 +14776,16 +14777,3 +14777,14 +14778,4 +14778,14 +14779,5 +14779,14 +14780,15 +14781,16 +14782,3 +14782,14 +14783,4 +14783,14 +14784,5 +14784,14 +14785,15 +14786,16 +14787,3 +14788,4 +14789,5 +14790,3 +14791,4 +14792,5 +14822,2 +14823,1 +14824,2 +14825,1 +14826,14 +14827,15 +14828,16 +14829,14 +14830,15 +14831,16 +14832,14 +14833,15 +14834,16 +14835,14 +14836,15 +14837,16 +14858,3 +14859,4 +14860,5 +14865,3 +14866,4 +14867,5 +14875,2 +14876,1 +14877,2 +14878,1 +14879,14 +14880,15 +14881,16 +14882,14 +14883,15 +14884,16 +14885,14 +14886,15 +14887,16 +14888,14 +14889,15 +14890,16 +14893,3 +14894,4 +14895,5 +14897,3 +14898,4 +14899,5 +14926,3 +14927,4 +14928,5 +14930,3 +14931,4 +14932,5 +14934,3 +14934,14 +14935,4 +14935,14 +14936,5 +14936,14 +14937,15 +14938,16 +14939,3 +14939,14 +14940,4 +14940,14 +14941,5 +14941,14 +14942,15 +14943,16 +14944,3 +14944,14 +14945,4 +14945,14 +14946,5 +14946,14 +14947,15 +14948,16 +14949,3 +14949,14 +14950,4 +14950,14 +14951,5 +14951,14 +14952,15 +14953,16 +14954,3 +14955,4 +14956,5 +14957,3 +14958,4 +14959,5 +14960,3 +14961,4 +14962,5 +14963,3 +14964,4 +14965,5 +14966,3 +14967,4 +14968,5 +14969,3 +14970,4 +14971,5 +14987,14 +14988,15 +14989,16 +14990,14 +14991,15 +14992,16 +14993,3 +14993,14 +14994,4 +14994,14 +14995,5 +14995,14 +14996,15 +14997,16 +14998,3 +14998,14 +14999,4 +14999,14 +15000,5 +15000,14 +15001,15 +15002,16 +15006,3 +15007,4 +15008,5 +15010,3 +15011,4 +15012,5 +15013,3 +15014,4 +15015,5 +15019,3 +15019,14 +15020,4 +15020,14 +15021,5 +15021,14 +15022,15 +15023,16 +15024,14 +15025,15 +15026,16 +15027,3 +15027,14 +15028,4 +15028,14 +15029,5 +15029,14 +15030,15 +15031,16 +15032,3 +15032,14 +15033,4 +15033,14 +15034,5 +15034,14 +15035,15 +15036,16 +15039,3 +15040,4 +15041,5 +15042,3 +15043,4 +15044,5 +15045,3 +15046,4 +15047,5 +15048,3 +15049,4 +15050,5 +15079,14 +15080,15 +15081,16 +15082,14 +15083,15 +15084,16 +15085,14 +15086,15 +15087,16 +15088,14 +15089,15 +15090,16 +15100,14 +15101,15 +15102,16 +15103,14 +15104,15 +15105,16 +15106,14 +15107,15 +15108,16 +15109,14 +15110,15 +15111,16 +15112,3 +15113,4 +15114,5 +15115,3 +15116,4 +15117,5 +15119,3 +15120,4 +15121,5 +15123,3 +15124,4 +15125,5 +15126,3 +15127,4 +15128,5 +15130,3 +15131,4 +15132,5 +15134,3 +15134,14 +15135,4 +15135,14 +15136,5 +15136,14 +15137,15 +15138,16 +15139,3 +15139,14 +15140,4 +15140,14 +15141,5 +15141,14 +15142,15 +15143,16 +15144,3 +15144,14 +15145,4 +15145,14 +15146,5 +15146,14 +15147,15 +15148,16 +15149,3 +15149,14 +15150,4 +15150,14 +15151,5 +15151,14 +15152,15 +15153,16 +15160,3 +15161,4 +15162,5 +15164,3 +15165,4 +15166,5 +15168,3 +15168,14 +15169,4 +15169,14 +15170,5 +15170,14 +15171,15 +15172,16 +15173,3 +15173,14 +15174,4 +15174,14 +15175,5 +15175,14 +15176,15 +15177,16 +15178,3 +15178,14 +15179,4 +15179,14 +15180,5 +15180,14 +15181,15 +15182,16 +15183,3 +15183,14 +15184,4 +15184,14 +15185,5 +15185,14 +15186,15 +15187,16 +15194,3 +15195,4 +15196,5 +15198,3 +15199,4 +15200,5 +15202,3 +15202,14 +15203,4 +15203,14 +15204,5 +15204,14 +15205,15 +15206,16 +15207,3 +15207,14 +15208,4 +15208,14 +15209,5 +15209,14 +15210,15 +15211,16 +15212,3 +15212,14 +15213,4 +15213,14 +15214,5 +15214,14 +15215,15 +15216,16 +15217,3 +15217,14 +15218,4 +15218,14 +15219,5 +15219,14 +15220,15 +15221,16 +15228,3 +15229,4 +15230,5 +15232,3 +15233,4 +15234,5 +15236,3 +15236,14 +15237,4 +15237,14 +15238,5 +15238,14 +15239,15 +15240,16 +15241,3 +15241,14 +15242,4 +15242,14 +15243,5 +15243,14 +15244,15 +15245,16 +15246,3 +15246,14 +15247,4 +15247,14 +15248,5 +15248,14 +15249,15 +15250,16 +15251,3 +15251,14 +15252,4 +15252,14 +15253,5 +15253,14 +15254,15 +15255,16 +15262,3 +15263,4 +15264,5 +15266,3 +15267,4 +15268,5 +15270,3 +15270,14 +15271,4 +15271,14 +15272,5 +15272,14 +15273,15 +15274,16 +15275,3 +15275,14 +15276,4 +15276,14 +15277,5 +15277,14 +15278,15 +15279,16 +15280,3 +15280,14 +15281,4 +15281,14 +15282,5 +15282,14 +15283,15 +15284,16 +15285,3 +15285,14 +15286,4 +15286,14 +15287,5 +15287,14 +15288,15 +15289,16 +15296,3 +15297,4 +15298,5 +15300,3 +15301,4 +15302,5 +15304,3 +15304,14 +15305,4 +15305,14 +15306,5 +15306,14 +15307,15 +15308,16 +15309,3 +15309,14 +15310,4 +15310,14 +15311,5 +15311,14 +15312,15 +15313,16 +15314,3 +15314,14 +15315,4 +15315,14 +15316,5 +15316,14 +15317,15 +15318,16 +15319,3 +15319,14 +15320,4 +15320,14 +15321,5 +15321,14 +15322,15 +15323,16 +15330,3 +15331,4 +15332,5 +15334,3 +15335,4 +15336,5 +15338,3 +15338,14 +15339,4 +15339,14 +15340,5 +15340,14 +15341,15 +15342,16 +15343,3 +15343,14 +15344,4 +15344,14 +15345,5 +15345,14 +15346,15 +15347,16 +15348,3 +15348,14 +15349,4 +15349,14 +15350,5 +15350,14 +15351,15 +15352,16 +15353,3 +15353,14 +15354,4 +15354,14 +15355,5 +15355,14 +15356,15 +15357,16 +15364,3 +15365,4 +15366,5 +15368,3 +15369,4 +15370,5 +15372,3 +15372,14 +15373,4 +15373,14 +15374,5 +15374,14 +15375,15 +15376,16 +15377,3 +15377,14 +15378,4 +15378,14 +15379,5 +15379,14 +15380,15 +15381,16 +15382,3 +15382,14 +15383,4 +15383,14 +15384,5 +15384,14 +15385,15 +15386,16 +15387,3 +15387,14 +15388,4 +15388,14 +15389,5 +15389,14 +15390,15 +15391,16 +15398,2 +15399,1 +15400,2 +15401,1 +15402,14 +15403,15 +15404,16 +15405,14 +15406,15 +15407,16 +15408,14 +15409,15 +15410,16 +15411,14 +15412,15 +15413,16 +15414,3 +15415,4 +15416,5 +15417,3 +15418,4 +15419,5 +15427,14 +15428,15 +15429,16 +15430,14 +15431,15 +15432,16 +15433,14 +15434,15 +15435,16 +15436,14 +15437,15 +15438,16 +15439,3 +15440,4 +15441,5 +15442,3 +15443,4 +15444,5 +15463,3 +15464,4 +15465,5 +15470,3 +15471,4 +15472,5 +15494,3 +15495,4 +15496,5 +15501,3 +15502,4 +15503,5 +15541,14 +15542,15 +15543,16 +15544,14 +15545,15 +15546,16 +15547,14 +15548,15 +15549,16 +15550,14 +15551,15 +15552,16 +15589,14 +15590,15 +15591,16 +15592,14 +15593,15 +15594,16 +15595,14 +15596,15 +15597,16 +15598,14 +15599,15 +15600,16 +15610,14 +15611,15 +15612,16 +15613,14 +15614,15 +15615,16 +15616,14 +15617,15 +15618,16 +15619,14 +15620,15 +15621,16 +15658,14 +15659,15 +15660,16 +15661,14 +15662,15 +15663,16 +15664,14 +15665,15 +15666,16 +15667,14 +15668,15 +15669,16 +15692,3 +15693,4 +15694,5 +15699,3 +15700,4 +15701,5 +15712,14 +15713,15 +15714,16 +15715,14 +15716,15 +15717,16 +15718,3 +15718,14 +15719,4 +15719,14 +15720,5 +15720,14 +15721,15 +15722,16 +15723,3 +15723,14 +15724,4 +15724,14 +15725,5 +15725,14 +15726,15 +15727,16 +15728,3 +15729,4 +15730,5 +15731,3 +15732,4 +15733,5 +15763,2 +15764,1 +15765,2 +15766,1 +15767,14 +15768,15 +15769,16 +15770,14 +15771,15 +15772,16 +15773,14 +15774,15 +15775,16 +15776,14 +15777,15 +15778,16 +15813,14 +15814,15 +15815,16 +15816,14 +15817,15 +15818,16 +15819,14 +15820,15 +15821,16 +15822,14 +15823,15 +15824,16 +15834,14 +15835,15 +15836,16 +15837,14 +15838,15 +15839,16 +15840,14 +15841,15 +15842,16 +15843,14 +15844,15 +15845,16 +15879,14 +15880,15 +15881,16 +15882,14 +15883,15 +15884,16 +15885,14 +15886,15 +15887,16 +15888,14 +15889,15 +15890,16 +15925,14 +15926,15 +15927,16 +15928,14 +15929,15 +15930,16 +15931,3 +15931,14 +15932,4 +15932,14 +15933,5 +15933,14 +15934,15 +15935,16 +15936,3 +15936,14 +15937,4 +15937,14 +15938,5 +15938,14 +15939,15 +15940,16 +15941,3 +15942,4 +15943,5 +15944,3 +15945,4 +15946,5 +15947,3 +15948,4 +15949,5 +15950,3 +15951,4 +15952,5 +15953,3 +15954,4 +15955,5 +15956,3 +15957,4 +15958,5 +16009,14 +16010,15 +16011,16 +16012,14 +16013,15 +16014,16 +16015,14 +16016,15 +16017,16 +16018,14 +16019,15 +16020,16 +16034,2 +16035,1 +16038,2 +16039,1 +16041,2 +16042,1 +16043,2 +16044,1 +16046,2 +16047,1 +16048,2 +16049,1 +16050,2 +16051,1 +16053,2 +16054,1 +16058,14 +16059,15 +16060,16 +16061,14 +16062,15 +16063,16 +16064,14 +16065,15 +16066,16 +16067,14 +16068,15 +16069,16 +16072,3 +16073,4 +16074,5 +16076,3 +16077,4 +16078,5 +16083,14 +16084,15 +16085,16 +16086,14 +16087,15 +16088,16 +16089,14 +16090,15 +16091,16 +16092,14 +16093,15 +16094,16 +16097,3 +16098,4 +16099,5 +16101,3 +16102,4 +16103,5 +16108,14 +16109,15 +16110,16 +16111,14 +16112,15 +16113,16 +16114,14 +16115,15 +16116,16 +16117,14 +16118,15 +16119,16 +16122,3 +16123,4 +16124,5 +16126,3 +16127,4 +16128,5 +16133,14 +16134,15 +16135,16 +16136,14 +16137,15 +16138,16 +16139,14 +16140,15 +16141,16 +16142,14 +16143,15 +16144,16 +16147,3 +16148,4 +16149,5 +16151,3 +16152,4 +16153,5 +16203,2 +16204,1 +16205,2 +16206,1 +16207,14 +16208,15 +16209,16 +16210,14 +16211,15 +16212,16 +16213,14 +16214,15 +16215,16 +16216,14 +16217,15 +16218,16 +16251,3 +16252,4 +16253,5 +16255,14 +16256,15 +16257,16 +16258,3 +16258,14 +16259,4 +16259,14 +16260,5 +16260,14 +16261,15 +16262,16 +16263,14 +16264,15 +16265,16 +16266,14 +16267,15 +16268,16 +16271,3 +16272,4 +16273,5 +16275,3 +16276,4 +16277,5 +16279,2 +16280,1 +16281,2 +16282,1 +16283,14 +16284,15 +16285,16 +16286,14 +16287,15 +16288,16 +16289,14 +16290,15 +16291,16 +16292,14 +16293,15 +16294,16 +16331,14 +16332,15 +16333,16 +16334,14 +16335,15 +16336,16 +16337,14 +16338,15 +16339,16 +16340,14 +16341,15 +16342,16 +16374,2 +16374,3 +16375,2 +16375,4 +16376,2 +16376,5 +16377,1 +16378,2 +16379,1 +16380,14 +16381,15 +16382,16 +16383,14 +16384,15 +16385,16 +16386,14 +16387,15 +16388,16 +16389,14 +16390,15 +16391,16 +16469,3 +16470,4 +16471,5 +16479,14 +16480,15 +16481,16 +16482,14 +16483,15 +16484,16 +16485,14 +16486,15 +16487,16 +16488,14 +16489,15 +16490,16 +16500,14 +16501,15 +16502,16 +16503,14 +16504,15 +16505,16 +16506,14 +16507,15 +16508,16 +16509,14 +16510,15 +16511,16 +16521,14 +16522,15 +16523,16 +16524,14 +16525,15 +16526,16 +16527,14 +16528,15 +16529,16 +16530,14 +16531,15 +16532,16 +16542,14 +16543,15 +16544,16 +16545,14 +16546,15 +16547,16 +16548,14 +16549,15 +16550,16 +16551,14 +16552,15 +16553,16 +16564,14 +16565,15 +16566,16 +16567,14 +16568,15 +16569,16 +16570,14 +16571,15 +16572,16 +16573,14 +16574,15 +16575,16 +16612,14 +16613,15 +16614,16 +16615,14 +16616,15 +16617,16 +16618,14 +16619,15 +16620,16 +16621,14 +16622,15 +16623,16 +16624,3 +16625,4 +16626,5 +16627,3 +16628,4 +16629,5 +16662,14 +16663,15 +16664,16 +16665,14 +16666,15 +16667,16 +16668,14 +16669,15 +16670,16 +16671,14 +16672,15 +16673,16 +16674,3 +16675,4 +16676,5 +16677,3 +16678,4 +16679,5 +16712,14 +16713,15 +16714,16 +16715,14 +16716,15 +16717,16 +16718,14 +16719,15 +16720,16 +16721,14 +16722,15 +16723,16 +16724,3 +16725,4 +16726,5 +16727,3 +16728,4 +16729,5 +16772,3 +16773,4 +16774,5 +16788,14 +16789,15 +16790,16 +16791,14 +16792,15 +16793,16 +16794,14 +16795,15 +16796,16 +16797,14 +16798,15 +16799,16 +16800,3 +16801,4 +16802,5 +16803,3 +16804,4 +16805,5 +16806,3 +16807,4 +16808,5 +16814,3 +16815,4 +16816,5 +16818,3 +16819,4 +16820,5 +16822,3 +16822,14 +16823,4 +16823,14 +16824,5 +16824,14 +16825,15 +16826,16 +16827,3 +16827,14 +16828,4 +16828,14 +16829,5 +16829,14 +16830,15 +16831,16 +16832,3 +16832,14 +16833,4 +16833,14 +16834,5 +16834,14 +16835,15 +16836,16 +16837,3 +16837,14 +16838,4 +16838,14 +16839,5 +16839,14 +16840,15 +16841,16 +16851,14 +16852,15 +16853,16 +16854,14 +16855,15 +16856,16 +16857,14 +16858,15 +16859,16 +16860,14 +16861,15 +16862,16 +16865,3 +16866,4 +16867,5 +16868,3 +16869,4 +16870,5 +16871,3 +16872,4 +16873,5 +16874,3 +16875,4 +16876,5 +16905,14 +16906,15 +16907,16 +16908,14 +16909,15 +16910,16 +16911,14 +16912,15 +16913,16 +16914,14 +16915,15 +16916,16 +16937,3 +16938,4 +16939,5 +16943,3 +16944,4 +16945,5 +16956,14 +16957,15 +16958,16 +16959,14 +16960,15 +16961,16 +16962,14 +16963,15 +16964,16 +16965,14 +16966,15 +16967,16 +16974,3 +16975,4 +16976,5 +16980,3 +16980,14 +16981,4 +16981,14 +16982,5 +16982,14 +16983,15 +16984,16 +16985,14 +16986,15 +16987,16 +16988,14 +16989,15 +16990,16 +16991,14 +16992,15 +16993,16 +17003,14 +17004,15 +17005,16 +17006,3 +17006,14 +17007,4 +17007,14 +17008,5 +17008,14 +17009,15 +17010,16 +17011,14 +17012,15 +17013,16 +17014,14 +17015,15 +17016,16 +17018,3 +17019,4 +17020,5 +17052,14 +17053,15 +17054,16 +17055,14 +17056,15 +17057,16 +17058,14 +17059,15 +17060,16 +17061,14 +17062,15 +17063,16 +17097,2 +17098,1 +17101,2 +17102,1 +17104,2 +17105,1 +17106,2 +17107,1 +17109,2 +17110,1 +17111,2 +17112,1 +17113,2 +17114,1 +17115,2 +17116,1 +17117,2 +17118,1 +17121,2 +17122,1 +17136,3 +17137,4 +17138,5 +17143,3 +17144,4 +17145,5 +17259,2 +17260,1 +17341,3 +17342,4 +17343,5 +17346,14 +17347,15 +17348,16 +17349,14 +17350,15 +17351,16 +17352,14 +17353,15 +17354,16 +17355,14 +17356,15 +17357,16 +17364,3 +17365,4 +17366,5 +17370,3 +17370,14 +17371,4 +17371,14 +17372,5 +17372,14 +17373,15 +17374,16 +17375,14 +17376,15 +17377,16 +17378,14 +17379,15 +17380,16 +17381,14 +17382,15 +17383,16 +17384,3 +17385,4 +17386,5 +17387,3 +17388,4 +17389,5 +17390,3 +17391,4 +17392,5 +17393,3 +17394,4 +17395,5 +17396,3 +17397,4 +17398,5 +17399,3 +17400,4 +17401,5 +17429,3 +17430,4 +17431,5 +17435,3 +17435,14 +17436,4 +17436,14 +17437,5 +17437,14 +17438,15 +17439,16 +17440,14 +17441,15 +17442,16 +17443,3 +17443,14 +17444,4 +17444,14 +17445,5 +17445,14 +17446,15 +17447,16 +17448,3 +17448,14 +17449,4 +17449,14 +17450,5 +17450,14 +17451,15 +17452,16 +17459,2 +17460,1 +17490,14 +17491,15 +17492,16 +17493,14 +17494,15 +17495,16 +17496,14 +17497,15 +17498,16 +17499,14 +17500,15 +17501,16 +17502,3 +17503,4 +17504,5 +17505,3 +17506,4 +17507,5 +17508,3 +17509,4 +17510,5 +17511,3 +17512,4 +17513,5 +17514,3 +17515,4 +17516,5 +17517,3 +17518,4 +17519,5 +17548,14 +17549,15 +17550,16 +17551,14 +17552,15 +17553,16 +17554,14 +17555,15 +17556,16 +17557,14 +17558,15 +17559,16 +17569,14 +17570,15 +17571,16 +17572,14 +17573,15 +17574,16 +17575,14 +17576,15 +17577,16 +17578,14 +17579,15 +17580,16 +17590,14 +17591,15 +17592,16 +17593,14 +17594,15 +17595,16 +17596,14 +17597,15 +17598,16 +17599,14 +17600,15 +17601,16 +17611,14 +17612,15 +17613,16 +17614,14 +17615,15 +17616,16 +17617,14 +17618,15 +17619,16 +17620,14 +17621,15 +17622,16 +17634,14 +17635,15 +17636,16 +17637,14 +17638,15 +17639,16 +17640,14 +17641,15 +17642,16 +17643,14 +17644,15 +17645,16 +17652,2 +17652,3 +17653,2 +17653,4 +17654,2 +17654,5 +17655,1 +17656,2 +17657,1 +17658,3 +17658,14 +17659,4 +17659,14 +17660,5 +17660,14 +17661,15 +17662,16 +17663,14 +17664,15 +17665,16 +17666,3 +17666,14 +17667,4 +17667,14 +17668,5 +17668,14 +17669,15 +17670,16 +17671,3 +17671,14 +17672,4 +17672,14 +17673,5 +17673,14 +17674,15 +17675,16 +17676,3 +17677,4 +17678,5 +17679,3 +17680,4 +17681,5 +17682,3 +17683,4 +17684,5 +17685,3 +17686,4 +17687,5 +17688,3 +17689,4 +17690,5 +17691,3 +17692,4 +17693,5 +17694,3 +17695,4 +17696,5 +17698,3 +17699,4 +17700,5 +17702,3 +17702,14 +17703,4 +17703,14 +17704,5 +17704,14 +17705,15 +17706,16 +17707,3 +17707,14 +17708,4 +17708,14 +17709,5 +17709,14 +17710,15 +17711,16 +17712,3 +17712,14 +17713,4 +17713,14 +17714,5 +17714,14 +17715,15 +17716,16 +17717,3 +17717,14 +17718,4 +17718,14 +17719,5 +17719,14 +17720,15 +17721,16 +17722,3 +17723,4 +17724,5 +17725,3 +17726,4 +17727,5 +17728,3 +17729,4 +17730,5 +17731,3 +17732,4 +17733,5 +17734,3 +17735,4 +17736,5 +17737,3 +17738,4 +17739,5 +17740,2 +17740,3 +17741,2 +17741,4 +17742,2 +17742,5 +17743,1 +17744,2 +17744,3 +17745,2 +17745,4 +17746,2 +17746,5 +17747,1 +17748,3 +17748,14 +17749,4 +17749,14 +17750,5 +17750,14 +17751,15 +17752,16 +17753,3 +17753,14 +17754,4 +17754,14 +17755,5 +17755,14 +17756,15 +17757,16 +17758,3 +17758,14 +17759,4 +17759,14 +17760,5 +17760,14 +17761,15 +17762,16 +17763,3 +17763,14 +17764,4 +17764,14 +17765,5 +17765,14 +17766,15 +17767,16 +17771,3 +17772,4 +17773,5 +17775,3 +17776,4 +17777,5 +17779,3 +17780,4 +17781,5 +17783,14 +17784,15 +17785,16 +17786,3 +17786,14 +17787,4 +17787,14 +17788,5 +17788,14 +17789,15 +17790,16 +17791,3 +17791,14 +17792,4 +17792,14 +17793,5 +17793,14 +17794,15 +17795,16 +17796,3 +17796,14 +17797,4 +17797,14 +17798,5 +17798,14 +17799,15 +17800,16 +17804,3 +17805,4 +17806,5 +17808,3 +17809,4 +17810,5 +17836,3 +17837,4 +17838,5 +17840,3 +17841,4 +17842,5 +17844,3 +17844,14 +17845,4 +17845,14 +17846,5 +17846,14 +17847,15 +17848,16 +17849,3 +17849,14 +17850,4 +17850,14 +17851,5 +17851,14 +17852,15 +17853,16 +17854,3 +17854,14 +17855,4 +17855,14 +17856,5 +17856,14 +17857,15 +17858,16 +17859,3 +17859,14 +17860,4 +17860,14 +17861,5 +17861,14 +17862,15 +17863,16 +17864,3 +17865,4 +17866,5 +17867,3 +17868,4 +17869,5 +17874,3 +17875,4 +17876,5 +17878,3 +17879,4 +17880,5 +17882,3 +17882,14 +17883,4 +17883,14 +17884,5 +17884,14 +17885,15 +17886,16 +17887,3 +17887,14 +17888,4 +17888,14 +17889,5 +17889,14 +17890,15 +17891,16 +17892,3 +17892,14 +17893,4 +17893,14 +17894,5 +17894,14 +17895,15 +17896,16 +17897,3 +17897,14 +17898,4 +17898,14 +17899,5 +17899,14 +17900,15 +17901,16 +17934,3 +17935,4 +17936,5 +17938,14 +17939,15 +17940,16 +17941,3 +17941,14 +17942,4 +17942,14 +17943,5 +17943,14 +17944,15 +17945,16 +17946,14 +17947,15 +17948,16 +17949,14 +17950,15 +17951,16 +17954,3 +17955,4 +17956,5 +17957,3 +17958,4 +17959,5 +17960,3 +17961,4 +17962,5 +17963,3 +17964,4 +17965,5 +17966,3 +17967,4 +17968,5 +17970,3 +17971,4 +17972,5 +17974,3 +17974,14 +17975,4 +17975,14 +17976,5 +17976,14 +17977,15 +17978,16 +17979,3 +17979,14 +17980,4 +17980,14 +17981,5 +17981,14 +17982,15 +17983,16 +17984,14 +17985,15 +17986,16 +17987,14 +17988,15 +17989,16 +17990,3 +17991,4 +17992,5 +17993,3 +17994,4 +17995,5 +17996,3 +17997,4 +17998,5 +18000,3 +18001,4 +18002,5 +18004,2 +18005,1 +18006,2 +18007,1 +18008,14 +18009,15 +18010,16 +18011,14 +18012,15 +18013,16 +18014,3 +18014,14 +18015,4 +18015,14 +18016,5 +18016,14 +18017,15 +18018,16 +18019,3 +18019,14 +18020,4 +18020,14 +18021,5 +18021,14 +18022,15 +18023,16 +18024,3 +18025,4 +18026,5 +18027,3 +18028,4 +18029,5 +18030,3 +18031,4 +18032,5 +18034,3 +18035,4 +18036,5 +18063,3 +18064,4 +18065,5 +18069,3 +18069,14 +18070,4 +18070,14 +18071,5 +18071,14 +18072,15 +18073,16 +18074,14 +18075,15 +18076,16 +18077,14 +18078,15 +18079,16 +18080,14 +18081,15 +18082,16 +18083,3 +18084,4 +18085,5 +18086,3 +18087,4 +18088,5 +18089,3 +18090,4 +18091,5 +18093,3 +18094,4 +18095,5 +18125,14 +18126,15 +18127,16 +18128,14 +18129,15 +18130,16 +18131,14 +18132,15 +18133,16 +18134,14 +18135,15 +18136,16 +18143,2 +18144,1 +18145,2 +18146,1 +18147,14 +18148,15 +18149,16 +18150,14 +18151,15 +18152,16 +18153,3 +18153,14 +18154,4 +18154,14 +18155,5 +18155,14 +18156,15 +18157,16 +18158,3 +18158,14 +18159,4 +18159,14 +18160,5 +18160,14 +18161,15 +18162,16 +18163,3 +18164,4 +18165,5 +18166,3 +18167,4 +18168,5 +18169,3 +18170,4 +18171,5 +18172,3 +18173,4 +18174,5 +18175,3 +18176,4 +18177,5 +18207,14 +18208,15 +18209,16 +18210,14 +18211,15 +18212,16 +18213,3 +18213,14 +18214,4 +18214,14 +18215,5 +18215,14 +18216,15 +18217,16 +18218,3 +18218,14 +18219,4 +18219,14 +18220,5 +18220,14 +18221,15 +18222,16 +18223,3 +18224,4 +18225,5 +18226,3 +18227,4 +18228,5 +18229,3 +18230,4 +18231,5 +18232,3 +18233,4 +18234,5 +18235,3 +18236,4 +18237,5 +18242,14 +18243,15 +18244,16 +18245,14 +18246,15 +18247,16 +18248,3 +18248,14 +18249,4 +18249,14 +18250,5 +18250,14 +18251,15 +18252,16 +18253,3 +18253,14 +18254,4 +18254,14 +18255,5 +18255,14 +18256,15 +18257,16 +18258,3 +18259,4 +18260,5 +18261,3 +18262,4 +18263,5 +18264,3 +18265,4 +18266,5 +18267,3 +18268,4 +18269,5 +18270,3 +18271,4 +18272,5 +18275,3 +18276,4 +18277,5 +18279,14 +18280,15 +18281,16 +18282,3 +18282,14 +18283,4 +18283,14 +18284,5 +18284,14 +18285,15 +18286,16 +18287,14 +18288,15 +18289,16 +18290,14 +18291,15 +18292,16 +18293,3 +18294,4 +18295,5 +18296,3 +18297,4 +18298,5 +18303,3 +18304,4 +18305,5 +18307,3 +18308,4 +18309,5 +18311,3 +18311,14 +18312,4 +18312,14 +18313,5 +18313,14 +18314,15 +18315,16 +18316,3 +18316,14 +18317,4 +18317,14 +18318,5 +18318,14 +18319,15 +18320,16 +18321,14 +18322,15 +18323,16 +18324,14 +18325,15 +18326,16 +18327,3 +18328,4 +18329,5 +18330,3 +18331,4 +18332,5 +18338,3 +18339,4 +18340,5 +18342,14 +18343,15 +18344,16 +18345,3 +18345,14 +18346,4 +18346,14 +18347,5 +18347,14 +18348,15 +18349,16 +18350,14 +18351,15 +18352,16 +18353,14 +18354,15 +18355,16 +18356,3 +18357,4 +18358,5 +18359,3 +18360,4 +18361,5 +18368,14 +18369,15 +18370,16 +18371,14 +18372,15 +18373,16 +18374,14 +18375,15 +18376,16 +18377,14 +18378,15 +18379,16 +18382,3 +18383,4 +18384,5 +18386,3 +18387,4 +18388,5 +18418,3 +18419,4 +18420,5 +18422,14 +18423,15 +18424,16 +18425,3 +18425,14 +18426,4 +18426,14 +18427,5 +18427,14 +18428,15 +18429,16 +18430,3 +18430,14 +18431,4 +18431,14 +18432,5 +18432,14 +18433,15 +18434,16 +18435,3 +18435,14 +18436,4 +18436,14 +18437,5 +18437,14 +18438,15 +18439,16 +18440,3 +18441,4 +18442,5 +18443,3 +18444,4 +18445,5 +18447,3 +18448,4 +18449,5 +18451,3 +18452,4 +18453,5 +18479,3 +18480,4 +18481,5 +18483,3 +18484,4 +18485,5 +18487,3 +18487,14 +18488,4 +18488,14 +18489,5 +18489,14 +18490,15 +18491,16 +18492,3 +18492,14 +18493,4 +18493,14 +18494,5 +18494,14 +18495,15 +18496,16 +18497,14 +18498,15 +18499,16 +18500,14 +18501,15 +18502,16 +18505,3 +18506,4 +18507,5 +18508,3 +18509,4 +18510,5 +18511,3 +18512,4 +18513,5 +18514,3 +18515,4 +18516,5 +18542,2 +18542,3 +18543,2 +18543,4 +18544,2 +18544,5 +18545,1 +18546,2 +18546,3 +18547,2 +18547,4 +18548,2 +18548,5 +18549,1 +18550,3 +18550,14 +18551,4 +18551,14 +18552,5 +18552,14 +18553,15 +18554,16 +18555,3 +18555,14 +18556,4 +18556,14 +18557,5 +18557,14 +18558,15 +18559,16 +18560,3 +18560,14 +18561,4 +18561,14 +18562,5 +18562,14 +18563,15 +18564,16 +18565,3 +18565,14 +18566,4 +18566,14 +18567,5 +18567,14 +18568,15 +18569,16 +18572,3 +18573,4 +18574,5 +18575,3 +18576,4 +18577,5 +18578,3 +18579,4 +18580,5 +18581,3 +18582,4 +18583,5 +18612,14 +18613,15 +18614,16 +18615,14 +18616,15 +18617,16 +18618,14 +18619,15 +18620,16 +18621,14 +18622,15 +18623,16 +18657,14 +18658,15 +18659,16 +18660,14 +18661,15 +18662,16 +18663,14 +18664,15 +18665,16 +18666,14 +18667,15 +18668,16 +18678,14 +18679,15 +18680,16 +18681,14 +18682,15 +18683,16 +18684,14 +18685,15 +18686,16 +18687,14 +18688,15 +18689,16 +18699,14 +18700,15 +18701,16 +18702,14 +18703,15 +18704,16 +18705,14 +18706,15 +18707,16 +18708,14 +18709,15 +18710,16 +18719,3 +18720,4 +18721,5 +18723,3 +18724,4 +18725,5 +18727,3 +18727,14 +18728,4 +18728,14 +18729,5 +18729,14 +18730,15 +18731,16 +18732,3 +18732,14 +18733,4 +18733,14 +18734,5 +18734,14 +18735,15 +18736,16 +18737,3 +18737,14 +18738,4 +18738,14 +18739,5 +18739,14 +18740,15 +18741,16 +18742,3 +18742,14 +18743,4 +18743,14 +18744,5 +18744,14 +18745,15 +18746,16 +18747,3 +18748,4 +18749,5 +18750,3 +18751,4 +18752,5 +18753,3 +18754,4 +18755,5 +18756,3 +18757,4 +18758,5 +18759,3 +18760,4 +18761,5 +18762,3 +18763,4 +18764,5 +18765,2 +18765,3 +18766,2 +18766,4 +18767,2 +18767,5 +18768,1 +18769,2 +18769,3 +18770,2 +18770,4 +18771,2 +18771,5 +18772,1 +18773,3 +18773,14 +18774,4 +18774,14 +18775,5 +18775,14 +18776,15 +18777,16 +18778,3 +18778,14 +18779,4 +18779,14 +18780,5 +18780,14 +18781,15 +18782,16 +18783,3 +18783,14 +18784,4 +18784,14 +18785,5 +18785,14 +18786,15 +18787,16 +18788,3 +18788,14 +18789,4 +18789,14 +18790,5 +18790,14 +18791,15 +18792,16 +18793,3 +18794,4 +18795,5 +18796,3 +18797,4 +18798,5 +18799,3 +18800,4 +18801,5 +18803,3 +18804,4 +18805,5 +18807,3 +18808,4 +18809,5 +18811,3 +18812,4 +18813,5 +18815,14 +18816,15 +18817,16 +18818,3 +18818,14 +18819,4 +18819,14 +18820,5 +18820,14 +18821,15 +18822,16 +18823,14 +18824,15 +18825,16 +18826,14 +18827,15 +18828,16 +18833,3 +18834,4 +18835,5 +18836,3 +18837,4 +18838,5 +18856,3 +18857,4 +18858,5 +18863,3 +18864,4 +18865,5 +18876,14 +18877,15 +18878,16 +18879,14 +18880,15 +18881,16 +18882,14 +18883,15 +18884,16 +18885,14 +18886,15 +18887,16 +18890,3 +18891,4 +18892,5 +18893,3 +18894,4 +18895,5 +18896,3 +18897,4 +18898,5 +18899,3 +18900,4 +18901,5 +18917,3 +18918,4 +18919,5 +18924,3 +18925,4 +18926,5 +18937,14 +18938,15 +18939,16 +18940,14 +18941,15 +18942,16 +18943,14 +18944,15 +18945,16 +18946,14 +18947,15 +18948,16 +18972,3 +18973,4 +18974,5 +18979,3 +18980,4 +18981,5 +19016,3 +19017,4 +19018,5 +19020,3 +19021,4 +19022,5 +19024,3 +19024,14 +19025,4 +19025,14 +19026,5 +19026,14 +19027,15 +19028,16 +19029,3 +19029,14 +19030,4 +19030,14 +19031,5 +19031,14 +19032,15 +19033,16 +19034,3 +19034,14 +19035,4 +19035,14 +19036,5 +19036,14 +19037,15 +19038,16 +19039,3 +19039,14 +19040,4 +19040,14 +19041,5 +19041,14 +19042,15 +19043,16 +19044,3 +19045,4 +19046,5 +19047,3 +19048,4 +19049,5 +19050,3 +19051,4 +19052,5 +19053,3 +19054,4 +19055,5 +19056,3 +19057,4 +19058,5 +19059,3 +19060,4 +19061,5 +19076,3 +19077,4 +19078,5 +19083,3 +19084,4 +19085,5 +19093,3 +19094,4 +19095,5 +19097,3 +19098,4 +19099,5 +19101,3 +19101,14 +19102,4 +19102,14 +19103,5 +19103,14 +19104,15 +19105,16 +19106,3 +19106,14 +19107,4 +19107,14 +19108,5 +19108,14 +19109,15 +19110,16 +19111,3 +19111,14 +19112,4 +19112,14 +19113,5 +19113,14 +19114,15 +19115,16 +19116,3 +19116,14 +19117,4 +19117,14 +19118,5 +19118,14 +19119,15 +19120,16 +19121,3 +19122,4 +19123,5 +19124,3 +19125,4 +19126,5 +19127,3 +19128,4 +19129,5 +19130,3 +19131,4 +19132,5 +19133,3 +19134,4 +19135,5 +19136,3 +19137,4 +19138,5 +19164,3 +19165,4 +19166,5 +19168,3 +19169,4 +19170,5 +19172,3 +19172,14 +19173,4 +19173,14 +19174,5 +19174,14 +19175,15 +19176,16 +19177,3 +19177,14 +19178,4 +19178,14 +19179,5 +19179,14 +19180,15 +19181,16 +19182,14 +19183,15 +19184,16 +19185,14 +19186,15 +19187,16 +19188,3 +19189,4 +19190,5 +19191,3 +19192,4 +19193,5 +19194,3 +19195,4 +19196,5 +19197,3 +19198,4 +19199,5 +19200,3 +19201,4 +19202,5 +19203,3 +19204,4 +19205,5 +19238,2 +19239,1 +19242,2 +19243,1 +19245,2 +19246,1 +19247,2 +19248,1 +19250,2 +19251,1 +19252,2 +19253,1 +19254,2 +19255,1 +19256,2 +19257,1 +19258,2 +19259,1 +19260,3 +19261,4 +19262,5 +19264,3 +19265,4 +19266,5 +19268,3 +19268,14 +19269,4 +19269,14 +19270,5 +19270,14 +19271,15 +19272,16 +19273,3 +19273,14 +19274,4 +19274,14 +19275,5 +19275,14 +19276,15 +19277,16 +19278,3 +19278,14 +19279,4 +19279,14 +19280,5 +19280,14 +19281,15 +19282,16 +19283,3 +19283,14 +19284,4 +19284,14 +19285,5 +19285,14 +19286,15 +19287,16 +19290,3 +19291,4 +19292,5 +19294,3 +19295,4 +19296,5 +19298,3 +19299,4 +19300,5 +19302,3 +19303,4 +19304,5 +19306,3 +19306,14 +19307,4 +19307,14 +19308,5 +19308,14 +19309,15 +19310,16 +19311,3 +19311,14 +19312,4 +19312,14 +19313,5 +19313,14 +19314,15 +19315,16 +19316,3 +19316,14 +19317,4 +19317,14 +19318,5 +19318,14 +19319,15 +19320,16 +19321,3 +19321,14 +19322,4 +19322,14 +19323,5 +19323,14 +19324,15 +19325,16 +19328,3 +19329,4 +19330,5 +19332,3 +19333,4 +19334,5 +19336,3 +19337,4 +19338,5 +19342,3 +19342,14 +19343,4 +19343,14 +19344,5 +19344,14 +19345,15 +19346,16 +19347,14 +19348,15 +19349,16 +19350,3 +19350,14 +19351,4 +19351,14 +19352,5 +19352,14 +19353,15 +19354,16 +19355,3 +19355,14 +19356,4 +19356,14 +19357,5 +19357,14 +19358,15 +19359,16 +19360,3 +19361,4 +19362,5 +19363,3 +19364,4 +19365,5 +19366,3 +19367,4 +19368,5 +19369,3 +19370,4 +19371,5 +19372,3 +19373,4 +19374,5 +19375,3 +19376,4 +19377,5 +19385,2 +19386,1 +19389,2 +19390,1 +19392,2 +19393,1 +19394,2 +19395,1 +19397,2 +19398,1 +19399,2 +19400,1 +19401,2 +19402,1 +19404,2 +19405,1 +19408,14 +19409,15 +19410,16 +19411,14 +19412,15 +19413,16 +19414,14 +19415,15 +19416,16 +19417,14 +19418,15 +19419,16 +19504,14 +19505,15 +19506,16 +19507,14 +19508,15 +19509,16 +19510,14 +19511,15 +19512,16 +19513,14 +19514,15 +19515,16 +19550,14 +19551,15 +19552,16 +19553,14 +19554,15 +19555,16 +19556,14 +19557,15 +19558,16 +19559,14 +19560,15 +19561,16 +19596,14 +19597,15 +19598,16 +19599,14 +19600,15 +19601,16 +19602,14 +19603,15 +19604,16 +19605,14 +19606,15 +19607,16 +19628,3 +19629,4 +19630,5 +19635,3 +19636,4 +19637,5 +19645,3 +19646,4 +19647,5 +19651,3 +19651,14 +19652,4 +19652,14 +19653,5 +19653,14 +19654,15 +19655,16 +19656,14 +19657,15 +19658,16 +19659,3 +19659,14 +19660,4 +19660,14 +19661,5 +19661,14 +19662,15 +19663,16 +19664,3 +19664,14 +19665,4 +19665,14 +19666,5 +19666,14 +19667,15 +19668,16 +19671,3 +19672,4 +19673,5 +19674,3 +19675,4 +19676,5 +19677,3 +19678,4 +19679,5 +19680,3 +19681,4 +19682,5 +19685,14 +19686,15 +19687,16 +19688,14 +19689,15 +19690,16 +19691,14 +19692,15 +19693,16 +19694,14 +19695,15 +19696,16 +19730,14 +19731,15 +19732,16 +19733,14 +19734,15 +19735,16 +19736,14 +19737,15 +19738,16 +19739,14 +19740,15 +19741,16 +19773,3 +19774,4 +19775,5 +19777,3 +19778,4 +19779,5 +19781,3 +19781,14 +19782,4 +19782,14 +19783,5 +19783,14 +19784,15 +19785,16 +19786,3 +19786,14 +19787,4 +19787,14 +19788,5 +19788,14 +19789,15 +19790,16 +19791,3 +19791,14 +19792,4 +19792,14 +19793,5 +19793,14 +19794,15 +19795,16 +19796,3 +19796,14 +19797,4 +19797,14 +19798,5 +19798,14 +19799,15 +19800,16 +19801,3 +19802,4 +19803,5 +19804,3 +19805,4 +19806,5 +19836,2 +19837,1 +19838,2 +19839,1 +19840,14 +19841,15 +19842,16 +19843,14 +19844,15 +19845,16 +19846,14 +19847,15 +19848,16 +19849,14 +19850,15 +19851,16 +19872,3 +19873,4 +19874,5 +19879,3 +19880,4 +19881,5 +19889,2 +19890,1 +19891,2 +19892,1 +19893,14 +19894,15 +19895,16 +19896,14 +19897,15 +19898,16 +19899,14 +19900,15 +19901,16 +19902,14 +19903,15 +19904,16 +19907,3 +19908,4 +19909,5 +19911,3 +19912,4 +19913,5 +19940,3 +19941,4 +19942,5 +19944,3 +19945,4 +19946,5 +19948,3 +19948,14 +19949,4 +19949,14 +19950,5 +19950,14 +19951,15 +19952,16 +19953,3 +19953,14 +19954,4 +19954,14 +19955,5 +19955,14 +19956,15 +19957,16 +19958,3 +19958,14 +19959,4 +19959,14 +19960,5 +19960,14 +19961,15 +19962,16 +19963,3 +19963,14 +19964,4 +19964,14 +19965,5 +19965,14 +19966,15 +19967,16 +19968,3 +19969,4 +19970,5 +19971,3 +19972,4 +19973,5 +19974,3 +19975,4 +19976,5 +19977,3 +19978,4 +19979,5 +19980,3 +19981,4 +19982,5 +19983,3 +19984,4 +19985,5 +20001,3 +20001,14 +20002,4 +20002,14 +20003,5 +20003,14 +20004,15 +20005,16 +20006,3 +20006,14 +20007,4 +20007,14 +20008,5 +20008,14 +20009,15 +20010,16 +20011,3 +20011,14 +20012,4 +20012,14 +20013,5 +20013,14 +20014,15 +20015,16 +20016,3 +20016,14 +20017,4 +20017,14 +20018,5 +20018,14 +20019,15 +20020,16 +20024,3 +20025,4 +20026,5 +20028,3 +20029,4 +20030,5 +20031,3 +20032,4 +20033,5 +20037,3 +20037,14 +20038,4 +20038,14 +20039,5 +20039,14 +20040,15 +20041,16 +20042,14 +20043,15 +20044,16 +20045,3 +20045,14 +20046,4 +20046,14 +20047,5 +20047,14 +20048,15 +20049,16 +20050,3 +20050,14 +20051,4 +20051,14 +20052,5 +20052,14 +20053,15 +20054,16 +20057,3 +20058,4 +20059,5 +20060,3 +20061,4 +20062,5 +20063,3 +20064,4 +20065,5 +20066,3 +20067,4 +20068,5 +20097,14 +20098,15 +20099,16 +20100,14 +20101,15 +20102,16 +20103,14 +20104,15 +20105,16 +20106,14 +20107,15 +20108,16 +20118,14 +20119,15 +20120,16 +20121,14 +20122,15 +20123,16 +20124,14 +20125,15 +20126,16 +20127,14 +20128,15 +20129,16 +20130,3 +20131,4 +20132,5 +20133,3 +20134,4 +20135,5 +20137,3 +20138,4 +20139,5 +20141,3 +20142,4 +20143,5 +20144,3 +20145,4 +20146,5 +20148,3 +20149,4 +20150,5 +20152,3 +20152,14 +20153,4 +20153,14 +20154,5 +20154,14 +20155,15 +20156,16 +20157,3 +20157,14 +20158,4 +20158,14 +20159,5 +20159,14 +20160,15 +20161,16 +20162,3 +20162,14 +20163,4 +20163,14 +20164,5 +20164,14 +20165,15 +20166,16 +20167,3 +20167,14 +20168,4 +20168,14 +20169,5 +20169,14 +20170,15 +20171,16 +20178,3 +20179,4 +20180,5 +20182,3 +20183,4 +20184,5 +20186,3 +20186,14 +20187,4 +20187,14 +20188,5 +20188,14 +20189,15 +20190,16 +20191,3 +20191,14 +20192,4 +20192,14 +20193,5 +20193,14 +20194,15 +20195,16 +20196,3 +20196,14 +20197,4 +20197,14 +20198,5 +20198,14 +20199,15 +20200,16 +20201,3 +20201,14 +20202,4 +20202,14 +20203,5 +20203,14 +20204,15 +20205,16 +20212,3 +20213,4 +20214,5 +20216,3 +20217,4 +20218,5 +20220,3 +20220,14 +20221,4 +20221,14 +20222,5 +20222,14 +20223,15 +20224,16 +20225,3 +20225,14 +20226,4 +20226,14 +20227,5 +20227,14 +20228,15 +20229,16 +20230,3 +20230,14 +20231,4 +20231,14 +20232,5 +20232,14 +20233,15 +20234,16 +20235,3 +20235,14 +20236,4 +20236,14 +20237,5 +20237,14 +20238,15 +20239,16 +20246,3 +20247,4 +20248,5 +20250,3 +20251,4 +20252,5 +20254,3 +20254,14 +20255,4 +20255,14 +20256,5 +20256,14 +20257,15 +20258,16 +20259,3 +20259,14 +20260,4 +20260,14 +20261,5 +20261,14 +20262,15 +20263,16 +20264,3 +20264,14 +20265,4 +20265,14 +20266,5 +20266,14 +20267,15 +20268,16 +20269,3 +20269,14 +20270,4 +20270,14 +20271,5 +20271,14 +20272,15 +20273,16 +20280,3 +20281,4 +20282,5 +20284,3 +20285,4 +20286,5 +20288,3 +20288,14 +20289,4 +20289,14 +20290,5 +20290,14 +20291,15 +20292,16 +20293,3 +20293,14 +20294,4 +20294,14 +20295,5 +20295,14 +20296,15 +20297,16 +20298,3 +20298,14 +20299,4 +20299,14 +20300,5 +20300,14 +20301,15 +20302,16 +20303,3 +20303,14 +20304,4 +20304,14 +20305,5 +20305,14 +20306,15 +20307,16 +20314,3 +20315,4 +20316,5 +20318,3 +20319,4 +20320,5 +20322,3 +20322,14 +20323,4 +20323,14 +20324,5 +20324,14 +20325,15 +20326,16 +20327,3 +20327,14 +20328,4 +20328,14 +20329,5 +20329,14 +20330,15 +20331,16 +20332,3 +20332,14 +20333,4 +20333,14 +20334,5 +20334,14 +20335,15 +20336,16 +20337,3 +20337,14 +20338,4 +20338,14 +20339,5 +20339,14 +20340,15 +20341,16 +20348,3 +20349,4 +20350,5 +20352,3 +20353,4 +20354,5 +20356,3 +20356,14 +20357,4 +20357,14 +20358,5 +20358,14 +20359,15 +20360,16 +20361,3 +20361,14 +20362,4 +20362,14 +20363,5 +20363,14 +20364,15 +20365,16 +20366,3 +20366,14 +20367,4 +20367,14 +20368,5 +20368,14 +20369,15 +20370,16 +20371,3 +20371,14 +20372,4 +20372,14 +20373,5 +20373,14 +20374,15 +20375,16 +20382,3 +20383,4 +20384,5 +20386,3 +20387,4 +20388,5 +20390,3 +20390,14 +20391,4 +20391,14 +20392,5 +20392,14 +20393,15 +20394,16 +20395,3 +20395,14 +20396,4 +20396,14 +20397,5 +20397,14 +20398,15 +20399,16 +20400,3 +20400,14 +20401,4 +20401,14 +20402,5 +20402,14 +20403,15 +20404,16 +20405,3 +20405,14 +20406,4 +20406,14 +20407,5 +20407,14 +20408,15 +20409,16 +20416,2 +20417,1 +20418,2 +20419,1 +20420,3 +20420,14 +20421,4 +20421,14 +20422,5 +20422,14 +20423,15 +20424,16 +20425,14 +20426,15 +20427,16 +20428,14 +20429,15 +20430,16 +20431,14 +20432,15 +20433,16 +20434,3 +20435,4 +20436,5 +20437,3 +20438,4 +20439,5 +20447,3 +20447,14 +20448,4 +20448,14 +20449,5 +20449,14 +20450,15 +20451,16 +20452,14 +20453,15 +20454,16 +20455,14 +20456,15 +20457,16 +20458,14 +20459,15 +20460,16 +20461,3 +20462,4 +20463,5 +20464,3 +20465,4 +20466,5 +20485,3 +20486,4 +20487,5 +20492,3 +20493,4 +20494,5 +20516,3 +20517,4 +20518,5 +20523,3 +20524,4 +20525,5 +20563,14 +20564,15 +20565,16 +20566,14 +20567,15 +20568,16 +20569,14 +20570,15 +20571,16 +20572,14 +20573,15 +20574,16 +20611,14 +20612,15 +20613,16 +20614,14 +20615,15 +20616,16 +20617,14 +20618,15 +20619,16 +20620,14 +20621,15 +20622,16 +20632,14 +20633,15 +20634,16 +20635,14 +20636,15 +20637,16 +20638,14 +20639,15 +20640,16 +20641,14 +20642,15 +20643,16 +20680,14 +20681,15 +20682,16 +20683,14 +20684,15 +20685,16 +20686,14 +20687,15 +20688,16 +20689,14 +20690,15 +20691,16 +20714,3 +20715,4 +20716,5 +20721,3 +20722,4 +20723,5 +20732,3 +20733,4 +20734,5 +20736,14 +20737,15 +20738,16 +20739,3 +20739,14 +20740,4 +20740,14 +20741,5 +20741,14 +20742,15 +20743,16 +20744,14 +20745,15 +20746,16 +20747,14 +20748,15 +20749,16 +20750,3 +20751,4 +20752,5 +20753,3 +20754,4 +20755,5 +20785,2 +20786,1 +20787,2 +20788,1 +20789,14 +20790,15 +20791,16 +20792,14 +20793,15 +20794,16 +20795,14 +20796,15 +20797,16 +20798,14 +20799,15 +20800,16 +20835,14 +20836,15 +20837,16 +20838,14 +20839,15 +20840,16 +20841,14 +20842,15 +20843,16 +20844,14 +20845,15 +20846,16 +20856,14 +20857,15 +20858,16 +20859,14 +20860,15 +20861,16 +20862,14 +20863,15 +20864,16 +20865,14 +20866,15 +20867,16 +20901,14 +20902,15 +20903,16 +20904,14 +20905,15 +20906,16 +20907,14 +20908,15 +20909,16 +20910,14 +20911,15 +20912,16 +20947,14 +20948,15 +20949,16 +20950,14 +20951,15 +20952,16 +20953,3 +20953,14 +20954,4 +20954,14 +20955,5 +20955,14 +20956,15 +20957,16 +20958,3 +20958,14 +20959,4 +20959,14 +20960,5 +20960,14 +20961,15 +20962,16 +20963,3 +20964,4 +20965,5 +20966,3 +20967,4 +20968,5 +20969,3 +20970,4 +20971,5 +20972,3 +20973,4 +20974,5 +20975,3 +20976,4 +20977,5 +20978,3 +20979,4 +20980,5 +21031,14 +21032,15 +21033,16 +21034,14 +21035,15 +21036,16 +21037,14 +21038,15 +21039,16 +21040,14 +21041,15 +21042,16 +21056,2 +21057,1 +21060,2 +21061,1 +21063,2 +21064,1 +21065,2 +21066,1 +21068,2 +21069,1 +21070,2 +21071,1 +21072,2 +21073,1 +21075,2 +21076,1 +21080,14 +21081,15 +21082,16 +21083,14 +21084,15 +21085,16 +21086,14 +21087,15 +21088,16 +21089,14 +21090,15 +21091,16 +21094,3 +21095,4 +21096,5 +21098,3 +21099,4 +21100,5 +21105,14 +21106,15 +21107,16 +21108,14 +21109,15 +21110,16 +21111,14 +21112,15 +21113,16 +21114,14 +21115,15 +21116,16 +21119,3 +21120,4 +21121,5 +21123,3 +21124,4 +21125,5 +21130,14 +21131,15 +21132,16 +21133,14 +21134,15 +21135,16 +21136,14 +21137,15 +21138,16 +21139,14 +21140,15 +21141,16 +21144,3 +21145,4 +21146,5 +21148,3 +21149,4 +21150,5 +21155,14 +21156,15 +21157,16 +21158,14 +21159,15 +21160,16 +21161,14 +21162,15 +21163,16 +21164,14 +21165,15 +21166,16 +21169,3 +21170,4 +21171,5 +21173,3 +21174,4 +21175,5 +21225,2 +21226,1 +21227,2 +21228,1 +21229,14 +21230,15 +21231,16 +21232,14 +21233,15 +21234,16 +21235,14 +21236,15 +21237,16 +21238,14 +21239,15 +21240,16 +21273,3 +21274,4 +21275,5 +21277,14 +21278,15 +21279,16 +21280,3 +21280,14 +21281,4 +21281,14 +21282,5 +21282,14 +21283,15 +21284,16 +21285,14 +21286,15 +21287,16 +21288,14 +21289,15 +21290,16 +21293,3 +21294,4 +21295,5 +21297,3 +21298,4 +21299,5 +21301,2 +21302,1 +21303,2 +21304,1 +21305,14 +21306,15 +21307,16 +21308,14 +21309,15 +21310,16 +21311,14 +21312,15 +21313,16 +21314,14 +21315,15 +21316,16 +21353,14 +21354,15 +21355,16 +21356,14 +21357,15 +21358,16 +21359,14 +21360,15 +21361,16 +21362,14 +21363,15 +21364,16 +21396,2 +21396,3 +21397,2 +21397,4 +21398,2 +21398,5 +21399,1 +21400,2 +21401,1 +21402,14 +21403,15 +21404,16 +21405,14 +21406,15 +21407,16 +21408,14 +21409,15 +21410,16 +21411,14 +21412,15 +21413,16 +21491,3 +21492,4 +21493,5 +21501,14 +21502,15 +21503,16 +21504,14 +21505,15 +21506,16 +21507,14 +21508,15 +21509,16 +21510,14 +21511,15 +21512,16 +21522,14 +21523,15 +21524,16 +21525,14 +21526,15 +21527,16 +21528,14 +21529,15 +21530,16 +21531,14 +21532,15 +21533,16 +21543,14 +21544,15 +21545,16 +21546,14 +21547,15 +21548,16 +21549,14 +21550,15 +21551,16 +21552,14 +21553,15 +21554,16 +21564,14 +21565,15 +21566,16 +21567,14 +21568,15 +21569,16 +21570,14 +21571,15 +21572,16 +21573,14 +21574,15 +21575,16 +21586,14 +21587,15 +21588,16 +21589,14 +21590,15 +21591,16 +21592,14 +21593,15 +21594,16 +21595,14 +21596,15 +21597,16 +21634,14 +21635,15 +21636,16 +21637,14 +21638,15 +21639,16 +21640,14 +21641,15 +21642,16 +21643,14 +21644,15 +21645,16 +21646,3 +21647,4 +21648,5 +21649,3 +21650,4 +21651,5 +21684,14 +21685,15 +21686,16 +21687,14 +21688,15 +21689,16 +21690,14 +21691,15 +21692,16 +21693,14 +21694,15 +21695,16 +21696,3 +21697,4 +21698,5 +21699,3 +21700,4 +21701,5 +21734,14 +21735,15 +21736,16 +21737,14 +21738,15 +21739,16 +21740,14 +21741,15 +21742,16 +21743,14 +21744,15 +21745,16 +21746,3 +21747,4 +21748,5 +21749,3 +21750,4 +21751,5 +21794,3 +21795,4 +21796,5 +21810,14 +21811,15 +21812,16 +21813,14 +21814,15 +21815,16 +21816,14 +21817,15 +21818,16 +21819,14 +21820,15 +21821,16 +21822,3 +21823,4 +21824,5 +21825,3 +21826,4 +21827,5 +21828,3 +21829,4 +21830,5 +21836,3 +21837,4 +21838,5 +21840,3 +21841,4 +21842,5 +21844,3 +21844,14 +21845,4 +21845,14 +21846,5 +21846,14 +21847,15 +21848,16 +21849,3 +21849,14 +21850,4 +21850,14 +21851,5 +21851,14 +21852,15 +21853,16 +21854,3 +21854,14 +21855,4 +21855,14 +21856,5 +21856,14 +21857,15 +21858,16 +21859,3 +21859,14 +21860,4 +21860,14 +21861,5 +21861,14 +21862,15 +21863,16 +21873,14 +21874,15 +21875,16 +21876,14 +21877,15 +21878,16 +21879,14 +21880,15 +21881,16 +21882,14 +21883,15 +21884,16 +21887,3 +21888,4 +21889,5 +21890,3 +21891,4 +21892,5 +21893,3 +21894,4 +21895,5 +21896,3 +21897,4 +21898,5 +21927,14 +21928,15 +21929,16 +21930,14 +21931,15 +21932,16 +21933,14 +21934,15 +21935,16 +21936,14 +21937,15 +21938,16 +21959,3 +21960,4 +21961,5 +21965,3 +21966,4 +21967,5 +21978,14 +21979,15 +21980,16 +21981,14 +21982,15 +21983,16 +21984,14 +21985,15 +21986,16 +21987,14 +21988,15 +21989,16 +21996,3 +21997,4 +21998,5 +22002,3 +22002,14 +22003,4 +22003,14 +22004,5 +22004,14 +22005,15 +22006,16 +22007,14 +22008,15 +22009,16 +22010,14 +22011,15 +22012,16 +22013,14 +22014,15 +22015,16 +22025,14 +22026,15 +22027,16 +22028,3 +22028,14 +22029,4 +22029,14 +22030,5 +22030,14 +22031,15 +22032,16 +22033,14 +22034,15 +22035,16 +22036,14 +22037,15 +22038,16 +22040,3 +22041,4 +22042,5 +22074,14 +22075,15 +22076,16 +22077,14 +22078,15 +22079,16 +22080,14 +22081,15 +22082,16 +22083,14 +22084,15 +22085,16 +22119,2 +22120,1 +22123,2 +22124,1 +22126,2 +22127,1 +22128,2 +22129,1 +22131,2 +22132,1 +22133,2 +22134,1 +22135,2 +22136,1 +22137,2 +22138,1 +22139,2 +22140,1 +22143,2 +22144,1 +22158,3 +22159,4 +22160,5 +22165,3 +22166,4 +22167,5 +22281,2 +22282,1 +22363,3 +22364,4 +22365,5 +22368,14 +22369,15 +22370,16 +22371,14 +22372,15 +22373,16 +22374,14 +22375,15 +22376,16 +22377,14 +22378,15 +22379,16 +22386,3 +22387,4 +22388,5 +22392,3 +22392,14 +22393,4 +22393,14 +22394,5 +22394,14 +22395,15 +22396,16 +22397,14 +22398,15 +22399,16 +22400,14 +22401,15 +22402,16 +22403,14 +22404,15 +22405,16 +22408,3 +22409,4 +22410,5 +22412,3 +22413,4 +22414,5 +22443,3 +22444,4 +22445,5 +22449,3 +22449,14 +22450,4 +22450,14 +22451,5 +22451,14 +22452,15 +22453,16 +22454,14 +22455,15 +22456,16 +22457,3 +22457,14 +22458,4 +22458,14 +22459,5 +22459,14 +22460,15 +22461,16 +22462,3 +22462,14 +22463,4 +22463,14 +22464,5 +22464,14 +22465,15 +22466,16 +22467,3 +22468,4 +22469,5 +22470,3 +22471,4 +22472,5 +22474,3 +22475,4 +22476,5 +22478,3 +22479,4 +22480,5 +22481,2 +22482,1 +22512,14 +22513,15 +22514,16 +22515,14 +22516,15 +22517,16 +22518,14 +22519,15 +22520,16 +22521,14 +22522,15 +22523,16 +22524,3 +22525,4 +22526,5 +22527,3 +22528,4 +22529,5 +22530,3 +22531,4 +22532,5 +22533,3 +22534,4 +22535,5 +22536,3 +22537,4 +22538,5 +22539,3 +22540,4 +22541,5 +22570,14 +22571,15 +22572,16 +22573,14 +22574,15 +22575,16 +22576,14 +22577,15 +22578,16 +22579,14 +22580,15 +22581,16 +22591,14 +22592,15 +22593,16 +22594,14 +22595,15 +22596,16 +22597,14 +22598,15 +22599,16 +22600,14 +22601,15 +22602,16 +22612,14 +22613,15 +22614,16 +22615,14 +22616,15 +22617,16 +22618,14 +22619,15 +22620,16 +22621,14 +22622,15 +22623,16 +22633,14 +22634,15 +22635,16 +22636,14 +22637,15 +22638,16 +22639,14 +22640,15 +22641,16 +22642,14 +22643,15 +22644,16 +22656,14 +22657,15 +22658,16 +22659,14 +22660,15 +22661,16 +22662,14 +22663,15 +22664,16 +22665,14 +22666,15 +22667,16 +22674,2 +22674,3 +22675,2 +22675,4 +22676,2 +22676,5 +22677,1 +22678,2 +22679,1 +22680,3 +22680,14 +22681,4 +22681,14 +22682,5 +22682,14 +22683,15 +22684,16 +22685,14 +22686,15 +22687,16 +22688,3 +22688,14 +22689,4 +22689,14 +22690,5 +22690,14 +22691,15 +22692,16 +22693,3 +22693,14 +22694,4 +22694,14 +22695,5 +22695,14 +22696,15 +22697,16 +22698,3 +22699,4 +22700,5 +22701,3 +22702,4 +22703,5 +22704,3 +22705,4 +22706,5 +22707,3 +22708,4 +22709,5 +22710,3 +22711,4 +22712,5 +22713,3 +22714,4 +22715,5 +22716,3 +22717,4 +22718,5 +22720,3 +22721,4 +22722,5 +22724,3 +22724,14 +22725,4 +22725,14 +22726,5 +22726,14 +22727,15 +22728,16 +22729,3 +22729,14 +22730,4 +22730,14 +22731,5 +22731,14 +22732,15 +22733,16 +22734,3 +22734,14 +22735,4 +22735,14 +22736,5 +22736,14 +22737,15 +22738,16 +22739,3 +22739,14 +22740,4 +22740,14 +22741,5 +22741,14 +22742,15 +22743,16 +22744,3 +22745,4 +22746,5 +22747,3 +22748,4 +22749,5 +22750,3 +22751,4 +22752,5 +22753,3 +22754,4 +22755,5 +22756,3 +22757,4 +22758,5 +22760,2 +22760,3 +22761,2 +22761,4 +22762,2 +22762,5 +22763,1 +22764,2 +22764,3 +22765,2 +22765,4 +22766,2 +22766,5 +22767,1 +22768,3 +22768,14 +22769,4 +22769,14 +22770,5 +22770,14 +22771,15 +22772,16 +22773,3 +22773,14 +22774,4 +22774,14 +22775,5 +22775,14 +22776,15 +22777,16 +22778,14 +22779,15 +22780,16 +22781,14 +22782,15 +22783,16 +22787,3 +22788,4 +22789,5 +22791,3 +22792,4 +22793,5 +22794,3 +22795,4 +22796,5 +22798,3 +22799,4 +22800,5 +22802,3 +22802,14 +22803,4 +22803,14 +22804,5 +22804,14 +22805,15 +22806,16 +22807,3 +22807,14 +22808,4 +22808,14 +22809,5 +22809,14 +22810,15 +22811,16 +22812,14 +22813,15 +22814,16 +22815,14 +22816,15 +22817,16 +22821,3 +22822,4 +22823,5 +22825,3 +22826,4 +22827,5 +22853,3 +22854,4 +22855,5 +22857,3 +22858,4 +22859,5 +22861,3 +22861,14 +22862,4 +22862,14 +22863,5 +22863,14 +22864,15 +22865,16 +22866,3 +22866,14 +22867,4 +22867,14 +22868,5 +22868,14 +22869,15 +22870,16 +22871,3 +22871,14 +22872,4 +22872,14 +22873,5 +22873,14 +22874,15 +22875,16 +22876,3 +22876,14 +22877,4 +22877,14 +22878,5 +22878,14 +22879,15 +22880,16 +22881,3 +22882,4 +22883,5 +22884,3 +22885,4 +22886,5 +22891,3 +22892,4 +22893,5 +22895,3 +22896,4 +22897,5 +22899,3 +22899,14 +22900,4 +22900,14 +22901,5 +22901,14 +22902,15 +22903,16 +22904,3 +22904,14 +22905,4 +22905,14 +22906,5 +22906,14 +22907,15 +22908,16 +22909,3 +22909,14 +22910,4 +22910,14 +22911,5 +22911,14 +22912,15 +22913,16 +22914,3 +22914,14 +22915,4 +22915,14 +22916,5 +22916,14 +22917,15 +22918,16 +22951,3 +22952,4 +22953,5 +22955,14 +22956,15 +22957,16 +22958,3 +22958,14 +22959,4 +22959,14 +22960,5 +22960,14 +22961,15 +22962,16 +22963,14 +22964,15 +22965,16 +22966,14 +22967,15 +22968,16 +22972,3 +22973,4 +22974,5 +22976,3 +22977,4 +22978,5 +22980,3 +22981,4 +22982,5 +22984,14 +22985,15 +22986,16 +22987,3 +22987,14 +22988,4 +22988,14 +22989,5 +22989,14 +22990,15 +22991,16 +22992,14 +22993,15 +22994,16 +22995,14 +22996,15 +22997,16 +22998,3 +22999,4 +23000,5 +23001,3 +23002,4 +23003,5 +23004,3 +23005,4 +23006,5 +23008,3 +23009,4 +23010,5 +23012,2 +23013,1 +23014,2 +23014,3 +23015,2 +23015,4 +23016,2 +23016,5 +23017,1 +23018,14 +23019,15 +23020,16 +23021,3 +23021,14 +23022,4 +23022,14 +23023,5 +23023,14 +23024,15 +23025,16 +23026,3 +23026,14 +23027,4 +23027,14 +23028,5 +23028,14 +23029,15 +23030,16 +23031,3 +23031,14 +23032,4 +23032,14 +23033,5 +23033,14 +23034,15 +23035,16 +23036,3 +23037,4 +23038,5 +23039,3 +23040,4 +23041,5 +23042,3 +23043,4 +23044,5 +23046,3 +23047,4 +23048,5 +23075,3 +23076,4 +23077,5 +23081,3 +23081,14 +23082,4 +23082,14 +23083,5 +23083,14 +23084,15 +23085,16 +23086,14 +23087,15 +23088,16 +23089,14 +23090,15 +23091,16 +23092,14 +23093,15 +23094,16 +23095,3 +23096,4 +23097,5 +23098,3 +23099,4 +23100,5 +23101,3 +23102,4 +23103,5 +23105,3 +23106,4 +23107,5 +23137,14 +23138,15 +23139,16 +23140,14 +23141,15 +23142,16 +23143,14 +23144,15 +23145,16 +23146,14 +23147,15 +23148,16 +23155,2 +23156,1 +23157,2 +23158,1 +23159,14 +23160,15 +23161,16 +23162,14 +23163,15 +23164,16 +23165,3 +23165,14 +23166,4 +23166,14 +23167,5 +23167,14 +23168,15 +23169,16 +23170,3 +23170,14 +23171,4 +23171,14 +23172,5 +23172,14 +23173,15 +23174,16 +23175,3 +23176,4 +23177,5 +23178,3 +23179,4 +23180,5 +23181,3 +23182,4 +23183,5 +23184,3 +23185,4 +23186,5 +23187,3 +23188,4 +23189,5 +23219,14 +23220,15 +23221,16 +23222,14 +23223,15 +23224,16 +23225,3 +23225,14 +23226,4 +23226,14 +23227,5 +23227,14 +23228,15 +23229,16 +23230,3 +23230,14 +23231,4 +23231,14 +23232,5 +23232,14 +23233,15 +23234,16 +23235,3 +23236,4 +23237,5 +23238,3 +23239,4 +23240,5 +23241,3 +23242,4 +23243,5 +23244,3 +23245,4 +23246,5 +23247,3 +23248,4 +23249,5 +23254,14 +23255,15 +23256,16 +23257,14 +23258,15 +23259,16 +23260,3 +23260,14 +23261,4 +23261,14 +23262,5 +23262,14 +23263,15 +23264,16 +23265,3 +23265,14 +23266,4 +23266,14 +23267,5 +23267,14 +23268,15 +23269,16 +23270,3 +23271,4 +23272,5 +23273,3 +23274,4 +23275,5 +23276,3 +23277,4 +23278,5 +23279,3 +23280,4 +23281,5 +23282,3 +23283,4 +23284,5 +23287,3 +23288,4 +23289,5 +23291,14 +23292,15 +23293,16 +23294,3 +23294,14 +23295,4 +23295,14 +23296,5 +23296,14 +23297,15 +23298,16 +23299,14 +23300,15 +23301,16 +23302,14 +23303,15 +23304,16 +23305,3 +23306,4 +23307,5 +23308,3 +23309,4 +23310,5 +23315,3 +23316,4 +23317,5 +23319,3 +23320,4 +23321,5 +23323,3 +23323,14 +23324,4 +23324,14 +23325,5 +23325,14 +23326,15 +23327,16 +23328,3 +23328,14 +23329,4 +23329,14 +23330,5 +23330,14 +23331,15 +23332,16 +23333,14 +23334,15 +23335,16 +23336,14 +23337,15 +23338,16 +23339,3 +23340,4 +23341,5 +23342,3 +23343,4 +23344,5 +23350,3 +23351,4 +23352,5 +23354,14 +23355,15 +23356,16 +23357,3 +23357,14 +23358,4 +23358,14 +23359,5 +23359,14 +23360,15 +23361,16 +23362,14 +23363,15 +23364,16 +23365,14 +23366,15 +23367,16 +23368,3 +23369,4 +23370,5 +23371,3 +23372,4 +23373,5 +23380,14 +23381,15 +23382,16 +23383,14 +23384,15 +23385,16 +23386,14 +23387,15 +23388,16 +23389,14 +23390,15 +23391,16 +23394,3 +23395,4 +23396,5 +23398,3 +23399,4 +23400,5 +23430,3 +23431,4 +23432,5 +23434,14 +23435,15 +23436,16 +23437,3 +23437,14 +23438,4 +23438,14 +23439,5 +23439,14 +23440,15 +23441,16 +23442,3 +23442,14 +23443,4 +23443,14 +23444,5 +23444,14 +23445,15 +23446,16 +23447,3 +23447,14 +23448,4 +23448,14 +23449,5 +23449,14 +23450,15 +23451,16 +23452,3 +23453,4 +23454,5 +23455,3 +23456,4 +23457,5 +23459,3 +23460,4 +23461,5 +23463,3 +23464,4 +23465,5 +23491,3 +23492,4 +23493,5 +23495,3 +23496,4 +23497,5 +23499,3 +23499,14 +23500,4 +23500,14 +23501,5 +23501,14 +23502,15 +23503,16 +23504,3 +23504,14 +23505,4 +23505,14 +23506,5 +23506,14 +23507,15 +23508,16 +23509,14 +23510,15 +23511,16 +23512,14 +23513,15 +23514,16 +23517,3 +23518,4 +23519,5 +23520,3 +23521,4 +23522,5 +23523,3 +23524,4 +23525,5 +23526,3 +23527,4 +23528,5 +23554,2 +23554,3 +23555,2 +23555,4 +23556,2 +23556,5 +23557,1 +23558,2 +23558,3 +23559,2 +23559,4 +23560,2 +23560,5 +23561,1 +23562,3 +23562,14 +23563,4 +23563,14 +23564,5 +23564,14 +23565,15 +23566,16 +23567,3 +23567,14 +23568,4 +23568,14 +23569,5 +23569,14 +23570,15 +23571,16 +23572,3 +23572,14 +23573,4 +23573,14 +23574,5 +23574,14 +23575,15 +23576,16 +23577,3 +23577,14 +23578,4 +23578,14 +23579,5 +23579,14 +23580,15 +23581,16 +23584,3 +23585,4 +23586,5 +23587,3 +23588,4 +23589,5 +23590,3 +23591,4 +23592,5 +23593,3 +23594,4 +23595,5 +23624,14 +23625,15 +23626,16 +23627,14 +23628,15 +23629,16 +23630,14 +23631,15 +23632,16 +23633,14 +23634,15 +23635,16 +23669,14 +23670,15 +23671,16 +23672,14 +23673,15 +23674,16 +23675,14 +23676,15 +23677,16 +23678,14 +23679,15 +23680,16 +23690,14 +23691,15 +23692,16 +23693,14 +23694,15 +23695,16 +23696,14 +23697,15 +23698,16 +23699,14 +23700,15 +23701,16 +23711,14 +23712,15 +23713,16 +23714,14 +23715,15 +23716,16 +23717,14 +23718,15 +23719,16 +23720,14 +23721,15 +23722,16 +23731,3 +23732,4 +23733,5 +23735,3 +23736,4 +23737,5 +23739,3 +23739,14 +23740,4 +23740,14 +23741,5 +23741,14 +23742,15 +23743,16 +23744,3 +23744,14 +23745,4 +23745,14 +23746,5 +23746,14 +23747,15 +23748,16 +23749,3 +23749,14 +23750,4 +23750,14 +23751,5 +23751,14 +23752,15 +23753,16 +23754,3 +23754,14 +23755,4 +23755,14 +23756,5 +23756,14 +23757,15 +23758,16 +23759,3 +23760,4 +23761,5 +23762,3 +23763,4 +23764,5 +23765,3 +23766,4 +23767,5 +23768,3 +23769,4 +23770,5 +23771,3 +23772,4 +23773,5 +23775,2 +23775,3 +23776,2 +23776,4 +23777,2 +23777,5 +23778,1 +23779,2 +23779,3 +23780,2 +23780,4 +23781,2 +23781,5 +23782,1 +23783,3 +23783,14 +23784,4 +23784,14 +23785,5 +23785,14 +23786,15 +23787,16 +23788,3 +23788,14 +23789,4 +23789,14 +23790,5 +23790,14 +23791,15 +23792,16 +23793,3 +23793,14 +23794,4 +23794,14 +23795,5 +23795,14 +23796,15 +23797,16 +23798,3 +23798,14 +23799,4 +23799,14 +23800,5 +23800,14 +23801,15 +23802,16 +23803,3 +23804,4 +23805,5 +23806,3 +23807,4 +23808,5 +23809,3 +23810,4 +23811,5 +23813,3 +23814,4 +23815,5 +23817,3 +23818,4 +23819,5 +23821,3 +23822,4 +23823,5 +23825,14 +23826,15 +23827,16 +23828,3 +23828,14 +23829,4 +23829,14 +23830,5 +23830,14 +23831,15 +23832,16 +23833,14 +23834,15 +23835,16 +23836,14 +23837,15 +23838,16 +23843,3 +23844,4 +23845,5 +23846,3 +23847,4 +23848,5 +23866,3 +23867,4 +23868,5 +23873,3 +23874,4 +23875,5 +23886,14 +23887,15 +23888,16 +23889,14 +23890,15 +23891,16 +23892,14 +23893,15 +23894,16 +23895,14 +23896,15 +23897,16 +23900,3 +23901,4 +23902,5 +23903,3 +23904,4 +23905,5 +23906,3 +23907,4 +23908,5 +23909,3 +23910,4 +23911,5 +23927,3 +23928,4 +23929,5 +23934,3 +23935,4 +23936,5 +23947,14 +23948,15 +23949,16 +23950,14 +23951,15 +23952,16 +23953,14 +23954,15 +23955,16 +23956,14 +23957,15 +23958,16 +23982,3 +23983,4 +23984,5 +23989,3 +23990,4 +23991,5 +35364,17 +35365,18 +35366,19 +35367,17 +35368,18 +35369,19 +35370,17 +35371,18 +35372,19 +35373,17 +35374,18 +35375,19 +35376,17 +35377,18 +35378,19 +35379,17 +35380,18 +35381,19 +35382,17 +35383,18 +35384,19 +35385,17 +35386,18 +35387,19 +35388,17 +35389,18 +35390,19 +35391,17 +35392,18 +35393,19 +35394,17 +35395,18 +35396,19 +35397,17 +35398,18 +35399,19 +35732,17 +35733,18 +35734,19 +35735,20 +35736,17 +35737,18 +35738,19 +35739,20 +35740,17 +35741,18 +35742,19 +35743,20 +35744,17 +35745,18 +35746,19 +35747,20 +35749,17 +35750,18 +35751,19 +35752,20 +35753,17 +35754,18 +35755,19 +35756,20 +35757,17 +35758,18 +35759,19 +35760,20 +35761,17 +35762,18 +35763,19 +35764,20 +35765,17 +35766,18 +35767,19 +35768,20 +35769,17 +35770,18 +35771,19 +35772,20 +35773,17 +35774,18 +35775,19 +35776,20 +35777,20 +35778,20 +35779,20 +35780,20 +35781,20 +35782,20 +35783,20 +35784,20 +35785,20 +35786,20 +35787,20 +35788,20 +35798,17 +35799,18 +35800,19 +35801,20 +35803,17 +35804,18 +35805,19 +35806,20 +35807,17 +35808,18 +35809,19 +35810,20 +35811,17 +35812,18 +35813,19 +35814,20 +35818,17 +35819,18 +35820,19 +35821,20 +35823,17 +35824,18 +35825,19 +35826,20 +35828,17 +35829,18 +35830,19 +35831,20 +35833,17 +35834,18 +35835,19 +35836,20 +35837,17 +35838,18 +35839,19 +35840,20 +35845,17 +35846,18 +35847,19 +35848,20 +35850,17 +35851,18 +35852,19 +35853,20 +35855,17 +35856,18 +35857,19 +35858,20 +35860,17 +35861,18 +35862,19 +35863,20 +35873,17 +35874,18 +35875,19 +35876,20 +35878,17 +35879,18 +35880,19 +35881,20 +35902,17 +35903,18 +35904,19 +35905,20 +35910,17 +35911,18 +35912,19 +35913,20 +35915,17 +35916,18 +35917,19 +35918,20 +35920,17 +35921,18 +35922,19 +35923,20 +35925,17 +35926,18 +35927,19 +35928,20 +36580,17 +36581,18 +36582,19 +36583,20 +36588,17 +36589,18 +36590,19 +36591,20 +36592,17 +36593,18 +36594,19 +36595,20 +36596,17 +36597,18 +36598,19 +36599,20 +36600,17 +36601,18 +36602,19 +36603,20 +36934,17 +36935,18 +36936,19 +36937,20 +36943,17 +36944,18 +36945,19 +36946,20 +36948,17 +36949,18 +36950,19 +36951,20 +36961,17 +36962,18 +36963,19 +36964,20 +36966,17 +36967,18 +36968,19 +36969,20 +36993,17 +36994,18 +36995,19 +36996,20 +37002,17 +37003,18 +37004,19 +37005,20 +37007,17 +37008,18 +37009,19 +37010,20 +37060,17 +37061,18 +37062,19 +37063,20 +37067,17 +37068,18 +37069,19 +37070,20 +37087,17 +37088,18 +37089,19 +37090,20 +37092,17 +37093,18 +37094,19 +37095,20 +37096,17 +37097,18 +37098,19 +37099,20 +37103,17 +37104,18 +37105,19 +37106,20 +37182,17 +37183,18 +37184,19 +37185,17 +37186,18 +37187,19 +37188,17 +37189,18 +37190,19 +37191,17 +37192,18 +37193,19 +37194,17 +37195,18 +37196,19 +37197,17 +37198,18 +37199,19 +37200,17 +37201,18 +37202,19 +37203,17 +37204,18 +37205,19 +37206,17 +37207,18 +37208,19 +37209,17 +37210,18 +37211,19 +37212,17 +37213,18 +37214,19 +37215,17 +37216,18 +37217,19 +37238,17 +37239,18 +37240,19 +37241,17 +37242,18 +37243,19 +37244,17 +37245,18 +37246,19 +37247,17 +37248,18 +37249,19 +37250,17 +37251,18 +37252,19 +37253,17 +37254,18 +37255,19 +37256,17 +37257,18 +37258,19 +37259,17 +37260,18 +37261,19 +37262,17 +37263,18 +37264,19 +37265,17 +37266,18 +37267,19 +37268,17 +37269,18 +37270,19 +37271,17 +37272,18 +37273,19 +38018,17 +38019,18 +38020,19 +38021,17 +38022,18 +38023,19 +38024,17 +38025,18 +38026,19 +38027,17 +38028,18 +38029,19 +38030,17 +38031,18 +38032,19 +38033,17 +38034,18 +38035,19 +38036,17 +38037,18 +38038,19 +38039,17 +38040,18 +38041,19 +38042,17 +38043,18 +38044,19 +38045,17 +38046,18 +38047,19 +38048,17 +38049,18 +38050,19 +38051,17 +38052,18 +38053,19 +38386,17 +38387,18 +38388,19 +38389,20 +38390,17 +38391,18 +38392,19 +38393,20 +38394,17 +38395,18 +38396,19 +38397,20 +38398,17 +38399,18 +38400,19 +38401,20 +38403,17 +38404,18 +38405,19 +38406,20 +38407,17 +38408,18 +38409,19 +38410,20 +38411,17 +38412,18 +38413,19 +38414,20 +38415,17 +38416,18 +38417,19 +38418,20 +38419,17 +38420,18 +38421,19 +38422,20 +38423,17 +38424,18 +38425,19 +38426,20 +38427,17 +38428,18 +38429,19 +38430,20 +38431,20 +38432,20 +38433,20 +38434,20 +38435,20 +38436,20 +38437,20 +38438,20 +38439,20 +38440,20 +38441,20 +38442,20 +38452,17 +38453,18 +38454,19 +38455,20 +38457,17 +38458,18 +38459,19 +38460,20 +38461,17 +38462,18 +38463,19 +38464,20 +38465,17 +38466,18 +38467,19 +38468,20 +38472,17 +38473,18 +38474,19 +38475,20 +38477,17 +38478,18 +38479,19 +38480,20 +38482,17 +38483,18 +38484,19 +38485,20 +38487,17 +38488,18 +38489,19 +38490,20 +38491,17 +38492,18 +38493,19 +38494,20 +38499,17 +38500,18 +38501,19 +38502,20 +38504,17 +38505,18 +38506,19 +38507,20 +38509,17 +38510,18 +38511,19 +38512,20 +38514,17 +38515,18 +38516,19 +38517,20 +38527,17 +38528,18 +38529,19 +38530,20 +38532,17 +38533,18 +38534,19 +38535,20 +38556,17 +38557,18 +38558,19 +38559,20 +38564,17 +38565,18 +38566,19 +38567,20 +38569,17 +38570,18 +38571,19 +38572,20 +38574,17 +38575,18 +38576,19 +38577,20 +38579,17 +38580,18 +38581,19 +38582,20 +39234,17 +39235,18 +39236,19 +39237,20 +39242,17 +39243,18 +39244,19 +39245,20 +39246,17 +39247,18 +39248,19 +39249,20 +39250,17 +39251,18 +39252,19 +39253,20 +39254,17 +39255,18 +39256,19 +39257,20 +39588,17 +39589,18 +39590,19 +39591,20 +39597,17 +39598,18 +39599,19 +39600,20 +39602,17 +39603,18 +39604,19 +39605,20 +39615,17 +39616,18 +39617,19 +39618,20 +39620,17 +39621,18 +39622,19 +39623,20 +39647,17 +39648,18 +39649,19 +39650,20 +39656,17 +39657,18 +39658,19 +39659,20 +39661,17 +39662,18 +39663,19 +39664,20 +39714,17 +39715,18 +39716,19 +39717,20 +39721,17 +39722,18 +39723,19 +39724,20 +39741,17 +39742,18 +39743,19 +39744,20 +39746,17 +39747,18 +39748,19 +39749,20 +39750,17 +39751,18 +39752,19 +39753,20 +39757,17 +39758,18 +39759,19 +39760,20 +39836,17 +39837,18 +39838,19 +39839,17 +39840,18 +39841,19 +39842,17 +39843,18 +39844,19 +39845,17 +39846,18 +39847,19 +39848,17 +39849,18 +39850,19 +39851,17 +39852,18 +39853,19 +39854,17 +39855,18 +39856,19 +39857,17 +39858,18 +39859,19 +39860,17 +39861,18 +39862,19 +39863,17 +39864,18 +39865,19 +39866,17 +39867,18 +39868,19 +39869,17 +39870,18 +39871,19 +39892,17 +39893,18 +39894,19 +39895,17 +39896,18 +39897,19 +39898,17 +39899,18 +39900,19 +39901,17 +39902,18 +39903,19 +39904,17 +39905,18 +39906,19 +39907,17 +39908,18 +39909,19 +39910,17 +39911,18 +39912,19 +39913,17 +39914,18 +39915,19 +39916,17 +39917,18 +39918,19 +39919,17 +39920,18 +39921,19 +39922,17 +39923,18 +39924,19 +39925,17 +39926,18 +39927,19 +40670,17 +40671,18 +40672,19 +40673,20 +40674,17 +40675,18 +40676,19 +40677,20 +40678,17 +40679,18 +40680,19 +40681,20 +40684,17 +40685,18 +40686,19 +40687,20 +40688,17 +40689,18 +40690,19 +40691,20 +40692,17 +40693,18 +40694,19 +40695,20 +40698,17 +40699,18 +40700,19 +40701,20 +40702,17 +40703,18 +40704,19 +40705,20 +40706,17 +40707,18 +40708,19 +40709,20 +40712,17 +40713,18 +40714,19 +40715,20 +40716,17 +40717,18 +40718,19 +40719,20 +40720,17 +40721,18 +40722,19 +40723,20 +40724,17 +40725,18 +40726,19 +40727,17 +40728,18 +40729,19 +40730,17 +40731,18 +40732,19 +40733,17 +40734,18 +40735,19 +40736,17 +40737,18 +40738,19 +40739,17 +40740,18 +40741,19 +40742,17 +40743,18 +40744,19 +40745,17 +40746,18 +40747,19 +40748,17 +40749,18 +40750,19 +40751,17 +40752,18 +40753,19 +40754,17 +40755,18 +40756,19 +40757,17 +40758,18 +40759,19 +41104,17 +41105,18 +41106,19 +41107,20 +41108,17 +41109,18 +41110,19 +41111,20 +41112,17 +41113,18 +41114,19 +41115,20 +41118,17 +41119,18 +41120,19 +41121,20 +41122,17 +41123,18 +41124,19 +41125,20 +41131,20 +41132,20 +41133,20 +41134,20 +41135,20 +41136,20 +41137,20 +41138,20 +41139,20 +41140,20 +41141,20 +41142,20 +41152,17 +41153,18 +41154,19 +41155,20 +41157,17 +41158,18 +41159,19 +41160,20 +41161,17 +41162,18 +41163,19 +41164,20 +41169,17 +41170,18 +41171,19 +41172,20 +41174,17 +41175,18 +41176,19 +41177,20 +41178,17 +41179,18 +41180,19 +41181,20 +41182,17 +41183,18 +41184,19 +41185,20 +41186,17 +41187,18 +41188,19 +41189,20 +41190,17 +41191,18 +41192,19 +41193,20 +41194,17 +41195,18 +41196,19 +41197,20 +41202,17 +41203,18 +41204,19 +41205,20 +41207,17 +41208,18 +41209,19 +41210,20 +41211,17 +41212,18 +41213,19 +41214,20 +41216,17 +41217,18 +41218,19 +41219,20 +41230,17 +41231,18 +41232,19 +41233,20 +41235,17 +41236,18 +41237,19 +41238,20 +41259,17 +41260,18 +41261,19 +41262,20 +41267,17 +41268,18 +41269,19 +41270,20 +41272,17 +41273,18 +41274,19 +41275,20 +41276,17 +41277,18 +41278,19 +41279,20 +41281,17 +41282,18 +41283,19 +41284,20 +41969,17 +41970,18 +41971,19 +41972,20 +41976,17 +41977,18 +41978,19 +41979,20 +41980,17 +41981,18 +41982,19 +41983,20 +41984,17 +41985,18 +41986,19 +41987,20 +43270,17 +43271,18 +43272,19 +43273,20 +43277,17 +43278,18 +43279,19 +43280,20 +43284,17 +43285,18 +43286,19 +43287,20 +43289,17 +43290,18 +43291,19 +43292,20 +43306,17 +43307,18 +43308,19 +43309,20 +43313,17 +43314,18 +43315,19 +43316,20 +43320,17 +43321,18 +43322,19 +43323,20 +43325,17 +43326,18 +43327,19 +43328,20 +43380,17 +43381,18 +43382,19 +43383,20 +43384,17 +43385,18 +43386,19 +43387,20 +43388,17 +43389,18 +43390,19 +43391,20 +43394,17 +43395,18 +43396,19 +43397,20 +43398,17 +43399,18 +43400,19 +43401,20 +43402,17 +43403,18 +43404,19 +43405,20 +43408,17 +43409,18 +43410,19 +43411,20 +43412,17 +43413,18 +43414,19 +43415,20 +43416,17 +43417,18 +43418,19 +43419,20 +43422,17 +43423,18 +43424,19 +43425,20 +43426,17 +43427,18 +43428,19 +43429,20 +43430,17 +43431,18 +43432,19 +43433,20 +43434,17 +43435,18 +43436,19 +43437,17 +43438,18 +43439,19 +43440,17 +43441,18 +43442,19 +43443,17 +43444,18 +43445,19 +43446,17 +43447,18 +43448,19 +43449,17 +43450,18 +43451,19 +43452,17 +43453,18 +43454,19 +43455,17 +43456,18 +43457,19 +43458,17 +43459,18 +43460,19 +43461,17 +43462,18 +43463,19 +43464,17 +43465,18 +43466,19 +43467,17 +43468,18 +43469,19 +43472,17 +43473,18 +43474,19 +43475,20 +43476,17 +43477,18 +43478,19 +43479,20 +43480,17 +43481,18 +43482,19 +43483,20 +43486,17 +43487,18 +43488,19 +43489,20 +43490,17 +43491,18 +43492,19 +43493,20 +43494,17 +43495,18 +43496,19 +43497,20 +43500,17 +43501,18 +43502,19 +43503,20 +43504,17 +43505,18 +43506,19 +43507,20 +43508,17 +43509,18 +43510,19 +43511,20 +43514,17 +43515,18 +43516,19 +43517,20 +43518,17 +43519,18 +43520,19 +43521,20 +43522,17 +43523,18 +43524,19 +43525,20 +43526,17 +43527,18 +43528,19 +43529,17 +43530,18 +43531,19 +43532,17 +43533,18 +43534,19 +43535,17 +43536,18 +43537,19 +43538,17 +43539,18 +43540,19 +43541,17 +43542,18 +43543,19 +43544,17 +43545,18 +43546,19 +43547,17 +43548,18 +43549,19 +43550,17 +43551,18 +43552,19 +43553,17 +43554,18 +43555,19 +43556,17 +43557,18 +43558,19 +43559,17 +43560,18 +43561,19 +44086,17 +44087,18 +44088,19 +44089,20 +44098,17 +44099,18 +44100,19 +44101,20 +44102,17 +44103,18 +44104,19 +44105,20 +44139,17 +44140,18 +44141,19 +44142,20 +44151,17 +44152,18 +44153,19 +44154,20 +44155,17 +44156,18 +44157,19 +44158,20 +44390,17 +44391,18 +44392,19 +44393,20 +44394,17 +44395,18 +44396,19 +44397,20 +44398,17 +44399,18 +44400,19 +44401,20 +44404,17 +44405,18 +44406,19 +44407,20 +44408,17 +44409,18 +44410,19 +44411,20 +44412,17 +44413,18 +44414,19 +44415,20 +44418,17 +44419,18 +44420,19 +44421,20 +44422,17 +44423,18 +44424,19 +44425,20 +44426,17 +44427,18 +44428,19 +44429,20 +44432,17 +44433,18 +44434,19 +44435,20 +44436,17 +44437,18 +44438,19 +44439,20 +44440,17 +44441,18 +44442,19 +44443,20 +44444,17 +44445,18 +44446,19 +44447,17 +44448,18 +44449,19 +44450,17 +44451,18 +44452,19 +44453,17 +44454,18 +44455,19 +44456,17 +44457,18 +44458,19 +44459,17 +44460,18 +44461,19 +44462,17 +44463,18 +44464,19 +44465,17 +44466,18 +44467,19 +44468,17 +44469,18 +44470,19 +44471,17 +44472,18 +44473,19 +44474,17 +44475,18 +44476,19 +44477,17 +44478,18 +44479,19 +44824,17 +44825,18 +44826,19 +44827,20 +44828,17 +44829,18 +44830,19 +44831,20 +44832,17 +44833,18 +44834,19 +44835,20 +44838,17 +44839,18 +44840,19 +44841,20 +44842,17 +44843,18 +44844,19 +44845,20 +44851,20 +44852,20 +44853,20 +44854,20 +44855,20 +44856,20 +44857,20 +44858,20 +44859,20 +44860,20 +44861,20 +44862,20 +44872,17 +44873,18 +44874,19 +44875,20 +44877,17 +44878,18 +44879,19 +44880,20 +44881,17 +44882,18 +44883,19 +44884,20 +44889,17 +44890,18 +44891,19 +44892,20 +44894,17 +44895,18 +44896,19 +44897,20 +44898,17 +44899,18 +44900,19 +44901,20 +44902,17 +44903,18 +44904,19 +44905,20 +44906,17 +44907,18 +44908,19 +44909,20 +44910,17 +44911,18 +44912,19 +44913,20 +44914,17 +44915,18 +44916,19 +44917,20 +44922,17 +44923,18 +44924,19 +44925,20 +44927,17 +44928,18 +44929,19 +44930,20 +44931,17 +44932,18 +44933,19 +44934,20 +44936,17 +44937,18 +44938,19 +44939,20 +44950,17 +44951,18 +44952,19 +44953,20 +44955,17 +44956,18 +44957,19 +44958,20 +44979,17 +44980,18 +44981,19 +44982,20 +44987,17 +44988,18 +44989,19 +44990,20 +44992,17 +44993,18 +44994,19 +44995,20 +44996,17 +44997,18 +44998,19 +44999,20 +45001,17 +45002,18 +45003,19 +45004,20 +45689,17 +45690,18 +45691,19 +45692,20 +45696,17 +45697,18 +45698,19 +45699,20 +45700,17 +45701,18 +45702,19 +45703,20 +45704,17 +45705,18 +45706,19 +45707,20 +46990,17 +46991,18 +46992,19 +46993,20 +46997,17 +46998,18 +46999,19 +47000,20 +47004,17 +47005,18 +47006,19 +47007,20 +47009,17 +47010,18 +47011,19 +47012,20 +47026,17 +47027,18 +47028,19 +47029,20 +47033,17 +47034,18 +47035,19 +47036,20 +47040,17 +47041,18 +47042,19 +47043,20 +47045,17 +47046,18 +47047,19 +47048,20 +47100,17 +47101,18 +47102,19 +47103,20 +47104,17 +47105,18 +47106,19 +47107,20 +47108,17 +47109,18 +47110,19 +47111,20 +47114,17 +47115,18 +47116,19 +47117,20 +47118,17 +47119,18 +47120,19 +47121,20 +47122,17 +47123,18 +47124,19 +47125,20 +47128,17 +47129,18 +47130,19 +47131,20 +47132,17 +47133,18 +47134,19 +47135,20 +47136,17 +47137,18 +47138,19 +47139,20 +47142,17 +47143,18 +47144,19 +47145,20 +47146,17 +47147,18 +47148,19 +47149,20 +47150,17 +47151,18 +47152,19 +47153,20 +47154,17 +47155,18 +47156,19 +47157,17 +47158,18 +47159,19 +47160,17 +47161,18 +47162,19 +47163,17 +47164,18 +47165,19 +47166,17 +47167,18 +47168,19 +47169,17 +47170,18 +47171,19 +47172,17 +47173,18 +47174,19 +47175,17 +47176,18 +47177,19 +47178,17 +47179,18 +47180,19 +47181,17 +47182,18 +47183,19 +47184,17 +47185,18 +47186,19 +47187,17 +47188,18 +47189,19 +47192,17 +47193,18 +47194,19 +47195,20 +47196,17 +47197,18 +47198,19 +47199,20 +47200,17 +47201,18 +47202,19 +47203,20 +47206,17 +47207,18 +47208,19 +47209,20 +47210,17 +47211,18 +47212,19 +47213,20 +47214,17 +47215,18 +47216,19 +47217,20 +47220,17 +47221,18 +47222,19 +47223,20 +47224,17 +47225,18 +47226,19 +47227,20 +47228,17 +47229,18 +47230,19 +47231,20 +47234,17 +47235,18 +47236,19 +47237,20 +47238,17 +47239,18 +47240,19 +47241,20 +47242,17 +47243,18 +47244,19 +47245,20 +47246,17 +47247,18 +47248,19 +47249,17 +47250,18 +47251,19 +47252,17 +47253,18 +47254,19 +47255,17 +47256,18 +47257,19 +47258,17 +47259,18 +47260,19 +47261,17 +47262,18 +47263,19 +47264,17 +47265,18 +47266,19 +47267,17 +47268,18 +47269,19 +47270,17 +47271,18 +47272,19 +47273,17 +47274,18 +47275,19 +47276,17 +47277,18 +47278,19 +47279,17 +47280,18 +47281,19 +47806,17 +47807,18 +47808,19 +47809,20 +47818,17 +47819,18 +47820,19 +47821,20 +47822,17 +47823,18 +47824,19 +47825,20 +47859,17 +47860,18 +47861,19 +47862,20 +47871,17 +47872,18 +47873,19 +47874,20 +47875,17 +47876,18 +47877,19 +47878,20 diff --git a/data/v2/csv/encounter_condition_value_prose.csv b/data/v2/csv/encounter_condition_value_prose.csv new file mode 100644 index 00000000..6ca33654 --- /dev/null +++ b/data/v2/csv/encounter_condition_value_prose.csv @@ -0,0 +1,41 @@ +encounter_condition_value_id,local_language_id,name +1,6,Während eines Schwarms +1,9,During a swarm +2,6,Außerhalb eines Schwarms +2,9,Not during a swarm +3,6,Am Morgen +3,9,In the morning +4,6,Am Tag +4,9,During the day +5,6,In der Nacht +5,9,At night +6,6,Durch Benutzung des Pokéradars +6,9,Using PokéRadar +7,6,Ohne Benutzung des Pokéradars +7,9,Not using PokéRadar +8,6,Kein Spiel in Slot 2 +8,9,No game in slot 2 +9,6,Rubin in Slot 2 +9,9,Ruby in slot 2 +10,6,Saphir in Slot 2 +10,9,Sapphire in slot 2 +11,6,Smaragd in Slot 2 +11,9,Emerald in slot 2 +12,6,Feuerrot in slot 2 +12,9,FireRed in slot 2 +13,6,Blattgrün in slot 2 +13,9,LeafGreen in slot 2 +14,6,Radio aus +14,9,Radio off +15,6,Hoenn-Sound im Radio +15,9,Hoenn radio +16,6,Sinnoh-Sound im Radio +16,9,Sinnoh radio +17,6,Im Frühling +17,9,During Spring +18,6,Im Sommer +18,9,During Summer +19,6,Im Herbst +19,9,During Autumn +20,6,Im Winter +20,9,During Winter diff --git a/data/v2/csv/encounter_condition_values.csv b/data/v2/csv/encounter_condition_values.csv new file mode 100644 index 00000000..bf00b4b2 --- /dev/null +++ b/data/v2/csv/encounter_condition_values.csv @@ -0,0 +1,21 @@ +id,encounter_condition_id,identifier,is_default +1,1,swarm-yes,0 +2,1,swarm-no,1 +3,2,time-morning,0 +4,2,time-day,1 +5,2,time-night,0 +6,3,radar-on,0 +7,3,radar-off,1 +8,4,slot2-none,1 +9,4,slot2-ruby,0 +10,4,slot2-sapphire,0 +11,4,slot2-emerald,0 +12,4,slot2-firered,0 +13,4,slot2-leafgreen,0 +14,5,radio-off,1 +15,5,radio-hoenn,0 +16,5,radio-sinnoh,0 +17,6,season-spring,0 +18,6,season-summer,0 +19,6,season-autumn,0 +20,6,season-winter,0 diff --git a/data/v2/csv/encounter_conditions.csv b/data/v2/csv/encounter_conditions.csv new file mode 100644 index 00000000..f4f38c93 --- /dev/null +++ b/data/v2/csv/encounter_conditions.csv @@ -0,0 +1,7 @@ +id,identifier +1,swarm +2,time +3,radar +4,slot2 +5,radio +6,season diff --git a/data/v2/csv/encounter_method_prose.csv b/data/v2/csv/encounter_method_prose.csv new file mode 100644 index 00000000..6312bf74 --- /dev/null +++ b/data/v2/csv/encounter_method_prose.csv @@ -0,0 +1,27 @@ +encounter_method_id,local_language_id,name +1,6,Im hohen Gras oder in einer Höhle laufen +1,9,Walking in tall grass or a cave +2,6,Mit einer normalen Angel angeln +2,9,Fishing with an Old Rod +3,6,Mit einer Profiangel angeln +3,9,Fishing with a Good Rod +4,6,Mit einer Superangel angeln +4,9,Fishing with a Super Rod +5,6,Surfen +5,9,Surfing +6,6,Steine zertrümmern +6,9,Smashing rocks +7,6,Bäumen Kopfnüsse geben +7,9,Headbutting trees +8,6,Im dunklen Gras laufen +8,9,Walking in dark grass +9,6,Im raschelndem Gras laufen +9,9,Walking in rustling grass +10,6,In Staubwolken laufen +10,9,Walking in dust clouds +11,6,Im Schatten einer Brücke laufen +11,9,Walking in bridge shadows +12,6,An dunklen stellen angeln +12,9,Fishing in dark spots +13,6,An dunklen stellen surfen +13,9,Surfing in dark spots diff --git a/data/v2/csv/encounter_methods.csv b/data/v2/csv/encounter_methods.csv new file mode 100644 index 00000000..b32bff47 --- /dev/null +++ b/data/v2/csv/encounter_methods.csv @@ -0,0 +1,14 @@ +id,identifier,order +1,walk,1 +2,old-rod,6 +3,good-rod,7 +4,super-rod,8 +5,surf,10 +6,rock-smash,12 +7,headbutt,13 +8,dark-grass,5 +9,grass-spots,2 +10,cave-spots,3 +11,bridge-spots,4 +12,super-rod-spots,9 +13,surf-spots,11 diff --git a/data/v2/csv/encounter_slots.csv b/data/v2/csv/encounter_slots.csv new file mode 100644 index 00000000..96ad6069 --- /dev/null +++ b/data/v2/csv/encounter_slots.csv @@ -0,0 +1,411 @@ +id,version_group_id,encounter_method_id,slot,rarity +1,8,1,1,20 +2,8,1,2,20 +3,8,1,3,10 +4,8,1,4,10 +5,8,1,5,10 +6,8,1,6,10 +7,8,1,7,5 +8,8,1,8,5 +9,8,1,9,4 +10,8,1,10,4 +11,8,1,11,1 +12,8,1,12,1 +13,8,2,1,60 +14,8,2,2,30 +15,8,2,3,5 +16,8,2,4,4 +17,8,2,5,1 +18,8,3,1,40 +19,8,3,2,40 +20,8,3,3,15 +21,8,3,4,4 +22,8,3,5,1 +23,8,4,1,40 +24,8,4,2,40 +25,8,4,3,15 +26,8,4,4,4 +27,8,4,5,1 +28,8,5,1,60 +29,8,5,2,30 +30,8,5,3,5 +31,8,5,4,4 +32,8,5,5,1 +33,10,1,1,20 +34,10,1,2,20 +35,10,1,3,10 +36,10,1,4,10 +37,10,1,5,10 +38,10,1,6,10 +39,10,1,7,5 +40,10,1,8,5 +41,10,1,9,4 +42,10,1,10,4 +43,10,1,11,1 +44,10,1,12,1 +45,10,2,1,40 +46,10,2,2,30 +47,10,2,3,15 +48,10,2,4,10 +49,10,2,5,5 +50,10,3,1,40 +51,10,3,2,30 +52,10,3,3,15 +53,10,3,4,10 +54,10,3,5,5 +55,10,4,1,40 +56,10,4,2,30 +57,10,4,3,15 +58,10,4,4,10 +59,10,4,5,5 +60,10,5,1,60 +61,10,5,2,30 +62,10,5,3,5 +63,10,5,4,4 +64,10,5,5,1 +65,10,6,1,90 +66,10,6,2,10 +67,1,1,1,20 +68,1,1,2,20 +69,1,1,3,15 +70,1,1,4,10 +71,1,1,5,10 +72,1,1,6,10 +73,1,1,7,5 +74,1,1,8,5 +75,1,1,9,4 +76,1,1,10,1 +77,1,5,1,20 +78,1,5,2,20 +79,1,5,3,15 +80,1,5,4,10 +81,1,5,5,10 +82,1,5,6,10 +83,1,5,7,5 +84,1,5,8,5 +85,1,5,9,4 +86,1,5,10,1 +87,2,1,1,20 +88,2,1,2,20 +89,2,1,3,15 +90,2,1,4,10 +91,2,1,5,10 +92,2,1,6,10 +93,2,1,7,5 +94,2,1,8,5 +95,2,1,9,4 +96,2,1,10,1 +97,2,5,1,20 +98,2,5,2,20 +99,2,5,3,15 +100,2,5,4,10 +101,2,5,5,10 +102,2,5,6,10 +103,2,5,7,5 +104,2,5,8,5 +105,2,5,9,4 +106,2,5,10,1 +107,1,2,1,100 +108,1,3,1,50 +109,1,3,2,50 +110,1,4,,25 +111,1,4,,8 +112,1,4,,17 +113,1,4,,17 +114,1,4,,8 +115,1,4,,25 +116,2,2,1,100 +117,2,3,1,50 +118,2,3,2,50 +119,2,4,1,40 +120,2,4,2,30 +121,2,4,3,20 +122,2,4,4,10 +123,9,1,1,20 +124,9,1,2,20 +125,9,1,3,10 +126,9,1,4,10 +127,9,1,5,10 +128,9,1,6,10 +129,9,1,7,5 +130,9,1,8,5 +131,9,1,9,4 +132,9,1,10,4 +133,9,1,11,1 +134,9,1,12,1 +135,9,2,1,60 +136,9,2,2,30 +137,9,2,3,5 +138,9,2,4,4 +139,9,2,5,1 +140,9,3,1,40 +141,9,3,2,40 +142,9,3,3,15 +143,9,3,4,4 +144,9,3,5,1 +145,9,4,1,40 +146,9,4,2,40 +147,9,4,3,15 +148,9,4,4,4 +149,9,4,5,1 +150,9,5,1,60 +151,9,5,2,30 +152,9,5,3,5 +153,9,5,4,4 +154,9,5,5,1 +155,5,3,1,60 +156,5,3,2,20 +157,5,3,3,20 +158,5,2,1,70 +159,5,2,2,30 +160,5,4,1,40 +161,5,4,2,40 +162,5,4,3,15 +163,5,4,4,4 +164,5,4,5,1 +165,5,5,1,60 +166,5,5,2,30 +167,5,5,3,5 +168,5,5,4,4 +169,5,5,5,1 +170,5,1,1,20 +171,5,1,2,20 +172,5,1,3,10 +173,5,1,4,10 +174,5,1,5,10 +175,5,1,6,10 +176,5,1,7,5 +177,5,1,8,5 +178,5,1,9,4 +179,5,1,10,4 +180,5,1,11,1 +181,5,1,12,1 +182,5,6,1,60 +183,5,6,2,30 +184,5,6,3,5 +185,5,6,4,4 +186,5,6,5,1 +187,6,1,1,20 +188,6,1,2,20 +189,6,1,3,10 +190,6,1,4,10 +191,6,1,5,10 +192,6,1,6,10 +193,6,1,7,5 +194,6,1,8,5 +195,6,1,9,4 +196,6,1,10,4 +197,6,1,11,1 +198,6,1,12,1 +199,6,3,1,60 +200,6,3,2,20 +201,6,3,3,20 +202,6,2,1,70 +203,6,2,2,30 +204,6,4,1,40 +205,6,4,2,40 +206,6,4,3,15 +207,6,4,4,4 +208,6,4,5,1 +209,6,5,1,60 +210,6,5,2,30 +211,6,5,3,5 +212,6,5,4,4 +213,6,5,5,1 +214,6,6,1,60 +215,6,6,2,30 +216,6,6,3,5 +217,6,6,4,4 +218,6,6,5,1 +219,7,1,1,20 +220,7,1,2,20 +221,7,1,3,10 +222,7,1,4,10 +223,7,1,5,10 +224,7,1,6,10 +225,7,1,7,5 +226,7,1,8,5 +227,7,1,9,4 +228,7,1,10,4 +229,7,1,11,1 +230,7,1,12,1 +231,7,3,1,60 +232,7,3,2,20 +233,7,3,3,20 +234,7,2,1,70 +235,7,2,2,30 +236,7,4,1,40 +237,7,4,2,40 +238,7,4,3,15 +239,7,4,4,4 +240,7,4,5,1 +241,7,5,1,60 +242,7,5,2,30 +243,7,5,3,5 +244,7,5,4,4 +245,7,5,5,1 +246,7,6,1,60 +247,7,6,2,30 +248,7,6,3,5 +249,7,6,4,4 +250,7,6,5,1 +251,11,4,1,40 +252,11,4,2,40 +253,11,4,3,15 +254,11,4,4,4 +255,11,4,5,1 +256,11,12,1,40 +257,11,12,2,40 +258,11,12,3,15 +259,11,12,4,4 +260,11,12,5,1 +261,11,5,1,60 +262,11,5,2,30 +263,11,5,3,5 +264,11,5,4,4 +265,11,5,5,1 +266,11,13,1,60 +267,11,13,2,30 +268,11,13,3,5 +269,11,13,4,4 +270,11,13,5,1 +271,11,1,1,20 +272,11,1,2,20 +273,11,1,3,10 +274,11,1,4,10 +275,11,1,5,10 +276,11,1,6,10 +277,11,1,7,5 +278,11,1,8,5 +279,11,1,9,4 +280,11,1,10,4 +281,11,1,11,1 +282,11,1,12,1 +283,11,8,1,20 +284,11,8,2,20 +285,11,8,3,10 +286,11,8,4,10 +287,11,8,5,10 +288,11,8,6,10 +289,11,8,7,5 +290,11,8,8,5 +291,11,8,9,4 +292,11,8,10,4 +293,11,8,11,1 +294,11,8,12,1 +295,11,9,1,20 +296,11,9,2,20 +297,11,9,3,10 +298,11,9,4,10 +299,11,9,5,10 +300,11,9,6,10 +301,11,9,7,5 +302,11,9,8,5 +303,11,9,9,4 +304,11,9,10,4 +305,11,9,11,1 +306,11,9,12,1 +307,11,10,1,20 +308,11,10,2,20 +309,11,10,3,10 +310,11,10,4,10 +311,11,10,5,10 +312,11,10,6,10 +313,11,10,7,5 +314,11,10,8,5 +315,11,10,9,4 +316,11,10,10,4 +317,11,10,11,1 +318,11,10,12,1 +319,11,11,1,20 +320,11,11,2,20 +321,11,11,3,10 +322,11,11,4,10 +323,11,11,5,10 +324,11,11,6,10 +325,11,11,7,5 +326,11,11,8,5 +327,11,11,9,4 +328,11,11,10,4 +329,11,11,11,1 +330,11,11,12,1 +331,14,4,1,40 +332,14,4,2,40 +333,14,4,3,15 +334,14,4,4,4 +335,14,4,5,1 +336,14,12,1,40 +337,14,12,2,40 +338,14,12,3,15 +339,14,12,4,4 +340,14,12,5,1 +341,14,5,1,60 +342,14,5,2,30 +343,14,5,3,5 +344,14,5,4,4 +345,14,5,5,1 +346,14,13,1,60 +347,14,13,2,30 +348,14,13,3,5 +349,14,13,4,4 +350,14,13,5,1 +351,14,8,1,20 +352,14,8,2,20 +353,14,8,3,10 +354,14,8,4,10 +355,14,8,5,10 +356,14,8,6,10 +357,14,8,7,5 +358,14,8,8,5 +359,14,8,9,4 +360,14,8,10,4 +361,14,8,11,1 +362,14,8,12,1 +363,14,9,1,20 +364,14,9,2,20 +365,14,9,3,10 +366,14,9,4,10 +367,14,9,5,10 +368,14,9,6,10 +369,14,9,7,5 +370,14,9,8,5 +371,14,9,9,4 +372,14,9,10,4 +373,14,9,11,1 +374,14,9,12,1 +375,14,1,1,20 +376,14,1,2,20 +377,14,1,3,10 +378,14,1,4,10 +379,14,1,5,10 +380,14,1,6,10 +381,14,1,7,5 +382,14,1,8,5 +383,14,1,9,4 +384,14,1,10,4 +385,14,1,11,1 +386,14,1,12,1 +387,14,10,1,20 +388,14,10,2,20 +389,14,10,3,10 +390,14,10,4,10 +391,14,10,5,10 +392,14,10,6,10 +393,14,10,7,5 +394,14,10,8,5 +395,14,10,9,4 +396,14,10,10,4 +397,14,10,11,1 +398,14,10,12,1 +399,14,11,1,20 +400,14,11,2,20 +401,14,11,3,10 +402,14,11,4,10 +403,14,11,5,10 +404,14,11,6,10 +405,14,11,7,5 +406,14,11,8,5 +407,14,11,9,4 +408,14,11,10,4 +409,14,11,11,1 +410,14,11,12,1 diff --git a/data/v2/csv/encounters.csv b/data/v2/csv/encounters.csv new file mode 100644 index 00000000..0c701c4f --- /dev/null +++ b/data/v2/csv/encounters.csv @@ -0,0 +1,44341 @@ +id,version_id,location_area_id,encounter_slot_id,pokemon_id,min_level,max_level +1,12,1,28,72,20,30 +2,12,1,29,278,20,30 +3,12,1,30,73,20,40 +4,12,1,31,279,20,40 +5,12,1,32,279,20,40 +6,12,1,13,129,4,6 +7,12,1,14,129,3,7 +8,12,1,15,129,5,10 +9,12,1,16,129,5,10 +10,12,1,17,129,5,10 +11,12,1,18,129,15,20 +12,12,1,19,456,15,20 +13,12,1,20,129,10,25 +14,12,1,21,456,10,25 +15,12,1,22,456,10,25 +16,12,1,23,130,30,40 +17,12,1,24,457,30,40 +18,12,1,25,120,20,40 +19,12,1,26,457,20,50 +20,12,1,27,457,20,50 +21,12,2,28,54,20,30 +22,12,2,29,54,20,40 +23,12,2,30,55,30,40 +24,12,2,31,55,30,40 +25,12,2,32,55,20,40 +26,12,2,13,129,4,6 +27,12,2,14,129,3,7 +28,12,2,15,129,5,10 +29,12,2,16,129,5,10 +30,12,2,17,129,5,10 +31,12,2,18,129,15,20 +32,12,2,19,339,15,20 +33,12,2,20,129,10,25 +34,12,2,21,339,10,25 +35,12,2,22,339,10,25 +36,12,2,23,130,30,40 +37,12,2,24,340,30,40 +38,12,2,25,130,40,55 +39,12,2,26,340,20,50 +40,12,2,27,340,20,50 +41,12,3,28,72,20,30 +42,12,3,29,278,20,30 +43,12,3,30,73,20,40 +44,12,3,31,279,20,40 +45,12,3,32,279,20,40 +46,12,3,13,129,4,6 +47,12,3,14,129,3,7 +48,12,3,15,129,5,10 +49,12,3,16,129,5,10 +50,12,3,17,129,5,10 +51,12,3,18,129,15,20 +52,12,3,19,223,15,20 +53,12,3,20,129,10,25 +54,12,3,21,223,10,25 +55,12,3,22,223,10,25 +56,12,3,23,130,30,40 +57,12,3,24,224,30,40 +58,12,3,25,130,40,55 +59,12,3,26,224,20,50 +60,12,3,27,224,20,50 +61,12,4,28,73,35,45 +62,12,4,29,279,35,45 +63,12,4,30,458,30,40 +64,12,4,31,458,30,40 +65,12,4,32,458,35,45 +66,12,4,13,129,4,6 +67,12,4,14,129,3,7 +68,12,4,15,129,5,10 +69,12,4,16,129,5,10 +70,12,4,17,129,5,10 +71,12,4,18,129,15,20 +72,12,4,19,223,15,20 +73,12,4,20,129,10,25 +74,12,4,21,223,10,25 +75,12,4,22,223,10,25 +76,12,4,23,130,30,40 +77,12,4,24,224,30,40 +78,12,4,25,120,20,40 +79,12,4,26,224,20,50 +80,12,4,27,224,20,50 +81,12,5,28,279,35,40 +82,12,5,29,73,35,40 +83,12,5,30,279,40,45 +84,12,5,31,73,40,45 +85,12,5,32,73,40,45 +86,12,5,13,129,4,6 +87,12,5,14,129,3,7 +88,12,5,15,129,5,10 +89,12,5,16,129,5,10 +90,12,5,17,129,5,10 +91,12,5,18,129,15,20 +92,12,5,19,223,15,20 +93,12,5,20,129,10,25 +94,12,5,21,223,10,25 +95,12,5,22,223,10,25 +96,12,5,23,130,30,40 +97,12,5,24,224,30,40 +98,12,5,25,370,20,30 +99,12,5,26,224,20,50 +100,12,5,27,224,20,50 +101,12,6,1,74,6,6 +102,12,6,2,74,6,6 +103,12,6,3,41,7,7 +104,12,6,4,41,7,7 +105,12,6,5,74,7,7 +106,12,6,6,74,7,7 +107,12,6,7,95,8,8 +108,12,6,8,95,8,8 +109,12,6,9,74,9,9 +110,12,6,10,74,9,9 +111,12,6,11,74,5,5 +112,12,6,12,74,5,5 +113,12,7,1,74,7,7 +114,12,7,2,74,7,7 +115,12,7,3,41,8,8 +116,12,7,4,41,8,8 +117,12,7,5,74,8,8 +118,12,7,6,74,8,8 +119,12,7,7,95,9,9 +120,12,7,8,95,9,9 +121,12,7,9,74,10,10 +122,12,7,10,74,10,10 +123,12,7,11,74,6,6 +124,12,7,12,74,6,6 +125,12,8,1,418,7,7 +126,12,8,1,309,7,7 +127,12,8,2,417,7,7 +128,12,8,2,309,7,7 +129,12,8,3,418,8,8 +130,12,8,4,422,8,8 +131,12,8,5,399,8,8 +132,12,8,5,179,8,8 +133,12,8,6,422,7,7 +134,12,8,6,179,7,7 +135,12,8,7,422,9,9 +136,12,8,8,417,8,8 +137,12,8,9,418,9,9 +138,12,8,9,418,9,9 +139,12,8,9,418,9,9 +140,12,8,9,418,9,9 +141,12,8,9,239,9,9 +142,12,8,9,418,9,9 +143,12,8,10,422,9,9 +144,12,8,10,422,9,9 +145,12,8,10,422,9,9 +146,12,8,10,422,9,9 +147,12,8,10,239,9,9 +148,12,8,10,422,9,9 +149,12,8,11,418,9,9 +150,12,8,11,179,9,9 +151,12,8,12,422,9,9 +152,12,8,12,179,9,9 +153,12,8,28,72,20,30 +154,12,8,29,278,20,30 +155,12,8,30,73,20,40 +156,12,8,31,279,20,40 +157,12,8,32,279,20,40 +158,12,8,13,129,4,6 +159,12,8,14,129,3,7 +160,12,8,15,129,5,10 +161,12,8,16,129,5,10 +162,12,8,17,129,5,10 +163,12,8,18,129,15,20 +164,12,8,19,456,15,20 +165,12,8,20,129,10,25 +166,12,8,21,456,10,25 +167,12,8,22,456,10,25 +168,12,8,23,130,30,40 +169,12,8,24,457,30,40 +170,12,8,25,90,20,40 +171,12,8,26,457,30,50 +172,12,8,27,457,30,50 +173,12,9,1,265,10,10 +174,12,9,1,287,10,10 +175,12,9,2,266,10,10 +176,12,9,2,287,10,10 +177,12,9,3,265,11,11 +178,12,9,3,265,11,11 +179,12,9,3,198,11,11 +180,12,9,4,406,10,10 +181,12,9,4,406,10,10 +182,12,9,4,198,10,10 +183,12,9,5,427,10,10 +184,12,9,5,290,10,10 +185,12,9,6,406,11,11 +186,12,9,6,290,11,11 +187,12,9,7,427,11,11 +188,12,9,8,406,12,12 +189,12,9,9,406,12,12 +190,12,9,9,273,12,12 +191,12,9,9,406,12,12 +192,12,9,9,204,12,12 +193,12,9,9,11,12,12 +194,12,9,9,14,12,12 +195,12,9,10,427,12,12 +196,12,9,10,273,12,12 +197,12,9,10,427,12,12 +198,12,9,10,204,12,12 +199,12,9,10,11,12,12 +200,12,9,10,14,12,12 +201,12,9,11,267,12,12 +202,12,9,11,290,12,12 +203,12,9,12,267,12,12 +204,12,9,12,290,12,12 +205,12,10,1,419,29,29 +206,12,10,1,81,29,29 +207,12,10,2,422,28,28 +208,12,10,2,81,28,28 +209,12,10,3,403,28,28 +210,12,10,4,278,29,29 +211,12,10,5,404,29,29 +212,12,10,5,304,29,29 +213,12,10,6,423,29,29 +214,12,10,6,304,29,29 +215,12,10,7,417,29,29 +216,12,10,8,417,29,29 +217,12,10,9,419,30,30 +218,12,10,10,423,30,30 +219,12,10,11,419,30,30 +220,12,10,11,304,30,30 +221,12,10,12,423,30,30 +222,12,10,12,304,30,30 +223,12,10,28,72,20,30 +224,12,10,29,278,20,30 +225,12,10,30,73,20,40 +226,12,10,31,279,20,40 +227,12,10,32,279,20,40 +228,12,10,13,129,4,6 +229,12,10,14,129,3,7 +230,12,10,15,129,5,10 +231,12,10,16,129,5,10 +232,12,10,17,129,5,10 +233,12,10,18,129,15,20 +234,12,10,19,456,15,20 +235,12,10,20,129,10,25 +236,12,10,21,456,10,25 +237,12,10,22,456,10,25 +238,12,10,23,130,30,40 +239,12,10,24,457,30,40 +240,12,10,25,90,20,40 +241,12,10,26,457,20,50 +242,12,10,27,457,20,50 +243,12,11,1,66,15,15 +244,12,11,2,74,15,15 +245,12,11,3,173,14,14 +246,12,11,3,74,14,14 +247,12,11,3,74,14,14 +248,12,11,4,173,14,14 +249,12,11,4,41,14,14 +250,12,11,4,41,14,14 +251,12,11,5,307,15,15 +252,12,11,6,41,15,15 +253,12,11,7,433,15,15 +254,12,11,8,433,15,15 +255,12,11,9,66,16,16 +256,12,11,10,173,14,14 +257,12,11,11,66,16,16 +258,12,11,12,173,14,14 +259,12,11,28,41,20,30 +260,12,11,29,41,20,40 +261,12,11,30,42,30,40 +262,12,11,31,42,30,40 +263,12,11,32,42,20,40 +264,12,11,13,129,4,6 +265,12,11,14,129,3,7 +266,12,11,15,129,5,10 +267,12,11,16,129,5,10 +268,12,11,17,129,5,10 +269,12,11,18,129,15,20 +270,12,11,19,339,15,20 +271,12,11,20,129,10,25 +272,12,11,21,339,10,25 +273,12,11,22,339,10,25 +274,12,11,23,130,30,40 +275,12,11,24,340,30,40 +276,12,11,25,130,40,55 +277,12,11,26,340,20,50 +278,12,11,27,340,20,50 +279,12,12,1,437,38,38 +280,12,12,2,75,36,36 +281,12,12,3,67,37,37 +282,12,12,4,35,36,36 +283,12,12,5,308,37,37 +284,12,12,6,42,37,37 +285,12,12,7,433,37,37 +286,12,12,8,433,38,38 +287,12,12,9,436,36,36 +288,12,12,9,338,36,36 +289,12,12,9,337,36,36 +290,12,12,9,436,36,36 +291,12,12,9,436,36,36 +292,12,12,9,436,36,36 +293,12,12,10,35,37,37 +294,12,12,10,338,37,37 +295,12,12,10,337,37,37 +296,12,12,10,35,37,37 +297,12,12,10,35,37,37 +298,12,12,10,35,37,37 +299,12,12,11,436,36,36 +300,12,12,12,35,38,38 +301,12,13,1,437,38,38 +302,12,13,2,75,36,36 +303,12,13,3,67,37,37 +304,12,13,4,35,36,36 +305,12,13,5,308,37,37 +306,12,13,6,42,37,37 +307,12,13,7,433,37,37 +308,12,13,8,433,38,38 +309,12,13,9,436,36,36 +310,12,13,9,338,36,36 +311,12,13,9,337,36,36 +312,12,13,9,436,36,36 +313,12,13,9,436,36,36 +314,12,13,9,436,36,36 +315,12,13,10,35,37,37 +316,12,13,10,338,37,37 +317,12,13,10,337,37,37 +318,12,13,10,35,37,37 +319,12,13,10,35,37,37 +320,12,13,10,35,37,37 +321,12,13,11,436,36,36 +322,12,13,12,35,38,38 +323,12,14,1,459,38,38 +324,12,14,2,460,40,40 +325,12,14,3,308,39,39 +326,12,14,3,308,39,39 +327,12,14,3,42,39,39 +328,12,14,4,67,39,39 +329,12,14,4,67,39,39 +330,12,14,4,164,39,39 +331,12,14,5,308,40,40 +332,12,14,5,294,40,40 +333,12,14,6,67,40,40 +334,12,14,6,294,40,40 +335,12,14,7,433,39,39 +336,12,14,8,433,40,40 +337,12,14,9,437,39,39 +338,12,14,9,338,39,39 +339,12,14,9,337,39,39 +340,12,14,9,437,39,39 +341,12,14,9,437,39,39 +342,12,14,9,437,39,39 +343,12,14,10,35,38,38 +344,12,14,10,338,38,38 +345,12,14,10,337,38,38 +346,12,14,10,35,38,38 +347,12,14,10,35,38,38 +348,12,14,10,35,38,38 +349,12,14,11,437,40,40 +350,12,14,11,294,40,40 +351,12,14,12,35,39,39 +352,12,14,12,294,39,39 +353,12,15,1,459,38,38 +354,12,15,2,460,40,40 +355,12,15,3,308,39,39 +356,12,15,3,308,39,39 +357,12,15,3,42,39,39 +358,12,15,4,67,39,39 +359,12,15,4,67,39,39 +360,12,15,4,164,39,39 +361,12,15,5,308,40,40 +362,12,15,5,294,40,40 +363,12,15,6,67,40,40 +364,12,15,6,294,40,40 +365,12,15,7,433,39,39 +366,12,15,8,433,40,40 +367,12,15,9,437,39,39 +368,12,15,9,338,39,39 +369,12,15,9,337,39,39 +370,12,15,9,437,39,39 +371,12,15,9,437,39,39 +372,12,15,9,437,39,39 +373,12,15,10,35,38,38 +374,12,15,10,338,38,38 +375,12,15,10,337,38,38 +376,12,15,10,35,38,38 +377,12,15,10,35,38,38 +378,12,15,10,35,38,38 +379,12,15,11,437,40,40 +380,12,15,11,294,40,40 +381,12,15,12,35,39,39 +382,12,15,12,294,39,39 +383,12,16,1,437,40,40 +384,12,16,2,75,38,38 +385,12,16,3,67,39,39 +386,12,16,4,35,38,38 +387,12,16,5,308,39,39 +388,12,16,6,42,39,39 +389,12,16,7,433,39,39 +390,12,16,8,433,40,40 +391,12,16,9,437,38,38 +392,12,16,9,338,38,38 +393,12,16,9,337,38,38 +394,12,16,9,437,38,38 +395,12,16,9,437,38,38 +396,12,16,9,437,38,38 +397,12,16,10,35,39,39 +398,12,16,10,338,39,39 +399,12,16,10,337,39,39 +400,12,16,10,35,39,39 +401,12,16,10,35,39,39 +402,12,16,10,35,39,39 +403,12,16,11,437,39,39 +404,12,16,12,35,40,40 +405,12,16,28,41,20,30 +406,12,16,29,41,20,40 +407,12,16,30,42,30,40 +408,12,16,31,42,30,40 +409,12,16,32,42,20,40 +410,12,16,13,129,4,6 +411,12,16,14,129,3,7 +412,12,16,15,129,5,10 +413,12,16,16,129,5,10 +414,12,16,17,129,5,10 +415,12,16,18,129,15,20 +416,12,16,19,339,15,20 +417,12,16,20,129,10,25 +418,12,16,21,339,10,25 +419,12,16,22,339,10,25 +420,12,16,23,130,30,40 +421,12,16,24,147,15,20 +422,12,16,25,130,40,55 +423,12,16,26,148,15,35 +424,12,16,27,148,15,40 +425,12,17,1,437,40,40 +426,12,17,2,75,38,38 +427,12,17,3,67,39,39 +428,12,17,4,35,38,38 +429,12,17,5,308,39,39 +430,12,17,6,42,39,39 +431,12,17,7,433,40,40 +432,12,17,8,358,40,40 +433,12,17,9,437,38,38 +434,12,17,9,338,38,38 +435,12,17,9,337,38,38 +436,12,17,9,437,38,38 +437,12,17,9,437,38,38 +438,12,17,9,437,38,38 +439,12,17,10,35,39,39 +440,12,17,10,338,39,39 +441,12,17,10,337,39,39 +442,12,17,10,35,39,39 +443,12,17,10,35,39,39 +444,12,17,10,35,39,39 +445,12,17,11,437,39,39 +446,12,17,12,35,40,40 +447,12,18,1,437,42,42 +448,12,18,2,75,40,40 +449,12,18,3,67,41,41 +450,12,18,4,35,40,40 +451,12,18,5,308,41,41 +452,12,18,6,42,41,41 +453,12,18,7,358,41,41 +454,12,18,8,358,42,42 +455,12,18,9,437,40,40 +456,12,18,9,338,40,40 +457,12,18,9,337,40,40 +458,12,18,9,437,40,40 +459,12,18,9,437,40,40 +460,12,18,9,437,40,40 +461,12,18,10,35,41,41 +462,12,18,10,338,41,41 +463,12,18,10,337,41,41 +464,12,18,10,35,41,41 +465,12,18,10,35,41,41 +466,12,18,10,35,41,41 +467,12,18,11,437,41,41 +468,12,18,12,35,42,42 +469,12,19,1,437,42,42 +470,12,19,2,75,40,40 +471,12,19,3,67,41,41 +472,12,19,4,35,40,40 +473,12,19,5,308,41,41 +474,12,19,6,42,41,41 +475,12,19,7,358,41,41 +476,12,19,8,358,42,42 +477,12,19,9,437,40,40 +478,12,19,9,338,40,40 +479,12,19,9,337,40,40 +480,12,19,9,437,40,40 +481,12,19,9,437,40,40 +482,12,19,9,437,40,40 +483,12,19,10,35,41,41 +484,12,19,10,338,41,41 +485,12,19,10,337,41,41 +486,12,19,10,35,41,41 +487,12,19,10,35,41,41 +488,12,19,10,35,41,41 +489,12,19,11,437,41,41 +490,12,19,12,35,42,42 +491,12,20,1,75,40,40 +492,12,20,2,75,39,39 +493,12,20,3,67,40,40 +494,12,20,4,35,38,38 +495,12,20,5,308,40,40 +496,12,20,6,42,39,39 +497,12,20,7,433,38,38 +498,12,20,8,433,40,40 +499,12,20,9,437,40,40 +500,12,20,9,338,40,40 +501,12,20,9,337,40,40 +502,12,20,9,437,40,40 +503,12,20,9,437,40,40 +504,12,20,9,437,40,40 +505,12,20,10,35,39,39 +506,12,20,10,338,39,39 +507,12,20,10,337,39,39 +508,12,20,10,35,39,39 +509,12,20,10,35,39,39 +510,12,20,10,35,39,39 +511,12,20,11,437,39,39 +512,12,20,12,35,40,40 +513,12,21,1,307,31,31 +514,12,21,2,75,31,31 +515,12,21,3,35,30,30 +516,12,21,4,42,32,32 +517,12,21,5,67,31,31 +518,12,21,6,42,31,31 +519,12,21,7,433,30,30 +520,12,21,8,433,30,30 +521,12,21,9,307,32,32 +522,12,21,10,35,31,31 +523,12,21,11,307,32,32 +524,12,21,12,35,32,32 +525,12,22,1,307,13,13 +526,12,22,2,74,13,13 +527,12,22,3,173,12,12 +528,12,22,3,74,12,12 +529,12,22,3,74,12,12 +530,12,22,4,173,12,12 +531,12,22,4,41,12,12 +532,12,22,4,41,12,12 +533,12,22,5,66,13,13 +534,12,22,6,41,13,13 +535,12,22,7,433,13,13 +536,12,22,8,433,13,13 +537,12,22,9,307,14,14 +538,12,22,9,307,14,14 +539,12,22,9,173,14,14 +540,12,22,9,307,14,14 +541,12,22,9,307,14,14 +542,12,22,9,307,14,14 +543,12,22,10,173,12,12 +544,12,22,11,307,14,14 +545,12,22,12,173,12,12 +546,12,23,1,307,31,31 +547,12,23,2,75,31,31 +548,12,23,3,35,30,30 +549,12,23,4,42,32,32 +550,12,23,5,67,31,31 +551,12,23,6,42,31,31 +552,12,23,7,433,30,30 +553,12,23,8,433,30,30 +554,12,23,9,307,32,32 +555,12,23,10,35,31,31 +556,12,23,11,307,32,32 +557,12,23,12,35,32,32 +558,12,23,28,41,20,30 +559,12,23,29,41,20,40 +560,12,23,30,42,30,40 +561,12,23,31,42,30,40 +562,12,23,32,42,20,40 +563,12,23,13,129,4,6 +564,12,23,14,129,3,7 +565,12,23,15,129,5,10 +566,12,23,16,129,5,10 +567,12,23,17,129,5,10 +568,12,23,18,129,15,20 +569,12,23,19,339,15,20 +570,12,23,20,129,10,25 +571,12,23,21,339,10,25 +572,12,23,22,339,10,25 +573,12,23,23,130,30,40 +574,12,23,24,340,30,40 +575,12,23,25,130,40,55 +576,12,23,26,340,20,50 +577,12,23,27,340,20,50 +578,12,24,1,194,24,24 +579,12,24,2,400,25,25 +580,12,24,3,406,24,24 +581,12,24,3,406,24,24 +582,12,24,3,163,24,24 +583,12,24,4,396,26,26 +584,12,24,4,396,26,26 +585,12,24,4,164,26,26 +586,12,24,5,183,25,25 +587,12,24,6,195,25,25 +588,12,24,7,183,26,26 +589,12,24,8,195,26,26 +590,12,24,9,54,26,26 +591,12,24,9,54,26,26 +592,12,24,9,54,26,26 +593,12,24,9,54,26,26 +594,12,24,9,24,26,26 +595,12,24,9,54,26,26 +596,12,24,10,54,24,24 +597,12,24,10,54,24,24 +598,12,24,10,54,24,24 +599,12,24,10,54,24,24 +600,12,24,10,24,24,24 +601,12,24,10,54,24,24 +602,12,24,11,399,26,26 +603,12,24,12,298,24,24 +604,12,24,28,194,20,30 +605,12,24,29,183,20,30 +606,12,24,30,195,20,40 +607,12,24,31,54,20,40 +608,12,24,32,54,20,40 +609,12,24,13,129,4,6 +610,12,24,14,129,3,7 +611,12,24,15,129,5,10 +612,12,24,16,129,5,10 +613,12,24,17,129,5,10 +614,12,24,18,129,15,20 +615,12,24,19,339,15,20 +616,12,24,20,129,10,25 +617,12,24,21,130,15,30 +618,12,24,22,130,15,30 +619,12,24,23,340,30,55 +620,12,24,24,318,15,20 +621,12,24,25,130,40,55 +622,12,24,26,318,15,30 +623,12,24,27,318,15,30 +624,12,25,1,194,24,24 +625,12,25,2,400,25,25 +626,12,25,3,406,24,24 +627,12,25,3,406,24,24 +628,12,25,3,163,24,24 +629,12,25,4,396,26,26 +630,12,25,4,396,26,26 +631,12,25,4,164,26,26 +632,12,25,5,183,25,25 +633,12,25,6,195,25,25 +634,12,25,7,183,26,26 +635,12,25,8,195,26,26 +636,12,25,9,54,26,26 +637,12,25,9,54,26,26 +638,12,25,9,54,26,26 +639,12,25,9,54,26,26 +640,12,25,9,24,26,26 +641,12,25,9,54,26,26 +642,12,25,10,54,24,24 +643,12,25,10,54,24,24 +644,12,25,10,54,24,24 +645,12,25,10,54,24,24 +646,12,25,10,24,24,24 +647,12,25,10,54,24,24 +648,12,25,11,399,26,26 +649,12,25,12,298,24,24 +650,12,25,28,194,20,30 +651,12,25,29,183,20,30 +652,12,25,30,195,20,40 +653,12,25,31,54,20,40 +654,12,25,32,54,20,40 +655,12,25,13,129,4,6 +656,12,25,14,129,3,7 +657,12,25,15,129,5,10 +658,12,25,16,129,5,10 +659,12,25,17,129,5,10 +660,12,25,18,129,15,20 +661,12,25,19,339,15,20 +662,12,25,20,129,10,25 +663,12,25,21,130,15,30 +664,12,25,22,130,15,30 +665,12,25,23,340,30,55 +666,12,25,24,318,15,20 +667,12,25,25,130,40,55 +668,12,25,26,318,15,30 +669,12,25,27,318,15,30 +670,12,26,1,194,22,22 +671,12,26,2,400,23,23 +672,12,26,3,406,22,22 +673,12,26,3,406,22,22 +674,12,26,3,163,22,22 +675,12,26,4,396,24,24 +676,12,26,4,396,24,24 +677,12,26,4,163,24,24 +678,12,26,5,183,23,23 +679,12,26,6,195,23,23 +680,12,26,7,183,24,24 +681,12,26,8,195,24,24 +682,12,26,9,54,24,24 +683,12,26,9,54,24,24 +684,12,26,9,54,24,24 +685,12,26,9,54,24,24 +686,12,26,9,24,24,24 +687,12,26,9,54,24,24 +688,12,26,10,54,22,22 +689,12,26,10,54,22,22 +690,12,26,10,54,22,22 +691,12,26,10,54,22,22 +692,12,26,10,24,22,22 +693,12,26,10,54,22,22 +694,12,26,11,399,24,24 +695,12,26,12,298,22,22 +696,12,26,28,194,20,30 +697,12,26,29,183,20,30 +698,12,26,30,195,20,40 +699,12,26,31,54,20,40 +700,12,26,32,54,20,40 +701,12,26,13,129,4,6 +702,12,26,14,129,3,7 +703,12,26,15,129,5,10 +704,12,26,16,129,5,10 +705,12,26,17,129,5,10 +706,12,26,18,129,15,20 +707,12,26,19,339,15,20 +708,12,26,20,129,10,25 +709,12,26,21,130,15,30 +710,12,26,22,130,15,30 +711,12,26,23,340,30,55 +712,12,26,24,318,15,20 +713,12,26,25,130,40,55 +714,12,26,26,318,15,30 +715,12,26,27,318,15,30 +716,12,27,1,194,22,22 +717,12,27,2,400,23,23 +718,12,27,3,406,22,22 +719,12,27,3,406,22,22 +720,12,27,3,163,22,22 +721,12,27,4,396,24,24 +722,12,27,4,396,24,24 +723,12,27,4,163,24,24 +724,12,27,5,183,23,23 +725,12,27,6,195,23,23 +726,12,27,7,183,24,24 +727,12,27,8,195,24,24 +728,12,27,9,54,24,24 +729,12,27,9,54,24,24 +730,12,27,9,54,24,24 +731,12,27,9,54,24,24 +732,12,27,9,24,24,24 +733,12,27,9,54,24,24 +734,12,27,10,54,22,22 +735,12,27,10,54,22,22 +736,12,27,10,54,22,22 +737,12,27,10,54,22,22 +738,12,27,10,24,22,22 +739,12,27,10,54,22,22 +740,12,27,11,399,24,24 +741,12,27,12,298,22,22 +742,12,27,28,194,20,30 +743,12,27,29,183,20,30 +744,12,27,30,195,20,40 +745,12,27,31,54,20,40 +746,12,27,32,54,20,40 +747,12,27,13,129,4,6 +748,12,27,14,129,3,7 +749,12,27,15,129,5,10 +750,12,27,16,129,5,10 +751,12,27,17,129,5,10 +752,12,27,18,129,15,20 +753,12,27,19,339,15,20 +754,12,27,20,129,10,25 +755,12,27,21,130,15,30 +756,12,27,22,130,15,30 +757,12,27,23,340,30,55 +758,12,27,24,318,15,20 +759,12,27,25,130,40,55 +760,12,27,26,318,15,30 +761,12,27,27,318,15,30 +762,12,28,1,194,20,20 +763,12,28,2,400,21,21 +764,12,28,3,406,20,20 +765,12,28,3,406,20,20 +766,12,28,3,163,20,20 +767,12,28,4,396,22,22 +768,12,28,4,396,22,22 +769,12,28,4,163,22,22 +770,12,28,5,183,21,21 +771,12,28,6,195,21,21 +772,12,28,7,183,22,22 +773,12,28,8,195,22,22 +774,12,28,9,399,22,22 +775,12,28,9,399,22,22 +776,12,28,9,399,22,22 +777,12,28,9,399,22,22 +778,12,28,9,24,22,22 +779,12,28,9,399,22,22 +780,12,28,10,298,20,20 +781,12,28,10,298,20,20 +782,12,28,10,298,20,20 +783,12,28,10,298,20,20 +784,12,28,10,24,20,20 +785,12,28,10,298,20,20 +786,12,28,11,399,22,22 +787,12,28,12,298,20,20 +788,12,29,1,194,20,20 +789,12,29,2,400,21,21 +790,12,29,3,406,20,20 +791,12,29,3,406,20,20 +792,12,29,3,163,20,20 +793,12,29,4,396,22,22 +794,12,29,4,396,22,22 +795,12,29,4,163,22,22 +796,12,29,5,183,21,21 +797,12,29,6,195,21,21 +798,12,29,7,183,22,22 +799,12,29,8,195,22,22 +800,12,29,9,54,22,22 +801,12,29,9,54,22,22 +802,12,29,9,54,22,22 +803,12,29,9,54,22,22 +804,12,29,9,24,22,22 +805,12,29,9,54,22,22 +806,12,29,10,54,20,20 +807,12,29,10,54,20,20 +808,12,29,10,54,20,20 +809,12,29,10,54,20,20 +810,12,29,10,24,20,20 +811,12,29,10,54,20,20 +812,12,29,11,399,22,22 +813,12,29,12,298,20,20 +814,12,29,28,194,20,30 +815,12,29,29,183,20,30 +816,12,29,30,195,20,40 +817,12,29,31,54,20,40 +818,12,29,32,54,20,40 +819,12,29,13,129,4,6 +820,12,29,14,129,3,7 +821,12,29,15,129,5,10 +822,12,29,16,129,5,10 +823,12,29,17,129,5,10 +824,12,29,18,129,15,20 +825,12,29,19,339,15,20 +826,12,29,20,129,10,25 +827,12,29,21,130,15,30 +828,12,29,22,130,15,30 +829,12,29,23,340,30,55 +830,12,29,24,318,15,20 +831,12,29,25,130,40,55 +832,12,29,26,318,15,30 +833,12,29,27,318,15,30 +834,12,30,1,201,19,19 +835,12,30,2,201,20,20 +836,12,30,3,201,18,18 +837,12,30,4,201,21,21 +838,12,30,5,201,17,17 +839,12,30,6,201,22,22 +840,12,30,7,201,16,16 +841,12,30,8,201,23,23 +842,12,30,9,201,15,15 +843,12,30,10,201,24,24 +844,12,30,11,201,14,14 +845,12,30,12,201,25,25 +846,12,31,1,201,19,19 +847,12,31,2,201,20,20 +848,12,31,3,201,18,18 +849,12,31,4,201,21,21 +850,12,31,5,201,17,17 +851,12,31,6,201,22,22 +852,12,31,7,201,16,16 +853,12,31,8,201,23,23 +854,12,31,9,201,15,15 +855,12,31,10,201,24,24 +856,12,31,11,201,14,14 +857,12,31,12,201,25,25 +858,12,32,1,201,19,19 +859,12,32,2,201,20,20 +860,12,32,3,201,18,18 +861,12,32,4,201,21,21 +862,12,32,5,201,17,17 +863,12,32,6,201,22,22 +864,12,32,7,201,16,16 +865,12,32,8,201,23,23 +866,12,32,9,201,15,15 +867,12,32,10,201,24,24 +868,12,32,11,201,14,14 +869,12,32,12,201,25,25 +870,12,33,1,201,19,19 +871,12,33,2,201,20,20 +872,12,33,3,201,18,18 +873,12,33,4,201,21,21 +874,12,33,5,201,17,17 +875,12,33,6,201,22,22 +876,12,33,7,201,16,16 +877,12,33,8,201,23,23 +878,12,33,9,201,15,15 +879,12,33,10,201,24,24 +880,12,33,11,201,14,14 +881,12,33,12,201,25,25 +882,12,34,1,201,19,19 +883,12,34,2,201,20,20 +884,12,34,3,201,18,18 +885,12,34,4,201,21,21 +886,12,34,5,201,17,17 +887,12,34,6,201,22,22 +888,12,34,7,201,16,16 +889,12,34,8,201,23,23 +890,12,34,9,201,15,15 +891,12,34,10,201,24,24 +892,12,34,11,201,14,14 +893,12,34,12,201,25,25 +894,12,35,1,201,19,19 +895,12,35,2,201,20,20 +896,12,35,3,201,18,18 +897,12,35,4,201,21,21 +898,12,35,5,201,17,17 +899,12,35,6,201,22,22 +900,12,35,7,201,16,16 +901,12,35,8,201,23,23 +902,12,35,9,201,15,15 +903,12,35,10,201,24,24 +904,12,35,11,201,14,14 +905,12,35,12,201,25,25 +906,12,36,1,201,19,19 +907,12,36,2,201,20,20 +908,12,36,3,201,18,18 +909,12,36,4,201,21,21 +910,12,36,5,201,17,17 +911,12,36,6,201,22,22 +912,12,36,7,201,16,16 +913,12,36,8,201,23,23 +914,12,36,9,201,15,15 +915,12,36,10,201,24,24 +916,12,36,11,201,14,14 +917,12,36,12,201,25,25 +918,12,37,1,201,19,19 +919,12,37,2,201,20,20 +920,12,37,3,201,18,18 +921,12,37,4,201,21,21 +922,12,37,5,201,17,17 +923,12,37,6,201,22,22 +924,12,37,7,201,16,16 +925,12,37,8,201,23,23 +926,12,37,9,201,15,15 +927,12,37,10,201,24,24 +928,12,37,11,201,14,14 +929,12,37,12,201,25,25 +930,12,38,1,201,19,19 +931,12,38,2,201,20,20 +932,12,38,3,201,18,18 +933,12,38,4,201,21,21 +934,12,38,5,201,17,17 +935,12,38,6,201,22,22 +936,12,38,7,201,16,16 +937,12,38,8,201,23,23 +938,12,38,9,201,15,15 +939,12,38,10,201,24,24 +940,12,38,11,201,14,14 +941,12,38,12,201,25,25 +942,12,39,1,201,19,19 +943,12,39,2,201,20,20 +944,12,39,3,201,18,18 +945,12,39,4,201,21,21 +946,12,39,5,201,17,17 +947,12,39,6,201,22,22 +948,12,39,7,201,16,16 +949,12,39,8,201,23,23 +950,12,39,9,201,15,15 +951,12,39,10,201,24,24 +952,12,39,11,201,14,14 +953,12,39,12,201,25,25 +954,12,40,1,201,19,19 +955,12,40,2,201,20,20 +956,12,40,3,201,18,18 +957,12,40,4,201,21,21 +958,12,40,5,201,17,17 +959,12,40,6,201,22,22 +960,12,40,7,201,16,16 +961,12,40,8,201,23,23 +962,12,40,9,201,15,15 +963,12,40,10,201,24,24 +964,12,40,11,201,14,14 +965,12,40,12,201,25,25 +966,12,41,1,201,19,19 +967,12,41,2,201,20,20 +968,12,41,3,201,18,18 +969,12,41,4,201,21,21 +970,12,41,5,201,17,17 +971,12,41,6,201,22,22 +972,12,41,7,201,16,16 +973,12,41,8,201,23,23 +974,12,41,9,201,15,15 +975,12,41,10,201,24,24 +976,12,41,11,201,14,14 +977,12,41,12,201,25,25 +978,12,42,1,201,19,19 +979,12,42,2,201,20,20 +980,12,42,3,201,18,18 +981,12,42,4,201,21,21 +982,12,42,5,201,17,17 +983,12,42,6,201,22,22 +984,12,42,7,201,16,16 +985,12,42,8,201,23,23 +986,12,42,9,201,15,15 +987,12,42,10,201,24,24 +988,12,42,11,201,14,14 +989,12,42,12,201,25,25 +990,12,43,1,201,19,19 +991,12,43,2,201,20,20 +992,12,43,3,201,18,18 +993,12,43,4,201,21,21 +994,12,43,5,201,17,17 +995,12,43,6,201,22,22 +996,12,43,7,201,16,16 +997,12,43,8,201,23,23 +998,12,43,9,201,15,15 +999,12,43,10,201,24,24 +1000,12,43,11,201,14,14 +1001,12,43,12,201,25,25 +1002,12,44,1,201,19,19 +1003,12,44,2,201,20,20 +1004,12,44,3,201,18,18 +1005,12,44,4,201,21,21 +1006,12,44,5,201,17,17 +1007,12,44,6,201,22,22 +1008,12,44,7,201,16,16 +1009,12,44,8,201,23,23 +1010,12,44,9,201,15,15 +1011,12,44,10,201,24,24 +1012,12,44,11,201,14,14 +1013,12,44,12,201,25,25 +1014,12,45,1,201,19,19 +1015,12,45,2,201,20,20 +1016,12,45,3,201,18,18 +1017,12,45,4,201,21,21 +1018,12,45,5,201,17,17 +1019,12,45,6,201,22,22 +1020,12,45,7,201,16,16 +1021,12,45,8,201,23,23 +1022,12,45,9,201,15,15 +1023,12,45,10,201,24,24 +1024,12,45,11,201,14,14 +1025,12,45,12,201,25,25 +1026,12,46,1,201,19,19 +1027,12,46,2,201,20,20 +1028,12,46,3,201,18,18 +1029,12,46,4,201,21,21 +1030,12,46,5,201,17,17 +1031,12,46,6,201,22,22 +1032,12,46,7,201,16,16 +1033,12,46,8,201,23,23 +1034,12,46,9,201,15,15 +1035,12,46,10,201,24,24 +1036,12,46,11,201,14,14 +1037,12,46,12,201,25,25 +1038,12,47,1,201,19,19 +1039,12,47,2,201,20,20 +1040,12,47,3,201,18,18 +1041,12,47,4,201,21,21 +1042,12,47,5,201,17,17 +1043,12,47,6,201,22,22 +1044,12,47,7,201,16,16 +1045,12,47,8,201,23,23 +1046,12,47,9,201,15,15 +1047,12,47,10,201,24,24 +1048,12,47,11,201,14,14 +1049,12,47,12,201,25,25 +1050,12,48,1,67,45,45 +1051,12,48,2,75,45,45 +1052,12,48,3,308,45,45 +1053,12,48,4,42,45,45 +1054,12,48,5,95,44,44 +1055,12,48,6,208,46,46 +1056,12,48,7,42,46,46 +1057,12,48,8,42,44,44 +1058,12,48,9,67,46,46 +1059,12,48,10,308,46,46 +1060,12,48,11,67,44,44 +1061,12,48,12,308,44,44 +1062,12,49,1,64,46,46 +1063,12,49,2,75,46,46 +1064,12,49,3,308,46,46 +1065,12,49,4,42,46,46 +1066,12,49,5,95,45,45 +1067,12,49,6,208,47,47 +1068,12,49,7,42,47,47 +1069,12,49,8,42,45,45 +1070,12,49,9,64,47,47 +1071,12,49,10,308,47,47 +1072,12,49,11,64,45,45 +1073,12,49,12,308,45,45 +1074,12,50,1,67,45,45 +1075,12,50,2,419,45,45 +1076,12,50,3,308,45,45 +1077,12,50,4,42,45,45 +1078,12,50,5,419,44,44 +1079,12,50,6,208,46,46 +1080,12,50,7,42,46,46 +1081,12,50,8,42,44,44 +1082,12,50,9,67,46,46 +1083,12,50,10,308,46,46 +1084,12,50,11,67,44,44 +1085,12,50,12,308,44,44 +1086,12,50,28,42,35,45 +1087,12,50,29,42,35,45 +1088,12,50,30,42,40,50 +1089,12,50,31,42,40,50 +1090,12,50,32,42,40,50 +1091,12,50,13,129,4,6 +1092,12,50,14,129,3,7 +1093,12,50,15,129,5,10 +1094,12,50,16,129,5,10 +1095,12,50,17,129,5,10 +1096,12,50,18,129,15,20 +1097,12,50,19,129,15,20 +1098,12,50,20,129,10,25 +1099,12,50,21,129,10,25 +1100,12,50,22,129,10,25 +1101,12,50,23,130,30,40 +1102,12,50,24,130,30,40 +1103,12,50,25,130,40,55 +1104,12,50,26,130,20,50 +1105,12,50,27,130,20,50 +1106,12,51,1,67,51,51 +1107,12,51,2,419,51,51 +1108,12,51,3,308,51,51 +1109,12,51,4,42,51,51 +1110,12,51,5,419,50,50 +1111,12,51,6,208,52,52 +1112,12,51,7,42,52,52 +1113,12,51,8,42,50,50 +1114,12,51,9,67,52,52 +1115,12,51,10,308,52,52 +1116,12,51,11,67,50,50 +1117,12,51,12,308,50,50 +1118,12,51,28,42,40,50 +1119,12,51,29,42,45,55 +1120,12,51,30,131,40,50 +1121,12,51,31,131,45,55 +1122,12,51,32,131,50,60 +1123,12,51,13,129,4,6 +1124,12,51,14,129,3,7 +1125,12,51,15,129,5,10 +1126,12,51,16,129,5,10 +1127,12,51,17,129,5,10 +1128,12,51,18,129,15,20 +1129,12,51,19,129,15,20 +1130,12,51,20,129,10,25 +1131,12,51,21,129,10,25 +1132,12,51,22,129,10,25 +1133,12,51,23,130,30,40 +1134,12,51,24,130,30,40 +1135,12,51,25,130,40,55 +1136,12,51,26,130,20,50 +1137,12,51,27,130,20,50 +1138,12,52,1,67,51,51 +1139,12,52,2,75,51,51 +1140,12,52,3,308,51,51 +1141,12,52,4,42,51,51 +1142,12,52,5,95,50,50 +1143,12,52,6,208,52,52 +1144,12,52,7,42,52,52 +1145,12,52,8,42,50,50 +1146,12,52,9,67,52,52 +1147,12,52,10,308,52,52 +1148,12,52,11,67,50,50 +1149,12,52,12,308,50,50 +1150,12,53,1,67,51,51 +1151,12,53,2,75,51,51 +1152,12,53,3,308,51,51 +1153,12,53,4,42,51,51 +1154,12,53,5,95,50,50 +1155,12,53,6,208,52,52 +1156,12,53,7,42,52,52 +1157,12,53,8,42,50,50 +1158,12,53,9,67,52,52 +1159,12,53,10,308,52,52 +1160,12,53,11,67,50,50 +1161,12,53,12,308,50,50 +1162,12,54,1,41,4,4 +1163,12,54,2,41,4,4 +1164,12,54,3,74,5,5 +1165,12,54,4,74,5,5 +1166,12,54,5,41,5,5 +1167,12,54,6,41,5,5 +1168,12,54,7,41,6,6 +1169,12,54,8,41,6,6 +1170,12,54,9,41,6,6 +1171,12,54,10,41,6,6 +1172,12,54,11,54,5,5 +1173,12,54,12,54,5,5 +1174,12,54,28,41,20,30 +1175,12,54,29,54,20,30 +1176,12,54,30,42,20,40 +1177,12,54,31,55,20,40 +1178,12,54,32,55,20,40 +1179,12,54,13,129,4,6 +1180,12,54,14,129,3,7 +1181,12,54,15,129,5,10 +1182,12,54,16,129,5,10 +1183,12,54,17,129,5,10 +1184,12,54,18,129,15,20 +1185,12,54,19,339,15,20 +1186,12,54,20,129,10,25 +1187,12,54,21,339,10,25 +1188,12,54,22,339,10,25 +1189,12,54,23,130,30,40 +1190,12,54,24,340,30,40 +1191,12,54,25,130,40,55 +1192,12,54,26,340,20,50 +1193,12,54,27,340,20,50 +1194,12,55,1,74,5,5 +1195,12,55,2,74,5,5 +1196,12,55,3,41,6,6 +1197,12,55,4,41,6,6 +1198,12,55,5,74,6,6 +1199,12,55,6,74,6,6 +1200,12,55,7,74,7,7 +1201,12,55,8,74,7,7 +1202,12,55,9,74,8,8 +1203,12,55,10,74,8,8 +1204,12,55,11,74,4,4 +1205,12,55,12,74,4,4 +1206,12,56,1,41,8,8 +1207,12,56,2,41,8,8 +1208,12,56,3,54,8,8 +1209,12,56,4,74,9,9 +1210,12,56,5,54,9,9 +1211,12,56,6,41,9,9 +1212,12,56,7,54,8,8 +1213,12,56,8,54,10,10 +1214,12,56,9,41,10,10 +1215,12,56,10,41,10,10 +1216,12,56,11,41,10,10 +1217,12,56,12,41,10,10 +1218,12,56,28,41,20,30 +1219,12,56,29,54,20,30 +1220,12,56,30,42,20,40 +1221,12,56,31,55,20,40 +1222,12,56,32,55,20,40 +1223,12,56,13,129,4,6 +1224,12,56,14,129,3,7 +1225,12,56,15,129,5,10 +1226,12,56,16,129,5,10 +1227,12,56,17,129,5,10 +1228,12,56,18,129,15,20 +1229,12,56,19,339,15,20 +1230,12,56,20,129,10,25 +1231,12,56,21,339,10,25 +1232,12,56,22,339,10,25 +1233,12,56,23,130,30,40 +1234,12,56,24,340,30,40 +1235,12,56,25,130,40,55 +1236,12,56,26,340,20,50 +1237,12,56,27,340,20,50 +1238,12,57,1,323,55,55 +1239,12,57,2,112,55,55 +1240,12,57,3,22,54,54 +1241,12,57,3,22,54,54 +1242,12,57,3,354,54,54 +1243,12,57,4,75,54,54 +1244,12,57,4,75,54,54 +1245,12,57,4,42,54,54 +1246,12,57,5,22,55,55 +1247,12,57,5,324,55,55 +1248,12,57,6,110,55,55 +1249,12,57,6,324,55,55 +1250,12,57,7,227,56,56 +1251,12,57,8,75,56,56 +1252,12,57,9,322,22,22 +1253,12,57,9,322,22,22 +1254,12,57,9,322,22,22 +1255,12,57,9,207,22,22 +1256,12,57,9,322,22,22 +1257,12,57,9,240,22,22 +1258,12,57,10,111,22,22 +1259,12,57,10,111,22,22 +1260,12,57,10,111,22,22 +1261,12,57,10,207,22,22 +1262,12,57,10,111,22,22 +1263,12,57,10,240,22,22 +1264,12,57,11,322,24,24 +1265,12,57,11,324,24,24 +1266,12,57,12,111,24,24 +1267,12,57,12,324,24,24 +1268,12,58,1,75,55,55 +1269,12,58,2,219,55,55 +1270,12,58,3,42,54,54 +1271,12,58,4,67,56,56 +1272,12,58,5,219,56,56 +1273,12,58,6,110,56,56 +1274,12,58,7,95,54,54 +1275,12,58,8,323,56,56 +1276,12,58,9,74,25,25 +1277,12,58,9,74,25,25 +1278,12,58,9,74,25,25 +1279,12,58,9,74,25,25 +1280,12,58,9,74,25,25 +1281,12,58,9,240,25,25 +1282,12,58,10,218,25,25 +1283,12,58,10,218,25,25 +1284,12,58,10,218,25,25 +1285,12,58,10,218,25,25 +1286,12,58,10,218,25,25 +1287,12,58,10,240,25,25 +1288,12,58,11,74,27,27 +1289,12,58,12,218,27,27 +1290,12,59,1,75,57,57 +1291,12,59,2,219,57,57 +1292,12,59,3,42,56,56 +1293,12,59,4,67,58,58 +1294,12,59,5,219,58,58 +1295,12,59,6,110,58,58 +1296,12,59,7,95,56,56 +1297,12,59,8,323,58,58 +1298,12,59,9,74,27,27 +1299,12,59,9,74,27,27 +1300,12,59,9,74,27,27 +1301,12,59,9,74,27,27 +1302,12,59,9,74,27,27 +1303,12,59,9,240,27,27 +1304,12,59,10,218,27,27 +1305,12,59,10,218,27,27 +1306,12,59,10,218,27,27 +1307,12,59,10,218,27,27 +1308,12,59,10,218,27,27 +1309,12,59,10,240,27,27 +1310,12,59,11,74,29,29 +1311,12,59,12,218,29,29 +1312,12,60,1,400,53,53 +1313,12,60,2,400,54,54 +1314,12,60,3,397,53,53 +1315,12,60,3,397,53,53 +1316,12,60,3,164,53,53 +1317,12,60,4,397,54,54 +1318,12,60,4,397,54,54 +1319,12,60,4,164,54,54 +1320,12,60,5,55,53,53 +1321,12,60,6,55,54,54 +1322,12,60,7,358,52,52 +1323,12,60,8,358,54,54 +1324,12,60,9,400,52,52 +1325,12,60,9,338,52,52 +1326,12,60,9,337,52,52 +1327,12,60,9,400,52,52 +1328,12,60,9,400,52,52 +1329,12,60,9,400,52,52 +1330,12,60,10,397,52,52 +1331,12,60,10,338,52,52 +1332,12,60,10,337,52,52 +1333,12,60,10,397,52,52 +1334,12,60,10,397,52,52 +1335,12,60,10,397,52,52 +1336,12,60,11,400,52,52 +1337,12,60,12,397,52,52 +1338,12,60,28,55,40,50 +1339,12,60,29,55,40,50 +1340,12,60,30,55,45,55 +1341,12,60,31,55,45,55 +1342,12,60,32,55,45,55 +1343,12,60,13,129,3,6 +1344,12,60,14,129,4,7 +1345,12,60,15,129,5,10 +1346,12,60,16,129,5,10 +1347,12,60,17,129,5,10 +1348,12,60,18,129,15,20 +1349,12,60,19,118,15,20 +1350,12,60,20,129,10,25 +1351,12,60,21,118,10,25 +1352,12,60,22,118,10,25 +1353,12,60,23,130,30,40 +1354,12,60,24,119,30,40 +1355,12,60,25,130,40,55 +1356,12,60,26,119,20,50 +1357,12,60,27,119,20,50 +1358,12,61,1,42,55,55 +1359,12,61,2,437,56,56 +1360,12,61,3,93,55,55 +1361,12,61,4,42,56,56 +1362,12,61,5,93,56,56 +1363,12,61,6,437,55,55 +1364,12,61,7,93,54,54 +1365,12,61,8,93,54,54 +1366,12,61,9,436,54,54 +1367,12,61,9,338,54,54 +1368,12,61,9,337,54,54 +1369,12,61,9,436,54,54 +1370,12,61,9,436,54,54 +1371,12,61,9,436,54,54 +1372,12,61,10,437,56,56 +1373,12,61,10,338,56,56 +1374,12,61,10,337,56,56 +1375,12,61,10,437,56,56 +1376,12,61,10,437,56,56 +1377,12,61,10,437,56,56 +1378,12,61,11,436,54,54 +1379,12,61,12,437,56,56 +1380,12,62,1,42,55,55 +1381,12,62,2,437,56,56 +1382,12,62,3,93,55,55 +1383,12,62,4,42,56,56 +1384,12,62,5,93,56,56 +1385,12,62,6,437,55,55 +1386,12,62,7,93,54,54 +1387,12,62,8,93,54,54 +1388,12,62,9,436,54,54 +1389,12,62,9,338,54,54 +1390,12,62,9,337,54,54 +1391,12,62,9,436,54,54 +1392,12,62,9,436,54,54 +1393,12,62,9,436,54,54 +1394,12,62,10,437,56,56 +1395,12,62,10,338,56,56 +1396,12,62,10,337,56,56 +1397,12,62,10,437,56,56 +1398,12,62,10,437,56,56 +1399,12,62,10,437,56,56 +1400,12,62,11,436,54,54 +1401,12,62,12,437,56,56 +1402,12,63,1,42,55,55 +1403,12,63,2,437,56,56 +1404,12,63,3,93,55,55 +1405,12,63,4,42,56,56 +1406,12,63,5,93,56,56 +1407,12,63,6,437,55,55 +1408,12,63,7,93,54,54 +1409,12,63,8,93,54,54 +1410,12,63,9,436,54,54 +1411,12,63,9,338,54,54 +1412,12,63,9,337,54,54 +1413,12,63,9,436,54,54 +1414,12,63,9,436,54,54 +1415,12,63,9,436,54,54 +1416,12,63,10,437,56,56 +1417,12,63,10,338,56,56 +1418,12,63,10,337,56,56 +1419,12,63,10,437,56,56 +1420,12,63,10,437,56,56 +1421,12,63,10,437,56,56 +1422,12,63,11,436,54,54 +1423,12,63,12,437,56,56 +1424,12,64,1,42,45,45 +1425,12,64,2,437,46,46 +1426,12,64,3,93,45,45 +1427,12,64,4,42,46,46 +1428,12,64,5,93,46,46 +1429,12,64,6,437,45,45 +1430,12,64,7,93,44,44 +1431,12,64,8,93,44,44 +1432,12,64,9,436,44,44 +1433,12,64,9,338,44,44 +1434,12,64,9,337,44,44 +1435,12,64,9,436,44,44 +1436,12,64,9,436,44,44 +1437,12,64,9,436,44,44 +1438,12,64,10,437,46,46 +1439,12,64,10,338,46,46 +1440,12,64,10,337,46,46 +1441,12,64,10,437,46,46 +1442,12,64,10,437,46,46 +1443,12,64,10,437,46,46 +1444,12,64,11,436,44,44 +1445,12,64,12,437,46,46 +1556,12,70,1,42,55,55 +1557,12,70,2,437,56,56 +1558,12,70,3,93,55,55 +1559,12,70,4,42,56,56 +1560,12,70,5,93,56,56 +1561,12,70,6,437,55,55 +1562,12,70,7,93,54,54 +1563,12,70,8,93,54,54 +1564,12,70,9,436,54,54 +1565,12,70,9,338,54,54 +1566,12,70,9,337,54,54 +1567,12,70,9,436,54,54 +1568,12,70,9,436,54,54 +1569,12,70,9,436,54,54 +1570,12,70,10,437,56,56 +1571,12,70,10,338,56,56 +1572,12,70,10,337,56,56 +1573,12,70,10,437,56,56 +1574,12,70,10,437,56,56 +1575,12,70,10,437,56,56 +1576,12,70,11,436,54,54 +1577,12,70,12,437,56,56 +1688,12,76,1,42,65,65 +1689,12,76,2,437,66,66 +1690,12,76,3,93,65,65 +1691,12,76,4,42,66,66 +1692,12,76,5,93,66,66 +1693,12,76,6,437,65,65 +1694,12,76,7,93,64,64 +1695,12,76,8,93,64,64 +1696,12,76,9,436,64,64 +1697,12,76,9,338,64,64 +1698,12,76,9,337,64,64 +1699,12,76,9,436,64,64 +1700,12,76,9,436,64,64 +1701,12,76,9,436,64,64 +1702,12,76,10,437,66,66 +1703,12,76,10,338,66,66 +1704,12,76,10,337,66,66 +1705,12,76,10,437,66,66 +1706,12,76,10,437,66,66 +1707,12,76,10,437,66,66 +1708,12,76,11,436,64,64 +1709,12,76,12,437,66,66 +1820,12,82,1,42,55,55 +1821,12,82,2,437,56,56 +1822,12,82,3,93,55,55 +1823,12,82,4,42,56,56 +1824,12,82,5,93,56,56 +1825,12,82,6,437,55,55 +1826,12,82,7,93,54,54 +1827,12,82,8,93,54,54 +1828,12,82,9,436,54,54 +1829,12,82,9,338,54,54 +1830,12,82,9,337,54,54 +1831,12,82,9,436,54,54 +1832,12,82,9,436,54,54 +1833,12,82,9,436,54,54 +1834,12,82,10,437,56,56 +1835,12,82,10,338,56,56 +1836,12,82,10,337,56,56 +1837,12,82,10,437,56,56 +1838,12,82,10,437,56,56 +1839,12,82,10,437,56,56 +1840,12,82,11,436,54,54 +1841,12,82,12,437,56,56 +2370,12,107,1,42,51,51 +2371,12,107,2,215,51,51 +2372,12,107,3,75,52,52 +2373,12,107,4,42,52,52 +2374,12,107,5,215,52,52 +2375,12,107,6,95,51,51 +2376,12,107,7,215,50,50 +2377,12,107,8,208,52,52 +2378,12,107,9,95,52,52 +2379,12,107,10,42,50,50 +2380,12,107,11,95,50,50 +2381,12,107,12,42,50,50 +2382,12,108,1,42,53,53 +2383,12,108,2,215,53,53 +2384,12,108,3,75,54,54 +2385,12,108,4,42,54,54 +2386,12,108,5,215,54,54 +2387,12,108,6,208,53,53 +2388,12,108,7,215,52,52 +2389,12,108,8,208,54,54 +2390,12,108,9,95,53,53 +2391,12,108,10,42,52,52 +2392,12,108,11,95,52,52 +2393,12,108,12,42,52,52 +2394,12,109,1,42,53,53 +2395,12,109,2,215,53,53 +2396,12,109,3,75,54,54 +2397,12,109,4,42,54,54 +2398,12,109,5,215,54,54 +2399,12,109,6,208,53,53 +2400,12,109,7,215,52,52 +2401,12,109,8,208,54,54 +2402,12,109,9,95,53,53 +2403,12,109,10,42,52,52 +2404,12,109,11,95,52,52 +2405,12,109,12,42,52,52 +2406,12,110,1,42,53,53 +2407,12,110,2,215,53,53 +2408,12,110,3,75,54,54 +2409,12,110,4,42,54,54 +2410,12,110,5,215,54,54 +2411,12,110,6,208,53,53 +2412,12,110,7,215,52,52 +2413,12,110,8,208,54,54 +2414,12,110,9,95,53,53 +2415,12,110,10,42,52,52 +2416,12,110,11,95,52,52 +2417,12,110,12,42,52,52 +2418,12,111,1,42,55,55 +2419,12,111,2,215,55,55 +2420,12,111,3,75,56,56 +2421,12,111,4,42,56,56 +2422,12,111,5,215,56,56 +2423,12,111,6,208,55,55 +2424,12,111,7,215,54,54 +2425,12,111,8,208,56,56 +2426,12,111,9,208,54,54 +2427,12,111,10,42,54,54 +2428,12,111,11,208,54,54 +2429,12,111,12,42,54,54 +2430,12,112,1,42,55,55 +2431,12,112,2,215,55,55 +2432,12,112,3,75,56,56 +2433,12,112,4,42,56,56 +2434,12,112,5,215,56,56 +2435,12,112,6,208,55,55 +2436,12,112,7,215,54,54 +2437,12,112,8,208,56,56 +2438,12,112,9,208,54,54 +2439,12,112,10,42,54,54 +2440,12,112,11,208,54,54 +2441,12,112,12,42,54,54 +2442,12,113,1,436,14,14 +2443,12,113,2,41,14,14 +2444,12,113,3,74,15,15 +2445,12,113,4,41,15,15 +2446,12,113,5,436,15,15 +2447,12,113,6,41,15,15 +2448,12,113,7,436,16,16 +2449,12,113,8,436,14,14 +2450,12,113,9,74,16,16 +2451,12,113,9,74,16,16 +2452,12,113,9,74,16,16 +2453,12,113,9,74,16,16 +2454,12,113,9,74,16,16 +2455,12,113,9,27,16,16 +2456,12,113,10,41,16,16 +2457,12,113,10,41,16,16 +2458,12,113,10,41,16,16 +2459,12,113,10,41,16,16 +2460,12,113,10,41,16,16 +2461,12,113,10,27,16,16 +2462,12,113,11,74,16,16 +2463,12,113,12,41,16,16 +2464,12,114,1,436,15,15 +2465,12,114,2,41,15,15 +2466,12,114,3,74,16,16 +2467,12,114,4,41,16,16 +2468,12,114,5,436,16,16 +2469,12,114,6,443,15,15 +2470,12,114,7,436,15,15 +2471,12,114,8,436,17,17 +2472,12,114,9,443,16,16 +2473,12,114,9,443,16,16 +2474,12,114,9,443,16,16 +2475,12,114,9,443,16,16 +2476,12,114,9,443,16,16 +2477,12,114,9,27,16,16 +2478,12,114,10,41,17,17 +2479,12,114,10,41,17,17 +2480,12,114,10,41,17,17 +2481,12,114,10,41,17,17 +2482,12,114,10,41,17,17 +2483,12,114,10,27,17,17 +2484,12,114,11,443,17,17 +2485,12,114,12,41,17,17 +2486,12,115,1,74,22,22 +2487,12,115,2,74,22,22 +2488,12,115,3,74,22,22 +2489,12,115,4,74,22,22 +2490,12,115,5,74,22,22 +2491,12,115,6,74,22,22 +2492,12,115,7,74,22,22 +2493,12,115,8,74,22,22 +2494,12,115,9,74,22,22 +2495,12,115,10,449,22,22 +2496,12,115,11,74,22,22 +2497,12,115,12,449,23,23 +2498,12,116,1,74,23,23 +2499,12,116,2,74,23,23 +2500,12,116,3,74,23,23 +2501,12,116,4,74,23,23 +2502,12,116,5,74,23,23 +2503,12,116,6,74,23,23 +2504,12,116,7,74,23,23 +2505,12,116,8,449,22,22 +2506,12,116,9,74,23,23 +2507,12,116,10,449,23,23 +2508,12,116,11,74,23,23 +2509,12,116,12,449,24,24 +2510,12,117,1,74,24,24 +2511,12,117,2,74,24,24 +2512,12,117,3,74,24,24 +2513,12,117,4,74,24,24 +2514,12,117,5,74,24,24 +2515,12,117,6,449,22,22 +2516,12,117,7,74,24,24 +2517,12,117,8,449,23,23 +2518,12,117,9,74,24,24 +2519,12,117,10,449,24,24 +2520,12,117,11,74,24,24 +2521,12,117,12,449,25,25 +2522,12,118,1,397,17,17 +2523,12,118,2,315,16,16 +2524,12,118,3,172,16,16 +2525,12,118,3,397,16,16 +2526,12,118,3,402,16,16 +2527,12,118,4,172,16,16 +2528,12,118,4,397,16,16 +2529,12,118,4,402,16,16 +2530,12,118,5,315,17,17 +2531,12,118,6,402,17,17 +2532,12,118,7,25,18,18 +2533,12,118,8,172,16,16 +2534,12,118,9,25,18,18 +2535,12,118,10,172,16,16 +2536,12,118,11,25,18,18 +2537,12,118,12,172,16,16 +2538,12,119,28,72,20,30 +2539,12,119,29,278,20,30 +2540,12,119,30,73,20,40 +2541,12,119,31,279,20,40 +2542,12,119,32,279,20,40 +2543,12,119,13,129,4,6 +2544,12,119,14,129,3,7 +2545,12,119,15,129,5,10 +2546,12,119,16,129,5,10 +2547,12,119,17,129,5,10 +2548,12,119,18,129,15,20 +2549,12,119,19,456,15,20 +2550,12,119,20,129,10,25 +2551,12,119,21,456,10,25 +2552,12,119,22,456,10,25 +2553,12,119,23,130,30,40 +2554,12,119,24,457,30,40 +2555,12,119,25,211,20,40 +2556,12,119,26,457,20,50 +2557,12,119,27,457,20,50 +2558,12,120,1,74,30,30 +2559,12,120,2,75,31,31 +2560,12,120,3,41,30,30 +2561,12,120,4,42,31,31 +2562,12,120,5,74,29,29 +2563,12,120,6,75,32,32 +2564,12,120,7,95,32,32 +2565,12,120,8,95,33,33 +2566,12,120,9,74,31,31 +2567,12,120,10,75,33,33 +2568,12,120,11,74,31,31 +2569,12,120,12,75,33,33 +2570,12,121,1,75,30,30 +2571,12,121,2,75,31,31 +2572,12,121,3,42,30,30 +2573,12,121,4,42,31,31 +2574,12,121,5,75,29,29 +2575,12,121,6,75,32,32 +2576,12,121,7,95,32,32 +2577,12,121,8,95,33,33 +2578,12,121,9,75,31,31 +2579,12,121,9,303,31,31 +2580,12,121,9,302,31,31 +2581,12,121,9,75,31,31 +2582,12,121,9,75,31,31 +2583,12,121,9,75,31,31 +2584,12,121,10,75,33,33 +2585,12,121,10,303,33,33 +2586,12,121,10,302,33,33 +2587,12,121,10,75,33,33 +2588,12,121,10,75,33,33 +2589,12,121,10,75,33,33 +2590,12,121,11,74,31,31 +2591,12,121,12,75,33,33 +2592,12,122,1,75,30,30 +2593,12,122,2,75,31,31 +2594,12,122,3,42,30,30 +2595,12,122,4,42,31,31 +2596,12,122,5,75,29,29 +2597,12,122,6,75,32,32 +2598,12,122,7,95,32,32 +2599,12,122,8,95,33,33 +2600,12,122,9,75,31,31 +2601,12,122,9,303,31,31 +2602,12,122,9,302,31,31 +2603,12,122,9,75,31,31 +2604,12,122,9,75,31,31 +2605,12,122,9,75,31,31 +2606,12,122,10,75,33,33 +2607,12,122,10,303,33,33 +2608,12,122,10,302,33,33 +2609,12,122,10,75,33,33 +2610,12,122,10,75,33,33 +2611,12,122,10,75,33,33 +2612,12,122,11,74,31,31 +2613,12,122,12,75,33,33 +2614,12,123,1,75,30,30 +2615,12,123,2,95,31,31 +2616,12,123,3,42,30,30 +2617,12,123,4,42,31,31 +2618,12,123,5,75,29,29 +2619,12,123,6,75,32,32 +2620,12,123,7,95,32,32 +2621,12,123,8,95,33,33 +2622,12,123,9,75,31,31 +2623,12,123,9,303,31,31 +2624,12,123,9,302,31,31 +2625,12,123,9,75,31,31 +2626,12,123,9,75,31,31 +2627,12,123,9,75,31,31 +2628,12,123,10,75,33,33 +2629,12,123,10,303,33,33 +2630,12,123,10,302,33,33 +2631,12,123,10,75,33,33 +2632,12,123,10,75,33,33 +2633,12,123,10,75,33,33 +2634,12,123,11,74,31,31 +2635,12,123,12,75,33,33 +2636,12,124,1,75,31,31 +2637,12,124,2,95,32,32 +2638,12,124,3,42,31,31 +2639,12,124,4,42,32,32 +2640,12,124,5,75,30,30 +2641,12,124,6,95,33,33 +2642,12,124,7,208,33,33 +2643,12,124,8,208,34,34 +2644,12,124,9,75,32,32 +2645,12,124,9,303,32,32 +2646,12,124,9,302,32,32 +2647,12,124,9,75,32,32 +2648,12,124,9,75,32,32 +2649,12,124,9,75,32,32 +2650,12,124,10,75,34,34 +2651,12,124,10,303,34,34 +2652,12,124,10,302,34,34 +2653,12,124,10,75,34,34 +2654,12,124,10,75,34,34 +2655,12,124,10,75,34,34 +2656,12,124,11,74,32,32 +2657,12,124,12,75,34,34 +2658,12,125,1,75,31,31 +2659,12,125,2,95,32,32 +2660,12,125,3,42,31,31 +2661,12,125,4,42,32,32 +2662,12,125,5,75,30,30 +2663,12,125,6,95,33,33 +2664,12,125,7,208,33,33 +2665,12,125,8,208,34,34 +2666,12,125,9,75,32,32 +2667,12,125,9,303,32,32 +2668,12,125,9,302,32,32 +2669,12,125,9,75,32,32 +2670,12,125,9,75,32,32 +2671,12,125,9,75,32,32 +2672,12,125,10,75,34,34 +2673,12,125,10,303,34,34 +2674,12,125,10,302,34,34 +2675,12,125,10,75,34,34 +2676,12,125,10,75,34,34 +2677,12,125,10,75,34,34 +2678,12,125,11,74,32,32 +2679,12,125,12,75,34,34 +2680,12,126,1,92,12,12 +2681,12,126,2,92,12,12 +2682,12,126,3,92,14,14 +2683,12,126,4,92,14,14 +2684,12,126,5,92,13,13 +2685,12,126,6,92,13,13 +2686,12,126,7,92,13,13 +2687,12,126,8,92,13,13 +2688,12,126,9,92,16,16 +2689,12,126,9,93,16,16 +2690,12,126,9,93,16,16 +2691,12,126,9,93,16,16 +2692,12,126,9,93,16,16 +2693,12,126,9,93,16,16 +2694,12,126,10,92,16,16 +2695,12,126,10,93,16,16 +2696,12,126,10,93,16,16 +2697,12,126,10,93,16,16 +2698,12,126,10,93,16,16 +2699,12,126,10,93,16,16 +2700,12,126,11,92,15,15 +2701,12,126,12,92,15,15 +2702,12,127,1,92,12,12 +2703,12,127,2,92,12,12 +2704,12,127,3,92,14,14 +2705,12,127,4,92,14,14 +2706,12,127,5,92,13,13 +2707,12,127,6,92,13,13 +2708,12,127,7,92,13,13 +2709,12,127,8,92,13,13 +2710,12,127,9,92,16,16 +2711,12,127,9,93,16,16 +2712,12,127,9,93,16,16 +2713,12,127,9,93,16,16 +2714,12,127,9,93,16,16 +2715,12,127,9,93,16,16 +2716,12,127,10,92,16,16 +2717,12,127,10,93,16,16 +2718,12,127,10,93,16,16 +2719,12,127,10,93,16,16 +2720,12,127,10,93,16,16 +2721,12,127,10,93,16,16 +2722,12,127,11,92,15,15 +2723,12,127,12,92,15,15 +2724,12,128,1,92,12,12 +2725,12,128,2,92,12,12 +2726,12,128,3,92,14,14 +2727,12,128,4,92,14,14 +2728,12,128,5,92,13,13 +2729,12,128,6,92,13,13 +2730,12,128,7,92,13,13 +2731,12,128,8,92,13,13 +2732,12,128,9,92,16,16 +2733,12,128,9,93,16,16 +2734,12,128,9,93,16,16 +2735,12,128,9,93,16,16 +2736,12,128,9,93,16,16 +2737,12,128,9,93,16,16 +2738,12,128,10,92,16,16 +2739,12,128,10,93,16,16 +2740,12,128,10,93,16,16 +2741,12,128,10,93,16,16 +2742,12,128,10,93,16,16 +2743,12,128,10,93,16,16 +2744,12,128,11,92,15,15 +2745,12,128,12,92,15,15 +2746,12,129,1,92,12,12 +2747,12,129,2,92,12,12 +2748,12,129,3,92,14,14 +2749,12,129,4,92,14,14 +2750,12,129,5,92,13,13 +2751,12,129,6,92,13,13 +2752,12,129,7,92,13,13 +2753,12,129,8,92,13,13 +2754,12,129,9,92,16,16 +2755,12,129,9,93,16,16 +2756,12,129,9,93,16,16 +2757,12,129,9,93,16,16 +2758,12,129,9,93,16,16 +2759,12,129,9,93,16,16 +2760,12,129,10,92,16,16 +2761,12,129,10,93,16,16 +2762,12,129,10,93,16,16 +2763,12,129,10,93,16,16 +2764,12,129,10,93,16,16 +2765,12,129,10,93,16,16 +2766,12,129,11,92,15,15 +2767,12,129,12,92,15,15 +2768,12,130,1,92,12,12 +2769,12,130,2,92,12,12 +2770,12,130,3,92,14,14 +2771,12,130,4,92,14,14 +2772,12,130,5,92,13,13 +2773,12,130,6,92,13,13 +2774,12,130,7,92,13,13 +2775,12,130,8,92,13,13 +2776,12,130,9,92,16,16 +2777,12,130,9,93,16,16 +2778,12,130,9,93,16,16 +2779,12,130,9,93,16,16 +2780,12,130,9,93,16,16 +2781,12,130,9,93,16,16 +2782,12,130,10,92,16,16 +2783,12,130,10,93,16,16 +2784,12,130,10,93,16,16 +2785,12,130,10,93,16,16 +2786,12,130,10,93,16,16 +2787,12,130,10,93,16,16 +2788,12,130,11,92,15,15 +2789,12,130,12,92,15,15 +2790,12,131,1,92,12,12 +2791,12,131,2,92,12,12 +2792,12,131,3,92,14,14 +2793,12,131,4,92,14,14 +2794,12,131,5,92,13,13 +2795,12,131,6,92,13,13 +2796,12,131,7,92,13,13 +2797,12,131,8,92,13,13 +2798,12,131,9,92,16,16 +2799,12,131,9,93,16,16 +2800,12,131,9,93,16,16 +2801,12,131,9,93,16,16 +2802,12,131,9,93,16,16 +2803,12,131,9,93,16,16 +2804,12,131,10,92,16,16 +2805,12,131,10,93,16,16 +2806,12,131,10,93,16,16 +2807,12,131,10,93,16,16 +2808,12,131,10,93,16,16 +2809,12,131,10,93,16,16 +2810,12,131,11,92,15,15 +2811,12,131,12,92,15,15 +2812,12,132,1,92,12,12 +2813,12,132,2,92,12,12 +2814,12,132,3,92,14,14 +2815,12,132,4,92,14,14 +2816,12,132,5,92,13,13 +2817,12,132,6,92,13,13 +2818,12,132,7,92,13,13 +2819,12,132,8,92,13,13 +2820,12,132,9,92,16,16 +2821,12,132,9,93,16,16 +2822,12,132,9,93,16,16 +2823,12,132,9,93,16,16 +2824,12,132,9,93,16,16 +2825,12,132,9,93,16,16 +2826,12,132,10,92,16,16 +2827,12,132,10,93,16,16 +2828,12,132,10,93,16,16 +2829,12,132,10,93,16,16 +2830,12,132,10,93,16,16 +2831,12,132,10,93,16,16 +2832,12,132,11,92,15,15 +2833,12,132,12,92,15,15 +2834,12,133,1,92,12,12 +2835,12,133,2,92,12,12 +2836,12,133,3,92,14,14 +2837,12,133,4,92,14,14 +2838,12,133,5,92,13,13 +2839,12,133,6,92,13,13 +2840,12,133,7,92,13,13 +2841,12,133,8,92,13,13 +2842,12,133,9,92,16,16 +2843,12,133,9,94,16,16 +2844,12,133,9,94,16,16 +2845,12,133,9,94,16,16 +2846,12,133,9,94,16,16 +2847,12,133,9,94,16,16 +2848,12,133,10,92,16,16 +2849,12,133,10,93,16,16 +2850,12,133,10,93,16,16 +2851,12,133,10,93,16,16 +2852,12,133,10,93,16,16 +2853,12,133,10,93,16,16 +2854,12,133,11,92,15,15 +2855,12,133,12,92,15,15 +2856,12,134,1,92,12,12 +2857,12,134,2,92,12,12 +2858,12,134,3,92,14,14 +2859,12,134,4,92,14,14 +2860,12,134,5,92,13,13 +2861,12,134,6,92,13,13 +2862,12,134,7,92,13,13 +2863,12,134,8,92,13,13 +2864,12,134,9,92,16,16 +2865,12,134,9,93,16,16 +2866,12,134,9,93,16,16 +2867,12,134,9,93,16,16 +2868,12,134,9,93,16,16 +2869,12,134,9,93,16,16 +2870,12,134,10,92,16,16 +2871,12,134,10,93,16,16 +2872,12,134,10,93,16,16 +2873,12,134,10,93,16,16 +2874,12,134,10,93,16,16 +2875,12,134,10,93,16,16 +2876,12,134,11,92,15,15 +2877,12,134,12,92,15,15 +2878,12,135,1,396,2,2 +2879,12,135,1,283,2,2 +2880,12,135,2,399,2,2 +2881,12,135,2,283,2,2 +2882,12,135,3,396,3,3 +2883,12,135,3,396,3,3 +2884,12,135,3,399,3,3 +2885,12,135,4,399,3,3 +2886,12,135,5,396,3,3 +2887,12,135,5,202,3,3 +2888,12,135,6,399,3,3 +2889,12,135,6,202,3,3 +2890,12,135,7,396,4,4 +2891,12,135,8,399,4,4 +2892,12,135,9,396,4,4 +2893,12,135,9,338,4,4 +2894,12,135,9,337,4,4 +2895,12,135,9,400,4,4 +2896,12,135,9,400,4,4 +2897,12,135,9,400,4,4 +2898,12,135,10,399,4,4 +2899,12,135,10,338,4,4 +2900,12,135,10,337,4,4 +2901,12,135,10,397,4,4 +2902,12,135,10,397,4,4 +2903,12,135,10,397,4,4 +2904,12,135,11,396,4,4 +2905,12,135,11,202,4,4 +2906,12,135,12,399,4,4 +2907,12,135,12,202,4,4 +2908,12,135,28,54,20,30 +2909,12,135,29,54,20,40 +2910,12,135,30,55,30,40 +2911,12,135,31,55,30,40 +2912,12,135,32,55,20,40 +2913,12,135,13,129,3,6 +2914,12,135,14,129,4,7 +2915,12,135,15,129,5,10 +2916,12,135,16,129,5,10 +2917,12,135,17,129,5,10 +2918,12,135,18,129,15,20 +2919,12,135,19,118,15,20 +2920,12,135,20,129,10,25 +2921,12,135,21,118,10,25 +2922,12,135,22,118,10,25 +2923,12,135,23,130,30,40 +2924,12,135,24,119,30,40 +2925,12,135,25,130,40,55 +2926,12,135,26,119,20,50 +2927,12,135,27,119,20,50 +2928,12,136,1,396,2,2 +2929,12,136,1,283,2,2 +2930,12,136,2,399,2,2 +2931,12,136,2,283,2,2 +2932,12,136,3,396,3,3 +2933,12,136,3,396,3,3 +2934,12,136,3,399,3,3 +2935,12,136,4,399,3,3 +2936,12,136,5,396,3,3 +2937,12,136,5,202,3,3 +2938,12,136,6,399,3,3 +2939,12,136,6,202,3,3 +2940,12,136,7,396,4,4 +2941,12,136,8,399,4,4 +2942,12,136,9,396,4,4 +2943,12,136,9,338,4,4 +2944,12,136,9,337,4,4 +2945,12,136,9,400,4,4 +2946,12,136,9,400,4,4 +2947,12,136,9,400,4,4 +2948,12,136,10,399,4,4 +2949,12,136,10,338,4,4 +2950,12,136,10,337,4,4 +2951,12,136,10,397,4,4 +2952,12,136,10,397,4,4 +2953,12,136,10,397,4,4 +2954,12,136,11,396,4,4 +2955,12,136,11,202,4,4 +2956,12,136,12,399,4,4 +2957,12,136,12,202,4,4 +2958,12,136,28,54,20,30 +2959,12,136,29,54,20,40 +2960,12,136,30,55,30,40 +2961,12,136,31,55,30,40 +2962,12,136,32,55,20,40 +2963,12,136,13,129,3,6 +2964,12,136,14,129,4,7 +2965,12,136,15,129,5,10 +2966,12,136,16,129,5,10 +2967,12,136,17,129,5,10 +2968,12,136,18,129,15,20 +2969,12,136,19,118,15,20 +2970,12,136,20,129,10,25 +2971,12,136,21,118,10,25 +2972,12,136,22,118,10,25 +2973,12,136,23,130,30,40 +2974,12,136,24,119,30,40 +2975,12,136,25,130,40,55 +2976,12,136,26,119,20,50 +2977,12,136,27,119,20,50 +2978,12,137,1,400,34,34 +2979,12,137,1,108,34,34 +2980,12,137,2,400,36,36 +2981,12,137,2,108,36,36 +2982,12,137,3,397,34,34 +2983,12,137,3,397,34,34 +2984,12,137,3,164,34,34 +2985,12,137,4,397,36,36 +2986,12,137,4,397,36,36 +2987,12,137,4,164,36,36 +2988,12,137,5,54,35,35 +2989,12,137,5,202,35,35 +2990,12,137,6,54,36,36 +2991,12,137,6,202,36,36 +2992,12,137,7,433,35,35 +2993,12,137,8,433,36,36 +2994,12,137,9,400,35,35 +2995,12,137,9,338,35,35 +2996,12,137,9,337,35,35 +2997,12,137,9,400,35,35 +2998,12,137,9,400,35,35 +2999,12,137,9,400,35,35 +3000,12,137,10,397,35,35 +3001,12,137,10,338,35,35 +3002,12,137,10,337,35,35 +3003,12,137,10,397,35,35 +3004,12,137,10,397,35,35 +3005,12,137,10,397,35,35 +3006,12,137,11,400,35,35 +3007,12,137,11,202,35,35 +3008,12,137,12,397,35,35 +3009,12,137,12,202,35,35 +3010,12,137,28,54,20,30 +3011,12,137,29,54,20,40 +3012,12,137,30,55,30,40 +3013,12,137,31,55,30,40 +3014,12,137,32,55,20,40 +3015,12,137,13,129,3,6 +3016,12,137,14,129,4,7 +3017,12,137,15,129,5,10 +3018,12,137,16,129,5,10 +3019,12,137,17,129,5,10 +3020,12,137,18,129,15,20 +3021,12,137,19,118,15,20 +3022,12,137,20,129,10,25 +3023,12,137,21,118,10,25 +3024,12,137,22,118,10,25 +3025,12,137,23,130,30,40 +3026,12,137,24,119,30,40 +3027,12,137,25,130,40,55 +3028,12,137,26,119,20,50 +3029,12,137,27,119,20,50 +3030,12,138,1,400,35,35 +3031,12,138,1,238,35,35 +3032,12,138,2,215,35,35 +3033,12,138,2,238,35,35 +3034,12,138,3,400,34,34 +3035,12,138,3,400,34,34 +3036,12,138,3,164,34,34 +3037,12,138,4,54,36,36 +3038,12,138,4,54,36,36 +3039,12,138,4,164,36,36 +3040,12,138,5,54,34,34 +3041,12,138,5,202,34,34 +3042,12,138,6,54,35,35 +3043,12,138,6,202,35,35 +3044,12,138,7,433,34,34 +3045,12,138,8,433,36,36 +3046,12,138,9,400,34,34 +3047,12,138,9,338,34,34 +3048,12,138,9,337,34,34 +3049,12,138,9,217,34,34 +3050,12,138,9,400,34,34 +3051,12,138,9,400,34,34 +3052,12,138,10,215,36,36 +3053,12,138,10,338,36,36 +3054,12,138,10,337,36,36 +3055,12,138,10,217,36,36 +3056,12,138,10,215,36,36 +3057,12,138,10,215,36,36 +3058,12,138,11,400,34,34 +3059,12,138,11,202,34,34 +3060,12,138,12,215,36,36 +3061,12,138,12,202,36,36 +3062,12,138,28,54,20,30 +3063,12,138,29,54,20,40 +3064,12,138,30,55,30,40 +3065,12,138,31,55,30,40 +3066,12,138,32,55,20,40 +3067,12,138,13,129,3,6 +3068,12,138,14,129,4,7 +3069,12,138,15,129,5,10 +3070,12,138,16,129,5,10 +3071,12,138,17,129,5,10 +3072,12,138,18,129,15,20 +3073,12,138,19,118,15,20 +3074,12,138,20,129,10,25 +3075,12,138,21,118,10,25 +3076,12,138,22,118,10,25 +3077,12,138,23,130,30,40 +3078,12,138,24,119,30,40 +3079,12,138,25,130,40,55 +3080,12,138,26,119,20,50 +3081,12,138,27,119,20,50 +3082,12,139,1,203,21,21 +3083,12,139,2,74,20,20 +3084,12,139,3,397,21,21 +3085,12,139,3,397,21,21 +3086,12,139,3,402,21,21 +3087,12,139,4,75,21,21 +3088,12,139,4,75,21,21 +3089,12,139,4,402,21,21 +3090,12,139,5,400,21,21 +3091,12,139,5,30,21,21 +3092,12,139,6,203,22,22 +3093,12,139,6,30,22,22 +3094,12,139,7,402,22,22 +3095,12,139,8,397,22,22 +3096,12,139,9,400,22,22 +3097,12,139,10,75,22,22 +3098,12,139,11,400,22,22 +3099,12,139,11,33,22,22 +3100,12,139,12,75,22,22 +3101,12,139,12,33,22,22 +3102,12,140,1,459,34,34 +3103,12,140,2,215,34,34 +3104,12,140,3,307,35,35 +3105,12,140,3,307,35,35 +3106,12,140,3,41,35,35 +3107,12,140,4,67,35,35 +3108,12,140,4,67,35,35 +3109,12,140,4,164,35,35 +3110,12,140,5,308,35,35 +3111,12,140,5,361,35,35 +3112,12,140,6,67,36,36 +3113,12,140,6,361,36,36 +3114,12,140,7,459,35,35 +3115,12,140,8,215,35,35 +3116,12,140,9,308,36,36 +3117,12,140,9,308,36,36 +3118,12,140,9,308,36,36 +3119,12,140,9,216,36,36 +3120,12,140,9,308,36,36 +3121,12,140,9,308,36,36 +3122,12,140,10,308,36,36 +3123,12,140,10,308,36,36 +3124,12,140,10,308,36,36 +3125,12,140,10,216,36,36 +3126,12,140,10,308,36,36 +3127,12,140,10,308,36,36 +3128,12,140,11,308,36,36 +3129,12,140,11,361,36,36 +3130,12,140,12,308,36,36 +3131,12,140,12,361,36,36 +3132,12,141,1,396,2,2 +3133,12,141,1,84,2,2 +3134,12,141,2,399,2,2 +3135,12,141,2,84,2,2 +3136,12,141,3,396,3,3 +3137,12,141,3,396,3,3 +3138,12,141,3,399,3,3 +3139,12,141,4,399,3,3 +3140,12,141,5,396,3,3 +3141,12,141,5,29,3,3 +3142,12,141,6,399,3,3 +3143,12,141,6,29,3,3 +3144,12,141,7,396,3,3 +3145,12,141,8,399,3,3 +3146,12,141,9,396,2,2 +3147,12,141,9,396,2,2 +3148,12,141,9,396,2,2 +3149,12,141,9,396,2,2 +3150,12,141,9,58,2,2 +3151,12,141,9,396,2,2 +3152,12,141,10,399,2,2 +3153,12,141,10,396,2,2 +3154,12,141,10,396,2,2 +3155,12,141,10,396,2,2 +3156,12,141,10,58,2,2 +3157,12,141,10,396,2,2 +3158,12,141,11,396,2,2 +3159,12,141,11,32,2,2 +3160,12,141,12,399,2,2 +3161,12,141,12,32,2,2 +3162,12,142,1,403,3,3 +3163,12,142,1,263,3,3 +3164,12,142,2,399,3,3 +3165,12,142,2,263,3,3 +3166,12,142,3,396,4,4 +3167,12,142,3,396,4,4 +3168,12,142,3,401,4,4 +3169,12,142,4,401,3,3 +3170,12,142,4,396,3,3 +3171,12,142,4,401,3,3 +3172,12,142,5,396,3,3 +3173,12,142,5,161,3,3 +3174,12,142,6,403,4,4 +3175,12,142,6,161,4,4 +3176,12,142,7,396,4,4 +3177,12,142,8,399,4,4 +3178,12,142,9,396,2,2 +3179,12,142,9,396,2,2 +3180,12,142,9,396,2,2 +3181,12,142,9,396,2,2 +3182,12,142,9,58,2,2 +3183,12,142,9,396,2,2 +3184,12,142,10,399,2,2 +3185,12,142,10,399,2,2 +3186,12,142,10,399,2,2 +3187,12,142,10,399,2,2 +3188,12,142,10,58,2,2 +3189,12,142,10,399,2,2 +3190,12,142,11,396,2,2 +3191,12,142,11,161,2,2 +3192,12,142,12,399,2,2 +3193,12,142,12,161,2,2 +3194,12,143,1,396,4,4 +3195,12,143,1,104,4,4 +3196,12,143,2,403,4,4 +3197,12,143,2,104,4,4 +3198,12,143,3,396,5,5 +3199,12,143,3,396,5,5 +3200,12,143,3,41,5,5 +3201,12,143,4,401,4,4 +3202,12,143,4,396,4,4 +3203,12,143,4,401,4,4 +3204,12,143,5,399,4,4 +3205,12,143,5,280,4,4 +3206,12,143,6,63,5,5 +3207,12,143,6,280,5,5 +3208,12,143,7,63,4,4 +3209,12,143,8,403,5,5 +3210,12,143,9,396,5,5 +3211,12,143,9,273,5,5 +3212,12,143,9,270,5,5 +3213,12,143,9,204,5,5 +3214,12,143,9,396,5,5 +3215,12,143,9,396,5,5 +3216,12,143,10,399,5,5 +3217,12,143,10,273,5,5 +3218,12,143,10,270,5,5 +3219,12,143,10,204,5,5 +3220,12,143,10,399,5,5 +3221,12,143,10,399,5,5 +3222,12,143,11,396,6,6 +3223,12,143,11,280,6,6 +3224,12,143,12,399,6,6 +3225,12,143,12,281,6,6 +3226,12,143,28,54,20,30 +3227,12,143,29,54,20,40 +3228,12,143,30,55,30,40 +3229,12,143,31,55,30,40 +3230,12,143,32,55,20,40 +3231,12,143,13,129,4,6 +3232,12,143,14,129,3,7 +3233,12,143,15,129,5,10 +3234,12,143,16,129,5,10 +3235,12,143,17,129,5,10 +3236,12,143,18,129,15,20 +3237,12,143,19,118,15,20 +3238,12,143,20,129,10,25 +3239,12,143,21,118,10,25 +3240,12,143,22,118,10,25 +3241,12,143,23,130,30,40 +3242,12,143,24,119,30,40 +3243,12,143,25,130,40,55 +3244,12,143,26,119,20,50 +3245,12,143,27,119,20,50 +3246,12,144,1,396,4,4 +3247,12,144,2,399,4,4 +3248,12,144,3,406,4,4 +3249,12,144,3,406,4,4 +3250,12,144,3,41,4,4 +3251,12,144,4,401,4,4 +3252,12,144,4,396,4,4 +3253,12,144,4,401,4,4 +3254,12,144,5,406,4,4 +3255,12,144,5,280,4,4 +3256,12,144,6,403,4,4 +3257,12,144,6,280,4,4 +3258,12,144,7,406,5,5 +3259,12,144,8,403,5,5 +3260,12,144,9,396,6,6 +3261,12,144,9,273,6,6 +3262,12,144,9,270,6,6 +3263,12,144,9,204,6,6 +3264,12,144,9,10,6,6 +3265,12,144,9,13,6,6 +3266,12,144,10,399,6,6 +3267,12,144,10,273,6,6 +3268,12,144,10,270,6,6 +3269,12,144,10,204,6,6 +3270,12,144,10,10,6,6 +3271,12,144,10,13,6,6 +3272,12,144,11,396,6,6 +3273,12,144,11,280,6,6 +3274,12,144,12,399,6,6 +3275,12,144,12,281,6,6 +3276,12,144,28,54,20,30 +3277,12,144,29,54,20,40 +3278,12,144,30,55,30,40 +3279,12,144,31,55,30,40 +3280,12,144,32,55,20,40 +3281,12,144,13,129,4,6 +3282,12,144,14,129,3,7 +3283,12,144,15,129,5,10 +3284,12,144,16,129,5,10 +3285,12,144,17,129,5,10 +3286,12,144,18,129,15,20 +3287,12,144,19,118,15,20 +3288,12,144,20,129,10,25 +3289,12,144,21,118,10,25 +3290,12,144,22,118,10,25 +3291,12,144,23,130,30,40 +3292,12,144,24,119,30,40 +3293,12,144,25,130,40,55 +3294,12,144,26,119,20,50 +3295,12,144,27,119,20,50 +3296,12,145,1,396,6,6 +3297,12,145,2,399,6,6 +3298,12,145,3,406,6,6 +3299,12,145,3,406,6,6 +3300,12,145,3,41,6,6 +3301,12,145,4,401,6,6 +3302,12,145,4,396,6,6 +3303,12,145,4,401,6,6 +3304,12,145,5,406,6,6 +3305,12,145,5,191,6,6 +3306,12,145,6,403,6,6 +3307,12,145,6,191,6,6 +3308,12,145,7,406,7,7 +3309,12,145,8,403,7,7 +3310,12,145,9,396,8,8 +3311,12,145,9,273,8,8 +3312,12,145,9,270,8,8 +3313,12,145,9,204,8,8 +3314,12,145,9,396,8,8 +3315,12,145,9,396,8,8 +3316,12,145,10,399,8,8 +3317,12,145,10,273,8,8 +3318,12,145,10,270,8,8 +3319,12,145,10,204,8,8 +3320,12,145,10,399,8,8 +3321,12,145,10,399,8,8 +3322,12,145,11,396,8,8 +3323,12,145,11,191,8,8 +3324,12,145,12,399,8,8 +3325,12,145,12,191,8,8 +3326,12,145,28,54,20,30 +3327,12,145,29,54,20,40 +3328,12,145,30,55,30,40 +3329,12,145,31,55,30,40 +3330,12,145,32,55,20,40 +3331,12,145,13,129,4,6 +3332,12,145,14,129,3,7 +3333,12,145,15,129,5,10 +3334,12,145,16,129,5,10 +3335,12,145,17,129,5,10 +3336,12,145,18,129,15,20 +3337,12,145,19,118,15,20 +3338,12,145,20,129,10,25 +3339,12,145,21,118,10,25 +3340,12,145,22,118,10,25 +3341,12,145,23,130,30,40 +3342,12,145,24,119,30,40 +3343,12,145,25,130,40,55 +3344,12,145,26,119,20,50 +3345,12,145,27,119,20,50 +3346,12,146,1,418,8,8 +3347,12,146,2,422,8,8 +3348,12,146,3,418,9,9 +3349,12,146,4,422,9,9 +3350,12,146,5,399,9,9 +3351,12,146,5,187,9,9 +3352,12,146,6,422,9,9 +3353,12,146,6,187,9,9 +3354,12,146,7,417,9,9 +3355,12,146,8,417,9,9 +3356,12,146,9,418,10,10 +3357,12,146,9,418,10,10 +3358,12,146,9,418,10,10 +3359,12,146,9,418,10,10 +3360,12,146,9,239,10,10 +3361,12,146,9,418,10,10 +3362,12,146,10,422,10,10 +3363,12,146,10,422,10,10 +3364,12,146,10,422,10,10 +3365,12,146,10,422,10,10 +3366,12,146,10,239,10,10 +3367,12,146,10,422,10,10 +3368,12,146,11,418,10,10 +3369,12,146,11,187,10,10 +3370,12,146,12,422,10,10 +3371,12,146,12,187,10,10 +3372,12,146,28,72,20,30 +3373,12,146,29,278,20,30 +3374,12,146,30,73,20,40 +3375,12,146,31,279,20,40 +3376,12,146,32,279,20,40 +3377,12,146,13,129,4,6 +3378,12,146,14,129,3,7 +3379,12,146,15,129,5,10 +3380,12,146,16,129,5,10 +3381,12,146,17,129,5,10 +3382,12,146,18,129,15,20 +3383,12,146,19,456,15,20 +3384,12,146,20,129,10,25 +3385,12,146,21,456,10,25 +3386,12,146,22,456,10,25 +3387,12,146,23,130,30,40 +3388,12,146,24,457,30,40 +3389,12,146,25,90,20,40 +3390,12,146,26,457,20,50 +3391,12,146,27,457,20,50 +3392,12,147,1,418,10,10 +3393,12,147,2,399,10,10 +3394,12,147,3,418,11,11 +3395,12,147,4,399,11,11 +3396,12,147,5,422,11,11 +3397,12,147,5,187,11,11 +3398,12,147,6,399,11,11 +3399,12,147,6,187,11,11 +3400,12,147,7,417,11,11 +3401,12,147,8,417,11,11 +3402,12,147,9,418,12,12 +3403,12,147,9,418,12,12 +3404,12,147,9,270,12,12 +3405,12,147,9,418,12,12 +3406,12,147,9,418,12,12 +3407,12,147,9,418,12,12 +3408,12,147,10,399,12,12 +3409,12,147,10,399,12,12 +3410,12,147,10,270,12,12 +3411,12,147,10,399,12,12 +3412,12,147,10,399,12,12 +3413,12,147,10,399,12,12 +3414,12,147,11,418,12,12 +3415,12,147,11,188,12,12 +3416,12,147,12,399,12,12 +3417,12,147,12,188,12,12 +3418,12,147,28,54,20,30 +3419,12,147,29,54,20,40 +3420,12,147,30,55,30,40 +3421,12,147,31,55,30,40 +3422,12,147,32,55,20,40 +3423,12,147,13,129,4,6 +3424,12,147,14,129,3,7 +3425,12,147,15,129,5,10 +3426,12,147,16,129,5,10 +3427,12,147,17,129,5,10 +3428,12,147,18,129,15,20 +3429,12,147,19,339,15,20 +3430,12,147,20,129,10,25 +3431,12,147,21,339,10,25 +3432,12,147,22,339,10,25 +3433,12,147,23,130,30,40 +3434,12,147,24,340,30,40 +3435,12,147,25,130,40,55 +3436,12,147,26,340,20,50 +3437,12,147,27,340,20,50 +3438,12,148,1,77,14,14 +3439,12,148,1,299,14,14 +3440,12,148,2,434,14,14 +3441,12,148,2,299,14,14 +3442,12,148,3,77,15,15 +3443,12,148,3,77,15,15 +3444,12,148,3,41,15,15 +3445,12,148,4,401,14,14 +3446,12,148,4,77,14,14 +3447,12,148,4,402,14,14 +3448,12,148,5,74,14,14 +3449,12,148,5,343,14,14 +3450,12,148,6,402,15,15 +3451,12,148,6,343,15,15 +3452,12,148,7,436,15,15 +3453,12,148,8,436,15,15 +3454,12,148,9,77,15,15 +3455,12,148,9,77,15,15 +3456,12,148,9,77,15,15 +3457,12,148,9,207,15,15 +3458,12,148,9,77,15,15 +3459,12,148,9,77,15,15 +3460,12,148,10,434,15,15 +3461,12,148,10,434,15,15 +3462,12,148,10,434,15,15 +3463,12,148,10,207,15,15 +3464,12,148,10,434,15,15 +3465,12,148,10,434,15,15 +3466,12,148,11,77,16,16 +3467,12,148,11,343,16,16 +3468,12,148,12,434,16,16 +3469,12,148,12,343,16,16 +3470,12,149,1,66,5,5 +3471,12,149,1,231,5,5 +3472,12,149,2,74,5,5 +3473,12,149,2,231,5,5 +3474,12,149,3,66,6,6 +3475,12,149,3,66,6,6 +3476,12,149,3,41,6,6 +3477,12,149,4,401,6,6 +3478,12,149,4,66,6,6 +3479,12,149,4,401,6,6 +3480,12,149,5,74,6,6 +3481,12,149,5,246,6,6 +3482,12,149,6,74,6,6 +3483,12,149,6,246,6,6 +3484,12,149,7,74,7,7 +3485,12,149,8,74,7,7 +3486,12,149,9,66,7,7 +3487,12,149,9,66,7,7 +3488,12,149,9,66,7,7 +3489,12,149,9,207,7,7 +3490,12,149,9,66,7,7 +3491,12,149,9,66,7,7 +3492,12,149,10,74,7,7 +3493,12,149,10,74,7,7 +3494,12,149,10,74,7,7 +3495,12,149,10,207,7,7 +3496,12,149,10,74,7,7 +3497,12,149,10,74,7,7 +3498,12,149,11,66,7,7 +3499,12,149,11,246,7,7 +3500,12,149,12,74,7,7 +3501,12,149,12,246,7,7 +3502,12,150,1,54,16,16 +3503,12,150,1,206,16,16 +3504,12,150,2,399,16,16 +3505,12,150,2,206,16,16 +3506,12,150,3,307,16,16 +3507,12,150,3,307,16,16 +3508,12,150,3,41,16,16 +3509,12,150,4,66,16,16 +3510,12,150,4,66,16,16 +3511,12,150,4,41,16,16 +3512,12,150,5,307,17,17 +3513,12,150,5,236,17,17 +3514,12,150,6,66,17,17 +3515,12,150,6,236,17,17 +3516,12,150,7,54,17,17 +3517,12,150,8,400,17,17 +3518,12,150,9,54,18,18 +3519,12,150,9,335,18,18 +3520,12,150,9,336,18,18 +3521,12,150,9,54,18,18 +3522,12,150,9,54,18,18 +3523,12,150,9,54,18,18 +3524,12,150,10,400,18,18 +3525,12,150,10,335,18,18 +3526,12,150,10,336,18,18 +3527,12,150,10,400,18,18 +3528,12,150,10,400,18,18 +3529,12,150,10,400,18,18 +3530,12,150,11,54,18,18 +3531,12,150,11,236,18,18 +3532,12,150,12,400,18,18 +3533,12,150,12,236,18,18 +3534,12,150,28,54,20,30 +3535,12,150,29,54,20,40 +3536,12,150,30,55,30,40 +3537,12,150,31,55,30,40 +3538,12,150,32,55,20,40 +3539,12,150,13,129,4,6 +3540,12,150,14,129,3,7 +3541,12,150,15,129,5,10 +3542,12,150,16,129,5,10 +3543,12,150,17,129,5,10 +3544,12,150,18,129,15,20 +3545,12,150,19,339,15,20 +3546,12,150,20,129,10,25 +3547,12,150,21,339,10,25 +3548,12,150,22,339,10,25 +3549,12,150,23,130,30,40 +3550,12,150,24,340,30,40 +3551,12,150,25,130,40,55 +3552,12,150,26,340,20,50 +3553,12,150,27,340,20,50 +3554,12,151,1,396,16,16 +3555,12,151,1,209,16,16 +3556,12,151,2,400,16,16 +3557,12,151,2,209,16,16 +3558,12,151,3,439,16,16 +3559,12,151,3,397,16,16 +3560,12,151,3,92,16,16 +3561,12,151,4,439,16,16 +3562,12,151,4,400,16,16 +3563,12,151,4,41,16,16 +3564,12,151,5,400,17,17 +3565,12,151,5,128,17,17 +3566,12,151,6,397,17,17 +3567,12,151,6,128,17,17 +3568,12,151,7,400,18,18 +3569,12,151,8,397,18,18 +3570,12,151,9,113,16,16 +3571,12,151,9,113,16,16 +3572,12,151,9,113,16,16 +3573,12,151,9,113,16,16 +3574,12,151,9,113,16,16 +3575,12,151,9,37,16,16 +3576,12,151,10,439,16,16 +3577,12,151,10,439,16,16 +3578,12,151,10,439,16,16 +3579,12,151,10,439,16,16 +3580,12,151,10,439,16,16 +3581,12,151,10,37,16,16 +3582,12,151,11,113,16,16 +3583,12,151,11,241,16,16 +3584,12,151,12,439,16,16 +3585,12,151,12,241,16,16 +3586,12,151,28,54,20,30 +3587,12,151,29,54,20,40 +3588,12,151,30,55,30,40 +3589,12,151,31,55,30,40 +3590,12,151,32,55,20,40 +3591,12,151,13,129,4,6 +3592,12,151,14,129,3,7 +3593,12,151,15,129,5,10 +3594,12,151,16,129,5,10 +3595,12,151,17,129,5,10 +3596,12,151,18,129,15,20 +3597,12,151,19,118,15,20 +3598,12,151,20,129,10,25 +3599,12,151,21,118,10,25 +3600,12,151,22,118,10,25 +3601,12,151,23,130,30,40 +3602,12,151,24,119,30,40 +3603,12,151,25,130,40,55 +3604,12,151,26,119,20,50 +3605,12,151,27,119,20,50 +3606,12,152,1,92,16,16 +3607,12,152,2,41,16,16 +3608,12,152,3,92,17,17 +3609,12,152,3,92,17,17 +3610,12,152,3,198,17,17 +3611,12,152,4,41,17,17 +3612,12,152,4,41,17,17 +3613,12,152,4,198,17,17 +3614,12,152,5,92,17,17 +3615,12,152,6,41,17,17 +3616,12,152,7,92,18,18 +3617,12,152,8,41,18,18 +3618,12,152,9,92,18,18 +3619,12,152,10,41,18,18 +3620,12,152,11,92,18,18 +3621,12,152,12,41,18,18 +3622,12,153,1,92,17,17 +3623,12,153,2,41,17,17 +3624,12,153,3,92,18,18 +3625,12,153,3,92,18,18 +3626,12,153,3,198,18,18 +3627,12,153,4,41,18,18 +3628,12,153,4,41,18,18 +3629,12,153,4,198,18,18 +3630,12,153,5,92,18,18 +3631,12,153,6,41,18,18 +3632,12,153,7,92,19,19 +3633,12,153,8,41,19,19 +3634,12,153,9,92,19,19 +3635,12,153,10,41,19,19 +3636,12,153,11,92,19,19 +3637,12,153,12,41,19,19 +3638,12,154,1,92,18,18 +3639,12,154,2,41,18,18 +3640,12,154,3,92,19,19 +3641,12,154,3,92,19,19 +3642,12,154,3,198,19,19 +3643,12,154,4,41,19,19 +3644,12,154,4,41,19,19 +3645,12,154,4,198,19,19 +3646,12,154,5,92,19,19 +3647,12,154,6,41,19,19 +3648,12,154,7,92,20,20 +3649,12,154,8,41,20,20 +3650,12,154,9,92,20,20 +3651,12,154,10,41,20,20 +3652,12,154,11,92,20,20 +3653,12,154,12,42,19,19 +3654,12,155,1,92,19,19 +3655,12,155,2,41,19,19 +3656,12,155,3,92,20,20 +3657,12,155,3,92,20,20 +3658,12,155,3,198,20,20 +3659,12,155,4,41,20,20 +3660,12,155,4,41,20,20 +3661,12,155,4,198,20,20 +3662,12,155,5,92,20,20 +3663,12,155,6,41,20,20 +3664,12,155,7,92,21,21 +3665,12,155,8,41,21,21 +3666,12,155,9,92,21,21 +3667,12,155,10,42,20,20 +3668,12,155,11,92,21,21 +3669,12,155,12,42,21,21 +3670,12,156,1,92,20,20 +3671,12,156,2,41,20,20 +3672,12,156,3,92,21,21 +3673,12,156,3,92,21,21 +3674,12,156,3,198,21,21 +3675,12,156,4,41,21,21 +3676,12,156,4,41,21,21 +3677,12,156,4,198,21,21 +3678,12,156,5,92,21,21 +3679,12,156,6,41,21,21 +3680,12,156,7,92,22,22 +3681,12,156,8,42,21,21 +3682,12,156,9,92,22,22 +3683,12,156,10,42,22,22 +3684,12,156,11,92,22,22 +3685,12,156,12,42,23,23 +3686,12,157,1,77,19,19 +3687,12,157,2,74,19,19 +3688,12,157,3,439,18,18 +3689,12,157,3,77,18,18 +3690,12,157,3,402,18,18 +3691,12,157,4,439,18,18 +3692,12,157,4,77,18,18 +3693,12,157,4,402,18,18 +3694,12,157,5,74,19,19 +3695,12,157,5,128,19,19 +3696,12,157,6,402,19,19 +3697,12,157,6,128,19,19 +3698,12,157,7,77,18,18 +3699,12,157,8,77,20,20 +3700,12,157,9,113,18,18 +3701,12,157,9,273,18,18 +3702,12,157,9,113,18,18 +3703,12,157,9,204,18,18 +3704,12,157,9,113,18,18 +3705,12,157,9,113,18,18 +3706,12,157,10,439,20,20 +3707,12,157,10,274,20,20 +3708,12,157,10,439,20,20 +3709,12,157,10,204,20,20 +3710,12,157,10,439,20,20 +3711,12,157,10,439,20,20 +3712,12,157,11,113,20,20 +3713,12,157,11,241,20,20 +3714,12,157,12,439,20,20 +3715,12,157,12,241,20,20 +3716,12,158,1,54,25,25 +3717,12,158,2,400,24,24 +3718,12,158,3,307,24,24 +3719,12,158,3,307,24,24 +3720,12,158,3,163,24,24 +3721,12,158,4,66,25,25 +3722,12,158,4,66,25,25 +3723,12,158,4,164,25,25 +3724,12,158,5,307,25,25 +3725,12,158,5,352,25,25 +3726,12,158,6,66,26,26 +3727,12,158,6,352,26,26 +3728,12,158,7,67,26,26 +3729,12,158,8,307,25,25 +3730,12,158,9,67,26,26 +3731,12,158,9,335,26,26 +3732,12,158,9,336,26,26 +3733,12,158,9,67,26,26 +3734,12,158,9,67,26,26 +3735,12,158,9,67,26,26 +3736,12,158,10,307,26,26 +3737,12,158,10,335,26,26 +3738,12,158,10,336,26,26 +3739,12,158,10,307,26,26 +3740,12,158,10,307,26,26 +3741,12,158,10,307,26,26 +3742,12,158,11,67,26,26 +3743,12,158,11,352,26,26 +3744,12,158,12,307,26,26 +3745,12,158,12,352,26,26 +3746,12,158,28,54,20,30 +3747,12,158,29,54,20,40 +3748,12,158,30,55,30,40 +3749,12,158,31,55,30,40 +3750,12,158,32,55,20,40 +3751,12,158,13,129,4,6 +3752,12,158,14,129,3,7 +3753,12,158,15,129,5,10 +3754,12,158,16,129,5,10 +3755,12,158,17,129,5,10 +3756,12,158,18,129,15,20 +3757,12,158,19,339,15,20 +3758,12,158,20,129,10,25 +3759,12,158,21,339,10,25 +3760,12,158,22,339,10,25 +3761,12,158,23,130,30,40 +3762,12,158,24,340,30,40 +3763,12,158,25,130,40,55 +3764,12,158,26,340,20,50 +3765,12,158,27,340,20,50 +3766,12,159,1,307,13,13 +3767,12,159,2,399,13,13 +3768,12,159,3,307,12,12 +3769,12,159,3,307,12,12 +3770,12,159,3,41,12,12 +3771,12,159,4,399,14,14 +3772,12,159,4,399,14,14 +3773,12,159,4,163,14,14 +3774,12,159,5,74,13,13 +3775,12,159,5,236,13,13 +3776,12,159,6,77,13,13 +3777,12,159,6,236,13,13 +3778,12,159,7,433,13,13 +3779,12,159,8,433,13,13 +3780,12,159,9,399,12,12 +3781,12,159,9,399,12,12 +3782,12,159,9,399,12,12 +3783,12,159,9,216,12,12 +3784,12,159,9,399,12,12 +3785,12,159,9,399,12,12 +3786,12,159,10,307,14,14 +3787,12,159,10,307,14,14 +3788,12,159,10,307,14,14 +3789,12,159,10,216,14,14 +3790,12,159,10,307,14,14 +3791,12,159,10,307,14,14 +3792,12,159,11,399,12,12 +3793,12,159,11,236,12,12 +3794,12,159,12,307,14,14 +3795,12,159,12,236,14,14 +3796,12,160,1,307,27,27 +3797,12,160,2,75,27,27 +3798,12,160,3,77,26,26 +3799,12,160,3,77,26,26 +3800,12,160,3,41,26,26 +3801,12,160,4,67,28,28 +3802,12,160,4,67,28,28 +3803,12,160,4,164,28,28 +3804,12,160,5,67,27,27 +3805,12,160,5,333,27,27 +3806,12,160,6,307,28,28 +3807,12,160,6,333,28,28 +3808,12,160,7,433,27,27 +3809,12,160,8,433,28,28 +3810,12,160,9,307,28,28 +3811,12,160,9,307,28,28 +3812,12,160,9,307,28,28 +3813,12,160,9,216,28,28 +3814,12,160,9,307,28,28 +3815,12,160,9,307,28,28 +3816,12,160,10,77,27,27 +3817,12,160,10,77,27,27 +3818,12,160,10,77,27,27 +3819,12,160,10,216,27,27 +3820,12,160,10,77,27,27 +3821,12,160,10,77,27,27 +3822,12,160,11,307,28,28 +3823,12,160,11,333,28,28 +3824,12,160,12,77,28,28 +3825,12,160,12,333,28,28 +3826,12,161,1,396,16,16 +3827,12,161,2,406,16,16 +3828,12,161,3,397,17,17 +3829,12,161,3,397,17,17 +3830,12,161,3,402,17,17 +3831,12,161,4,402,17,17 +3832,12,161,4,397,17,17 +3833,12,161,4,402,17,17 +3834,12,161,5,315,16,16 +3835,12,161,5,235,16,16 +3836,12,161,6,406,16,16 +3837,12,161,6,235,16,16 +3838,12,161,7,315,17,17 +3839,12,161,8,397,18,18 +3840,12,161,9,402,17,17 +3841,12,161,10,402,17,17 +3842,12,161,11,402,18,18 +3843,12,161,11,235,18,18 +3844,12,161,12,402,18,18 +3845,12,161,12,235,18,18 +3846,12,161,28,54,20,30 +3847,12,161,29,54,20,40 +3848,12,161,30,55,30,40 +3849,12,161,31,55,30,40 +3850,12,161,32,55,20,40 +3851,12,161,13,129,4,6 +3852,12,161,14,129,3,7 +3853,12,161,15,129,5,10 +3854,12,161,16,129,5,10 +3855,12,161,17,129,5,10 +3856,12,161,18,129,15,20 +3857,12,161,19,118,15,20 +3858,12,161,20,129,10,25 +3859,12,161,21,118,10,25 +3860,12,161,22,118,10,25 +3861,12,161,23,130,30,40 +3862,12,161,24,119,30,40 +3863,12,161,25,130,40,55 +3864,12,161,26,119,20,50 +3865,12,161,27,119,20,50 +3866,12,162,1,194,18,18 +3867,12,162,2,400,18,18 +3868,12,162,3,315,19,19 +3869,12,162,3,315,19,19 +3870,12,162,3,402,19,19 +3871,12,162,4,400,19,19 +3872,12,162,4,400,19,19 +3873,12,162,4,402,19,19 +3874,12,162,5,402,18,18 +3875,12,162,5,88,18,18 +3876,12,162,6,315,18,18 +3877,12,162,6,88,18,18 +3878,12,162,7,315,20,20 +3879,12,162,8,194,18,18 +3880,12,162,9,400,20,20 +3881,12,162,9,400,20,20 +3882,12,162,9,271,20,20 +3883,12,162,9,400,20,20 +3884,12,162,9,23,20,20 +3885,12,162,9,400,20,20 +3886,12,162,10,194,18,18 +3887,12,162,10,194,18,18 +3888,12,162,10,270,18,18 +3889,12,162,10,194,18,18 +3890,12,162,10,23,18,18 +3891,12,162,10,194,18,18 +3892,12,162,11,400,20,20 +3893,12,162,11,88,20,20 +3894,12,162,12,194,18,18 +3895,12,162,12,88,18,18 +3896,12,162,28,194,20,30 +3897,12,162,29,194,20,40 +3898,12,162,30,195,30,40 +3899,12,162,31,195,30,40 +3900,12,162,32,195,20,40 +3901,12,162,13,129,4,6 +3902,12,162,14,129,3,7 +3903,12,162,15,129,5,10 +3904,12,162,16,129,5,10 +3905,12,162,17,129,5,10 +3906,12,162,18,129,15,20 +3907,12,162,19,339,15,20 +3908,12,162,20,129,10,25 +3909,12,162,21,339,10,25 +3910,12,162,22,339,10,25 +3911,12,162,23,130,30,40 +3912,12,162,24,340,30,40 +3913,12,162,25,130,40,55 +3914,12,162,26,340,20,50 +3915,12,162,27,340,20,50 +3916,12,163,1,418,20,20 +3917,12,163,1,359,20,20 +3918,12,163,2,422,20,20 +3919,12,163,2,359,20,20 +3920,12,163,3,418,21,21 +3921,12,163,4,278,20,20 +3922,12,163,4,278,20,20 +3923,12,163,4,422,20,20 +3924,12,163,5,422,21,21 +3925,12,163,5,277,21,21 +3926,12,163,6,278,20,20 +3927,12,163,6,277,20,20 +3928,12,163,7,419,22,22 +3929,12,163,8,422,22,22 +3930,12,163,9,419,22,22 +3931,12,163,10,422,22,22 +3932,12,163,11,419,22,22 +3933,12,163,11,277,22,22 +3934,12,163,12,422,22,22 +3935,12,163,12,277,22,22 +3936,12,163,28,72,20,30 +3937,12,163,29,278,20,30 +3938,12,163,30,73,20,40 +3939,12,163,31,279,20,40 +3940,12,163,32,279,20,40 +3941,12,163,13,129,4,6 +3942,12,163,14,129,3,7 +3943,12,163,15,129,5,10 +3944,12,163,16,129,5,10 +3945,12,163,17,129,5,10 +3946,12,163,18,129,15,20 +3947,12,163,19,223,15,20 +3948,12,163,20,129,10,25 +3949,12,163,21,223,10,25 +3950,12,163,22,223,10,25 +3951,12,163,23,130,30,40 +3952,12,163,24,224,30,40 +3953,12,163,25,319,40,55 +3954,12,163,26,224,20,50 +3955,12,163,27,224,20,50 +3956,12,164,1,77,23,23 +3957,12,164,1,325,23,23 +3958,12,164,2,74,22,22 +3959,12,164,2,325,22,22 +3960,12,164,3,77,23,23 +3961,12,164,3,77,23,23 +3962,12,164,3,402,23,23 +3963,12,164,4,75,23,23 +3964,12,164,4,75,23,23 +3965,12,164,4,402,23,23 +3966,12,164,5,434,23,23 +3967,12,164,5,262,23,23 +3968,12,164,6,203,24,24 +3969,12,164,6,262,24,24 +3970,12,164,7,402,24,24 +3971,12,164,8,77,24,24 +3972,12,164,9,434,24,24 +3973,12,164,9,434,24,24 +3974,12,164,9,434,24,24 +3975,12,164,9,207,24,24 +3976,12,164,9,434,24,24 +3977,12,164,9,37,24,24 +3978,12,164,10,75,24,24 +3979,12,164,10,75,24,24 +3980,12,164,10,75,24,24 +3981,12,164,10,207,24,24 +3982,12,164,10,75,24,24 +3983,12,164,10,37,24,24 +3984,12,164,11,434,24,24 +3985,12,164,11,262,24,24 +3986,12,164,12,75,24,24 +3987,12,164,12,262,24,24 +3988,12,164,28,54,20,30 +3989,12,164,29,54,20,40 +3990,12,164,30,55,30,40 +3991,12,164,31,55,30,40 +3992,12,164,32,55,20,40 +3993,12,164,13,129,4,6 +3994,12,164,14,129,3,7 +3995,12,164,15,129,5,10 +3996,12,164,16,129,5,10 +3997,12,164,17,129,5,10 +3998,12,164,18,129,15,20 +3999,12,164,19,118,15,20 +4000,12,164,20,129,10,25 +4001,12,164,21,118,10,25 +4002,12,164,22,118,10,25 +4003,12,164,23,130,30,40 +4004,12,164,24,119,30,40 +4005,12,164,25,130,40,55 +4006,12,164,26,119,20,50 +4007,12,164,27,119,20,50 +4008,12,165,1,77,21,21 +4009,12,165,1,96,21,21 +4010,12,165,2,74,20,20 +4011,12,165,2,96,20,20 +4012,12,165,3,77,22,22 +4013,12,165,3,77,22,22 +4014,12,165,3,402,22,22 +4015,12,165,4,74,21,21 +4016,12,165,4,77,21,21 +4017,12,165,4,402,21,21 +4018,12,165,5,63,20,20 +4019,12,165,5,262,20,20 +4020,12,165,6,402,20,20 +4021,12,165,6,262,20,20 +4022,12,165,7,64,20,20 +4023,12,165,8,64,21,21 +4024,12,165,9,74,22,22 +4025,12,165,9,74,22,22 +4026,12,165,9,74,22,22 +4027,12,165,9,207,22,22 +4028,12,165,9,74,22,22 +4029,12,165,9,74,22,22 +4030,12,165,10,64,22,22 +4031,12,165,10,64,22,22 +4032,12,165,10,64,22,22 +4033,12,165,10,207,22,22 +4034,12,165,10,64,22,22 +4035,12,165,10,64,22,22 +4036,12,165,11,74,22,22 +4037,12,165,11,262,22,22 +4038,12,165,12,64,22,22 +4039,12,165,12,262,22,22 +4040,12,166,1,459,32,32 +4041,12,166,1,225,32,32 +4042,12,166,2,215,32,32 +4043,12,166,2,225,32,32 +4044,12,166,3,307,33,33 +4045,12,166,3,307,33,33 +4046,12,166,3,41,33,33 +4047,12,166,4,67,33,33 +4048,12,166,4,67,33,33 +4049,12,166,4,164,33,33 +4050,12,166,5,307,34,34 +4051,12,166,5,361,34,34 +4052,12,166,6,67,34,34 +4053,12,166,6,361,34,34 +4054,12,166,7,459,33,33 +4055,12,166,8,215,33,33 +4056,12,166,9,75,33,33 +4057,12,166,9,75,33,33 +4058,12,166,9,75,33,33 +4059,12,166,9,217,33,33 +4060,12,166,9,75,33,33 +4061,12,166,9,75,33,33 +4062,12,166,10,75,34,34 +4063,12,166,10,75,34,34 +4064,12,166,10,75,34,34 +4065,12,166,10,217,34,34 +4066,12,166,10,75,34,34 +4067,12,166,10,75,34,34 +4068,12,166,11,75,33,33 +4069,12,166,11,361,33,33 +4070,12,166,12,75,34,34 +4071,12,166,12,361,34,34 +4072,12,167,1,459,34,34 +4073,12,167,1,220,34,34 +4074,12,167,2,215,34,34 +4075,12,167,2,220,34,34 +4076,12,167,3,307,35,35 +4077,12,167,3,307,35,35 +4078,12,167,3,41,35,35 +4079,12,167,4,67,35,35 +4080,12,167,4,67,35,35 +4081,12,167,4,164,35,35 +4082,12,167,5,308,35,35 +4083,12,167,5,361,35,35 +4084,12,167,6,67,36,36 +4085,12,167,6,361,36,36 +4086,12,167,7,459,35,35 +4087,12,167,8,215,35,35 +4088,12,167,9,308,36,36 +4089,12,167,9,308,36,36 +4090,12,167,9,308,36,36 +4091,12,167,9,217,36,36 +4092,12,167,9,308,36,36 +4093,12,167,9,308,36,36 +4094,12,167,10,308,36,36 +4095,12,167,10,308,36,36 +4096,12,167,10,308,36,36 +4097,12,167,10,217,36,36 +4098,12,167,10,308,36,36 +4099,12,167,10,308,36,36 +4100,12,167,11,308,36,36 +4101,12,167,11,361,36,36 +4102,12,167,12,308,36,36 +4103,12,167,12,361,36,36 +4104,12,168,1,419,28,28 +4105,12,168,1,100,28,28 +4106,12,168,2,422,28,28 +4107,12,168,2,100,28,28 +4108,12,168,3,419,29,29 +4109,12,168,4,423,28,28 +4110,12,168,5,122,29,29 +4111,12,168,5,132,29,29 +4112,12,168,6,278,29,29 +4113,12,168,6,132,29,29 +4114,12,168,7,419,30,30 +4115,12,168,8,423,29,29 +4116,12,168,9,122,30,30 +4117,12,168,10,423,30,30 +4118,12,168,11,122,30,30 +4119,12,168,11,132,30,30 +4120,12,168,12,423,30,30 +4121,12,168,12,132,30,30 +4122,12,168,28,72,20,30 +4123,12,168,29,278,20,30 +4124,12,168,30,73,20,40 +4125,12,168,31,279,20,40 +4126,12,168,32,279,20,40 +4127,12,168,13,129,4,6 +4128,12,168,14,129,3,7 +4129,12,168,15,129,5,10 +4130,12,168,16,129,5,10 +4131,12,168,17,129,5,10 +4132,12,168,18,129,15,20 +4133,12,168,19,456,15,20 +4134,12,168,20,129,10,25 +4135,12,168,21,456,10,25 +4136,12,168,22,456,10,25 +4137,12,168,23,130,30,40 +4138,12,168,24,457,30,40 +4139,12,168,25,130,40,55 +4140,12,168,26,457,20,50 +4141,12,168,27,457,20,50 +4142,12,169,28,72,20,30 +4143,12,169,29,278,20,30 +4144,12,169,30,73,20,40 +4145,12,169,31,279,20,40 +4146,12,169,32,279,20,40 +4147,12,169,13,129,4,6 +4148,12,169,14,129,3,7 +4149,12,169,15,129,5,10 +4150,12,169,16,129,5,10 +4151,12,169,17,129,5,10 +4152,12,169,18,129,15,20 +4153,12,169,19,456,15,20 +4154,12,169,20,129,10,25 +4155,12,169,21,456,10,25 +4156,12,169,22,456,10,25 +4157,12,169,23,130,30,40 +4158,12,169,24,457,30,40 +4159,12,169,25,366,20,30 +4160,12,169,26,457,20,50 +4161,12,169,27,457,20,50 +4162,12,170,1,419,28,28 +4163,12,170,1,83,28,28 +4164,12,170,2,434,28,28 +4165,12,170,2,83,28,28 +4166,12,170,3,315,29,29 +4167,12,170,4,422,28,28 +4168,12,170,5,435,29,29 +4169,12,170,5,30,29,29 +4170,12,170,6,278,29,29 +4171,12,170,6,30,29,29 +4172,12,170,7,419,30,30 +4173,12,170,8,423,29,29 +4174,12,170,9,435,30,30 +4175,12,170,10,423,30,30 +4176,12,170,11,435,30,30 +4177,12,170,11,33,30,30 +4178,12,170,12,423,30,30 +4179,12,170,12,33,30,30 +4180,12,170,28,72,20,30 +4181,12,170,29,278,20,30 +4182,12,170,30,73,20,40 +4183,12,170,31,279,20,40 +4184,12,170,32,279,20,40 +4185,12,170,13,129,4,6 +4186,12,170,14,129,3,7 +4187,12,170,15,129,5,10 +4188,12,170,16,129,5,10 +4189,12,170,17,129,5,10 +4190,12,170,18,129,15,20 +4191,12,170,19,456,15,20 +4192,12,170,20,129,10,25 +4193,12,170,21,456,10,25 +4194,12,170,22,456,10,25 +4195,12,170,23,130,30,40 +4196,12,170,24,457,30,40 +4197,12,170,25,366,20,30 +4198,12,170,26,457,20,50 +4199,12,170,27,457,20,50 +4200,12,171,1,419,40,40 +4201,12,171,1,300,40,40 +4202,12,171,2,423,40,40 +4203,12,171,2,300,40,40 +4204,12,171,3,441,41,41 +4205,12,171,3,441,41,41 +4206,12,171,3,419,41,41 +4207,12,171,4,441,40,40 +4208,12,171,4,441,40,40 +4209,12,171,4,423,40,40 +4210,12,171,5,122,41,41 +4211,12,171,5,180,41,41 +4212,12,171,6,278,41,41 +4213,12,171,6,180,41,41 +4214,12,171,7,419,42,42 +4215,12,171,8,423,41,41 +4216,12,171,9,122,42,42 +4217,12,171,10,423,42,42 +4218,12,171,11,122,42,42 +4219,12,171,11,180,42,42 +4220,12,171,12,423,42,42 +4221,12,171,12,180,42,42 +4222,12,171,28,72,20,30 +4223,12,171,29,278,20,30 +4224,12,171,30,73,20,40 +4225,12,171,31,279,20,40 +4226,12,171,32,279,20,40 +4227,12,171,13,129,4,6 +4228,12,171,14,129,3,7 +4229,12,171,15,129,5,10 +4230,12,171,16,129,5,10 +4231,12,171,17,129,5,10 +4232,12,171,18,129,15,20 +4233,12,171,19,223,15,20 +4234,12,171,20,129,10,25 +4235,12,171,21,223,10,25 +4236,12,171,22,223,10,25 +4237,12,171,23,130,30,40 +4238,12,171,24,224,30,40 +4239,12,171,25,319,40,55 +4240,12,171,26,224,20,50 +4241,12,171,27,224,20,50 +4242,12,172,1,419,53,53 +4243,12,172,1,177,53,53 +4244,12,172,2,423,53,53 +4245,12,172,2,177,53,53 +4246,12,172,3,441,54,54 +4247,12,172,3,441,54,54 +4248,12,172,3,419,54,54 +4249,12,172,4,441,52,52 +4250,12,172,4,441,52,52 +4251,12,172,4,423,52,52 +4252,12,172,5,315,52,52 +4253,12,172,5,356,52,52 +4254,12,172,6,315,54,54 +4255,12,172,6,356,54,54 +4256,12,172,7,44,53,53 +4257,12,172,8,70,53,53 +4258,12,172,9,418,23,23 +4259,12,172,9,418,23,23 +4260,12,172,9,418,23,23 +4261,12,172,9,213,23,23 +4262,12,172,9,418,23,23 +4263,12,172,9,418,23,23 +4264,12,172,10,267,23,23 +4265,12,172,10,267,23,23 +4266,12,172,10,267,23,23 +4267,12,172,10,213,23,23 +4268,12,172,10,267,23,23 +4269,12,172,10,267,23,23 +4270,12,172,11,422,23,23 +4271,12,172,11,355,23,23 +4272,12,172,12,267,23,23 +4273,12,172,12,355,23,23 +4274,12,172,28,279,40,50 +4275,12,172,29,73,40,50 +4276,12,172,30,279,45,55 +4277,12,172,31,73,45,55 +4278,12,172,32,73,45,55 +4279,12,172,13,129,4,6 +4280,12,172,14,129,3,7 +4281,12,172,15,129,5,10 +4282,12,172,16,129,5,10 +4283,12,172,17,129,5,10 +4284,12,172,18,129,15,20 +4285,12,172,19,223,15,20 +4286,12,172,20,129,10,25 +4287,12,172,21,223,10,25 +4288,12,172,22,223,10,25 +4289,12,172,23,130,30,40 +4290,12,172,24,224,30,40 +4291,12,172,25,370,20,30 +4292,12,172,26,224,20,50 +4293,12,172,27,224,20,50 +4294,12,173,1,22,51,51 +4295,12,173,1,296,51,51 +4296,12,173,2,20,50,50 +4297,12,173,2,296,50,50 +4298,12,173,3,22,50,50 +4299,12,173,3,22,50,50 +4300,12,173,3,354,50,50 +4301,12,173,4,22,52,52 +4302,12,173,4,22,52,52 +4303,12,173,4,354,52,52 +4304,12,173,5,20,52,52 +4305,12,173,5,57,52,52 +4306,12,173,6,435,51,51 +4307,12,173,6,57,51,51 +4308,12,173,7,67,51,51 +4309,12,173,8,315,51,51 +4310,12,173,9,21,20,20 +4311,12,173,10,19,20,20 +4312,12,173,11,21,22,22 +4313,12,173,11,56,22,22 +4314,12,173,12,19,22,22 +4315,12,173,12,56,22,22 +4316,12,173,28,55,40,50 +4317,12,173,29,61,40,50 +4318,12,173,30,55,45,55 +4319,12,173,31,55,45,55 +4320,12,173,32,55,45,55 +4321,12,173,13,129,4,6 +4322,12,173,14,129,3,7 +4323,12,173,15,129,5,10 +4324,12,173,16,129,5,10 +4325,12,173,17,129,5,10 +4326,12,173,18,129,15,20 +4327,12,173,19,60,15,20 +4328,12,173,20,129,10,25 +4329,12,173,21,60,10,25 +4330,12,173,22,60,10,25 +4331,12,173,23,130,30,40 +4332,12,173,24,61,30,40 +4333,12,173,25,130,40,55 +4334,12,173,26,61,35,55 +4335,12,173,27,61,35,55 +4336,12,174,1,323,55,55 +4337,12,174,1,327,55,55 +4338,12,174,2,112,55,55 +4339,12,174,2,327,55,55 +4340,12,174,3,22,54,54 +4341,12,174,3,22,54,54 +4342,12,174,3,354,54,54 +4343,12,174,4,75,54,54 +4344,12,174,4,75,54,54 +4345,12,174,4,42,54,54 +4346,12,174,5,22,55,55 +4347,12,174,5,324,55,55 +4348,12,174,6,110,55,55 +4349,12,174,6,324,55,55 +4350,12,174,7,227,56,56 +4351,12,174,8,75,56,56 +4352,12,174,9,322,22,22 +4353,12,174,9,322,22,22 +4354,12,174,9,322,22,22 +4355,12,174,9,207,22,22 +4356,12,174,9,322,22,22 +4357,12,174,9,240,22,22 +4358,12,174,10,111,22,22 +4359,12,174,10,111,22,22 +4360,12,174,10,111,22,22 +4361,12,174,10,207,22,22 +4362,12,174,10,111,22,22 +4363,12,174,10,240,22,22 +4364,12,174,11,322,24,24 +4365,12,174,11,324,24,24 +4366,12,174,12,111,24,24 +4367,12,174,12,324,24,24 +4368,12,174,28,61,40,50 +4369,12,174,29,60,20,30 +4370,12,174,30,61,45,55 +4371,12,174,31,61,45,55 +4372,12,174,32,61,45,55 +4373,12,174,13,129,4,6 +4374,12,174,14,129,3,7 +4375,12,174,15,129,5,10 +4376,12,174,16,129,5,10 +4377,12,174,17,129,5,10 +4378,12,174,18,129,15,20 +4379,12,174,19,339,15,20 +4380,12,174,20,129,10,25 +4381,12,174,21,339,10,25 +4382,12,174,22,339,10,25 +4383,12,174,23,130,30,40 +4384,12,174,24,340,30,40 +4385,12,174,25,130,40,55 +4386,12,174,26,340,20,50 +4387,12,174,27,340,20,50 +4388,12,175,1,51,53,53 +4389,12,175,1,374,53,53 +4390,12,175,2,332,53,53 +4391,12,175,2,374,53,53 +4392,12,175,3,450,52,52 +4393,12,175,3,450,52,52 +4394,12,175,3,332,52,52 +4395,12,175,4,112,52,52 +4396,12,175,4,112,52,52 +4397,12,175,4,332,52,52 +4398,12,175,5,112,53,53 +4399,12,175,5,329,53,53 +4400,12,175,6,450,54,54 +4401,12,175,6,329,54,54 +4402,12,175,7,51,52,52 +4403,12,175,8,51,54,54 +4404,12,175,9,50,23,23 +4405,12,175,9,50,23,23 +4406,12,175,9,50,23,23 +4407,12,175,9,50,23,23 +4408,12,175,9,50,23,23 +4409,12,175,9,28,23,23 +4410,12,175,10,331,23,23 +4411,12,175,10,331,23,23 +4412,12,175,10,331,23,23 +4413,12,175,10,331,23,23 +4414,12,175,10,331,23,23 +4415,12,175,10,28,23,23 +4416,12,175,11,50,25,25 +4417,12,175,11,328,25,25 +4418,12,175,12,331,25,25 +4419,12,175,12,328,25,25 +4420,12,175,28,61,40,50 +4421,12,175,29,60,20,30 +4422,12,175,30,61,45,55 +4423,12,175,31,61,45,55 +4424,12,175,32,61,45,55 +4425,12,175,13,129,4,6 +4426,12,175,14,129,3,7 +4427,12,175,15,129,5,10 +4428,12,175,16,129,5,10 +4429,12,175,17,129,5,10 +4430,12,175,18,129,15,20 +4431,12,175,19,339,15,20 +4432,12,175,20,129,10,25 +4433,12,175,21,339,10,25 +4434,12,175,22,339,10,25 +4435,12,175,23,130,30,40 +4436,12,175,24,340,30,40 +4437,12,175,25,130,40,55 +4438,12,175,26,340,20,50 +4439,12,175,27,340,20,50 +4440,12,176,1,70,51,51 +4441,12,176,1,16,51,51 +4442,12,176,2,44,51,51 +4443,12,176,2,16,51,51 +4444,12,176,3,166,52,52 +4445,12,176,3,70,52,52 +4446,12,176,3,168,52,52 +4447,12,176,4,166,52,52 +4448,12,176,4,44,52,52 +4449,12,176,4,168,52,52 +4450,12,176,5,314,50,50 +4451,12,176,5,49,50,50 +4452,12,176,6,315,50,50 +4453,12,176,6,49,50,50 +4454,12,176,7,123,52,52 +4455,12,176,8,313,50,50 +4456,12,176,9,69,20,20 +4457,12,176,9,274,20,20 +4458,12,176,9,271,20,20 +4459,12,176,9,204,20,20 +4460,12,176,9,69,20,20 +4461,12,176,9,69,20,20 +4462,12,176,10,43,20,20 +4463,12,176,10,274,20,20 +4464,12,176,10,271,20,20 +4465,12,176,10,204,20,20 +4466,12,176,10,43,20,20 +4467,12,176,10,43,20,20 +4468,12,176,11,69,22,22 +4469,12,176,11,48,22,22 +4470,12,176,12,43,22,22 +4471,12,176,12,48,22,22 +4472,12,176,28,278,40,50 +4473,12,176,29,279,45,55 +4474,12,176,30,278,45,55 +4475,12,176,31,278,45,55 +4476,12,176,32,278,45,55 +4477,12,176,13,129,4,6 +4478,12,176,14,129,3,7 +4479,12,176,15,129,5,10 +4480,12,176,16,129,5,10 +4481,12,176,17,129,5,10 +4482,12,176,18,129,15,20 +4483,12,176,19,129,15,20 +4484,12,176,20,129,10,25 +4485,12,176,21,129,10,25 +4486,12,176,22,129,10,25 +4487,12,176,23,130,30,40 +4488,12,176,24,130,30,40 +4489,12,176,25,130,40,55 +4490,12,176,26,130,20,50 +4491,12,176,27,130,20,50 +4492,12,177,28,54,20,30 +4493,12,177,29,54,20,40 +4494,12,177,30,55,30,40 +4495,12,177,31,55,30,40 +4496,12,177,32,55,20,40 +4497,12,177,13,129,4,6 +4498,12,177,14,129,3,7 +4499,12,177,15,129,5,10 +4500,12,177,16,129,5,10 +4501,12,177,17,129,5,10 +4502,12,177,18,129,15,20 +4503,12,177,19,118,15,20 +4504,12,177,20,129,10,25 +4505,12,177,21,118,10,25 +4506,12,177,22,118,10,25 +4507,12,177,23,130,30,40 +4508,12,177,24,119,30,40 +4509,12,177,25,130,40,55 +4510,12,177,26,119,20,50 +4511,12,177,27,119,20,50 +4512,12,178,28,54,20,30 +4513,12,178,29,54,20,40 +4514,12,178,30,55,30,40 +4515,12,178,31,55,30,40 +4516,12,178,32,55,20,40 +4517,12,178,13,129,4,6 +4518,12,178,14,129,3,7 +4519,12,178,15,129,5,10 +4520,12,178,16,129,5,10 +4521,12,178,17,129,5,10 +4522,12,178,18,129,15,20 +4523,12,178,19,339,15,20 +4524,12,178,20,129,10,25 +4525,12,178,21,339,10,25 +4526,12,178,22,339,10,25 +4527,12,178,23,130,30,40 +4528,12,178,24,341,30,40 +4529,12,178,25,340,40,55 +4530,12,178,26,342,35,55 +4531,12,178,27,342,35,55 +4532,12,179,28,55,40,50 +4533,12,179,29,55,40,50 +4534,12,179,30,55,45,55 +4535,12,179,31,55,45,55 +4536,12,179,32,55,45,55 +4537,12,179,13,129,4,6 +4538,12,179,14,129,3,7 +4539,12,179,15,129,5,10 +4540,12,179,16,129,5,10 +4541,12,179,17,129,5,10 +4542,12,179,18,129,15,20 +4543,12,179,19,118,15,20 +4544,12,179,20,129,10,25 +4545,12,179,21,118,10,25 +4546,12,179,22,118,10,25 +4547,12,179,23,130,30,40 +4548,12,179,24,119,30,40 +4549,12,179,25,130,40,55 +4550,12,179,26,119,20,50 +4551,12,179,27,119,20,50 +4552,12,180,28,72,20,30 +4553,12,180,29,278,20,30 +4554,12,180,30,73,20,40 +4555,12,180,31,279,20,40 +4556,12,180,32,279,20,40 +4557,12,180,13,129,4,6 +4558,12,180,14,129,3,7 +4559,12,180,15,129,5,10 +4560,12,180,16,129,5,10 +4561,12,180,17,129,5,10 +4562,12,180,18,129,15,20 +4563,12,180,19,456,15,20 +4564,12,180,20,129,10,25 +4565,12,180,21,456,10,25 +4566,12,180,22,456,10,25 +4567,12,180,23,130,30,40 +4568,12,180,24,170,15,25 +4569,12,180,25,457,30,40 +4570,12,180,26,171,20,45 +4571,12,180,27,171,20,45 +4572,12,181,28,73,35,45 +4573,12,181,29,279,35,45 +4574,12,181,30,458,30,40 +4575,12,181,31,458,30,40 +4576,12,181,32,458,35,45 +4577,12,181,13,129,4,6 +4578,12,181,14,129,3,7 +4579,12,181,15,129,5,10 +4580,12,181,16,129,5,10 +4581,12,181,17,129,5,10 +4582,12,181,18,129,15,20 +4583,12,181,19,223,15,20 +4584,12,181,20,129,10,25 +4585,12,181,21,223,10,25 +4586,12,181,22,223,10,25 +4587,12,181,23,130,30,40 +4588,12,181,24,320,30,40 +4589,12,181,25,224,40,55 +4590,12,181,26,321,35,55 +4591,12,181,27,321,35,55 +4592,12,182,1,22,52,52 +4593,12,182,1,98,52,52 +4594,12,182,2,20,52,52 +4595,12,182,2,98,52,52 +4596,12,182,3,22,53,53 +4597,12,182,3,22,53,53 +4598,12,182,3,354,53,53 +4599,12,182,4,22,51,51 +4600,12,182,4,22,51,51 +4601,12,182,4,354,51,51 +4602,12,182,5,20,51,51 +4603,12,182,5,57,51,51 +4604,12,182,6,67,53,53 +4605,12,182,6,57,53,53 +4606,12,182,7,55,53,53 +4607,12,182,8,55,51,51 +4608,12,182,9,21,20,20 +4609,12,182,10,19,20,20 +4610,12,182,11,21,22,22 +4611,12,182,11,56,22,22 +4612,12,182,12,19,22,22 +4613,12,182,12,56,22,22 +4614,12,182,28,279,40,55 +4615,12,182,29,86,35,45 +4616,12,182,30,73,40,55 +4617,12,182,31,87,40,55 +4618,12,182,32,87,40,55 +4619,12,182,13,129,4,6 +4620,12,182,14,129,3,7 +4621,12,182,15,129,5,10 +4622,12,182,16,129,5,10 +4623,12,182,17,129,5,10 +4624,12,182,18,129,15,20 +4625,12,182,19,116,15,20 +4626,12,182,20,129,10,25 +4627,12,182,21,116,10,25 +4628,12,182,22,116,10,25 +4629,12,182,23,130,30,40 +4630,12,182,24,117,30,40 +4631,12,182,25,369,40,50 +4632,12,182,26,117,35,55 +4633,12,182,27,117,35,55 +4634,12,183,1,70,50,50 +4635,12,183,1,222,50,50 +4636,12,183,2,44,50,50 +4637,12,183,2,222,50,50 +4638,12,183,3,55,52,52 +4639,12,183,4,267,51,51 +4640,12,183,5,69,18,18 +4641,12,183,5,175,18,18 +4642,12,183,6,43,18,18 +4643,12,183,6,175,18,18 +4644,12,183,7,419,51,51 +4645,12,183,8,423,51,51 +4646,12,183,9,419,52,52 +4647,12,183,10,419,50,50 +4648,12,183,11,69,23,23 +4649,12,183,11,175,23,23 +4650,12,183,12,43,23,23 +4651,12,183,12,175,23,23 +4652,12,183,28,279,40,55 +4653,12,183,29,86,35,45 +4654,12,183,30,73,40,55 +4655,12,183,31,87,40,55 +4656,12,183,32,87,40,55 +4657,12,183,13,129,4,6 +4658,12,183,14,129,3,7 +4659,12,183,15,129,5,10 +4660,12,183,16,129,5,10 +4661,12,183,17,129,5,10 +4662,12,183,18,129,15,20 +4663,12,183,19,223,15,20 +4664,12,183,20,129,10,25 +4665,12,183,21,223,10,25 +4666,12,183,22,223,10,25 +4667,12,183,23,130,30,40 +4668,12,183,24,320,30,40 +4669,12,183,25,224,40,55 +4670,12,183,26,321,35,55 +4671,12,183,27,321,35,55 +4672,13,1,28,72,20,30 +4673,13,1,29,278,20,30 +4674,13,1,30,73,20,40 +4675,13,1,31,279,20,40 +4676,13,1,32,279,20,40 +4677,13,1,13,129,4,6 +4678,13,1,14,129,3,7 +4679,13,1,15,129,5,10 +4680,13,1,16,129,5,10 +4681,13,1,17,129,5,10 +4682,13,1,18,129,15,20 +4683,13,1,19,456,15,20 +4684,13,1,20,129,10,25 +4685,13,1,21,456,10,25 +4686,13,1,22,456,10,25 +4687,13,1,23,130,30,40 +4688,13,1,24,457,30,40 +4689,13,1,25,120,20,40 +4690,13,1,26,457,20,50 +4691,13,1,27,457,20,50 +4692,13,2,28,54,20,30 +4693,13,2,29,54,20,40 +4694,13,2,30,55,30,40 +4695,13,2,31,55,30,40 +4696,13,2,32,55,20,40 +4697,13,2,13,129,4,6 +4698,13,2,14,129,3,7 +4699,13,2,15,129,5,10 +4700,13,2,16,129,5,10 +4701,13,2,17,129,5,10 +4702,13,2,18,129,15,20 +4703,13,2,19,339,15,20 +4704,13,2,20,129,10,25 +4705,13,2,21,339,10,25 +4706,13,2,22,339,10,25 +4707,13,2,23,130,30,40 +4708,13,2,24,340,30,40 +4709,13,2,25,130,40,55 +4710,13,2,26,340,20,50 +4711,13,2,27,340,20,50 +4712,13,3,28,72,20,30 +4713,13,3,29,278,20,30 +4714,13,3,30,73,20,40 +4715,13,3,31,279,20,40 +4716,13,3,32,279,20,40 +4717,13,3,13,129,4,6 +4718,13,3,14,129,3,7 +4719,13,3,15,129,5,10 +4720,13,3,16,129,5,10 +4721,13,3,17,129,5,10 +4722,13,3,18,129,15,20 +4723,13,3,19,223,15,20 +4724,13,3,20,129,10,25 +4725,13,3,21,223,10,25 +4726,13,3,22,223,10,25 +4727,13,3,23,130,30,40 +4728,13,3,24,224,30,40 +4729,13,3,25,130,40,55 +4730,13,3,26,224,20,50 +4731,13,3,27,224,20,50 +4732,13,4,28,73,35,45 +4733,13,4,29,279,35,45 +4734,13,4,30,458,30,40 +4735,13,4,31,458,30,40 +4736,13,4,32,458,35,45 +4737,13,4,13,129,4,6 +4738,13,4,14,129,3,7 +4739,13,4,15,129,5,10 +4740,13,4,16,129,5,10 +4741,13,4,17,129,5,10 +4742,13,4,18,129,15,20 +4743,13,4,19,223,15,20 +4744,13,4,20,129,10,25 +4745,13,4,21,223,10,25 +4746,13,4,22,223,10,25 +4747,13,4,23,130,30,40 +4748,13,4,24,224,30,40 +4749,13,4,25,120,20,40 +4750,13,4,26,224,20,50 +4751,13,4,27,224,20,50 +4752,13,5,28,279,35,40 +4753,13,5,29,73,35,40 +4754,13,5,30,279,40,45 +4755,13,5,31,73,40,45 +4756,13,5,32,73,40,45 +4757,13,5,13,129,4,6 +4758,13,5,14,129,3,7 +4759,13,5,15,129,5,10 +4760,13,5,16,129,5,10 +4761,13,5,17,129,5,10 +4762,13,5,18,129,15,20 +4763,13,5,19,223,15,20 +4764,13,5,20,129,10,25 +4765,13,5,21,223,10,25 +4766,13,5,22,223,10,25 +4767,13,5,23,130,30,40 +4768,13,5,24,224,30,40 +4769,13,5,25,370,20,30 +4770,13,5,26,224,20,50 +4771,13,5,27,224,20,50 +4772,13,6,1,74,6,6 +4773,13,6,2,74,6,6 +4774,13,6,3,41,7,7 +4775,13,6,4,41,7,7 +4776,13,6,5,74,7,7 +4777,13,6,6,74,7,7 +4778,13,6,7,95,8,8 +4779,13,6,8,95,8,8 +4780,13,6,9,74,9,9 +4781,13,6,10,74,9,9 +4782,13,6,11,74,5,5 +4783,13,6,12,74,5,5 +4784,13,7,1,74,7,7 +4785,13,7,2,74,7,7 +4786,13,7,3,41,8,8 +4787,13,7,4,41,8,8 +4788,13,7,5,74,8,8 +4789,13,7,6,74,8,8 +4790,13,7,7,95,9,9 +4791,13,7,8,95,9,9 +4792,13,7,9,74,10,10 +4793,13,7,10,74,10,10 +4794,13,7,11,74,6,6 +4795,13,7,12,74,6,6 +4796,13,8,1,418,7,7 +4797,13,8,1,309,7,7 +4798,13,8,2,417,7,7 +4799,13,8,2,309,7,7 +4800,13,8,3,418,8,8 +4801,13,8,4,422,8,8 +4802,13,8,5,399,8,8 +4803,13,8,5,179,8,8 +4804,13,8,6,422,7,7 +4805,13,8,6,179,7,7 +4806,13,8,7,422,9,9 +4807,13,8,8,417,8,8 +4808,13,8,9,418,9,9 +4809,13,8,9,418,9,9 +4810,13,8,9,418,9,9 +4811,13,8,9,418,9,9 +4812,13,8,9,239,9,9 +4813,13,8,9,418,9,9 +4814,13,8,10,422,9,9 +4815,13,8,10,422,9,9 +4816,13,8,10,422,9,9 +4817,13,8,10,422,9,9 +4818,13,8,10,239,9,9 +4819,13,8,10,422,9,9 +4820,13,8,11,418,9,9 +4821,13,8,11,179,9,9 +4822,13,8,12,422,9,9 +4823,13,8,12,179,9,9 +4824,13,8,28,72,20,30 +4825,13,8,29,278,20,30 +4826,13,8,30,73,20,40 +4827,13,8,31,279,20,40 +4828,13,8,32,279,20,40 +4829,13,8,13,129,4,6 +4830,13,8,14,129,3,7 +4831,13,8,15,129,5,10 +4832,13,8,16,129,5,10 +4833,13,8,17,129,5,10 +4834,13,8,18,129,15,20 +4835,13,8,19,456,15,20 +4836,13,8,20,129,10,25 +4837,13,8,21,456,10,25 +4838,13,8,22,456,10,25 +4839,13,8,23,130,30,40 +4840,13,8,24,457,30,40 +4841,13,8,25,90,20,40 +4842,13,8,26,457,30,50 +4843,13,8,27,457,30,50 +4844,13,9,1,265,10,10 +4845,13,9,1,287,10,10 +4846,13,9,2,268,10,10 +4847,13,9,2,287,10,10 +4848,13,9,3,265,11,11 +4849,13,9,3,265,11,11 +4850,13,9,3,200,11,11 +4851,13,9,4,406,10,10 +4852,13,9,4,406,10,10 +4853,13,9,4,200,10,10 +4854,13,9,5,427,10,10 +4855,13,9,5,290,10,10 +4856,13,9,6,406,11,11 +4857,13,9,6,290,11,11 +4858,13,9,7,427,11,11 +4859,13,9,8,406,12,12 +4860,13,9,9,406,12,12 +4861,13,9,9,273,12,12 +4862,13,9,9,406,12,12 +4863,13,9,9,204,12,12 +4864,13,9,9,11,12,12 +4865,13,9,9,14,12,12 +4866,13,9,10,427,12,12 +4867,13,9,10,273,12,12 +4868,13,9,10,427,12,12 +4869,13,9,10,204,12,12 +4870,13,9,10,11,12,12 +4871,13,9,10,14,12,12 +4872,13,9,11,269,12,12 +4873,13,9,11,290,12,12 +4874,13,9,12,269,12,12 +4875,13,9,12,290,12,12 +4876,13,10,1,419,29,29 +4877,13,10,1,81,29,29 +4878,13,10,2,422,28,28 +4879,13,10,2,81,28,28 +4880,13,10,3,403,28,28 +4881,13,10,4,278,29,29 +4882,13,10,5,404,29,29 +4883,13,10,5,187,29,29 +4884,13,10,6,423,29,29 +4885,13,10,6,187,29,29 +4886,13,10,7,417,29,29 +4887,13,10,8,417,29,29 +4888,13,10,9,419,30,30 +4889,13,10,10,423,30,30 +4890,13,10,11,419,30,30 +4891,13,10,11,188,30,30 +4892,13,10,12,423,30,30 +4893,13,10,12,188,30,30 +4894,13,10,28,72,20,30 +4895,13,10,29,278,20,30 +4896,13,10,30,73,20,40 +4897,13,10,31,279,20,40 +4898,13,10,32,279,20,40 +4899,13,10,13,129,4,6 +4900,13,10,14,129,3,7 +4901,13,10,15,129,5,10 +4902,13,10,16,129,5,10 +4903,13,10,17,129,5,10 +4904,13,10,18,129,15,20 +4905,13,10,19,456,15,20 +4906,13,10,20,129,10,25 +4907,13,10,21,456,10,25 +4908,13,10,22,456,10,25 +4909,13,10,23,130,30,40 +4910,13,10,24,457,30,40 +4911,13,10,25,90,20,40 +4912,13,10,26,457,20,50 +4913,13,10,27,457,20,50 +4914,13,11,1,66,15,15 +4915,13,11,2,74,15,15 +4916,13,11,3,173,14,14 +4917,13,11,3,74,14,14 +4918,13,11,3,74,14,14 +4919,13,11,4,173,14,14 +4920,13,11,4,41,14,14 +4921,13,11,4,41,14,14 +4922,13,11,5,307,15,15 +4923,13,11,6,41,15,15 +4924,13,11,7,433,15,15 +4925,13,11,8,433,15,15 +4926,13,11,9,66,16,16 +4927,13,11,10,173,14,14 +4928,13,11,11,66,16,16 +4929,13,11,12,173,14,14 +4930,13,11,28,41,20,30 +4931,13,11,29,41,20,40 +4932,13,11,30,42,30,40 +4933,13,11,31,42,30,40 +4934,13,11,32,42,20,40 +4935,13,11,13,129,4,6 +4936,13,11,14,129,3,7 +4937,13,11,15,129,5,10 +4938,13,11,16,129,5,10 +4939,13,11,17,129,5,10 +4940,13,11,18,129,15,20 +4941,13,11,19,339,15,20 +4942,13,11,20,129,10,25 +4943,13,11,21,339,10,25 +4944,13,11,22,339,10,25 +4945,13,11,23,130,30,40 +4946,13,11,24,340,30,40 +4947,13,11,25,130,40,55 +4948,13,11,26,340,20,50 +4949,13,11,27,340,20,50 +4950,13,12,1,437,38,38 +4951,13,12,2,75,36,36 +4952,13,12,3,67,37,37 +4953,13,12,4,35,36,36 +4954,13,12,5,308,37,37 +4955,13,12,6,42,37,37 +4956,13,12,7,433,37,37 +4957,13,12,8,433,38,38 +4958,13,12,9,436,36,36 +4959,13,12,9,338,36,36 +4960,13,12,9,337,36,36 +4961,13,12,9,436,36,36 +4962,13,12,9,436,36,36 +4963,13,12,9,436,36,36 +4964,13,12,10,35,37,37 +4965,13,12,10,338,37,37 +4966,13,12,10,337,37,37 +4967,13,12,10,35,37,37 +4968,13,12,10,35,37,37 +4969,13,12,10,35,37,37 +4970,13,12,11,436,36,36 +4971,13,12,12,35,38,38 +4972,13,13,1,437,38,38 +4973,13,13,2,75,36,36 +4974,13,13,3,67,37,37 +4975,13,13,4,35,36,36 +4976,13,13,5,308,37,37 +4977,13,13,6,42,37,37 +4978,13,13,7,433,37,37 +4979,13,13,8,433,38,38 +4980,13,13,9,436,36,36 +4981,13,13,9,338,36,36 +4982,13,13,9,337,36,36 +4983,13,13,9,436,36,36 +4984,13,13,9,436,36,36 +4985,13,13,9,436,36,36 +4986,13,13,10,35,37,37 +4987,13,13,10,338,37,37 +4988,13,13,10,337,37,37 +4989,13,13,10,35,37,37 +4990,13,13,10,35,37,37 +4991,13,13,10,35,37,37 +4992,13,13,11,436,36,36 +4993,13,13,12,35,38,38 +4994,13,14,1,459,38,38 +4995,13,14,2,460,40,40 +4996,13,14,3,308,39,39 +4997,13,14,3,308,39,39 +4998,13,14,3,42,39,39 +4999,13,14,4,67,39,39 +5000,13,14,4,67,39,39 +5001,13,14,4,164,39,39 +5002,13,14,5,308,40,40 +5003,13,14,5,294,40,40 +5004,13,14,6,67,40,40 +5005,13,14,6,294,40,40 +5006,13,14,7,433,39,39 +5007,13,14,8,433,40,40 +5008,13,14,9,437,39,39 +5009,13,14,9,338,39,39 +5010,13,14,9,337,39,39 +5011,13,14,9,437,39,39 +5012,13,14,9,437,39,39 +5013,13,14,9,437,39,39 +5014,13,14,10,35,38,38 +5015,13,14,10,338,38,38 +5016,13,14,10,337,38,38 +5017,13,14,10,35,38,38 +5018,13,14,10,35,38,38 +5019,13,14,10,35,38,38 +5020,13,14,11,437,40,40 +5021,13,14,11,294,40,40 +5022,13,14,12,35,39,39 +5023,13,14,12,294,39,39 +5024,13,15,1,459,38,38 +5025,13,15,2,460,40,40 +5026,13,15,3,308,39,39 +5027,13,15,3,308,39,39 +5028,13,15,3,42,39,39 +5029,13,15,4,67,39,39 +5030,13,15,4,67,39,39 +5031,13,15,4,164,39,39 +5032,13,15,5,308,40,40 +5033,13,15,5,294,40,40 +5034,13,15,6,67,40,40 +5035,13,15,6,294,40,40 +5036,13,15,7,433,39,39 +5037,13,15,8,433,40,40 +5038,13,15,9,437,39,39 +5039,13,15,9,338,39,39 +5040,13,15,9,337,39,39 +5041,13,15,9,437,39,39 +5042,13,15,9,437,39,39 +5043,13,15,9,437,39,39 +5044,13,15,10,35,38,38 +5045,13,15,10,338,38,38 +5046,13,15,10,337,38,38 +5047,13,15,10,35,38,38 +5048,13,15,10,35,38,38 +5049,13,15,10,35,38,38 +5050,13,15,11,437,40,40 +5051,13,15,11,294,40,40 +5052,13,15,12,35,39,39 +5053,13,15,12,294,39,39 +5054,13,16,1,437,40,40 +5055,13,16,2,75,38,38 +5056,13,16,3,67,39,39 +5057,13,16,4,35,38,38 +5058,13,16,5,308,39,39 +5059,13,16,6,42,39,39 +5060,13,16,7,433,39,39 +5061,13,16,8,433,40,40 +5062,13,16,9,437,38,38 +5063,13,16,9,338,38,38 +5064,13,16,9,337,38,38 +5065,13,16,9,437,38,38 +5066,13,16,9,437,38,38 +5067,13,16,9,437,38,38 +5068,13,16,10,35,39,39 +5069,13,16,10,338,39,39 +5070,13,16,10,337,39,39 +5071,13,16,10,35,39,39 +5072,13,16,10,35,39,39 +5073,13,16,10,35,39,39 +5074,13,16,11,437,39,39 +5075,13,16,12,35,40,40 +5076,13,16,28,41,20,30 +5077,13,16,29,41,20,40 +5078,13,16,30,42,30,40 +5079,13,16,31,42,30,40 +5080,13,16,32,42,20,40 +5081,13,16,13,129,4,6 +5082,13,16,14,129,3,7 +5083,13,16,15,129,5,10 +5084,13,16,16,129,5,10 +5085,13,16,17,129,5,10 +5086,13,16,18,129,15,20 +5087,13,16,19,339,15,20 +5088,13,16,20,129,10,25 +5089,13,16,21,339,10,25 +5090,13,16,22,339,10,25 +5091,13,16,23,130,30,40 +5092,13,16,24,147,15,20 +5093,13,16,25,130,40,55 +5094,13,16,26,148,15,35 +5095,13,16,27,148,15,40 +5096,13,17,1,437,40,40 +5097,13,17,2,75,38,38 +5098,13,17,3,67,39,39 +5099,13,17,4,35,38,38 +5100,13,17,5,308,39,39 +5101,13,17,6,42,39,39 +5102,13,17,7,433,40,40 +5103,13,17,8,358,40,40 +5104,13,17,9,437,38,38 +5105,13,17,9,338,38,38 +5106,13,17,9,337,38,38 +5107,13,17,9,437,38,38 +5108,13,17,9,437,38,38 +5109,13,17,9,437,38,38 +5110,13,17,10,35,39,39 +5111,13,17,10,338,39,39 +5112,13,17,10,337,39,39 +5113,13,17,10,35,39,39 +5114,13,17,10,35,39,39 +5115,13,17,10,35,39,39 +5116,13,17,11,437,39,39 +5117,13,17,12,35,40,40 +5118,13,18,1,437,42,42 +5119,13,18,2,75,40,40 +5120,13,18,3,67,41,41 +5121,13,18,4,35,40,40 +5122,13,18,5,308,41,41 +5123,13,18,6,42,41,41 +5124,13,18,7,358,41,41 +5125,13,18,8,358,42,42 +5126,13,18,9,437,40,40 +5127,13,18,9,338,40,40 +5128,13,18,9,337,40,40 +5129,13,18,9,437,40,40 +5130,13,18,9,437,40,40 +5131,13,18,9,437,40,40 +5132,13,18,10,35,41,41 +5133,13,18,10,338,41,41 +5134,13,18,10,337,41,41 +5135,13,18,10,35,41,41 +5136,13,18,10,35,41,41 +5137,13,18,10,35,41,41 +5138,13,18,11,437,41,41 +5139,13,18,12,35,42,42 +5140,13,19,1,437,42,42 +5141,13,19,2,75,40,40 +5142,13,19,3,67,41,41 +5143,13,19,4,35,40,40 +5144,13,19,5,308,41,41 +5145,13,19,6,42,41,41 +5146,13,19,7,358,41,41 +5147,13,19,8,358,42,42 +5148,13,19,9,437,40,40 +5149,13,19,9,338,40,40 +5150,13,19,9,337,40,40 +5151,13,19,9,437,40,40 +5152,13,19,9,437,40,40 +5153,13,19,9,437,40,40 +5154,13,19,10,35,41,41 +5155,13,19,10,338,41,41 +5156,13,19,10,337,41,41 +5157,13,19,10,35,41,41 +5158,13,19,10,35,41,41 +5159,13,19,10,35,41,41 +5160,13,19,11,437,41,41 +5161,13,19,12,35,42,42 +5162,13,20,1,75,40,40 +5163,13,20,2,75,39,39 +5164,13,20,3,67,40,40 +5165,13,20,4,35,38,38 +5166,13,20,5,308,40,40 +5167,13,20,6,42,39,39 +5168,13,20,7,433,38,38 +5169,13,20,8,433,40,40 +5170,13,20,9,437,40,40 +5171,13,20,9,338,40,40 +5172,13,20,9,337,40,40 +5173,13,20,9,437,40,40 +5174,13,20,9,437,40,40 +5175,13,20,9,437,40,40 +5176,13,20,10,35,39,39 +5177,13,20,10,338,39,39 +5178,13,20,10,337,39,39 +5179,13,20,10,35,39,39 +5180,13,20,10,35,39,39 +5181,13,20,10,35,39,39 +5182,13,20,11,437,39,39 +5183,13,20,12,35,40,40 +5184,13,21,1,307,31,31 +5185,13,21,2,75,31,31 +5186,13,21,3,35,30,30 +5187,13,21,4,42,32,32 +5188,13,21,5,67,31,31 +5189,13,21,6,42,31,31 +5190,13,21,7,433,30,30 +5191,13,21,8,433,30,30 +5192,13,21,9,307,32,32 +5193,13,21,10,35,31,31 +5194,13,21,11,307,32,32 +5195,13,21,12,35,32,32 +5196,13,22,1,307,13,13 +5197,13,22,2,74,13,13 +5198,13,22,3,173,12,12 +5199,13,22,3,74,12,12 +5200,13,22,3,74,12,12 +5201,13,22,4,173,12,12 +5202,13,22,4,41,12,12 +5203,13,22,4,41,12,12 +5204,13,22,5,66,13,13 +5205,13,22,6,41,13,13 +5206,13,22,7,433,13,13 +5207,13,22,8,433,13,13 +5208,13,22,9,307,14,14 +5209,13,22,9,307,14,14 +5210,13,22,9,173,14,14 +5211,13,22,9,307,14,14 +5212,13,22,9,307,14,14 +5213,13,22,9,307,14,14 +5214,13,22,10,173,12,12 +5215,13,22,11,307,14,14 +5216,13,22,12,173,12,12 +5217,13,23,1,307,31,31 +5218,13,23,2,75,31,31 +5219,13,23,3,35,30,30 +5220,13,23,4,42,32,32 +5221,13,23,5,67,31,31 +5222,13,23,6,42,31,31 +5223,13,23,7,433,30,30 +5224,13,23,8,433,30,30 +5225,13,23,9,307,32,32 +5226,13,23,10,35,31,31 +5227,13,23,11,307,32,32 +5228,13,23,12,35,32,32 +5229,13,23,28,41,20,30 +5230,13,23,29,41,20,40 +5231,13,23,30,42,30,40 +5232,13,23,31,42,30,40 +5233,13,23,32,42,20,40 +5234,13,23,13,129,4,6 +5235,13,23,14,129,3,7 +5236,13,23,15,129,5,10 +5237,13,23,16,129,5,10 +5238,13,23,17,129,5,10 +5239,13,23,18,129,15,20 +5240,13,23,19,339,15,20 +5241,13,23,20,129,10,25 +5242,13,23,21,339,10,25 +5243,13,23,22,339,10,25 +5244,13,23,23,130,30,40 +5245,13,23,24,340,30,40 +5246,13,23,25,130,40,55 +5247,13,23,26,340,20,50 +5248,13,23,27,340,20,50 +5249,13,24,1,194,24,24 +5250,13,24,2,400,25,25 +5251,13,24,3,406,24,24 +5252,13,24,3,406,24,24 +5253,13,24,3,163,24,24 +5254,13,24,4,396,26,26 +5255,13,24,4,396,26,26 +5256,13,24,4,164,26,26 +5257,13,24,5,183,25,25 +5258,13,24,6,195,25,25 +5259,13,24,7,183,26,26 +5260,13,24,8,195,26,26 +5261,13,24,9,54,26,26 +5262,13,24,9,54,26,26 +5263,13,24,9,54,26,26 +5264,13,24,9,54,26,26 +5265,13,24,9,24,26,26 +5266,13,24,9,54,26,26 +5267,13,24,10,54,24,24 +5268,13,24,10,54,24,24 +5269,13,24,10,54,24,24 +5270,13,24,10,54,24,24 +5271,13,24,10,24,24,24 +5272,13,24,10,54,24,24 +5273,13,24,11,399,26,26 +5274,13,24,12,298,24,24 +5275,13,24,28,194,20,30 +5276,13,24,29,183,20,30 +5277,13,24,30,195,20,40 +5278,13,24,31,54,20,40 +5279,13,24,32,54,20,40 +5280,13,24,13,129,4,6 +5281,13,24,14,129,3,7 +5282,13,24,15,129,5,10 +5283,13,24,16,129,5,10 +5284,13,24,17,129,5,10 +5285,13,24,18,129,15,20 +5286,13,24,19,339,15,20 +5287,13,24,20,129,10,25 +5288,13,24,21,130,15,30 +5289,13,24,22,130,15,30 +5290,13,24,23,340,30,55 +5291,13,24,24,318,15,20 +5292,13,24,25,130,40,55 +5293,13,24,26,318,15,30 +5294,13,24,27,318,15,30 +5295,13,25,1,194,24,24 +5296,13,25,2,400,25,25 +5297,13,25,3,406,24,24 +5298,13,25,3,406,24,24 +5299,13,25,3,163,24,24 +5300,13,25,4,396,26,26 +5301,13,25,4,396,26,26 +5302,13,25,4,164,26,26 +5303,13,25,5,183,25,25 +5304,13,25,6,195,25,25 +5305,13,25,7,183,26,26 +5306,13,25,8,195,26,26 +5307,13,25,9,54,26,26 +5308,13,25,9,54,26,26 +5309,13,25,9,54,26,26 +5310,13,25,9,54,26,26 +5311,13,25,9,24,26,26 +5312,13,25,9,54,26,26 +5313,13,25,10,54,24,24 +5314,13,25,10,54,24,24 +5315,13,25,10,54,24,24 +5316,13,25,10,54,24,24 +5317,13,25,10,24,24,24 +5318,13,25,10,54,24,24 +5319,13,25,11,399,26,26 +5320,13,25,12,298,24,24 +5321,13,25,28,194,20,30 +5322,13,25,29,183,20,30 +5323,13,25,30,195,20,40 +5324,13,25,31,54,20,40 +5325,13,25,32,54,20,40 +5326,13,25,13,129,4,6 +5327,13,25,14,129,3,7 +5328,13,25,15,129,5,10 +5329,13,25,16,129,5,10 +5330,13,25,17,129,5,10 +5331,13,25,18,129,15,20 +5332,13,25,19,339,15,20 +5333,13,25,20,129,10,25 +5334,13,25,21,130,15,30 +5335,13,25,22,130,15,30 +5336,13,25,23,340,30,55 +5337,13,25,24,318,15,20 +5338,13,25,25,130,40,55 +5339,13,25,26,318,15,30 +5340,13,25,27,318,15,30 +5341,13,26,1,194,22,22 +5342,13,26,2,400,23,23 +5343,13,26,3,406,22,22 +5344,13,26,3,406,22,22 +5345,13,26,3,163,22,22 +5346,13,26,4,396,24,24 +5347,13,26,4,396,24,24 +5348,13,26,4,163,24,24 +5349,13,26,5,183,23,23 +5350,13,26,6,195,23,23 +5351,13,26,7,183,24,24 +5352,13,26,8,195,24,24 +5353,13,26,9,54,24,24 +5354,13,26,9,54,24,24 +5355,13,26,9,54,24,24 +5356,13,26,9,54,24,24 +5357,13,26,9,24,24,24 +5358,13,26,9,54,24,24 +5359,13,26,10,54,22,22 +5360,13,26,10,54,22,22 +5361,13,26,10,54,22,22 +5362,13,26,10,54,22,22 +5363,13,26,10,24,22,22 +5364,13,26,10,54,22,22 +5365,13,26,11,399,24,24 +5366,13,26,12,298,22,22 +5367,13,26,28,194,20,30 +5368,13,26,29,183,20,30 +5369,13,26,30,195,20,40 +5370,13,26,31,54,20,40 +5371,13,26,32,54,20,40 +5372,13,26,13,129,4,6 +5373,13,26,14,129,3,7 +5374,13,26,15,129,5,10 +5375,13,26,16,129,5,10 +5376,13,26,17,129,5,10 +5377,13,26,18,129,15,20 +5378,13,26,19,339,15,20 +5379,13,26,20,129,10,25 +5380,13,26,21,130,15,30 +5381,13,26,22,130,15,30 +5382,13,26,23,340,30,55 +5383,13,26,24,318,15,20 +5384,13,26,25,130,40,55 +5385,13,26,26,318,15,30 +5386,13,26,27,318,15,30 +5387,13,27,1,194,22,22 +5388,13,27,2,400,23,23 +5389,13,27,3,406,22,22 +5390,13,27,3,406,22,22 +5391,13,27,3,163,22,22 +5392,13,27,4,396,24,24 +5393,13,27,4,396,24,24 +5394,13,27,4,163,24,24 +5395,13,27,5,183,23,23 +5396,13,27,6,195,23,23 +5397,13,27,7,183,24,24 +5398,13,27,8,195,24,24 +5399,13,27,9,54,24,24 +5400,13,27,9,54,24,24 +5401,13,27,9,54,24,24 +5402,13,27,9,54,24,24 +5403,13,27,9,24,24,24 +5404,13,27,9,54,24,24 +5405,13,27,10,54,22,22 +5406,13,27,10,54,22,22 +5407,13,27,10,54,22,22 +5408,13,27,10,54,22,22 +5409,13,27,10,24,22,22 +5410,13,27,10,54,22,22 +5411,13,27,11,399,24,24 +5412,13,27,12,298,22,22 +5413,13,27,28,194,20,30 +5414,13,27,29,183,20,30 +5415,13,27,30,195,20,40 +5416,13,27,31,54,20,40 +5417,13,27,32,54,20,40 +5418,13,27,13,129,4,6 +5419,13,27,14,129,3,7 +5420,13,27,15,129,5,10 +5421,13,27,16,129,5,10 +5422,13,27,17,129,5,10 +5423,13,27,18,129,15,20 +5424,13,27,19,339,15,20 +5425,13,27,20,129,10,25 +5426,13,27,21,130,15,30 +5427,13,27,22,130,15,30 +5428,13,27,23,340,30,55 +5429,13,27,24,318,15,20 +5430,13,27,25,130,40,55 +5431,13,27,26,318,15,30 +5432,13,27,27,318,15,30 +5433,13,28,1,194,20,20 +5434,13,28,2,400,21,21 +5435,13,28,3,406,20,20 +5436,13,28,3,406,20,20 +5437,13,28,3,163,20,20 +5438,13,28,4,396,22,22 +5439,13,28,4,396,22,22 +5440,13,28,4,163,22,22 +5441,13,28,5,183,21,21 +5442,13,28,6,195,21,21 +5443,13,28,7,183,22,22 +5444,13,28,8,195,22,22 +5445,13,28,9,399,22,22 +5446,13,28,9,399,22,22 +5447,13,28,9,399,22,22 +5448,13,28,9,399,22,22 +5449,13,28,9,24,22,22 +5450,13,28,9,399,22,22 +5451,13,28,10,298,20,20 +5452,13,28,10,298,20,20 +5453,13,28,10,298,20,20 +5454,13,28,10,298,20,20 +5455,13,28,10,24,20,20 +5456,13,28,10,298,20,20 +5457,13,28,11,399,22,22 +5458,13,28,12,298,20,20 +5459,13,29,1,194,20,20 +5460,13,29,2,400,21,21 +5461,13,29,3,406,20,20 +5462,13,29,3,406,20,20 +5463,13,29,3,163,20,20 +5464,13,29,4,396,22,22 +5465,13,29,4,396,22,22 +5466,13,29,4,163,22,22 +5467,13,29,5,183,21,21 +5468,13,29,6,195,21,21 +5469,13,29,7,183,22,22 +5470,13,29,8,195,22,22 +5471,13,29,9,54,22,22 +5472,13,29,9,54,22,22 +5473,13,29,9,54,22,22 +5474,13,29,9,54,22,22 +5475,13,29,9,24,22,22 +5476,13,29,9,54,22,22 +5477,13,29,10,54,20,20 +5478,13,29,10,54,20,20 +5479,13,29,10,54,20,20 +5480,13,29,10,54,20,20 +5481,13,29,10,24,20,20 +5482,13,29,10,54,20,20 +5483,13,29,11,399,22,22 +5484,13,29,12,298,20,20 +5485,13,29,28,194,20,30 +5486,13,29,29,183,20,30 +5487,13,29,30,195,20,40 +5488,13,29,31,54,20,40 +5489,13,29,32,54,20,40 +5490,13,29,13,129,4,6 +5491,13,29,14,129,3,7 +5492,13,29,15,129,5,10 +5493,13,29,16,129,5,10 +5494,13,29,17,129,5,10 +5495,13,29,18,129,15,20 +5496,13,29,19,339,15,20 +5497,13,29,20,129,10,25 +5498,13,29,21,130,15,30 +5499,13,29,22,130,15,30 +5500,13,29,23,340,30,55 +5501,13,29,24,318,15,20 +5502,13,29,25,130,40,55 +5503,13,29,26,318,15,30 +5504,13,29,27,318,15,30 +5505,13,30,1,201,19,19 +5506,13,30,2,201,20,20 +5507,13,30,3,201,18,18 +5508,13,30,4,201,21,21 +5509,13,30,5,201,17,17 +5510,13,30,6,201,22,22 +5511,13,30,7,201,16,16 +5512,13,30,8,201,23,23 +5513,13,30,9,201,15,15 +5514,13,30,10,201,24,24 +5515,13,30,11,201,14,14 +5516,13,30,12,201,25,25 +5517,13,31,1,201,19,19 +5518,13,31,2,201,20,20 +5519,13,31,3,201,18,18 +5520,13,31,4,201,21,21 +5521,13,31,5,201,17,17 +5522,13,31,6,201,22,22 +5523,13,31,7,201,16,16 +5524,13,31,8,201,23,23 +5525,13,31,9,201,15,15 +5526,13,31,10,201,24,24 +5527,13,31,11,201,14,14 +5528,13,31,12,201,25,25 +5529,13,32,1,201,19,19 +5530,13,32,2,201,20,20 +5531,13,32,3,201,18,18 +5532,13,32,4,201,21,21 +5533,13,32,5,201,17,17 +5534,13,32,6,201,22,22 +5535,13,32,7,201,16,16 +5536,13,32,8,201,23,23 +5537,13,32,9,201,15,15 +5538,13,32,10,201,24,24 +5539,13,32,11,201,14,14 +5540,13,32,12,201,25,25 +5541,13,33,1,201,19,19 +5542,13,33,2,201,20,20 +5543,13,33,3,201,18,18 +5544,13,33,4,201,21,21 +5545,13,33,5,201,17,17 +5546,13,33,6,201,22,22 +5547,13,33,7,201,16,16 +5548,13,33,8,201,23,23 +5549,13,33,9,201,15,15 +5550,13,33,10,201,24,24 +5551,13,33,11,201,14,14 +5552,13,33,12,201,25,25 +5553,13,34,1,201,19,19 +5554,13,34,2,201,20,20 +5555,13,34,3,201,18,18 +5556,13,34,4,201,21,21 +5557,13,34,5,201,17,17 +5558,13,34,6,201,22,22 +5559,13,34,7,201,16,16 +5560,13,34,8,201,23,23 +5561,13,34,9,201,15,15 +5562,13,34,10,201,24,24 +5563,13,34,11,201,14,14 +5564,13,34,12,201,25,25 +5565,13,35,1,201,19,19 +5566,13,35,2,201,20,20 +5567,13,35,3,201,18,18 +5568,13,35,4,201,21,21 +5569,13,35,5,201,17,17 +5570,13,35,6,201,22,22 +5571,13,35,7,201,16,16 +5572,13,35,8,201,23,23 +5573,13,35,9,201,15,15 +5574,13,35,10,201,24,24 +5575,13,35,11,201,14,14 +5576,13,35,12,201,25,25 +5577,13,36,1,201,19,19 +5578,13,36,2,201,20,20 +5579,13,36,3,201,18,18 +5580,13,36,4,201,21,21 +5581,13,36,5,201,17,17 +5582,13,36,6,201,22,22 +5583,13,36,7,201,16,16 +5584,13,36,8,201,23,23 +5585,13,36,9,201,15,15 +5586,13,36,10,201,24,24 +5587,13,36,11,201,14,14 +5588,13,36,12,201,25,25 +5589,13,37,1,201,19,19 +5590,13,37,2,201,20,20 +5591,13,37,3,201,18,18 +5592,13,37,4,201,21,21 +5593,13,37,5,201,17,17 +5594,13,37,6,201,22,22 +5595,13,37,7,201,16,16 +5596,13,37,8,201,23,23 +5597,13,37,9,201,15,15 +5598,13,37,10,201,24,24 +5599,13,37,11,201,14,14 +5600,13,37,12,201,25,25 +5601,13,38,1,201,19,19 +5602,13,38,2,201,20,20 +5603,13,38,3,201,18,18 +5604,13,38,4,201,21,21 +5605,13,38,5,201,17,17 +5606,13,38,6,201,22,22 +5607,13,38,7,201,16,16 +5608,13,38,8,201,23,23 +5609,13,38,9,201,15,15 +5610,13,38,10,201,24,24 +5611,13,38,11,201,14,14 +5612,13,38,12,201,25,25 +5613,13,39,1,201,19,19 +5614,13,39,2,201,20,20 +5615,13,39,3,201,18,18 +5616,13,39,4,201,21,21 +5617,13,39,5,201,17,17 +5618,13,39,6,201,22,22 +5619,13,39,7,201,16,16 +5620,13,39,8,201,23,23 +5621,13,39,9,201,15,15 +5622,13,39,10,201,24,24 +5623,13,39,11,201,14,14 +5624,13,39,12,201,25,25 +5625,13,40,1,201,19,19 +5626,13,40,2,201,20,20 +5627,13,40,3,201,18,18 +5628,13,40,4,201,21,21 +5629,13,40,5,201,17,17 +5630,13,40,6,201,22,22 +5631,13,40,7,201,16,16 +5632,13,40,8,201,23,23 +5633,13,40,9,201,15,15 +5634,13,40,10,201,24,24 +5635,13,40,11,201,14,14 +5636,13,40,12,201,25,25 +5637,13,41,1,201,19,19 +5638,13,41,2,201,20,20 +5639,13,41,3,201,18,18 +5640,13,41,4,201,21,21 +5641,13,41,5,201,17,17 +5642,13,41,6,201,22,22 +5643,13,41,7,201,16,16 +5644,13,41,8,201,23,23 +5645,13,41,9,201,15,15 +5646,13,41,10,201,24,24 +5647,13,41,11,201,14,14 +5648,13,41,12,201,25,25 +5649,13,42,1,201,19,19 +5650,13,42,2,201,20,20 +5651,13,42,3,201,18,18 +5652,13,42,4,201,21,21 +5653,13,42,5,201,17,17 +5654,13,42,6,201,22,22 +5655,13,42,7,201,16,16 +5656,13,42,8,201,23,23 +5657,13,42,9,201,15,15 +5658,13,42,10,201,24,24 +5659,13,42,11,201,14,14 +5660,13,42,12,201,25,25 +5661,13,43,1,201,19,19 +5662,13,43,2,201,20,20 +5663,13,43,3,201,18,18 +5664,13,43,4,201,21,21 +5665,13,43,5,201,17,17 +5666,13,43,6,201,22,22 +5667,13,43,7,201,16,16 +5668,13,43,8,201,23,23 +5669,13,43,9,201,15,15 +5670,13,43,10,201,24,24 +5671,13,43,11,201,14,14 +5672,13,43,12,201,25,25 +5673,13,44,1,201,19,19 +5674,13,44,2,201,20,20 +5675,13,44,3,201,18,18 +5676,13,44,4,201,21,21 +5677,13,44,5,201,17,17 +5678,13,44,6,201,22,22 +5679,13,44,7,201,16,16 +5680,13,44,8,201,23,23 +5681,13,44,9,201,15,15 +5682,13,44,10,201,24,24 +5683,13,44,11,201,14,14 +5684,13,44,12,201,25,25 +5685,13,45,1,201,19,19 +5686,13,45,2,201,20,20 +5687,13,45,3,201,18,18 +5688,13,45,4,201,21,21 +5689,13,45,5,201,17,17 +5690,13,45,6,201,22,22 +5691,13,45,7,201,16,16 +5692,13,45,8,201,23,23 +5693,13,45,9,201,15,15 +5694,13,45,10,201,24,24 +5695,13,45,11,201,14,14 +5696,13,45,12,201,25,25 +5697,13,46,1,201,19,19 +5698,13,46,2,201,20,20 +5699,13,46,3,201,18,18 +5700,13,46,4,201,21,21 +5701,13,46,5,201,17,17 +5702,13,46,6,201,22,22 +5703,13,46,7,201,16,16 +5704,13,46,8,201,23,23 +5705,13,46,9,201,15,15 +5706,13,46,10,201,24,24 +5707,13,46,11,201,14,14 +5708,13,46,12,201,25,25 +5709,13,47,1,201,19,19 +5710,13,47,2,201,20,20 +5711,13,47,3,201,18,18 +5712,13,47,4,201,21,21 +5713,13,47,5,201,17,17 +5714,13,47,6,201,22,22 +5715,13,47,7,201,16,16 +5716,13,47,8,201,23,23 +5717,13,47,9,201,15,15 +5718,13,47,10,201,24,24 +5719,13,47,11,201,14,14 +5720,13,47,12,201,25,25 +5721,13,48,1,67,45,45 +5722,13,48,2,75,45,45 +5723,13,48,3,308,45,45 +5724,13,48,4,42,45,45 +5725,13,48,5,95,44,44 +5726,13,48,6,208,46,46 +5727,13,48,7,42,46,46 +5728,13,48,8,42,44,44 +5729,13,48,9,67,46,46 +5730,13,48,10,308,46,46 +5731,13,48,11,67,44,44 +5732,13,48,12,308,44,44 +5733,13,49,1,64,46,46 +5734,13,49,2,75,46,46 +5735,13,49,3,308,46,46 +5736,13,49,4,42,46,46 +5737,13,49,5,95,45,45 +5738,13,49,6,208,47,47 +5739,13,49,7,42,47,47 +5740,13,49,8,42,45,45 +5741,13,49,9,64,47,47 +5742,13,49,10,308,47,47 +5743,13,49,11,64,45,45 +5744,13,49,12,308,45,45 +5745,13,50,1,67,45,45 +5746,13,50,2,419,45,45 +5747,13,50,3,308,45,45 +5748,13,50,4,42,45,45 +5749,13,50,5,419,44,44 +5750,13,50,6,208,46,46 +5751,13,50,7,42,46,46 +5752,13,50,8,42,44,44 +5753,13,50,9,67,46,46 +5754,13,50,10,308,46,46 +5755,13,50,11,67,44,44 +5756,13,50,12,308,44,44 +5757,13,50,28,42,35,45 +5758,13,50,29,42,35,45 +5759,13,50,30,42,40,50 +5760,13,50,31,42,40,50 +5761,13,50,32,42,40,50 +5762,13,50,13,129,4,6 +5763,13,50,14,129,3,7 +5764,13,50,15,129,5,10 +5765,13,50,16,129,5,10 +5766,13,50,17,129,5,10 +5767,13,50,18,129,15,20 +5768,13,50,19,129,15,20 +5769,13,50,20,129,10,25 +5770,13,50,21,129,10,25 +5771,13,50,22,129,10,25 +5772,13,50,23,130,30,40 +5773,13,50,24,130,30,40 +5774,13,50,25,130,40,55 +5775,13,50,26,130,20,50 +5776,13,50,27,130,20,50 +5777,13,51,1,67,51,51 +5778,13,51,2,419,51,51 +5779,13,51,3,308,51,51 +5780,13,51,4,42,51,51 +5781,13,51,5,419,50,50 +5782,13,51,6,208,52,52 +5783,13,51,7,42,52,52 +5784,13,51,8,42,50,50 +5785,13,51,9,67,52,52 +5786,13,51,10,308,52,52 +5787,13,51,11,67,50,50 +5788,13,51,12,308,50,50 +5789,13,51,28,42,40,50 +5790,13,51,29,42,45,55 +5791,13,51,30,131,40,50 +5792,13,51,31,131,45,55 +5793,13,51,32,131,50,60 +5794,13,51,13,129,4,6 +5795,13,51,14,129,3,7 +5796,13,51,15,129,5,10 +5797,13,51,16,129,5,10 +5798,13,51,17,129,5,10 +5799,13,51,18,129,15,20 +5800,13,51,19,129,15,20 +5801,13,51,20,129,10,25 +5802,13,51,21,129,10,25 +5803,13,51,22,129,10,25 +5804,13,51,23,130,30,40 +5805,13,51,24,130,30,40 +5806,13,51,25,130,40,55 +5807,13,51,26,130,20,50 +5808,13,51,27,130,20,50 +5809,13,52,1,67,51,51 +5810,13,52,2,75,51,51 +5811,13,52,3,308,51,51 +5812,13,52,4,42,51,51 +5813,13,52,5,95,50,50 +5814,13,52,6,208,52,52 +5815,13,52,7,42,52,52 +5816,13,52,8,42,50,50 +5817,13,52,9,67,52,52 +5818,13,52,10,308,52,52 +5819,13,52,11,67,50,50 +5820,13,52,12,308,50,50 +5821,13,53,1,67,51,51 +5822,13,53,2,75,51,51 +5823,13,53,3,308,51,51 +5824,13,53,4,42,51,51 +5825,13,53,5,95,50,50 +5826,13,53,6,208,52,52 +5827,13,53,7,42,52,52 +5828,13,53,8,42,50,50 +5829,13,53,9,67,52,52 +5830,13,53,10,308,52,52 +5831,13,53,11,67,50,50 +5832,13,53,12,308,50,50 +5833,13,54,1,41,4,4 +5834,13,54,2,41,4,4 +5835,13,54,3,74,5,5 +5836,13,54,4,74,5,5 +5837,13,54,5,41,5,5 +5838,13,54,6,41,5,5 +5839,13,54,7,41,6,6 +5840,13,54,8,41,6,6 +5841,13,54,9,41,6,6 +5842,13,54,10,41,6,6 +5843,13,54,11,54,5,5 +5844,13,54,12,54,5,5 +5845,13,54,28,41,20,30 +5846,13,54,29,54,20,30 +5847,13,54,30,42,20,40 +5848,13,54,31,55,20,40 +5849,13,54,32,55,20,40 +5850,13,54,13,129,4,6 +5851,13,54,14,129,3,7 +5852,13,54,15,129,5,10 +5853,13,54,16,129,5,10 +5854,13,54,17,129,5,10 +5855,13,54,18,129,15,20 +5856,13,54,19,339,15,20 +5857,13,54,20,129,10,25 +5858,13,54,21,339,10,25 +5859,13,54,22,339,10,25 +5860,13,54,23,130,30,40 +5861,13,54,24,340,30,40 +5862,13,54,25,130,40,55 +5863,13,54,26,340,20,50 +5864,13,54,27,340,20,50 +5865,13,55,1,74,5,5 +5866,13,55,2,74,5,5 +5867,13,55,3,41,6,6 +5868,13,55,4,41,6,6 +5869,13,55,5,74,6,6 +5870,13,55,6,74,6,6 +5871,13,55,7,74,7,7 +5872,13,55,8,74,7,7 +5873,13,55,9,74,8,8 +5874,13,55,10,74,8,8 +5875,13,55,11,74,4,4 +5876,13,55,12,74,4,4 +5877,13,56,1,41,8,8 +5878,13,56,2,41,8,8 +5879,13,56,3,54,8,8 +5880,13,56,4,74,9,9 +5881,13,56,5,54,9,9 +5882,13,56,6,41,9,9 +5883,13,56,7,54,8,8 +5884,13,56,8,54,10,10 +5885,13,56,9,41,10,10 +5886,13,56,10,41,10,10 +5887,13,56,11,41,10,10 +5888,13,56,12,41,10,10 +5889,13,56,28,41,20,30 +5890,13,56,29,54,20,30 +5891,13,56,30,42,20,40 +5892,13,56,31,55,20,40 +5893,13,56,32,55,20,40 +5894,13,56,13,129,4,6 +5895,13,56,14,129,3,7 +5896,13,56,15,129,5,10 +5897,13,56,16,129,5,10 +5898,13,56,17,129,5,10 +5899,13,56,18,129,15,20 +5900,13,56,19,339,15,20 +5901,13,56,20,129,10,25 +5902,13,56,21,339,10,25 +5903,13,56,22,339,10,25 +5904,13,56,23,130,30,40 +5905,13,56,24,340,30,40 +5906,13,56,25,130,40,55 +5907,13,56,26,340,20,50 +5908,13,56,27,340,20,50 +5909,13,57,1,323,55,55 +5910,13,57,2,112,55,55 +5911,13,57,3,22,54,54 +5912,13,57,3,22,54,54 +5913,13,57,3,354,54,54 +5914,13,57,4,75,54,54 +5915,13,57,4,75,54,54 +5916,13,57,4,42,54,54 +5917,13,57,5,22,55,55 +5918,13,57,5,324,55,55 +5919,13,57,6,110,55,55 +5920,13,57,6,324,55,55 +5921,13,57,7,227,56,56 +5922,13,57,8,75,56,56 +5923,13,57,9,322,22,22 +5924,13,57,9,322,22,22 +5925,13,57,9,322,22,22 +5926,13,57,9,207,22,22 +5927,13,57,9,322,22,22 +5928,13,57,9,240,22,22 +5929,13,57,10,111,22,22 +5930,13,57,10,111,22,22 +5931,13,57,10,111,22,22 +5932,13,57,10,207,22,22 +5933,13,57,10,111,22,22 +5934,13,57,10,240,22,22 +5935,13,57,11,322,24,24 +5936,13,57,11,324,24,24 +5937,13,57,12,111,24,24 +5938,13,57,12,324,24,24 +5939,13,58,1,75,55,55 +5940,13,58,2,219,55,55 +5941,13,58,3,42,54,54 +5942,13,58,4,67,56,56 +5943,13,58,5,219,56,56 +5944,13,58,6,110,56,56 +5945,13,58,7,95,54,54 +5946,13,58,8,323,56,56 +5947,13,58,9,74,25,25 +5948,13,58,9,74,25,25 +5949,13,58,9,74,25,25 +5950,13,58,9,74,25,25 +5951,13,58,9,74,25,25 +5952,13,58,9,240,25,25 +5953,13,58,10,218,25,25 +5954,13,58,10,218,25,25 +5955,13,58,10,218,25,25 +5956,13,58,10,218,25,25 +5957,13,58,10,218,25,25 +5958,13,58,10,240,25,25 +5959,13,58,11,74,27,27 +5960,13,58,12,218,27,27 +5961,13,59,1,75,57,57 +5962,13,59,2,219,57,57 +5963,13,59,3,42,56,56 +5964,13,59,4,67,58,58 +5965,13,59,5,219,58,58 +5966,13,59,6,110,58,58 +5967,13,59,7,95,56,56 +5968,13,59,8,323,58,58 +5969,13,59,9,74,27,27 +5970,13,59,9,74,27,27 +5971,13,59,9,74,27,27 +5972,13,59,9,74,27,27 +5973,13,59,9,74,27,27 +5974,13,59,9,240,27,27 +5975,13,59,10,218,27,27 +5976,13,59,10,218,27,27 +5977,13,59,10,218,27,27 +5978,13,59,10,218,27,27 +5979,13,59,10,218,27,27 +5980,13,59,10,240,27,27 +5981,13,59,11,74,29,29 +5982,13,59,12,218,29,29 +5983,13,60,1,400,53,53 +5984,13,60,2,400,54,54 +5985,13,60,3,397,53,53 +5986,13,60,3,397,53,53 +5987,13,60,3,164,53,53 +5988,13,60,4,397,54,54 +5989,13,60,4,397,54,54 +5990,13,60,4,164,54,54 +5991,13,60,5,55,53,53 +5992,13,60,6,55,54,54 +5993,13,60,7,358,52,52 +5994,13,60,8,358,54,54 +5995,13,60,9,400,52,52 +5996,13,60,9,338,52,52 +5997,13,60,9,337,52,52 +5998,13,60,9,400,52,52 +5999,13,60,9,400,52,52 +6000,13,60,9,400,52,52 +6001,13,60,10,397,52,52 +6002,13,60,10,338,52,52 +6003,13,60,10,337,52,52 +6004,13,60,10,397,52,52 +6005,13,60,10,397,52,52 +6006,13,60,10,397,52,52 +6007,13,60,11,400,52,52 +6008,13,60,12,397,52,52 +6009,13,60,28,55,40,50 +6010,13,60,29,55,40,50 +6011,13,60,30,55,45,55 +6012,13,60,31,55,45,55 +6013,13,60,32,55,45,55 +6014,13,60,13,129,3,6 +6015,13,60,14,129,4,7 +6016,13,60,15,129,5,10 +6017,13,60,16,129,5,10 +6018,13,60,17,129,5,10 +6019,13,60,18,129,15,20 +6020,13,60,19,118,15,20 +6021,13,60,20,129,10,25 +6022,13,60,21,118,10,25 +6023,13,60,22,118,10,25 +6024,13,60,23,130,30,40 +6025,13,60,24,119,30,40 +6026,13,60,25,130,40,55 +6027,13,60,26,119,20,50 +6028,13,60,27,119,20,50 +6029,13,61,1,42,55,55 +6030,13,61,2,437,56,56 +6031,13,61,3,93,55,55 +6032,13,61,4,42,56,56 +6033,13,61,5,93,56,56 +6034,13,61,6,437,55,55 +6035,13,61,7,93,54,54 +6036,13,61,8,93,54,54 +6037,13,61,9,436,54,54 +6038,13,61,9,338,54,54 +6039,13,61,9,337,54,54 +6040,13,61,9,436,54,54 +6041,13,61,9,436,54,54 +6042,13,61,9,436,54,54 +6043,13,61,10,437,56,56 +6044,13,61,10,338,56,56 +6045,13,61,10,337,56,56 +6046,13,61,10,437,56,56 +6047,13,61,10,437,56,56 +6048,13,61,10,437,56,56 +6049,13,61,11,436,54,54 +6050,13,61,12,437,56,56 +6051,13,62,1,42,55,55 +6052,13,62,2,437,56,56 +6053,13,62,3,93,55,55 +6054,13,62,4,42,56,56 +6055,13,62,5,93,56,56 +6056,13,62,6,437,55,55 +6057,13,62,7,93,54,54 +6058,13,62,8,93,54,54 +6059,13,62,9,436,54,54 +6060,13,62,9,338,54,54 +6061,13,62,9,337,54,54 +6062,13,62,9,436,54,54 +6063,13,62,9,436,54,54 +6064,13,62,9,436,54,54 +6065,13,62,10,437,56,56 +6066,13,62,10,338,56,56 +6067,13,62,10,337,56,56 +6068,13,62,10,437,56,56 +6069,13,62,10,437,56,56 +6070,13,62,10,437,56,56 +6071,13,62,11,436,54,54 +6072,13,62,12,437,56,56 +6073,13,63,1,42,55,55 +6074,13,63,2,437,56,56 +6075,13,63,3,93,55,55 +6076,13,63,4,42,56,56 +6077,13,63,5,93,56,56 +6078,13,63,6,437,55,55 +6079,13,63,7,93,54,54 +6080,13,63,8,93,54,54 +6081,13,63,9,436,54,54 +6082,13,63,9,338,54,54 +6083,13,63,9,337,54,54 +6084,13,63,9,436,54,54 +6085,13,63,9,436,54,54 +6086,13,63,9,436,54,54 +6087,13,63,10,437,56,56 +6088,13,63,10,338,56,56 +6089,13,63,10,337,56,56 +6090,13,63,10,437,56,56 +6091,13,63,10,437,56,56 +6092,13,63,10,437,56,56 +6093,13,63,11,436,54,54 +6094,13,63,12,437,56,56 +6095,13,64,1,42,45,45 +6096,13,64,2,437,46,46 +6097,13,64,3,93,45,45 +6098,13,64,4,42,46,46 +6099,13,64,5,93,46,46 +6100,13,64,6,437,45,45 +6101,13,64,7,93,44,44 +6102,13,64,8,93,44,44 +6103,13,64,9,436,44,44 +6104,13,64,9,338,44,44 +6105,13,64,9,337,44,44 +6106,13,64,9,436,44,44 +6107,13,64,9,436,44,44 +6108,13,64,9,436,44,44 +6109,13,64,10,437,46,46 +6110,13,64,10,338,46,46 +6111,13,64,10,337,46,46 +6112,13,64,10,437,46,46 +6113,13,64,10,437,46,46 +6114,13,64,10,437,46,46 +6115,13,64,11,436,44,44 +6116,13,64,12,437,46,46 +6227,13,70,1,42,55,55 +6228,13,70,2,437,56,56 +6229,13,70,3,93,55,55 +6230,13,70,4,42,56,56 +6231,13,70,5,93,56,56 +6232,13,70,6,437,55,55 +6233,13,70,7,93,54,54 +6234,13,70,8,93,54,54 +6235,13,70,9,436,54,54 +6236,13,70,9,338,54,54 +6237,13,70,9,337,54,54 +6238,13,70,9,436,54,54 +6239,13,70,9,436,54,54 +6240,13,70,9,436,54,54 +6241,13,70,10,437,56,56 +6242,13,70,10,338,56,56 +6243,13,70,10,337,56,56 +6244,13,70,10,437,56,56 +6245,13,70,10,437,56,56 +6246,13,70,10,437,56,56 +6247,13,70,11,436,54,54 +6248,13,70,12,437,56,56 +6359,13,76,1,42,65,65 +6360,13,76,2,437,66,66 +6361,13,76,3,93,65,65 +6362,13,76,4,42,66,66 +6363,13,76,5,93,66,66 +6364,13,76,6,437,65,65 +6365,13,76,7,93,64,64 +6366,13,76,8,93,64,64 +6367,13,76,9,436,64,64 +6368,13,76,9,338,64,64 +6369,13,76,9,337,64,64 +6370,13,76,9,436,64,64 +6371,13,76,9,436,64,64 +6372,13,76,9,436,64,64 +6373,13,76,10,437,66,66 +6374,13,76,10,338,66,66 +6375,13,76,10,337,66,66 +6376,13,76,10,437,66,66 +6377,13,76,10,437,66,66 +6378,13,76,10,437,66,66 +6379,13,76,11,436,64,64 +6380,13,76,12,437,66,66 +6491,13,82,1,42,55,55 +6492,13,82,2,437,56,56 +6493,13,82,3,93,55,55 +6494,13,82,4,42,56,56 +6495,13,82,5,93,56,56 +6496,13,82,6,437,55,55 +6497,13,82,7,93,54,54 +6498,13,82,8,93,54,54 +6499,13,82,9,436,54,54 +6500,13,82,9,338,54,54 +6501,13,82,9,337,54,54 +6502,13,82,9,436,54,54 +6503,13,82,9,436,54,54 +6504,13,82,9,436,54,54 +6505,13,82,10,437,56,56 +6506,13,82,10,338,56,56 +6507,13,82,10,337,56,56 +6508,13,82,10,437,56,56 +6509,13,82,10,437,56,56 +6510,13,82,10,437,56,56 +6511,13,82,11,436,54,54 +6512,13,82,12,437,56,56 +7041,13,107,1,42,51,51 +7042,13,107,2,215,51,51 +7043,13,107,3,75,52,52 +7044,13,107,4,42,52,52 +7045,13,107,5,215,52,52 +7046,13,107,6,95,51,51 +7047,13,107,7,215,50,50 +7048,13,107,8,208,52,52 +7049,13,107,9,95,52,52 +7050,13,107,10,42,50,50 +7051,13,107,11,95,50,50 +7052,13,107,12,42,50,50 +7053,13,108,1,42,53,53 +7054,13,108,2,215,53,53 +7055,13,108,3,75,54,54 +7056,13,108,4,42,54,54 +7057,13,108,5,215,54,54 +7058,13,108,6,208,53,53 +7059,13,108,7,215,52,52 +7060,13,108,8,208,54,54 +7061,13,108,9,95,53,53 +7062,13,108,10,42,52,52 +7063,13,108,11,95,52,52 +7064,13,108,12,42,52,52 +7065,13,109,1,42,53,53 +7066,13,109,2,215,53,53 +7067,13,109,3,75,54,54 +7068,13,109,4,42,54,54 +7069,13,109,5,215,54,54 +7070,13,109,6,208,53,53 +7071,13,109,7,215,52,52 +7072,13,109,8,208,54,54 +7073,13,109,9,95,53,53 +7074,13,109,10,42,52,52 +7075,13,109,11,95,52,52 +7076,13,109,12,42,52,52 +7077,13,110,1,42,53,53 +7078,13,110,2,215,53,53 +7079,13,110,3,75,54,54 +7080,13,110,4,42,54,54 +7081,13,110,5,215,54,54 +7082,13,110,6,208,53,53 +7083,13,110,7,215,52,52 +7084,13,110,8,208,54,54 +7085,13,110,9,95,53,53 +7086,13,110,10,42,52,52 +7087,13,110,11,95,52,52 +7088,13,110,12,42,52,52 +7089,13,111,1,42,55,55 +7090,13,111,2,215,55,55 +7091,13,111,3,75,56,56 +7092,13,111,4,42,56,56 +7093,13,111,5,215,56,56 +7094,13,111,6,208,55,55 +7095,13,111,7,215,54,54 +7096,13,111,8,208,56,56 +7097,13,111,9,208,54,54 +7098,13,111,10,42,54,54 +7099,13,111,11,208,54,54 +7100,13,111,12,42,54,54 +7101,13,112,1,42,55,55 +7102,13,112,2,215,55,55 +7103,13,112,3,75,56,56 +7104,13,112,4,42,56,56 +7105,13,112,5,215,56,56 +7106,13,112,6,208,55,55 +7107,13,112,7,215,54,54 +7108,13,112,8,208,56,56 +7109,13,112,9,208,54,54 +7110,13,112,10,42,54,54 +7111,13,112,11,208,54,54 +7112,13,112,12,42,54,54 +7113,13,113,1,436,14,14 +7114,13,113,2,41,14,14 +7115,13,113,3,74,15,15 +7116,13,113,4,41,15,15 +7117,13,113,5,436,15,15 +7118,13,113,6,41,15,15 +7119,13,113,7,436,16,16 +7120,13,113,8,436,14,14 +7121,13,113,9,74,16,16 +7122,13,113,9,74,16,16 +7123,13,113,9,74,16,16 +7124,13,113,9,74,16,16 +7125,13,113,9,74,16,16 +7126,13,113,9,27,16,16 +7127,13,113,10,41,16,16 +7128,13,113,10,41,16,16 +7129,13,113,10,41,16,16 +7130,13,113,10,41,16,16 +7131,13,113,10,41,16,16 +7132,13,113,10,27,16,16 +7133,13,113,11,74,16,16 +7134,13,113,12,41,16,16 +7135,13,114,1,436,15,15 +7136,13,114,2,41,15,15 +7137,13,114,3,74,16,16 +7138,13,114,4,41,16,16 +7139,13,114,5,436,16,16 +7140,13,114,6,443,15,15 +7141,13,114,7,436,15,15 +7142,13,114,8,436,17,17 +7143,13,114,9,443,16,16 +7144,13,114,9,443,16,16 +7145,13,114,9,443,16,16 +7146,13,114,9,443,16,16 +7147,13,114,9,443,16,16 +7148,13,114,9,27,16,16 +7149,13,114,10,41,17,17 +7150,13,114,10,41,17,17 +7151,13,114,10,41,17,17 +7152,13,114,10,41,17,17 +7153,13,114,10,41,17,17 +7154,13,114,10,27,17,17 +7155,13,114,11,443,17,17 +7156,13,114,12,41,17,17 +7157,13,115,1,74,22,22 +7158,13,115,2,74,22,22 +7159,13,115,3,74,22,22 +7160,13,115,4,74,22,22 +7161,13,115,5,74,22,22 +7162,13,115,6,74,22,22 +7163,13,115,7,74,22,22 +7164,13,115,8,74,22,22 +7165,13,115,9,74,22,22 +7166,13,115,10,449,22,22 +7167,13,115,11,74,22,22 +7168,13,115,12,449,23,23 +7169,13,116,1,74,23,23 +7170,13,116,2,74,23,23 +7171,13,116,3,74,23,23 +7172,13,116,4,74,23,23 +7173,13,116,5,74,23,23 +7174,13,116,6,74,23,23 +7175,13,116,7,74,23,23 +7176,13,116,8,449,22,22 +7177,13,116,9,74,23,23 +7178,13,116,10,449,23,23 +7179,13,116,11,74,23,23 +7180,13,116,12,449,24,24 +7181,13,117,1,74,24,24 +7182,13,117,2,74,24,24 +7183,13,117,3,74,24,24 +7184,13,117,4,74,24,24 +7185,13,117,5,74,24,24 +7186,13,117,6,449,22,22 +7187,13,117,7,74,24,24 +7188,13,117,8,449,23,23 +7189,13,117,9,74,24,24 +7190,13,117,10,449,24,24 +7191,13,117,11,74,24,24 +7192,13,117,12,449,25,25 +7193,13,118,1,397,17,17 +7194,13,118,2,315,16,16 +7195,13,118,3,172,16,16 +7196,13,118,3,397,16,16 +7197,13,118,3,402,16,16 +7198,13,118,4,172,16,16 +7199,13,118,4,397,16,16 +7200,13,118,4,402,16,16 +7201,13,118,5,315,17,17 +7202,13,118,6,402,17,17 +7203,13,118,7,25,18,18 +7204,13,118,8,172,16,16 +7205,13,118,9,25,18,18 +7206,13,118,10,172,16,16 +7207,13,118,11,25,18,18 +7208,13,118,12,172,16,16 +7209,13,119,28,72,20,30 +7210,13,119,29,278,20,30 +7211,13,119,30,73,20,40 +7212,13,119,31,279,20,40 +7213,13,119,32,279,20,40 +7214,13,119,13,129,4,6 +7215,13,119,14,129,3,7 +7216,13,119,15,129,5,10 +7217,13,119,16,129,5,10 +7218,13,119,17,129,5,10 +7219,13,119,18,129,15,20 +7220,13,119,19,456,15,20 +7221,13,119,20,129,10,25 +7222,13,119,21,456,10,25 +7223,13,119,22,456,10,25 +7224,13,119,23,130,30,40 +7225,13,119,24,457,30,40 +7226,13,119,25,211,20,40 +7227,13,119,26,457,20,50 +7228,13,119,27,457,20,50 +7229,13,120,1,74,30,30 +7230,13,120,2,75,31,31 +7231,13,120,3,41,30,30 +7232,13,120,4,42,31,31 +7233,13,120,5,74,29,29 +7234,13,120,6,75,32,32 +7235,13,120,7,95,32,32 +7236,13,120,8,95,33,33 +7237,13,120,9,74,31,31 +7238,13,120,10,75,33,33 +7239,13,120,11,74,31,31 +7240,13,120,12,75,33,33 +7241,13,121,1,75,30,30 +7242,13,121,2,75,31,31 +7243,13,121,3,42,30,30 +7244,13,121,4,42,31,31 +7245,13,121,5,75,29,29 +7246,13,121,6,75,32,32 +7247,13,121,7,95,32,32 +7248,13,121,8,95,33,33 +7249,13,121,9,75,31,31 +7250,13,121,9,303,31,31 +7251,13,121,9,302,31,31 +7252,13,121,9,75,31,31 +7253,13,121,9,75,31,31 +7254,13,121,9,75,31,31 +7255,13,121,10,75,33,33 +7256,13,121,10,303,33,33 +7257,13,121,10,302,33,33 +7258,13,121,10,75,33,33 +7259,13,121,10,75,33,33 +7260,13,121,10,75,33,33 +7261,13,121,11,74,31,31 +7262,13,121,12,75,33,33 +7263,13,122,1,75,30,30 +7264,13,122,2,75,31,31 +7265,13,122,3,42,30,30 +7266,13,122,4,42,31,31 +7267,13,122,5,75,29,29 +7268,13,122,6,75,32,32 +7269,13,122,7,95,32,32 +7270,13,122,8,95,33,33 +7271,13,122,9,75,31,31 +7272,13,122,9,303,31,31 +7273,13,122,9,302,31,31 +7274,13,122,9,75,31,31 +7275,13,122,9,75,31,31 +7276,13,122,9,75,31,31 +7277,13,122,10,75,33,33 +7278,13,122,10,303,33,33 +7279,13,122,10,302,33,33 +7280,13,122,10,75,33,33 +7281,13,122,10,75,33,33 +7282,13,122,10,75,33,33 +7283,13,122,11,74,31,31 +7284,13,122,12,75,33,33 +7285,13,123,1,75,30,30 +7286,13,123,2,95,31,31 +7287,13,123,3,42,30,30 +7288,13,123,4,42,31,31 +7289,13,123,5,75,29,29 +7290,13,123,6,75,32,32 +7291,13,123,7,95,32,32 +7292,13,123,8,95,33,33 +7293,13,123,9,75,31,31 +7294,13,123,9,303,31,31 +7295,13,123,9,302,31,31 +7296,13,123,9,75,31,31 +7297,13,123,9,75,31,31 +7298,13,123,9,75,31,31 +7299,13,123,10,75,33,33 +7300,13,123,10,303,33,33 +7301,13,123,10,302,33,33 +7302,13,123,10,75,33,33 +7303,13,123,10,75,33,33 +7304,13,123,10,75,33,33 +7305,13,123,11,74,31,31 +7306,13,123,12,75,33,33 +7307,13,124,1,75,31,31 +7308,13,124,2,95,32,32 +7309,13,124,3,42,31,31 +7310,13,124,4,42,32,32 +7311,13,124,5,75,30,30 +7312,13,124,6,95,33,33 +7313,13,124,7,208,33,33 +7314,13,124,8,208,34,34 +7315,13,124,9,75,32,32 +7316,13,124,9,303,32,32 +7317,13,124,9,302,32,32 +7318,13,124,9,75,32,32 +7319,13,124,9,75,32,32 +7320,13,124,9,75,32,32 +7321,13,124,10,75,34,34 +7322,13,124,10,303,34,34 +7323,13,124,10,302,34,34 +7324,13,124,10,75,34,34 +7325,13,124,10,75,34,34 +7326,13,124,10,75,34,34 +7327,13,124,11,74,32,32 +7328,13,124,12,75,34,34 +7329,13,125,1,75,31,31 +7330,13,125,2,95,32,32 +7331,13,125,3,42,31,31 +7332,13,125,4,42,32,32 +7333,13,125,5,75,30,30 +7334,13,125,6,95,33,33 +7335,13,125,7,208,33,33 +7336,13,125,8,208,34,34 +7337,13,125,9,75,32,32 +7338,13,125,9,303,32,32 +7339,13,125,9,302,32,32 +7340,13,125,9,75,32,32 +7341,13,125,9,75,32,32 +7342,13,125,9,75,32,32 +7343,13,125,10,75,34,34 +7344,13,125,10,303,34,34 +7345,13,125,10,302,34,34 +7346,13,125,10,75,34,34 +7347,13,125,10,75,34,34 +7348,13,125,10,75,34,34 +7349,13,125,11,74,32,32 +7350,13,125,12,75,34,34 +7351,13,126,1,92,12,12 +7352,13,126,2,92,12,12 +7353,13,126,3,92,14,14 +7354,13,126,4,92,14,14 +7355,13,126,5,92,13,13 +7356,13,126,6,92,13,13 +7357,13,126,7,92,13,13 +7358,13,126,8,92,13,13 +7359,13,126,9,92,16,16 +7360,13,126,9,93,16,16 +7361,13,126,9,93,16,16 +7362,13,126,9,93,16,16 +7363,13,126,9,93,16,16 +7364,13,126,9,93,16,16 +7365,13,126,10,92,16,16 +7366,13,126,10,93,16,16 +7367,13,126,10,93,16,16 +7368,13,126,10,93,16,16 +7369,13,126,10,93,16,16 +7370,13,126,10,93,16,16 +7371,13,126,11,92,15,15 +7372,13,126,12,92,15,15 +7373,13,127,1,92,12,12 +7374,13,127,2,92,12,12 +7375,13,127,3,92,14,14 +7376,13,127,4,92,14,14 +7377,13,127,5,92,13,13 +7378,13,127,6,92,13,13 +7379,13,127,7,92,13,13 +7380,13,127,8,92,13,13 +7381,13,127,9,92,16,16 +7382,13,127,9,93,16,16 +7383,13,127,9,93,16,16 +7384,13,127,9,93,16,16 +7385,13,127,9,93,16,16 +7386,13,127,9,93,16,16 +7387,13,127,10,92,16,16 +7388,13,127,10,93,16,16 +7389,13,127,10,93,16,16 +7390,13,127,10,93,16,16 +7391,13,127,10,93,16,16 +7392,13,127,10,93,16,16 +7393,13,127,11,92,15,15 +7394,13,127,12,92,15,15 +7395,13,128,1,92,12,12 +7396,13,128,2,92,12,12 +7397,13,128,3,92,14,14 +7398,13,128,4,92,14,14 +7399,13,128,5,92,13,13 +7400,13,128,6,92,13,13 +7401,13,128,7,92,13,13 +7402,13,128,8,92,13,13 +7403,13,128,9,92,16,16 +7404,13,128,9,93,16,16 +7405,13,128,9,93,16,16 +7406,13,128,9,93,16,16 +7407,13,128,9,93,16,16 +7408,13,128,9,93,16,16 +7409,13,128,10,92,16,16 +7410,13,128,10,93,16,16 +7411,13,128,10,93,16,16 +7412,13,128,10,93,16,16 +7413,13,128,10,93,16,16 +7414,13,128,10,93,16,16 +7415,13,128,11,92,15,15 +7416,13,128,12,92,15,15 +7417,13,129,1,92,12,12 +7418,13,129,2,92,12,12 +7419,13,129,3,92,14,14 +7420,13,129,4,92,14,14 +7421,13,129,5,92,13,13 +7422,13,129,6,92,13,13 +7423,13,129,7,92,13,13 +7424,13,129,8,92,13,13 +7425,13,129,9,92,16,16 +7426,13,129,9,93,16,16 +7427,13,129,9,93,16,16 +7428,13,129,9,93,16,16 +7429,13,129,9,93,16,16 +7430,13,129,9,93,16,16 +7431,13,129,10,92,16,16 +7432,13,129,10,93,16,16 +7433,13,129,10,93,16,16 +7434,13,129,10,93,16,16 +7435,13,129,10,93,16,16 +7436,13,129,10,93,16,16 +7437,13,129,11,92,15,15 +7438,13,129,12,92,15,15 +7439,13,130,1,92,12,12 +7440,13,130,2,92,12,12 +7441,13,130,3,92,14,14 +7442,13,130,4,92,14,14 +7443,13,130,5,92,13,13 +7444,13,130,6,92,13,13 +7445,13,130,7,92,13,13 +7446,13,130,8,92,13,13 +7447,13,130,9,92,16,16 +7448,13,130,9,93,16,16 +7449,13,130,9,93,16,16 +7450,13,130,9,93,16,16 +7451,13,130,9,93,16,16 +7452,13,130,9,93,16,16 +7453,13,130,10,92,16,16 +7454,13,130,10,93,16,16 +7455,13,130,10,93,16,16 +7456,13,130,10,93,16,16 +7457,13,130,10,93,16,16 +7458,13,130,10,93,16,16 +7459,13,130,11,92,15,15 +7460,13,130,12,92,15,15 +7461,13,131,1,92,12,12 +7462,13,131,2,92,12,12 +7463,13,131,3,92,14,14 +7464,13,131,4,92,14,14 +7465,13,131,5,92,13,13 +7466,13,131,6,92,13,13 +7467,13,131,7,92,13,13 +7468,13,131,8,92,13,13 +7469,13,131,9,92,16,16 +7470,13,131,9,93,16,16 +7471,13,131,9,93,16,16 +7472,13,131,9,93,16,16 +7473,13,131,9,93,16,16 +7474,13,131,9,93,16,16 +7475,13,131,10,92,16,16 +7476,13,131,10,93,16,16 +7477,13,131,10,93,16,16 +7478,13,131,10,93,16,16 +7479,13,131,10,93,16,16 +7480,13,131,10,93,16,16 +7481,13,131,11,92,15,15 +7482,13,131,12,92,15,15 +7483,13,132,1,92,12,12 +7484,13,132,2,92,12,12 +7485,13,132,3,92,14,14 +7486,13,132,4,92,14,14 +7487,13,132,5,92,13,13 +7488,13,132,6,92,13,13 +7489,13,132,7,92,13,13 +7490,13,132,8,92,13,13 +7491,13,132,9,92,16,16 +7492,13,132,9,93,16,16 +7493,13,132,9,93,16,16 +7494,13,132,9,93,16,16 +7495,13,132,9,93,16,16 +7496,13,132,9,93,16,16 +7497,13,132,10,92,16,16 +7498,13,132,10,93,16,16 +7499,13,132,10,93,16,16 +7500,13,132,10,93,16,16 +7501,13,132,10,93,16,16 +7502,13,132,10,93,16,16 +7503,13,132,11,92,15,15 +7504,13,132,12,92,15,15 +7505,13,133,1,92,12,12 +7506,13,133,2,92,12,12 +7507,13,133,3,92,14,14 +7508,13,133,4,92,14,14 +7509,13,133,5,92,13,13 +7510,13,133,6,92,13,13 +7511,13,133,7,92,13,13 +7512,13,133,8,92,13,13 +7513,13,133,9,92,16,16 +7514,13,133,9,94,16,16 +7515,13,133,9,94,16,16 +7516,13,133,9,94,16,16 +7517,13,133,9,94,16,16 +7518,13,133,9,94,16,16 +7519,13,133,10,92,16,16 +7520,13,133,10,93,16,16 +7521,13,133,10,93,16,16 +7522,13,133,10,93,16,16 +7523,13,133,10,93,16,16 +7524,13,133,10,93,16,16 +7525,13,133,11,92,15,15 +7526,13,133,12,92,15,15 +7527,13,134,1,92,12,12 +7528,13,134,2,92,12,12 +7529,13,134,3,92,14,14 +7530,13,134,4,92,14,14 +7531,13,134,5,92,13,13 +7532,13,134,6,92,13,13 +7533,13,134,7,92,13,13 +7534,13,134,8,92,13,13 +7535,13,134,9,92,16,16 +7536,13,134,9,93,16,16 +7537,13,134,9,93,16,16 +7538,13,134,9,93,16,16 +7539,13,134,9,93,16,16 +7540,13,134,9,93,16,16 +7541,13,134,10,92,16,16 +7542,13,134,10,93,16,16 +7543,13,134,10,93,16,16 +7544,13,134,10,93,16,16 +7545,13,134,10,93,16,16 +7546,13,134,10,93,16,16 +7547,13,134,11,92,15,15 +7548,13,134,12,92,15,15 +7549,13,135,1,396,2,2 +7550,13,135,1,283,2,2 +7551,13,135,2,399,2,2 +7552,13,135,2,283,2,2 +7553,13,135,3,396,3,3 +7554,13,135,3,396,3,3 +7555,13,135,3,399,3,3 +7556,13,135,4,399,3,3 +7557,13,135,5,396,3,3 +7558,13,135,5,202,3,3 +7559,13,135,6,399,3,3 +7560,13,135,6,202,3,3 +7561,13,135,7,396,4,4 +7562,13,135,8,399,4,4 +7563,13,135,9,396,4,4 +7564,13,135,9,338,4,4 +7565,13,135,9,337,4,4 +7566,13,135,9,400,4,4 +7567,13,135,9,400,4,4 +7568,13,135,9,400,4,4 +7569,13,135,10,399,4,4 +7570,13,135,10,338,4,4 +7571,13,135,10,337,4,4 +7572,13,135,10,397,4,4 +7573,13,135,10,397,4,4 +7574,13,135,10,397,4,4 +7575,13,135,11,396,4,4 +7576,13,135,11,202,4,4 +7577,13,135,12,399,4,4 +7578,13,135,12,202,4,4 +7579,13,135,28,54,20,30 +7580,13,135,29,54,20,40 +7581,13,135,30,55,30,40 +7582,13,135,31,55,30,40 +7583,13,135,32,55,20,40 +7584,13,135,13,129,3,6 +7585,13,135,14,129,4,7 +7586,13,135,15,129,5,10 +7587,13,135,16,129,5,10 +7588,13,135,17,129,5,10 +7589,13,135,18,129,15,20 +7590,13,135,19,118,15,20 +7591,13,135,20,129,10,25 +7592,13,135,21,118,10,25 +7593,13,135,22,118,10,25 +7594,13,135,23,130,30,40 +7595,13,135,24,119,30,40 +7596,13,135,25,130,40,55 +7597,13,135,26,119,20,50 +7598,13,135,27,119,20,50 +7599,13,136,1,396,2,2 +7600,13,136,1,283,2,2 +7601,13,136,2,399,2,2 +7602,13,136,2,283,2,2 +7603,13,136,3,396,3,3 +7604,13,136,3,396,3,3 +7605,13,136,3,399,3,3 +7606,13,136,4,399,3,3 +7607,13,136,5,396,3,3 +7608,13,136,5,202,3,3 +7609,13,136,6,399,3,3 +7610,13,136,6,202,3,3 +7611,13,136,7,396,4,4 +7612,13,136,8,399,4,4 +7613,13,136,9,396,4,4 +7614,13,136,9,338,4,4 +7615,13,136,9,337,4,4 +7616,13,136,9,400,4,4 +7617,13,136,9,400,4,4 +7618,13,136,9,400,4,4 +7619,13,136,10,399,4,4 +7620,13,136,10,338,4,4 +7621,13,136,10,337,4,4 +7622,13,136,10,397,4,4 +7623,13,136,10,397,4,4 +7624,13,136,10,397,4,4 +7625,13,136,11,396,4,4 +7626,13,136,11,202,4,4 +7627,13,136,12,399,4,4 +7628,13,136,12,202,4,4 +7629,13,136,28,54,20,30 +7630,13,136,29,54,20,40 +7631,13,136,30,55,30,40 +7632,13,136,31,55,30,40 +7633,13,136,32,55,20,40 +7634,13,136,13,129,3,6 +7635,13,136,14,129,4,7 +7636,13,136,15,129,5,10 +7637,13,136,16,129,5,10 +7638,13,136,17,129,5,10 +7639,13,136,18,129,15,20 +7640,13,136,19,118,15,20 +7641,13,136,20,129,10,25 +7642,13,136,21,118,10,25 +7643,13,136,22,118,10,25 +7644,13,136,23,130,30,40 +7645,13,136,24,119,30,40 +7646,13,136,25,130,40,55 +7647,13,136,26,119,20,50 +7648,13,136,27,119,20,50 +7649,13,137,1,400,34,34 +7650,13,137,1,108,34,34 +7651,13,137,2,400,36,36 +7652,13,137,2,108,36,36 +7653,13,137,3,397,34,34 +7654,13,137,3,397,34,34 +7655,13,137,3,164,34,34 +7656,13,137,4,397,36,36 +7657,13,137,4,397,36,36 +7658,13,137,4,164,36,36 +7659,13,137,5,54,35,35 +7660,13,137,5,202,35,35 +7661,13,137,6,54,36,36 +7662,13,137,6,202,36,36 +7663,13,137,7,433,35,35 +7664,13,137,8,433,36,36 +7665,13,137,9,400,35,35 +7666,13,137,9,338,35,35 +7667,13,137,9,337,35,35 +7668,13,137,9,400,35,35 +7669,13,137,9,400,35,35 +7670,13,137,9,400,35,35 +7671,13,137,10,397,35,35 +7672,13,137,10,338,35,35 +7673,13,137,10,337,35,35 +7674,13,137,10,397,35,35 +7675,13,137,10,397,35,35 +7676,13,137,10,397,35,35 +7677,13,137,11,400,35,35 +7678,13,137,11,202,35,35 +7679,13,137,12,397,35,35 +7680,13,137,12,202,35,35 +7681,13,137,28,54,20,30 +7682,13,137,29,54,20,40 +7683,13,137,30,55,30,40 +7684,13,137,31,55,30,40 +7685,13,137,32,55,20,40 +7686,13,137,13,129,3,6 +7687,13,137,14,129,4,7 +7688,13,137,15,129,5,10 +7689,13,137,16,129,5,10 +7690,13,137,17,129,5,10 +7691,13,137,18,129,15,20 +7692,13,137,19,118,15,20 +7693,13,137,20,129,10,25 +7694,13,137,21,118,10,25 +7695,13,137,22,118,10,25 +7696,13,137,23,130,30,40 +7697,13,137,24,119,30,40 +7698,13,137,25,130,40,55 +7699,13,137,26,119,20,50 +7700,13,137,27,119,20,50 +7701,13,138,1,400,35,35 +7702,13,138,1,238,35,35 +7703,13,138,2,215,35,35 +7704,13,138,2,238,35,35 +7705,13,138,3,400,34,34 +7706,13,138,3,400,34,34 +7707,13,138,3,164,34,34 +7708,13,138,4,54,36,36 +7709,13,138,4,54,36,36 +7710,13,138,4,164,36,36 +7711,13,138,5,54,34,34 +7712,13,138,5,202,34,34 +7713,13,138,6,54,35,35 +7714,13,138,6,202,35,35 +7715,13,138,7,433,34,34 +7716,13,138,8,433,36,36 +7717,13,138,9,400,34,34 +7718,13,138,9,338,34,34 +7719,13,138,9,337,34,34 +7720,13,138,9,217,34,34 +7721,13,138,9,400,34,34 +7722,13,138,9,400,34,34 +7723,13,138,10,215,36,36 +7724,13,138,10,338,36,36 +7725,13,138,10,337,36,36 +7726,13,138,10,217,36,36 +7727,13,138,10,215,36,36 +7728,13,138,10,215,36,36 +7729,13,138,11,400,34,34 +7730,13,138,11,202,34,34 +7731,13,138,12,215,36,36 +7732,13,138,12,202,36,36 +7733,13,138,28,54,20,30 +7734,13,138,29,54,20,40 +7735,13,138,30,55,30,40 +7736,13,138,31,55,30,40 +7737,13,138,32,55,20,40 +7738,13,138,13,129,3,6 +7739,13,138,14,129,4,7 +7740,13,138,15,129,5,10 +7741,13,138,16,129,5,10 +7742,13,138,17,129,5,10 +7743,13,138,18,129,15,20 +7744,13,138,19,118,15,20 +7745,13,138,20,129,10,25 +7746,13,138,21,118,10,25 +7747,13,138,22,118,10,25 +7748,13,138,23,130,30,40 +7749,13,138,24,119,30,40 +7750,13,138,25,130,40,55 +7751,13,138,26,119,20,50 +7752,13,138,27,119,20,50 +7753,13,139,1,203,21,21 +7754,13,139,2,74,20,20 +7755,13,139,3,397,21,21 +7756,13,139,3,397,21,21 +7757,13,139,3,402,21,21 +7758,13,139,4,75,21,21 +7759,13,139,4,75,21,21 +7760,13,139,4,402,21,21 +7761,13,139,5,400,21,21 +7762,13,139,5,33,21,21 +7763,13,139,6,203,22,22 +7764,13,139,6,33,22,22 +7765,13,139,7,402,22,22 +7766,13,139,8,397,22,22 +7767,13,139,9,400,22,22 +7768,13,139,10,75,22,22 +7769,13,139,11,400,22,22 +7770,13,139,11,30,22,22 +7771,13,139,12,75,22,22 +7772,13,139,12,30,22,22 +7773,13,140,1,459,34,34 +7774,13,140,2,215,34,34 +7775,13,140,3,307,35,35 +7776,13,140,3,307,35,35 +7777,13,140,3,41,35,35 +7778,13,140,4,67,35,35 +7779,13,140,4,67,35,35 +7780,13,140,4,164,35,35 +7781,13,140,5,308,35,35 +7782,13,140,5,361,35,35 +7783,13,140,6,67,36,36 +7784,13,140,6,361,36,36 +7785,13,140,7,459,35,35 +7786,13,140,8,215,35,35 +7787,13,140,9,308,36,36 +7788,13,140,9,308,36,36 +7789,13,140,9,308,36,36 +7790,13,140,9,216,36,36 +7791,13,140,9,308,36,36 +7792,13,140,9,308,36,36 +7793,13,140,10,308,36,36 +7794,13,140,10,308,36,36 +7795,13,140,10,308,36,36 +7796,13,140,10,216,36,36 +7797,13,140,10,308,36,36 +7798,13,140,10,308,36,36 +7799,13,140,11,308,36,36 +7800,13,140,11,361,36,36 +7801,13,140,12,308,36,36 +7802,13,140,12,361,36,36 +7803,13,141,1,396,2,2 +7804,13,141,1,84,2,2 +7805,13,141,2,399,2,2 +7806,13,141,2,84,2,2 +7807,13,141,3,396,3,3 +7808,13,141,3,396,3,3 +7809,13,141,3,399,3,3 +7810,13,141,4,399,3,3 +7811,13,141,5,396,3,3 +7812,13,141,5,32,3,3 +7813,13,141,6,399,3,3 +7814,13,141,6,32,3,3 +7815,13,141,7,396,3,3 +7816,13,141,8,399,3,3 +7817,13,141,9,396,2,2 +7818,13,141,9,396,2,2 +7819,13,141,9,396,2,2 +7820,13,141,9,396,2,2 +7821,13,141,9,58,2,2 +7822,13,141,9,396,2,2 +7823,13,141,10,399,2,2 +7824,13,141,10,396,2,2 +7825,13,141,10,396,2,2 +7826,13,141,10,396,2,2 +7827,13,141,10,58,2,2 +7828,13,141,10,396,2,2 +7829,13,141,11,396,2,2 +7830,13,141,11,29,2,2 +7831,13,141,12,399,2,2 +7832,13,141,12,29,2,2 +7833,13,142,1,403,3,3 +7834,13,142,1,263,3,3 +7835,13,142,2,399,3,3 +7836,13,142,2,263,3,3 +7837,13,142,3,396,4,4 +7838,13,142,3,396,4,4 +7839,13,142,3,401,4,4 +7840,13,142,4,401,3,3 +7841,13,142,4,396,3,3 +7842,13,142,4,401,3,3 +7843,13,142,5,396,3,3 +7844,13,142,5,161,3,3 +7845,13,142,6,403,4,4 +7846,13,142,6,161,4,4 +7847,13,142,7,396,4,4 +7848,13,142,8,399,4,4 +7849,13,142,9,396,2,2 +7850,13,142,9,396,2,2 +7851,13,142,9,396,2,2 +7852,13,142,9,396,2,2 +7853,13,142,9,58,2,2 +7854,13,142,9,396,2,2 +7855,13,142,10,399,2,2 +7856,13,142,10,399,2,2 +7857,13,142,10,399,2,2 +7858,13,142,10,399,2,2 +7859,13,142,10,58,2,2 +7860,13,142,10,399,2,2 +7861,13,142,11,396,2,2 +7862,13,142,11,161,2,2 +7863,13,142,12,399,2,2 +7864,13,142,12,161,2,2 +7865,13,143,1,396,4,4 +7866,13,143,1,104,4,4 +7867,13,143,2,403,4,4 +7868,13,143,2,104,4,4 +7869,13,143,3,396,5,5 +7870,13,143,3,396,5,5 +7871,13,143,3,41,5,5 +7872,13,143,4,401,4,4 +7873,13,143,4,396,4,4 +7874,13,143,4,401,4,4 +7875,13,143,5,399,4,4 +7876,13,143,5,280,4,4 +7877,13,143,6,63,5,5 +7878,13,143,6,280,5,5 +7879,13,143,7,63,4,4 +7880,13,143,8,403,5,5 +7881,13,143,9,396,5,5 +7882,13,143,9,273,5,5 +7883,13,143,9,270,5,5 +7884,13,143,9,204,5,5 +7885,13,143,9,396,5,5 +7886,13,143,9,396,5,5 +7887,13,143,10,399,5,5 +7888,13,143,10,273,5,5 +7889,13,143,10,270,5,5 +7890,13,143,10,204,5,5 +7891,13,143,10,399,5,5 +7892,13,143,10,399,5,5 +7893,13,143,11,396,6,6 +7894,13,143,11,280,6,6 +7895,13,143,12,399,6,6 +7896,13,143,12,281,6,6 +7897,13,143,28,54,20,30 +7898,13,143,29,54,20,40 +7899,13,143,30,55,30,40 +7900,13,143,31,55,30,40 +7901,13,143,32,55,20,40 +7902,13,143,13,129,4,6 +7903,13,143,14,129,3,7 +7904,13,143,15,129,5,10 +7905,13,143,16,129,5,10 +7906,13,143,17,129,5,10 +7907,13,143,18,129,15,20 +7908,13,143,19,118,15,20 +7909,13,143,20,129,10,25 +7910,13,143,21,118,10,25 +7911,13,143,22,118,10,25 +7912,13,143,23,130,30,40 +7913,13,143,24,119,30,40 +7914,13,143,25,130,40,55 +7915,13,143,26,119,20,50 +7916,13,143,27,119,20,50 +7917,13,144,1,396,4,4 +7918,13,144,2,399,4,4 +7919,13,144,3,406,4,4 +7920,13,144,3,406,4,4 +7921,13,144,3,41,4,4 +7922,13,144,4,401,4,4 +7923,13,144,4,396,4,4 +7924,13,144,4,401,4,4 +7925,13,144,5,406,4,4 +7926,13,144,5,280,4,4 +7927,13,144,6,403,4,4 +7928,13,144,6,280,4,4 +7929,13,144,7,406,5,5 +7930,13,144,8,403,5,5 +7931,13,144,9,396,6,6 +7932,13,144,9,273,6,6 +7933,13,144,9,270,6,6 +7934,13,144,9,204,6,6 +7935,13,144,9,10,6,6 +7936,13,144,9,13,6,6 +7937,13,144,10,399,6,6 +7938,13,144,10,273,6,6 +7939,13,144,10,270,6,6 +7940,13,144,10,204,6,6 +7941,13,144,10,10,6,6 +7942,13,144,10,13,6,6 +7943,13,144,11,396,6,6 +7944,13,144,11,280,6,6 +7945,13,144,12,399,6,6 +7946,13,144,12,281,6,6 +7947,13,144,28,54,20,30 +7948,13,144,29,54,20,40 +7949,13,144,30,55,30,40 +7950,13,144,31,55,30,40 +7951,13,144,32,55,20,40 +7952,13,144,13,129,4,6 +7953,13,144,14,129,3,7 +7954,13,144,15,129,5,10 +7955,13,144,16,129,5,10 +7956,13,144,17,129,5,10 +7957,13,144,18,129,15,20 +7958,13,144,19,118,15,20 +7959,13,144,20,129,10,25 +7960,13,144,21,118,10,25 +7961,13,144,22,118,10,25 +7962,13,144,23,130,30,40 +7963,13,144,24,119,30,40 +7964,13,144,25,130,40,55 +7965,13,144,26,119,20,50 +7966,13,144,27,119,20,50 +7967,13,145,1,396,6,6 +7968,13,145,2,399,6,6 +7969,13,145,3,406,6,6 +7970,13,145,3,406,6,6 +7971,13,145,3,41,6,6 +7972,13,145,4,401,6,6 +7973,13,145,4,396,6,6 +7974,13,145,4,401,6,6 +7975,13,145,5,406,6,6 +7976,13,145,5,191,6,6 +7977,13,145,6,403,6,6 +7978,13,145,6,191,6,6 +7979,13,145,7,406,7,7 +7980,13,145,8,403,7,7 +7981,13,145,9,396,8,8 +7982,13,145,9,273,8,8 +7983,13,145,9,270,8,8 +7984,13,145,9,204,8,8 +7985,13,145,9,396,8,8 +7986,13,145,9,396,8,8 +7987,13,145,10,399,8,8 +7988,13,145,10,273,8,8 +7989,13,145,10,270,8,8 +7990,13,145,10,204,8,8 +7991,13,145,10,399,8,8 +7992,13,145,10,399,8,8 +7993,13,145,11,396,8,8 +7994,13,145,11,191,8,8 +7995,13,145,12,399,8,8 +7996,13,145,12,191,8,8 +7997,13,145,28,54,20,30 +7998,13,145,29,54,20,40 +7999,13,145,30,55,30,40 +8000,13,145,31,55,30,40 +8001,13,145,32,55,20,40 +8002,13,145,13,129,4,6 +8003,13,145,14,129,3,7 +8004,13,145,15,129,5,10 +8005,13,145,16,129,5,10 +8006,13,145,17,129,5,10 +8007,13,145,18,129,15,20 +8008,13,145,19,118,15,20 +8009,13,145,20,129,10,25 +8010,13,145,21,118,10,25 +8011,13,145,22,118,10,25 +8012,13,145,23,130,30,40 +8013,13,145,24,119,30,40 +8014,13,145,25,130,40,55 +8015,13,145,26,119,20,50 +8016,13,145,27,119,20,50 +8017,13,146,1,418,8,8 +8018,13,146,2,422,8,8 +8019,13,146,3,418,9,9 +8020,13,146,4,422,9,9 +8021,13,146,5,399,9,9 +8022,13,146,5,187,9,9 +8023,13,146,6,422,9,9 +8024,13,146,6,187,9,9 +8025,13,146,7,417,9,9 +8026,13,146,8,417,9,9 +8027,13,146,9,418,10,10 +8028,13,146,9,418,10,10 +8029,13,146,9,418,10,10 +8030,13,146,9,418,10,10 +8031,13,146,9,239,10,10 +8032,13,146,9,418,10,10 +8033,13,146,10,422,10,10 +8034,13,146,10,422,10,10 +8035,13,146,10,422,10,10 +8036,13,146,10,422,10,10 +8037,13,146,10,239,10,10 +8038,13,146,10,422,10,10 +8039,13,146,11,418,10,10 +8040,13,146,11,187,10,10 +8041,13,146,12,422,10,10 +8042,13,146,12,187,10,10 +8043,13,146,28,72,20,30 +8044,13,146,29,278,20,30 +8045,13,146,30,73,20,40 +8046,13,146,31,279,20,40 +8047,13,146,32,279,20,40 +8048,13,146,13,129,4,6 +8049,13,146,14,129,3,7 +8050,13,146,15,129,5,10 +8051,13,146,16,129,5,10 +8052,13,146,17,129,5,10 +8053,13,146,18,129,15,20 +8054,13,146,19,456,15,20 +8055,13,146,20,129,10,25 +8056,13,146,21,456,10,25 +8057,13,146,22,456,10,25 +8058,13,146,23,130,30,40 +8059,13,146,24,457,30,40 +8060,13,146,25,90,20,40 +8061,13,146,26,457,20,50 +8062,13,146,27,457,20,50 +8063,13,147,1,418,10,10 +8064,13,147,2,399,10,10 +8065,13,147,3,418,11,11 +8066,13,147,4,399,11,11 +8067,13,147,5,422,11,11 +8068,13,147,5,79,11,11 +8069,13,147,6,399,11,11 +8070,13,147,6,79,11,11 +8071,13,147,7,417,11,11 +8072,13,147,8,417,11,11 +8073,13,147,9,418,12,12 +8074,13,147,9,418,12,12 +8075,13,147,9,270,12,12 +8076,13,147,9,418,12,12 +8077,13,147,9,418,12,12 +8078,13,147,9,418,12,12 +8079,13,147,10,399,12,12 +8080,13,147,10,399,12,12 +8081,13,147,10,270,12,12 +8082,13,147,10,399,12,12 +8083,13,147,10,399,12,12 +8084,13,147,10,399,12,12 +8085,13,147,11,418,12,12 +8086,13,147,11,79,12,12 +8087,13,147,12,399,12,12 +8088,13,147,12,79,12,12 +8089,13,147,28,54,20,30 +8090,13,147,29,54,20,40 +8091,13,147,30,55,30,40 +8092,13,147,31,55,30,40 +8093,13,147,32,55,20,40 +8094,13,147,13,129,4,6 +8095,13,147,14,129,3,7 +8096,13,147,15,129,5,10 +8097,13,147,16,129,5,10 +8098,13,147,17,129,5,10 +8099,13,147,18,129,15,20 +8100,13,147,19,339,15,20 +8101,13,147,20,129,10,25 +8102,13,147,21,339,10,25 +8103,13,147,22,339,10,25 +8104,13,147,23,130,30,40 +8105,13,147,24,340,30,40 +8106,13,147,25,130,40,55 +8107,13,147,26,340,20,50 +8108,13,147,27,340,20,50 +8109,13,148,1,77,14,14 +8110,13,148,1,299,14,14 +8111,13,148,2,74,14,14 +8112,13,148,2,299,14,14 +8113,13,148,3,77,15,15 +8114,13,148,3,77,15,15 +8115,13,148,3,41,15,15 +8116,13,148,4,401,14,14 +8117,13,148,4,77,14,14 +8118,13,148,4,402,14,14 +8119,13,148,5,74,14,14 +8120,13,148,5,343,14,14 +8121,13,148,6,402,15,15 +8122,13,148,6,343,15,15 +8123,13,148,7,436,15,15 +8124,13,148,8,436,15,15 +8125,13,148,9,77,15,15 +8126,13,148,9,77,15,15 +8127,13,148,9,77,15,15 +8128,13,148,9,207,15,15 +8129,13,148,9,77,15,15 +8130,13,148,9,77,15,15 +8131,13,148,10,74,15,15 +8132,13,148,10,74,15,15 +8133,13,148,10,74,15,15 +8134,13,148,10,207,15,15 +8135,13,148,10,74,15,15 +8136,13,148,10,74,15,15 +8137,13,148,11,77,16,16 +8138,13,148,11,343,16,16 +8139,13,148,12,74,16,16 +8140,13,148,12,343,16,16 +8141,13,149,1,66,5,5 +8142,13,149,1,231,5,5 +8143,13,149,2,74,5,5 +8144,13,149,2,231,5,5 +8145,13,149,3,66,6,6 +8146,13,149,3,66,6,6 +8147,13,149,3,41,6,6 +8148,13,149,4,401,6,6 +8149,13,149,4,66,6,6 +8150,13,149,4,401,6,6 +8151,13,149,5,74,6,6 +8152,13,149,5,234,6,6 +8153,13,149,6,74,6,6 +8154,13,149,6,234,6,6 +8155,13,149,7,74,7,7 +8156,13,149,8,74,7,7 +8157,13,149,9,66,7,7 +8158,13,149,9,66,7,7 +8159,13,149,9,66,7,7 +8160,13,149,9,207,7,7 +8161,13,149,9,66,7,7 +8162,13,149,9,66,7,7 +8163,13,149,10,74,7,7 +8164,13,149,10,74,7,7 +8165,13,149,10,74,7,7 +8166,13,149,10,207,7,7 +8167,13,149,10,74,7,7 +8168,13,149,10,74,7,7 +8169,13,149,11,66,7,7 +8170,13,149,11,234,7,7 +8171,13,149,12,74,7,7 +8172,13,149,12,234,7,7 +8173,13,150,1,54,16,16 +8174,13,150,1,206,16,16 +8175,13,150,2,399,16,16 +8176,13,150,2,206,16,16 +8177,13,150,3,307,16,16 +8178,13,150,3,307,16,16 +8179,13,150,3,41,16,16 +8180,13,150,4,66,16,16 +8181,13,150,4,66,16,16 +8182,13,150,4,41,16,16 +8183,13,150,5,307,17,17 +8184,13,150,5,236,17,17 +8185,13,150,6,66,17,17 +8186,13,150,6,236,17,17 +8187,13,150,7,54,17,17 +8188,13,150,8,400,17,17 +8189,13,150,9,54,18,18 +8190,13,150,9,335,18,18 +8191,13,150,9,336,18,18 +8192,13,150,9,54,18,18 +8193,13,150,9,54,18,18 +8194,13,150,9,54,18,18 +8195,13,150,10,400,18,18 +8196,13,150,10,335,18,18 +8197,13,150,10,336,18,18 +8198,13,150,10,400,18,18 +8199,13,150,10,400,18,18 +8200,13,150,10,400,18,18 +8201,13,150,11,54,18,18 +8202,13,150,11,236,18,18 +8203,13,150,12,400,18,18 +8204,13,150,12,236,18,18 +8205,13,150,28,54,20,30 +8206,13,150,29,54,20,40 +8207,13,150,30,55,30,40 +8208,13,150,31,55,30,40 +8209,13,150,32,55,20,40 +8210,13,150,13,129,4,6 +8211,13,150,14,129,3,7 +8212,13,150,15,129,5,10 +8213,13,150,16,129,5,10 +8214,13,150,17,129,5,10 +8215,13,150,18,129,15,20 +8216,13,150,19,339,15,20 +8217,13,150,20,129,10,25 +8218,13,150,21,339,10,25 +8219,13,150,22,339,10,25 +8220,13,150,23,130,30,40 +8221,13,150,24,340,30,40 +8222,13,150,25,130,40,55 +8223,13,150,26,340,20,50 +8224,13,150,27,340,20,50 +8225,13,151,1,396,16,16 +8226,13,151,1,209,16,16 +8227,13,151,2,400,16,16 +8228,13,151,2,209,16,16 +8229,13,151,3,438,16,16 +8230,13,151,3,397,16,16 +8231,13,151,3,92,16,16 +8232,13,151,4,438,16,16 +8233,13,151,4,400,16,16 +8234,13,151,4,41,16,16 +8235,13,151,5,400,17,17 +8236,13,151,5,241,17,17 +8237,13,151,6,397,17,17 +8238,13,151,6,241,17,17 +8239,13,151,7,400,18,18 +8240,13,151,8,397,18,18 +8241,13,151,9,113,16,16 +8242,13,151,9,113,16,16 +8243,13,151,9,113,16,16 +8244,13,151,9,113,16,16 +8245,13,151,9,113,16,16 +8246,13,151,9,37,16,16 +8247,13,151,10,438,16,16 +8248,13,151,10,438,16,16 +8249,13,151,10,438,16,16 +8250,13,151,10,438,16,16 +8251,13,151,10,438,16,16 +8252,13,151,10,37,16,16 +8253,13,151,11,113,16,16 +8254,13,151,11,128,16,16 +8255,13,151,12,438,16,16 +8256,13,151,12,128,16,16 +8257,13,151,28,54,20,30 +8258,13,151,29,54,20,40 +8259,13,151,30,55,30,40 +8260,13,151,31,55,30,40 +8261,13,151,32,55,20,40 +8262,13,151,13,129,4,6 +8263,13,151,14,129,3,7 +8264,13,151,15,129,5,10 +8265,13,151,16,129,5,10 +8266,13,151,17,129,5,10 +8267,13,151,18,129,15,20 +8268,13,151,19,118,15,20 +8269,13,151,20,129,10,25 +8270,13,151,21,118,10,25 +8271,13,151,22,118,10,25 +8272,13,151,23,130,30,40 +8273,13,151,24,119,30,40 +8274,13,151,25,130,40,55 +8275,13,151,26,119,20,50 +8276,13,151,27,119,20,50 +8277,13,152,1,92,16,16 +8278,13,152,2,41,16,16 +8279,13,152,3,92,17,17 +8280,13,152,3,92,17,17 +8281,13,152,3,200,17,17 +8282,13,152,4,41,17,17 +8283,13,152,4,41,17,17 +8284,13,152,4,200,17,17 +8285,13,152,5,92,17,17 +8286,13,152,6,41,17,17 +8287,13,152,7,92,18,18 +8288,13,152,8,41,18,18 +8289,13,152,9,92,18,18 +8290,13,152,10,41,18,18 +8291,13,152,11,92,18,18 +8292,13,152,12,41,18,18 +8293,13,153,1,92,17,17 +8294,13,153,2,41,17,17 +8295,13,153,3,92,18,18 +8296,13,153,3,92,18,18 +8297,13,153,3,200,18,18 +8298,13,153,4,41,18,18 +8299,13,153,4,41,18,18 +8300,13,153,4,200,18,18 +8301,13,153,5,92,18,18 +8302,13,153,6,41,18,18 +8303,13,153,7,92,19,19 +8304,13,153,8,41,19,19 +8305,13,153,9,92,19,19 +8306,13,153,10,41,19,19 +8307,13,153,11,92,19,19 +8308,13,153,12,41,19,19 +8309,13,154,1,92,18,18 +8310,13,154,2,41,18,18 +8311,13,154,3,92,19,19 +8312,13,154,3,92,19,19 +8313,13,154,3,200,19,19 +8314,13,154,4,41,19,19 +8315,13,154,4,41,19,19 +8316,13,154,4,200,19,19 +8317,13,154,5,92,19,19 +8318,13,154,6,41,19,19 +8319,13,154,7,92,20,20 +8320,13,154,8,41,20,20 +8321,13,154,9,92,20,20 +8322,13,154,10,41,20,20 +8323,13,154,11,92,20,20 +8324,13,154,12,42,19,19 +8325,13,155,1,92,19,19 +8326,13,155,2,41,19,19 +8327,13,155,3,92,20,20 +8328,13,155,3,92,20,20 +8329,13,155,3,200,20,20 +8330,13,155,4,41,20,20 +8331,13,155,4,41,20,20 +8332,13,155,4,200,20,20 +8333,13,155,5,92,20,20 +8334,13,155,6,41,20,20 +8335,13,155,7,92,21,21 +8336,13,155,8,41,21,21 +8337,13,155,9,92,21,21 +8338,13,155,10,42,20,20 +8339,13,155,11,92,21,21 +8340,13,155,12,42,21,21 +8341,13,156,1,92,20,20 +8342,13,156,2,41,20,20 +8343,13,156,3,92,21,21 +8344,13,156,3,92,21,21 +8345,13,156,3,200,21,21 +8346,13,156,4,41,21,21 +8347,13,156,4,41,21,21 +8348,13,156,4,200,21,21 +8349,13,156,5,92,21,21 +8350,13,156,6,41,21,21 +8351,13,156,7,92,22,22 +8352,13,156,8,42,21,21 +8353,13,156,9,92,22,22 +8354,13,156,10,42,22,22 +8355,13,156,11,92,22,22 +8356,13,156,12,42,23,23 +8357,13,157,1,77,19,19 +8358,13,157,2,74,19,19 +8359,13,157,3,438,18,18 +8360,13,157,3,77,18,18 +8361,13,157,3,402,18,18 +8362,13,157,4,438,18,18 +8363,13,157,4,77,18,18 +8364,13,157,4,402,18,18 +8365,13,157,5,74,19,19 +8366,13,157,5,241,19,19 +8367,13,157,6,402,19,19 +8368,13,157,6,241,19,19 +8369,13,157,7,77,18,18 +8370,13,157,8,77,20,20 +8371,13,157,9,113,18,18 +8372,13,157,9,273,18,18 +8373,13,157,9,113,18,18 +8374,13,157,9,204,18,18 +8375,13,157,9,113,18,18 +8376,13,157,9,113,18,18 +8377,13,157,10,438,20,20 +8378,13,157,10,274,20,20 +8379,13,157,10,438,20,20 +8380,13,157,10,204,20,20 +8381,13,157,10,438,20,20 +8382,13,157,10,438,20,20 +8383,13,157,11,113,20,20 +8384,13,157,11,128,20,20 +8385,13,157,12,438,20,20 +8386,13,157,12,128,20,20 +8387,13,158,1,54,25,25 +8388,13,158,2,400,24,24 +8389,13,158,3,307,24,24 +8390,13,158,3,307,24,24 +8391,13,158,3,163,24,24 +8392,13,158,4,66,25,25 +8393,13,158,4,66,25,25 +8394,13,158,4,164,25,25 +8395,13,158,5,307,25,25 +8396,13,158,5,371,25,25 +8397,13,158,6,66,26,26 +8398,13,158,6,371,26,26 +8399,13,158,7,67,26,26 +8400,13,158,8,307,25,25 +8401,13,158,9,67,26,26 +8402,13,158,9,335,26,26 +8403,13,158,9,336,26,26 +8404,13,158,9,67,26,26 +8405,13,158,9,67,26,26 +8406,13,158,9,67,26,26 +8407,13,158,10,307,26,26 +8408,13,158,10,335,26,26 +8409,13,158,10,336,26,26 +8410,13,158,10,307,26,26 +8411,13,158,10,307,26,26 +8412,13,158,10,307,26,26 +8413,13,158,11,67,26,26 +8414,13,158,11,371,26,26 +8415,13,158,12,307,26,26 +8416,13,158,12,371,26,26 +8417,13,158,28,54,20,30 +8418,13,158,29,54,20,40 +8419,13,158,30,55,30,40 +8420,13,158,31,55,30,40 +8421,13,158,32,55,20,40 +8422,13,158,13,129,4,6 +8423,13,158,14,129,3,7 +8424,13,158,15,129,5,10 +8425,13,158,16,129,5,10 +8426,13,158,17,129,5,10 +8427,13,158,18,129,15,20 +8428,13,158,19,339,15,20 +8429,13,158,20,129,10,25 +8430,13,158,21,339,10,25 +8431,13,158,22,339,10,25 +8432,13,158,23,130,30,40 +8433,13,158,24,340,30,40 +8434,13,158,25,130,40,55 +8435,13,158,26,340,20,50 +8436,13,158,27,340,20,50 +8437,13,159,1,307,13,13 +8438,13,159,2,399,13,13 +8439,13,159,3,307,12,12 +8440,13,159,3,307,12,12 +8441,13,159,3,41,12,12 +8442,13,159,4,399,14,14 +8443,13,159,4,399,14,14 +8444,13,159,4,163,14,14 +8445,13,159,5,74,13,13 +8446,13,159,5,236,13,13 +8447,13,159,6,77,13,13 +8448,13,159,6,236,13,13 +8449,13,159,7,433,13,13 +8450,13,159,8,433,13,13 +8451,13,159,9,399,12,12 +8452,13,159,9,399,12,12 +8453,13,159,9,399,12,12 +8454,13,159,9,216,12,12 +8455,13,159,9,399,12,12 +8456,13,159,9,399,12,12 +8457,13,159,10,307,14,14 +8458,13,159,10,307,14,14 +8459,13,159,10,307,14,14 +8460,13,159,10,216,14,14 +8461,13,159,10,307,14,14 +8462,13,159,10,307,14,14 +8463,13,159,11,399,12,12 +8464,13,159,11,236,12,12 +8465,13,159,12,307,14,14 +8466,13,159,12,236,14,14 +8467,13,160,1,307,27,27 +8468,13,160,2,75,27,27 +8469,13,160,3,77,26,26 +8470,13,160,3,77,26,26 +8471,13,160,3,41,26,26 +8472,13,160,4,67,28,28 +8473,13,160,4,67,28,28 +8474,13,160,4,164,28,28 +8475,13,160,5,67,27,27 +8476,13,160,5,333,27,27 +8477,13,160,6,307,28,28 +8478,13,160,6,333,28,28 +8479,13,160,7,433,27,27 +8480,13,160,8,433,28,28 +8481,13,160,9,307,28,28 +8482,13,160,9,307,28,28 +8483,13,160,9,307,28,28 +8484,13,160,9,216,28,28 +8485,13,160,9,307,28,28 +8486,13,160,9,307,28,28 +8487,13,160,10,77,27,27 +8488,13,160,10,77,27,27 +8489,13,160,10,77,27,27 +8490,13,160,10,216,27,27 +8491,13,160,10,77,27,27 +8492,13,160,10,77,27,27 +8493,13,160,11,307,28,28 +8494,13,160,11,333,28,28 +8495,13,160,12,77,28,28 +8496,13,160,12,333,28,28 +8497,13,161,1,396,16,16 +8498,13,161,2,406,16,16 +8499,13,161,3,397,17,17 +8500,13,161,3,397,17,17 +8501,13,161,3,402,17,17 +8502,13,161,4,402,17,17 +8503,13,161,4,397,17,17 +8504,13,161,4,402,17,17 +8505,13,161,5,315,16,16 +8506,13,161,5,235,16,16 +8507,13,161,6,406,16,16 +8508,13,161,6,235,16,16 +8509,13,161,7,315,17,17 +8510,13,161,8,397,18,18 +8511,13,161,9,402,17,17 +8512,13,161,10,402,17,17 +8513,13,161,11,402,18,18 +8514,13,161,11,235,18,18 +8515,13,161,12,402,18,18 +8516,13,161,12,235,18,18 +8517,13,161,28,54,20,30 +8518,13,161,29,54,20,40 +8519,13,161,30,55,30,40 +8520,13,161,31,55,30,40 +8521,13,161,32,55,20,40 +8522,13,161,13,129,4,6 +8523,13,161,14,129,3,7 +8524,13,161,15,129,5,10 +8525,13,161,16,129,5,10 +8526,13,161,17,129,5,10 +8527,13,161,18,129,15,20 +8528,13,161,19,118,15,20 +8529,13,161,20,129,10,25 +8530,13,161,21,118,10,25 +8531,13,161,22,118,10,25 +8532,13,161,23,130,30,40 +8533,13,161,24,119,30,40 +8534,13,161,25,130,40,55 +8535,13,161,26,119,20,50 +8536,13,161,27,119,20,50 +8537,13,162,1,194,18,18 +8538,13,162,2,400,18,18 +8539,13,162,3,315,19,19 +8540,13,162,3,315,19,19 +8541,13,162,3,402,19,19 +8542,13,162,4,400,19,19 +8543,13,162,4,400,19,19 +8544,13,162,4,402,19,19 +8545,13,162,5,402,18,18 +8546,13,162,5,88,18,18 +8547,13,162,6,315,18,18 +8548,13,162,6,88,18,18 +8549,13,162,7,315,20,20 +8550,13,162,8,194,18,18 +8551,13,162,9,400,20,20 +8552,13,162,9,400,20,20 +8553,13,162,9,271,20,20 +8554,13,162,9,400,20,20 +8555,13,162,9,23,20,20 +8556,13,162,9,400,20,20 +8557,13,162,10,194,18,18 +8558,13,162,10,194,18,18 +8559,13,162,10,270,18,18 +8560,13,162,10,194,18,18 +8561,13,162,10,23,18,18 +8562,13,162,10,194,18,18 +8563,13,162,11,400,20,20 +8564,13,162,11,88,20,20 +8565,13,162,12,194,18,18 +8566,13,162,12,88,18,18 +8567,13,162,28,194,20,30 +8568,13,162,29,194,20,40 +8569,13,162,30,195,30,40 +8570,13,162,31,195,30,40 +8571,13,162,32,195,20,40 +8572,13,162,13,129,4,6 +8573,13,162,14,129,3,7 +8574,13,162,15,129,5,10 +8575,13,162,16,129,5,10 +8576,13,162,17,129,5,10 +8577,13,162,18,129,15,20 +8578,13,162,19,339,15,20 +8579,13,162,20,129,10,25 +8580,13,162,21,339,10,25 +8581,13,162,22,339,10,25 +8582,13,162,23,130,30,40 +8583,13,162,24,340,30,40 +8584,13,162,25,130,40,55 +8585,13,162,26,340,20,50 +8586,13,162,27,340,20,50 +8587,13,163,1,418,20,20 +8588,13,163,1,359,20,20 +8589,13,163,2,422,20,20 +8590,13,163,2,359,20,20 +8591,13,163,3,418,21,21 +8592,13,163,4,278,20,20 +8593,13,163,4,278,20,20 +8594,13,163,4,422,20,20 +8595,13,163,5,422,21,21 +8596,13,163,5,277,21,21 +8597,13,163,6,278,20,20 +8598,13,163,6,277,20,20 +8599,13,163,7,419,22,22 +8600,13,163,8,422,22,22 +8601,13,163,9,419,22,22 +8602,13,163,10,422,22,22 +8603,13,163,11,419,22,22 +8604,13,163,11,277,22,22 +8605,13,163,12,422,22,22 +8606,13,163,12,277,22,22 +8607,13,163,28,72,20,30 +8608,13,163,29,278,20,30 +8609,13,163,30,73,20,40 +8610,13,163,31,279,20,40 +8611,13,163,32,279,20,40 +8612,13,163,13,129,4,6 +8613,13,163,14,129,3,7 +8614,13,163,15,129,5,10 +8615,13,163,16,129,5,10 +8616,13,163,17,129,5,10 +8617,13,163,18,129,15,20 +8618,13,163,19,223,15,20 +8619,13,163,20,129,10,25 +8620,13,163,21,223,10,25 +8621,13,163,22,223,10,25 +8622,13,163,23,130,30,40 +8623,13,163,24,224,30,40 +8624,13,163,25,319,40,55 +8625,13,163,26,224,20,50 +8626,13,163,27,224,20,50 +8627,13,164,1,77,23,23 +8628,13,164,1,325,23,23 +8629,13,164,2,74,22,22 +8630,13,164,2,325,22,22 +8631,13,164,3,77,23,23 +8632,13,164,3,77,23,23 +8633,13,164,3,402,23,23 +8634,13,164,4,75,23,23 +8635,13,164,4,75,23,23 +8636,13,164,4,402,23,23 +8637,13,164,5,185,23,23 +8638,13,164,5,229,23,23 +8639,13,164,6,203,24,24 +8640,13,164,6,229,24,24 +8641,13,164,7,402,24,24 +8642,13,164,8,77,24,24 +8643,13,164,9,185,24,24 +8644,13,164,9,185,24,24 +8645,13,164,9,185,24,24 +8646,13,164,9,207,24,24 +8647,13,164,9,185,24,24 +8648,13,164,9,37,24,24 +8649,13,164,10,75,24,24 +8650,13,164,10,75,24,24 +8651,13,164,10,75,24,24 +8652,13,164,10,207,24,24 +8653,13,164,10,75,24,24 +8654,13,164,10,37,24,24 +8655,13,164,11,185,24,24 +8656,13,164,11,229,24,24 +8657,13,164,12,75,24,24 +8658,13,164,12,229,24,24 +8659,13,164,28,54,20,30 +8660,13,164,29,54,20,40 +8661,13,164,30,55,30,40 +8662,13,164,31,55,30,40 +8663,13,164,32,55,20,40 +8664,13,164,13,129,4,6 +8665,13,164,14,129,3,7 +8666,13,164,15,129,5,10 +8667,13,164,16,129,5,10 +8668,13,164,17,129,5,10 +8669,13,164,18,129,15,20 +8670,13,164,19,118,15,20 +8671,13,164,20,129,10,25 +8672,13,164,21,118,10,25 +8673,13,164,22,118,10,25 +8674,13,164,23,130,30,40 +8675,13,164,24,119,30,40 +8676,13,164,25,130,40,55 +8677,13,164,26,119,20,50 +8678,13,164,27,119,20,50 +8679,13,165,1,77,21,21 +8680,13,165,1,96,21,21 +8681,13,165,2,74,20,20 +8682,13,165,2,96,20,20 +8683,13,165,3,77,22,22 +8684,13,165,3,77,22,22 +8685,13,165,3,402,22,22 +8686,13,165,4,74,21,21 +8687,13,165,4,77,21,21 +8688,13,165,4,402,21,21 +8689,13,165,5,63,20,20 +8690,13,165,5,229,20,20 +8691,13,165,6,402,20,20 +8692,13,165,6,229,20,20 +8693,13,165,7,64,20,20 +8694,13,165,8,64,21,21 +8695,13,165,9,74,22,22 +8696,13,165,9,74,22,22 +8697,13,165,9,74,22,22 +8698,13,165,9,207,22,22 +8699,13,165,9,74,22,22 +8700,13,165,9,74,22,22 +8701,13,165,10,64,22,22 +8702,13,165,10,64,22,22 +8703,13,165,10,64,22,22 +8704,13,165,10,207,22,22 +8705,13,165,10,64,22,22 +8706,13,165,10,64,22,22 +8707,13,165,11,74,22,22 +8708,13,165,11,229,22,22 +8709,13,165,12,64,22,22 +8710,13,165,12,229,22,22 +8711,13,166,1,459,32,32 +8712,13,166,1,225,32,32 +8713,13,166,2,215,32,32 +8714,13,166,2,225,32,32 +8715,13,166,3,307,33,33 +8716,13,166,3,307,33,33 +8717,13,166,3,41,33,33 +8718,13,166,4,67,33,33 +8719,13,166,4,67,33,33 +8720,13,166,4,164,33,33 +8721,13,166,5,307,34,34 +8722,13,166,5,361,34,34 +8723,13,166,6,67,34,34 +8724,13,166,6,361,34,34 +8725,13,166,7,459,33,33 +8726,13,166,8,215,33,33 +8727,13,166,9,75,33,33 +8728,13,166,9,75,33,33 +8729,13,166,9,75,33,33 +8730,13,166,9,217,33,33 +8731,13,166,9,75,33,33 +8732,13,166,9,75,33,33 +8733,13,166,10,75,34,34 +8734,13,166,10,75,34,34 +8735,13,166,10,75,34,34 +8736,13,166,10,217,34,34 +8737,13,166,10,75,34,34 +8738,13,166,10,75,34,34 +8739,13,166,11,75,33,33 +8740,13,166,11,361,33,33 +8741,13,166,12,75,34,34 +8742,13,166,12,361,34,34 +8743,13,167,1,459,34,34 +8744,13,167,1,220,34,34 +8745,13,167,2,215,34,34 +8746,13,167,2,220,34,34 +8747,13,167,3,307,35,35 +8748,13,167,3,307,35,35 +8749,13,167,3,41,35,35 +8750,13,167,4,67,35,35 +8751,13,167,4,67,35,35 +8752,13,167,4,164,35,35 +8753,13,167,5,308,35,35 +8754,13,167,5,361,35,35 +8755,13,167,6,67,36,36 +8756,13,167,6,361,36,36 +8757,13,167,7,459,35,35 +8758,13,167,8,215,35,35 +8759,13,167,9,308,36,36 +8760,13,167,9,308,36,36 +8761,13,167,9,308,36,36 +8762,13,167,9,217,36,36 +8763,13,167,9,308,36,36 +8764,13,167,9,308,36,36 +8765,13,167,10,308,36,36 +8766,13,167,10,308,36,36 +8767,13,167,10,308,36,36 +8768,13,167,10,217,36,36 +8769,13,167,10,308,36,36 +8770,13,167,10,308,36,36 +8771,13,167,11,308,36,36 +8772,13,167,11,361,36,36 +8773,13,167,12,308,36,36 +8774,13,167,12,361,36,36 +8775,13,168,1,419,28,28 +8776,13,168,1,100,28,28 +8777,13,168,2,422,28,28 +8778,13,168,2,100,28,28 +8779,13,168,3,419,29,29 +8780,13,168,4,423,28,28 +8781,13,168,5,431,29,29 +8782,13,168,5,132,29,29 +8783,13,168,6,278,29,29 +8784,13,168,6,132,29,29 +8785,13,168,7,419,30,30 +8786,13,168,8,423,29,29 +8787,13,168,9,431,30,30 +8788,13,168,10,423,30,30 +8789,13,168,11,431,30,30 +8790,13,168,11,132,30,30 +8791,13,168,12,423,30,30 +8792,13,168,12,132,30,30 +8793,13,168,28,72,20,30 +8794,13,168,29,278,20,30 +8795,13,168,30,73,20,40 +8796,13,168,31,279,20,40 +8797,13,168,32,279,20,40 +8798,13,168,13,129,4,6 +8799,13,168,14,129,3,7 +8800,13,168,15,129,5,10 +8801,13,168,16,129,5,10 +8802,13,168,17,129,5,10 +8803,13,168,18,129,15,20 +8804,13,168,19,456,15,20 +8805,13,168,20,129,10,25 +8806,13,168,21,456,10,25 +8807,13,168,22,456,10,25 +8808,13,168,23,130,30,40 +8809,13,168,24,457,30,40 +8810,13,168,25,130,40,55 +8811,13,168,26,457,20,50 +8812,13,168,27,457,20,50 +8813,13,169,28,72,20,30 +8814,13,169,29,278,20,30 +8815,13,169,30,73,20,40 +8816,13,169,31,279,20,40 +8817,13,169,32,279,20,40 +8818,13,169,13,129,4,6 +8819,13,169,14,129,3,7 +8820,13,169,15,129,5,10 +8821,13,169,16,129,5,10 +8822,13,169,17,129,5,10 +8823,13,169,18,129,15,20 +8824,13,169,19,456,15,20 +8825,13,169,20,129,10,25 +8826,13,169,21,456,10,25 +8827,13,169,22,456,10,25 +8828,13,169,23,130,30,40 +8829,13,169,24,457,30,40 +8830,13,169,25,366,20,30 +8831,13,169,26,457,20,50 +8832,13,169,27,457,20,50 +8833,13,170,1,419,28,28 +8834,13,170,1,83,28,28 +8835,13,170,2,423,28,28 +8836,13,170,2,83,28,28 +8837,13,170,3,315,29,29 +8838,13,170,4,422,28,28 +8839,13,170,5,185,29,29 +8840,13,170,5,33,29,29 +8841,13,170,6,278,29,29 +8842,13,170,6,33,29,29 +8843,13,170,7,419,30,30 +8844,13,170,8,423,29,29 +8845,13,170,9,185,30,30 +8846,13,170,10,423,30,30 +8847,13,170,11,185,30,30 +8848,13,170,11,30,30,30 +8849,13,170,12,423,30,30 +8850,13,170,12,30,30,30 +8851,13,170,28,72,20,30 +8852,13,170,29,278,20,30 +8853,13,170,30,73,20,40 +8854,13,170,31,279,20,40 +8855,13,170,32,279,20,40 +8856,13,170,13,129,4,6 +8857,13,170,14,129,3,7 +8858,13,170,15,129,5,10 +8859,13,170,16,129,5,10 +8860,13,170,17,129,5,10 +8861,13,170,18,129,15,20 +8862,13,170,19,456,15,20 +8863,13,170,20,129,10,25 +8864,13,170,21,456,10,25 +8865,13,170,22,456,10,25 +8866,13,170,23,130,30,40 +8867,13,170,24,457,30,40 +8868,13,170,25,366,20,30 +8869,13,170,26,457,20,50 +8870,13,170,27,457,20,50 +8871,13,171,1,419,40,40 +8872,13,171,1,300,40,40 +8873,13,171,2,431,40,40 +8874,13,171,2,300,40,40 +8875,13,171,3,441,41,41 +8876,13,171,3,441,41,41 +8877,13,171,3,419,41,41 +8878,13,171,4,441,40,40 +8879,13,171,4,441,40,40 +8880,13,171,4,423,40,40 +8881,13,171,5,432,41,41 +8882,13,171,5,180,41,41 +8883,13,171,6,278,41,41 +8884,13,171,6,180,41,41 +8885,13,171,7,419,42,42 +8886,13,171,8,423,41,41 +8887,13,171,9,432,42,42 +8888,13,171,10,423,42,42 +8889,13,171,11,432,42,42 +8890,13,171,11,180,42,42 +8891,13,171,12,423,42,42 +8892,13,171,12,180,42,42 +8893,13,171,28,72,20,30 +8894,13,171,29,278,20,30 +8895,13,171,30,73,20,40 +8896,13,171,31,279,20,40 +8897,13,171,32,279,20,40 +8898,13,171,13,129,4,6 +8899,13,171,14,129,3,7 +8900,13,171,15,129,5,10 +8901,13,171,16,129,5,10 +8902,13,171,17,129,5,10 +8903,13,171,18,129,15,20 +8904,13,171,19,223,15,20 +8905,13,171,20,129,10,25 +8906,13,171,21,223,10,25 +8907,13,171,22,223,10,25 +8908,13,171,23,130,30,40 +8909,13,171,24,224,30,40 +8910,13,171,25,319,40,55 +8911,13,171,26,224,20,50 +8912,13,171,27,224,20,50 +8913,13,172,1,419,53,53 +8914,13,172,1,177,53,53 +8915,13,172,2,423,53,53 +8916,13,172,2,177,53,53 +8917,13,172,3,441,54,54 +8918,13,172,3,441,54,54 +8919,13,172,3,419,54,54 +8920,13,172,4,441,52,52 +8921,13,172,4,441,52,52 +8922,13,172,4,423,52,52 +8923,13,172,5,315,52,52 +8924,13,172,5,356,52,52 +8925,13,172,6,315,54,54 +8926,13,172,6,356,54,54 +8927,13,172,7,44,53,53 +8928,13,172,8,70,53,53 +8929,13,172,9,418,23,23 +8930,13,172,9,418,23,23 +8931,13,172,9,418,23,23 +8932,13,172,9,213,23,23 +8933,13,172,9,418,23,23 +8934,13,172,9,418,23,23 +8935,13,172,10,267,23,23 +8936,13,172,10,267,23,23 +8937,13,172,10,267,23,23 +8938,13,172,10,213,23,23 +8939,13,172,10,267,23,23 +8940,13,172,10,267,23,23 +8941,13,172,11,422,23,23 +8942,13,172,11,355,23,23 +8943,13,172,12,267,23,23 +8944,13,172,12,355,23,23 +8945,13,172,28,279,40,50 +8946,13,172,29,73,40,50 +8947,13,172,30,279,45,55 +8948,13,172,31,73,45,55 +8949,13,172,32,73,45,55 +8950,13,172,13,129,4,6 +8951,13,172,14,129,3,7 +8952,13,172,15,129,5,10 +8953,13,172,16,129,5,10 +8954,13,172,17,129,5,10 +8955,13,172,18,129,15,20 +8956,13,172,19,223,15,20 +8957,13,172,20,129,10,25 +8958,13,172,21,223,10,25 +8959,13,172,22,223,10,25 +8960,13,172,23,130,30,40 +8961,13,172,24,224,30,40 +8962,13,172,25,370,20,30 +8963,13,172,26,224,20,50 +8964,13,172,27,224,20,50 +8965,13,173,1,22,51,51 +8966,13,173,1,296,51,51 +8967,13,173,2,20,50,50 +8968,13,173,2,296,50,50 +8969,13,173,3,22,50,50 +8970,13,173,3,22,50,50 +8971,13,173,3,354,50,50 +8972,13,173,4,22,52,52 +8973,13,173,4,22,52,52 +8974,13,173,4,354,52,52 +8975,13,173,5,20,52,52 +8976,13,173,5,57,52,52 +8977,13,173,6,315,51,51 +8978,13,173,6,57,51,51 +8979,13,173,7,67,51,51 +8980,13,173,8,315,51,51 +8981,13,173,9,21,20,20 +8982,13,173,10,19,20,20 +8983,13,173,11,21,22,22 +8984,13,173,11,56,22,22 +8985,13,173,12,19,22,22 +8986,13,173,12,56,22,22 +8987,13,173,28,55,40,50 +8988,13,173,29,61,40,50 +8989,13,173,30,55,45,55 +8990,13,173,31,55,45,55 +8991,13,173,32,55,45,55 +8992,13,173,13,129,4,6 +8993,13,173,14,129,3,7 +8994,13,173,15,129,5,10 +8995,13,173,16,129,5,10 +8996,13,173,17,129,5,10 +8997,13,173,18,129,15,20 +8998,13,173,19,60,15,20 +8999,13,173,20,129,10,25 +9000,13,173,21,60,10,25 +9001,13,173,22,60,10,25 +9002,13,173,23,130,30,40 +9003,13,173,24,61,30,40 +9004,13,173,25,130,40,55 +9005,13,173,26,61,35,55 +9006,13,173,27,61,35,55 +9007,13,174,1,323,55,55 +9008,13,174,1,327,55,55 +9009,13,174,2,112,55,55 +9010,13,174,2,327,55,55 +9011,13,174,3,22,54,54 +9012,13,174,3,22,54,54 +9013,13,174,3,354,54,54 +9014,13,174,4,75,54,54 +9015,13,174,4,75,54,54 +9016,13,174,4,42,54,54 +9017,13,174,5,22,55,55 +9018,13,174,5,324,55,55 +9019,13,174,6,110,55,55 +9020,13,174,6,324,55,55 +9021,13,174,7,227,56,56 +9022,13,174,8,75,56,56 +9023,13,174,9,322,22,22 +9024,13,174,9,322,22,22 +9025,13,174,9,322,22,22 +9026,13,174,9,207,22,22 +9027,13,174,9,322,22,22 +9028,13,174,9,240,22,22 +9029,13,174,10,111,22,22 +9030,13,174,10,111,22,22 +9031,13,174,10,111,22,22 +9032,13,174,10,207,22,22 +9033,13,174,10,111,22,22 +9034,13,174,10,240,22,22 +9035,13,174,11,322,24,24 +9036,13,174,11,324,24,24 +9037,13,174,12,111,24,24 +9038,13,174,12,324,24,24 +9039,13,174,28,61,40,50 +9040,13,174,29,60,20,30 +9041,13,174,30,61,45,55 +9042,13,174,31,61,45,55 +9043,13,174,32,61,45,55 +9044,13,174,13,129,4,6 +9045,13,174,14,129,3,7 +9046,13,174,15,129,5,10 +9047,13,174,16,129,5,10 +9048,13,174,17,129,5,10 +9049,13,174,18,129,15,20 +9050,13,174,19,339,15,20 +9051,13,174,20,129,10,25 +9052,13,174,21,339,10,25 +9053,13,174,22,339,10,25 +9054,13,174,23,130,30,40 +9055,13,174,24,340,30,40 +9056,13,174,25,130,40,55 +9057,13,174,26,340,20,50 +9058,13,174,27,340,20,50 +9059,13,175,1,51,53,53 +9060,13,175,1,374,53,53 +9061,13,175,2,332,53,53 +9062,13,175,2,374,53,53 +9063,13,175,3,450,52,52 +9064,13,175,3,450,52,52 +9065,13,175,3,332,52,52 +9066,13,175,4,112,52,52 +9067,13,175,4,112,52,52 +9068,13,175,4,332,52,52 +9069,13,175,5,112,53,53 +9070,13,175,5,329,53,53 +9071,13,175,6,450,54,54 +9072,13,175,6,329,54,54 +9073,13,175,7,51,52,52 +9074,13,175,8,51,54,54 +9075,13,175,9,50,23,23 +9076,13,175,9,50,23,23 +9077,13,175,9,50,23,23 +9078,13,175,9,50,23,23 +9079,13,175,9,50,23,23 +9080,13,175,9,28,23,23 +9081,13,175,10,331,23,23 +9082,13,175,10,331,23,23 +9083,13,175,10,331,23,23 +9084,13,175,10,331,23,23 +9085,13,175,10,331,23,23 +9086,13,175,10,28,23,23 +9087,13,175,11,50,25,25 +9088,13,175,11,328,25,25 +9089,13,175,12,331,25,25 +9090,13,175,12,328,25,25 +9091,13,175,28,61,40,50 +9092,13,175,29,60,20,30 +9093,13,175,30,61,45,55 +9094,13,175,31,61,45,55 +9095,13,175,32,61,45,55 +9096,13,175,13,129,4,6 +9097,13,175,14,129,3,7 +9098,13,175,15,129,5,10 +9099,13,175,16,129,5,10 +9100,13,175,17,129,5,10 +9101,13,175,18,129,15,20 +9102,13,175,19,339,15,20 +9103,13,175,20,129,10,25 +9104,13,175,21,339,10,25 +9105,13,175,22,339,10,25 +9106,13,175,23,130,30,40 +9107,13,175,24,340,30,40 +9108,13,175,25,130,40,55 +9109,13,175,26,340,20,50 +9110,13,175,27,340,20,50 +9111,13,176,1,70,51,51 +9112,13,176,1,16,51,51 +9113,13,176,2,44,51,51 +9114,13,176,2,16,51,51 +9115,13,176,3,166,52,52 +9116,13,176,3,70,52,52 +9117,13,176,3,168,52,52 +9118,13,176,4,166,52,52 +9119,13,176,4,44,52,52 +9120,13,176,4,168,52,52 +9121,13,176,5,313,50,50 +9122,13,176,5,49,50,50 +9123,13,176,6,432,50,50 +9124,13,176,6,49,50,50 +9125,13,176,7,127,52,52 +9126,13,176,8,314,50,50 +9127,13,176,9,69,20,20 +9128,13,176,9,274,20,20 +9129,13,176,9,271,20,20 +9130,13,176,9,204,20,20 +9131,13,176,9,69,20,20 +9132,13,176,9,69,20,20 +9133,13,176,10,43,20,20 +9134,13,176,10,274,20,20 +9135,13,176,10,271,20,20 +9136,13,176,10,204,20,20 +9137,13,176,10,43,20,20 +9138,13,176,10,43,20,20 +9139,13,176,11,69,22,22 +9140,13,176,11,48,22,22 +9141,13,176,12,43,22,22 +9142,13,176,12,48,22,22 +9143,13,176,28,278,40,50 +9144,13,176,29,279,45,55 +9145,13,176,30,278,45,55 +9146,13,176,31,278,45,55 +9147,13,176,32,278,45,55 +9148,13,176,13,129,4,6 +9149,13,176,14,129,3,7 +9150,13,176,15,129,5,10 +9151,13,176,16,129,5,10 +9152,13,176,17,129,5,10 +9153,13,176,18,129,15,20 +9154,13,176,19,129,15,20 +9155,13,176,20,129,10,25 +9156,13,176,21,129,10,25 +9157,13,176,22,129,10,25 +9158,13,176,23,130,30,40 +9159,13,176,24,130,30,40 +9160,13,176,25,130,40,55 +9161,13,176,26,130,20,50 +9162,13,176,27,130,20,50 +9163,13,177,28,54,20,30 +9164,13,177,29,54,20,40 +9165,13,177,30,55,30,40 +9166,13,177,31,55,30,40 +9167,13,177,32,55,20,40 +9168,13,177,13,129,4,6 +9169,13,177,14,129,3,7 +9170,13,177,15,129,5,10 +9171,13,177,16,129,5,10 +9172,13,177,17,129,5,10 +9173,13,177,18,129,15,20 +9174,13,177,19,118,15,20 +9175,13,177,20,129,10,25 +9176,13,177,21,118,10,25 +9177,13,177,22,118,10,25 +9178,13,177,23,130,30,40 +9179,13,177,24,119,30,40 +9180,13,177,25,130,40,55 +9181,13,177,26,119,20,50 +9182,13,177,27,119,20,50 +9183,13,178,28,54,20,30 +9184,13,178,29,54,20,40 +9185,13,178,30,55,30,40 +9186,13,178,31,55,30,40 +9187,13,178,32,55,20,40 +9188,13,178,13,129,4,6 +9189,13,178,14,129,3,7 +9190,13,178,15,129,5,10 +9191,13,178,16,129,5,10 +9192,13,178,17,129,5,10 +9193,13,178,18,129,15,20 +9194,13,178,19,339,15,20 +9195,13,178,20,129,10,25 +9196,13,178,21,339,10,25 +9197,13,178,22,339,10,25 +9198,13,178,23,130,30,40 +9199,13,178,24,341,30,40 +9200,13,178,25,340,40,55 +9201,13,178,26,342,35,55 +9202,13,178,27,342,35,55 +9203,13,179,28,55,40,50 +9204,13,179,29,55,40,50 +9205,13,179,30,55,45,55 +9206,13,179,31,55,45,55 +9207,13,179,32,55,45,55 +9208,13,179,13,129,4,6 +9209,13,179,14,129,3,7 +9210,13,179,15,129,5,10 +9211,13,179,16,129,5,10 +9212,13,179,17,129,5,10 +9213,13,179,18,129,15,20 +9214,13,179,19,118,15,20 +9215,13,179,20,129,10,25 +9216,13,179,21,118,10,25 +9217,13,179,22,118,10,25 +9218,13,179,23,130,30,40 +9219,13,179,24,119,30,40 +9220,13,179,25,130,40,55 +9221,13,179,26,119,20,50 +9222,13,179,27,119,20,50 +9223,13,180,28,72,20,30 +9224,13,180,29,278,20,30 +9225,13,180,30,73,20,40 +9226,13,180,31,279,20,40 +9227,13,180,32,279,20,40 +9228,13,180,13,129,4,6 +9229,13,180,14,129,3,7 +9230,13,180,15,129,5,10 +9231,13,180,16,129,5,10 +9232,13,180,17,129,5,10 +9233,13,180,18,129,15,20 +9234,13,180,19,456,15,20 +9235,13,180,20,129,10,25 +9236,13,180,21,456,10,25 +9237,13,180,22,456,10,25 +9238,13,180,23,130,30,40 +9239,13,180,24,170,15,25 +9240,13,180,25,457,30,40 +9241,13,180,26,171,20,45 +9242,13,180,27,171,20,45 +9243,13,181,28,73,35,45 +9244,13,181,29,279,35,45 +9245,13,181,30,458,30,40 +9246,13,181,31,458,30,40 +9247,13,181,32,458,35,45 +9248,13,181,13,129,4,6 +9249,13,181,14,129,3,7 +9250,13,181,15,129,5,10 +9251,13,181,16,129,5,10 +9252,13,181,17,129,5,10 +9253,13,181,18,129,15,20 +9254,13,181,19,223,15,20 +9255,13,181,20,129,10,25 +9256,13,181,21,223,10,25 +9257,13,181,22,223,10,25 +9258,13,181,23,130,30,40 +9259,13,181,24,320,30,40 +9260,13,181,25,224,40,55 +9261,13,181,26,321,35,55 +9262,13,181,27,321,35,55 +9263,13,182,1,22,52,52 +9264,13,182,1,98,52,52 +9265,13,182,2,20,52,52 +9266,13,182,2,98,52,52 +9267,13,182,3,22,53,53 +9268,13,182,3,22,53,53 +9269,13,182,3,354,53,53 +9270,13,182,4,22,51,51 +9271,13,182,4,22,51,51 +9272,13,182,4,354,51,51 +9273,13,182,5,20,51,51 +9274,13,182,5,57,51,51 +9275,13,182,6,67,53,53 +9276,13,182,6,57,53,53 +9277,13,182,7,55,53,53 +9278,13,182,8,55,51,51 +9279,13,182,9,21,20,20 +9280,13,182,10,19,20,20 +9281,13,182,11,21,22,22 +9282,13,182,11,56,22,22 +9283,13,182,12,19,22,22 +9284,13,182,12,56,22,22 +9285,13,182,28,279,40,55 +9286,13,182,29,363,35,45 +9287,13,182,30,73,40,55 +9288,13,182,31,364,40,55 +9289,13,182,32,364,40,55 +9290,13,182,13,129,4,6 +9291,13,182,14,129,3,7 +9292,13,182,15,129,5,10 +9293,13,182,16,129,5,10 +9294,13,182,17,129,5,10 +9295,13,182,18,129,15,20 +9296,13,182,19,116,15,20 +9297,13,182,20,129,10,25 +9298,13,182,21,116,10,25 +9299,13,182,22,116,10,25 +9300,13,182,23,130,30,40 +9301,13,182,24,117,30,40 +9302,13,182,25,369,40,50 +9303,13,182,26,117,35,55 +9304,13,182,27,117,35,55 +9305,13,183,1,70,50,50 +9306,13,183,1,222,50,50 +9307,13,183,2,44,50,50 +9308,13,183,2,222,50,50 +9309,13,183,3,55,52,52 +9310,13,183,4,269,51,51 +9311,13,183,5,69,18,18 +9312,13,183,5,175,18,18 +9313,13,183,6,43,18,18 +9314,13,183,6,175,18,18 +9315,13,183,7,419,51,51 +9316,13,183,8,423,51,51 +9317,13,183,9,419,52,52 +9318,13,183,10,419,50,50 +9319,13,183,11,69,23,23 +9320,13,183,11,175,23,23 +9321,13,183,12,43,23,23 +9322,13,183,12,175,23,23 +9323,13,183,28,279,40,55 +9324,13,183,29,363,35,45 +9325,13,183,30,73,40,55 +9326,13,183,31,364,40,55 +9327,13,183,32,364,40,55 +9328,13,183,13,129,4,6 +9329,13,183,14,129,3,7 +9330,13,183,15,129,5,10 +9331,13,183,16,129,5,10 +9332,13,183,17,129,5,10 +9333,13,183,18,129,15,20 +9334,13,183,19,223,15,20 +9335,13,183,20,129,10,25 +9336,13,183,21,223,10,25 +9337,13,183,22,223,10,25 +9338,13,183,23,130,30,40 +9339,13,183,24,320,30,40 +9340,13,183,25,224,40,55 +9341,13,183,26,321,35,55 +9342,13,183,27,321,35,55 +9343,14,1,150,72,20,30 +9344,14,1,151,422,20,30 +9345,14,1,152,73,20,40 +9346,14,1,153,73,20,40 +9347,14,1,154,423,20,40 +9348,14,1,135,129,4,6 +9349,14,1,136,129,3,7 +9350,14,1,137,129,5,10 +9351,14,1,138,129,5,10 +9352,14,1,139,129,5,15 +9353,14,1,140,129,15,20 +9354,14,1,141,456,15,20 +9355,14,1,142,129,10,25 +9356,14,1,143,456,10,25 +9357,14,1,144,456,10,25 +9358,14,1,145,130,30,55 +9359,14,1,146,457,30,40 +9360,14,1,147,120,20,50 +9361,14,1,148,457,40,55 +9362,14,1,149,457,40,55 +9363,14,2,150,54,20,30 +9364,14,2,151,54,20,30 +9365,14,2,152,55,20,40 +9366,14,2,153,55,20,40 +9367,14,2,154,55,20,40 +9368,14,2,135,129,4,6 +9369,14,2,136,129,3,7 +9370,14,2,137,129,5,10 +9371,14,2,138,129,5,10 +9372,14,2,139,129,5,15 +9373,14,2,140,129,15,20 +9374,14,2,141,339,15,20 +9375,14,2,142,129,10,25 +9376,14,2,143,339,10,25 +9377,14,2,144,339,10,25 +9378,14,2,145,130,30,40 +9379,14,2,146,340,30,40 +9380,14,2,147,130,40,55 +9381,14,2,148,340,40,55 +9382,14,2,149,340,40,55 +9383,14,3,150,72,20,30 +9384,14,3,151,422,20,30 +9385,14,3,152,73,20,40 +9386,14,3,153,278,20,30 +9387,14,3,154,423,20,40 +9388,14,3,135,129,4,6 +9389,14,3,136,129,3,7 +9390,14,3,137,129,5,10 +9391,14,3,138,129,5,10 +9392,14,3,139,129,5,15 +9393,14,3,140,129,15,20 +9394,14,3,141,223,15,20 +9395,14,3,142,129,10,25 +9396,14,3,143,223,10,25 +9397,14,3,144,223,10,25 +9398,14,3,145,130,30,40 +9399,14,3,146,224,30,40 +9400,14,3,147,130,40,55 +9401,14,3,148,224,40,55 +9402,14,3,149,224,40,55 +9403,14,4,150,72,30,40 +9404,14,4,151,278,30,40 +9405,14,4,152,73,30,50 +9406,14,4,153,73,30,50 +9407,14,4,154,279,30,50 +9408,14,4,135,129,4,6 +9409,14,4,136,129,3,7 +9410,14,4,137,129,5,10 +9411,14,4,138,129,5,10 +9412,14,4,139,129,5,15 +9413,14,4,140,129,15,20 +9414,14,4,141,223,15,20 +9415,14,4,142,129,10,25 +9416,14,4,143,223,10,25 +9417,14,4,144,223,10,25 +9418,14,4,145,130,30,55 +9419,14,4,146,224,30,40 +9420,14,4,147,120,20,50 +9421,14,4,148,224,40,55 +9422,14,4,149,224,40,55 +9423,14,5,150,278,30,40 +9424,14,5,151,279,30,50 +9425,14,5,152,279,30,50 +9426,14,5,153,73,30,50 +9427,14,5,154,73,30,50 +9428,14,5,135,129,4,6 +9429,14,5,136,129,3,7 +9430,14,5,137,129,5,10 +9431,14,5,138,129,5,10 +9432,14,5,139,129,5,15 +9433,14,5,140,129,15,20 +9434,14,5,141,223,15,20 +9435,14,5,142,129,10,25 +9436,14,5,143,223,10,25 +9437,14,5,144,223,10,25 +9438,14,5,145,130,30,55 +9439,14,5,146,224,30,40 +9440,14,5,147,370,20,30 +9441,14,5,148,224,40,55 +9442,14,5,149,224,40,55 +9443,14,6,123,74,5,5 +9444,14,6,124,74,6,6 +9445,14,6,125,41,5,5 +9446,14,6,126,41,6,6 +9447,14,6,127,74,4,4 +9448,14,6,128,74,7,7 +9449,14,6,129,95,6,6 +9450,14,6,130,95,8,8 +9451,14,6,131,74,8,8 +9452,14,6,132,41,7,7 +9453,14,6,132,74,7,7 +9454,14,6,132,74,7,7 +9455,14,6,132,74,7,7 +9456,14,6,132,74,7,7 +9457,14,6,132,74,7,7 +9458,14,6,133,74,8,8 +9459,14,6,134,41,7,7 +9460,14,6,134,74,7,7 +9461,14,7,123,74,6,6 +9462,14,7,124,74,7,7 +9463,14,7,125,41,6,6 +9464,14,7,126,41,7,7 +9465,14,7,127,74,5,5 +9466,14,7,128,74,8,8 +9467,14,7,129,95,7,7 +9468,14,7,130,95,9,9 +9469,14,7,131,74,9,9 +9470,14,7,132,41,8,8 +9471,14,7,132,74,8,8 +9472,14,7,132,74,8,8 +9473,14,7,132,74,8,8 +9474,14,7,132,74,8,8 +9475,14,7,132,74,8,8 +9476,14,7,133,74,9,9 +9477,14,7,134,41,8,8 +9478,14,7,134,74,8,8 +9479,14,8,123,422,9,9 +9480,14,8,123,309,9,9 +9481,14,8,124,403,10,10 +9482,14,8,124,309,10,10 +9483,14,8,125,418,9,9 +9484,14,8,126,422,10,10 +9485,14,8,127,418,10,10 +9486,14,8,127,179,10,10 +9487,14,8,128,422,11,11 +9488,14,8,128,179,11,11 +9489,14,8,129,417,9,9 +9490,14,8,130,417,11,11 +9491,14,8,131,418,11,11 +9492,14,8,132,422,12,12 +9493,14,8,133,418,11,11 +9494,14,8,133,179,11,11 +9495,14,8,134,422,12,12 +9496,14,8,134,179,12,12 +9497,14,8,150,422,20,30 +9498,14,8,151,72,20,30 +9499,14,8,152,423,20,40 +9500,14,8,153,423,20,40 +9501,14,8,154,73,20,40 +9502,14,8,135,129,4,6 +9503,14,8,136,129,3,7 +9504,14,8,137,129,5,10 +9505,14,8,138,129,5,10 +9506,14,8,139,129,5,15 +9507,14,8,140,129,15,20 +9508,14,8,141,456,15,20 +9509,14,8,142,129,10,25 +9510,14,8,143,456,10,25 +9511,14,8,144,456,10,25 +9512,14,8,145,130,30,55 +9513,14,8,146,457,30,40 +9514,14,8,147,90,20,50 +9515,14,8,148,457,40,55 +9516,14,8,149,457,40,55 +9517,14,9,123,427,11,11 +9518,14,9,123,287,11,11 +9519,14,9,124,406,10,10 +9520,14,9,124,287,10,10 +9521,14,9,125,265,10,10 +9522,14,9,125,265,10,10 +9523,14,9,125,401,10,10 +9524,14,9,126,401,12,12 +9525,14,9,126,406,12,12 +9526,14,9,126,163,12,12 +9527,14,9,127,406,11,11 +9528,14,9,127,290,11,11 +9529,14,9,128,399,12,12 +9530,14,9,128,290,12,12 +9531,14,9,129,266,12,12 +9532,14,9,130,268,12,12 +9533,14,9,131,427,13,13 +9534,14,9,131,273,13,13 +9535,14,9,131,427,13,13 +9536,14,9,131,204,13,13 +9537,14,9,131,10,13,13 +9538,14,9,131,13,13,13 +9539,14,9,132,92,13,13 +9540,14,9,132,273,13,13 +9541,14,9,132,92,13,13 +9542,14,9,132,204,13,13 +9543,14,9,132,11,13,13 +9544,14,9,132,14,13,13 +9545,14,9,133,267,14,14 +9546,14,9,133,290,14,14 +9547,14,9,134,269,14,14 +9548,14,9,134,290,14,14 +9549,14,10,123,126,28,28 +9550,14,10,124,81,29,29 +9551,14,10,125,126,29,29 +9552,14,10,125,126,29,29 +9553,14,10,125,423,29,29 +9554,14,10,126,419,29,29 +9555,14,10,127,419,30,30 +9556,14,10,127,304,30,30 +9557,14,10,128,423,30,30 +9558,14,10,128,304,30,30 +9559,14,10,129,81,28,28 +9560,14,10,130,81,30,30 +9561,14,10,131,419,31,31 +9562,14,10,132,423,31,31 +9563,14,10,133,419,31,31 +9564,14,10,133,304,31,31 +9565,14,10,134,423,31,31 +9566,14,10,134,304,31,31 +9567,14,10,150,72,20,30 +9568,14,10,151,422,20,30 +9569,14,10,152,73,20,40 +9570,14,10,153,73,20,40 +9571,14,10,154,423,20,40 +9572,14,10,135,129,4,6 +9573,14,10,136,129,3,7 +9574,14,10,137,129,5,10 +9575,14,10,138,129,5,10 +9576,14,10,139,129,5,15 +9577,14,10,140,129,15,20 +9578,14,10,141,456,15,20 +9579,14,10,142,129,10,25 +9580,14,10,143,456,10,25 +9581,14,10,144,456,10,25 +9582,14,10,145,130,30,55 +9583,14,10,146,457,30,40 +9584,14,10,147,90,20,50 +9585,14,10,148,457,40,55 +9586,14,10,149,457,40,55 +9587,14,11,123,436,18,18 +9588,14,11,124,74,19,19 +9589,14,11,125,307,18,18 +9590,14,11,125,307,18,18 +9591,14,11,125,41,18,18 +9592,14,11,126,35,17,17 +9593,14,11,126,74,17,17 +9594,14,11,126,35,17,17 +9595,14,11,127,66,20,20 +9596,14,11,128,307,20,20 +9597,14,11,129,433,17,17 +9598,14,11,130,299,18,18 +9599,14,11,131,41,19,19 +9600,14,11,132,433,19,19 +9601,14,11,133,41,19,19 +9602,14,11,134,433,19,19 +9603,14,11,150,41,20,30 +9604,14,11,151,41,20,30 +9605,14,11,152,42,20,40 +9606,14,11,153,42,20,40 +9607,14,11,154,42,20,40 +9608,14,11,135,129,4,6 +9609,14,11,136,129,3,7 +9610,14,11,137,129,5,10 +9611,14,11,138,129,5,10 +9612,14,11,139,129,5,15 +9613,14,11,140,129,15,20 +9614,14,11,141,339,15,20 +9615,14,11,142,129,10,25 +9616,14,11,143,339,10,25 +9617,14,11,144,339,10,25 +9618,14,11,145,130,30,55 +9619,14,11,146,340,30,40 +9620,14,11,147,130,20,55 +9621,14,11,148,340,40,55 +9622,14,11,149,340,40,55 +9623,14,12,123,437,37,37 +9624,14,12,124,75,38,38 +9625,14,12,125,308,37,37 +9626,14,12,125,308,37,37 +9627,14,12,125,42,37,37 +9628,14,12,126,35,36,36 +9629,14,12,126,75,36,36 +9630,14,12,126,35,36,36 +9631,14,12,127,67,39,39 +9632,14,12,128,308,39,39 +9633,14,12,129,433,36,36 +9634,14,12,130,299,37,37 +9635,14,12,131,42,38,38 +9636,14,12,131,338,38,38 +9637,14,12,131,337,38,38 +9638,14,12,131,42,38,38 +9639,14,12,131,42,38,38 +9640,14,12,131,42,38,38 +9641,14,12,132,433,38,38 +9642,14,12,132,338,38,38 +9643,14,12,132,337,38,38 +9644,14,12,132,433,38,38 +9645,14,12,132,433,38,38 +9646,14,12,132,433,38,38 +9647,14,12,133,42,38,38 +9648,14,12,134,433,38,38 +9649,14,13,123,437,37,37 +9650,14,13,124,75,38,38 +9651,14,13,125,308,37,37 +9652,14,13,125,308,37,37 +9653,14,13,125,42,37,37 +9654,14,13,126,35,36,36 +9655,14,13,126,75,36,36 +9656,14,13,126,35,36,36 +9657,14,13,127,67,39,39 +9658,14,13,128,308,39,39 +9659,14,13,129,433,36,36 +9660,14,13,130,299,37,37 +9661,14,13,131,42,38,38 +9662,14,13,131,338,38,38 +9663,14,13,131,337,38,38 +9664,14,13,131,42,38,38 +9665,14,13,131,42,38,38 +9666,14,13,131,42,38,38 +9667,14,13,132,433,38,38 +9668,14,13,132,338,38,38 +9669,14,13,132,337,38,38 +9670,14,13,132,433,38,38 +9671,14,13,132,433,38,38 +9672,14,13,132,433,38,38 +9673,14,13,133,308,38,38 +9674,14,13,134,433,38,38 +9675,14,14,123,459,36,36 +9676,14,14,124,460,38,38 +9677,14,14,125,308,38,38 +9678,14,14,125,308,38,38 +9679,14,14,125,42,38,38 +9680,14,14,126,460,39,39 +9681,14,14,126,460,39,39 +9682,14,14,126,164,39,39 +9683,14,14,127,67,40,40 +9684,14,14,127,294,40,40 +9685,14,14,128,308,40,40 +9686,14,14,128,294,40,40 +9687,14,14,129,433,37,37 +9688,14,14,130,299,38,38 +9689,14,14,131,359,38,38 +9690,14,14,131,338,38,38 +9691,14,14,131,337,38,38 +9692,14,14,131,359,38,38 +9693,14,14,131,359,38,38 +9694,14,14,131,359,38,38 +9695,14,14,132,433,39,39 +9696,14,14,132,338,39,39 +9697,14,14,132,337,39,39 +9698,14,14,132,433,39,39 +9699,14,14,132,433,39,39 +9700,14,14,132,433,39,39 +9701,14,14,133,359,40,40 +9702,14,14,133,294,40,40 +9703,14,14,134,433,39,39 +9704,14,14,134,294,39,39 +9705,14,15,123,459,36,36 +9706,14,15,124,460,38,38 +9707,14,15,125,308,38,38 +9708,14,15,125,308,38,38 +9709,14,15,125,42,38,38 +9710,14,15,126,460,39,39 +9711,14,15,126,460,39,39 +9712,14,15,126,164,39,39 +9713,14,15,127,67,40,40 +9714,14,15,127,294,40,40 +9715,14,15,128,308,40,40 +9716,14,15,128,294,40,40 +9717,14,15,129,433,37,37 +9718,14,15,130,299,38,38 +9719,14,15,131,359,38,38 +9720,14,15,131,338,38,38 +9721,14,15,131,337,38,38 +9722,14,15,131,359,38,38 +9723,14,15,131,359,38,38 +9724,14,15,131,359,38,38 +9725,14,15,132,433,39,39 +9726,14,15,132,338,39,39 +9727,14,15,132,337,39,39 +9728,14,15,132,433,39,39 +9729,14,15,132,433,39,39 +9730,14,15,132,433,39,39 +9731,14,15,133,359,40,40 +9732,14,15,133,294,40,40 +9733,14,15,134,433,39,39 +9734,14,15,134,294,39,39 +9735,14,16,123,437,37,37 +9736,14,16,124,75,38,38 +9737,14,16,125,308,37,37 +9738,14,16,125,308,37,37 +9739,14,16,125,42,37,37 +9740,14,16,126,35,36,36 +9741,14,16,126,75,36,36 +9742,14,16,126,35,36,36 +9743,14,16,127,67,39,39 +9744,14,16,128,308,39,39 +9745,14,16,129,433,36,36 +9746,14,16,130,299,37,37 +9747,14,16,131,42,38,38 +9748,14,16,131,338,38,38 +9749,14,16,131,337,38,38 +9750,14,16,131,42,38,38 +9751,14,16,131,42,38,38 +9752,14,16,131,42,38,38 +9753,14,16,132,433,38,38 +9754,14,16,132,338,38,38 +9755,14,16,132,337,38,38 +9756,14,16,132,433,38,38 +9757,14,16,132,433,38,38 +9758,14,16,132,433,38,38 +9759,14,16,133,42,38,38 +9760,14,16,134,433,38,38 +9761,14,16,150,41,20,30 +9762,14,16,151,41,20,30 +9763,14,16,152,42,20,40 +9764,14,16,153,42,20,40 +9765,14,16,154,42,20,40 +9766,14,16,135,129,4,6 +9767,14,16,136,129,3,7 +9768,14,16,137,129,5,10 +9769,14,16,138,129,5,10 +9770,14,16,139,129,5,15 +9771,14,16,140,129,15,20 +9772,14,16,141,339,15,20 +9773,14,16,142,129,10,25 +9774,14,16,143,339,10,25 +9775,14,16,144,339,10,25 +9776,14,16,145,130,30,55 +9777,14,16,146,147,15,25 +9778,14,16,147,340,20,50 +9779,14,16,148,148,20,40 +9780,14,16,149,148,35,55 +9781,14,17,123,437,37,37 +9782,14,17,124,75,38,38 +9783,14,17,125,308,37,37 +9784,14,17,125,308,37,37 +9785,14,17,125,42,37,37 +9786,14,17,126,35,36,36 +9787,14,17,126,75,36,36 +9788,14,17,126,35,36,36 +9789,14,17,127,67,39,39 +9790,14,17,128,308,39,39 +9791,14,17,129,433,36,36 +9792,14,17,130,299,37,37 +9793,14,17,131,42,38,38 +9794,14,17,131,338,38,38 +9795,14,17,131,337,38,38 +9796,14,17,131,42,38,38 +9797,14,17,131,42,38,38 +9798,14,17,131,42,38,38 +9799,14,17,132,433,38,38 +9800,14,17,132,338,38,38 +9801,14,17,132,337,38,38 +9802,14,17,132,433,38,38 +9803,14,17,132,433,38,38 +9804,14,17,132,433,38,38 +9805,14,17,133,42,38,38 +9806,14,17,134,358,39,39 +9807,14,18,123,437,37,37 +9808,14,18,124,75,38,38 +9809,14,18,125,308,37,37 +9810,14,18,125,308,37,37 +9811,14,18,125,42,37,37 +9812,14,18,126,35,36,36 +9813,14,18,126,75,36,36 +9814,14,18,126,35,36,36 +9815,14,18,127,67,39,39 +9816,14,18,128,308,39,39 +9817,14,18,129,433,36,36 +9818,14,18,130,299,37,37 +9819,14,18,131,42,38,38 +9820,14,18,131,338,38,38 +9821,14,18,131,337,38,38 +9822,14,18,131,42,38,38 +9823,14,18,131,42,38,38 +9824,14,18,131,42,38,38 +9825,14,18,132,358,39,39 +9826,14,18,132,338,39,39 +9827,14,18,132,337,39,39 +9828,14,18,132,358,39,39 +9829,14,18,132,358,39,39 +9830,14,18,132,358,39,39 +9831,14,18,133,42,38,38 +9832,14,18,134,358,40,40 +9833,14,19,123,437,37,37 +9834,14,19,124,75,38,38 +9835,14,19,125,308,37,37 +9836,14,19,125,308,37,37 +9837,14,19,125,42,37,37 +9838,14,19,126,35,36,36 +9839,14,19,126,75,36,36 +9840,14,19,126,35,36,36 +9841,14,19,127,67,39,39 +9842,14,19,128,308,39,39 +9843,14,19,129,358,39,39 +9844,14,19,130,299,37,37 +9845,14,19,131,42,38,38 +9846,14,19,131,338,38,38 +9847,14,19,131,337,38,38 +9848,14,19,131,42,38,38 +9849,14,19,131,42,38,38 +9850,14,19,131,42,38,38 +9851,14,19,132,358,40,40 +9852,14,19,132,338,40,40 +9853,14,19,132,337,40,40 +9854,14,19,132,358,40,40 +9855,14,19,132,358,40,40 +9856,14,19,132,358,40,40 +9857,14,19,133,42,38,38 +9858,14,19,134,358,41,41 +9859,14,20,123,75,37,37 +9860,14,20,124,75,38,38 +9861,14,20,125,308,37,37 +9862,14,20,125,308,37,37 +9863,14,20,125,42,37,37 +9864,14,20,126,35,36,36 +9865,14,20,126,75,36,36 +9866,14,20,126,35,36,36 +9867,14,20,127,67,39,39 +9868,14,20,128,308,39,39 +9869,14,20,129,433,36,36 +9870,14,20,130,299,37,37 +9871,14,20,131,42,38,38 +9872,14,20,131,338,38,38 +9873,14,20,131,337,38,38 +9874,14,20,131,42,38,38 +9875,14,20,131,42,38,38 +9876,14,20,131,42,38,38 +9877,14,20,132,433,38,38 +9878,14,20,132,338,38,38 +9879,14,20,132,337,38,38 +9880,14,20,132,433,38,38 +9881,14,20,132,433,38,38 +9882,14,20,132,433,38,38 +9883,14,20,133,42,38,38 +9884,14,20,134,433,38,38 +9885,14,21,123,436,33,33 +9886,14,21,124,75,34,34 +9887,14,21,125,307,33,33 +9888,14,21,125,307,33,33 +9889,14,21,125,42,33,33 +9890,14,21,126,35,32,32 +9891,14,21,126,75,32,32 +9892,14,21,126,35,32,32 +9893,14,21,127,67,35,35 +9894,14,21,128,307,35,35 +9895,14,21,129,433,32,32 +9896,14,21,130,299,33,33 +9897,14,21,131,42,34,34 +9898,14,21,132,433,34,34 +9899,14,21,133,42,34,34 +9900,14,21,134,433,34,34 +9901,14,22,123,436,14,14 +9902,14,22,124,74,15,15 +9903,14,22,125,307,14,14 +9904,14,22,125,307,14,14 +9905,14,22,125,41,14,14 +9906,14,22,126,173,13,13 +9907,14,22,126,74,13,13 +9908,14,22,126,173,13,13 +9909,14,22,127,66,16,16 +9910,14,22,128,307,16,16 +9911,14,22,129,433,13,13 +9912,14,22,130,299,14,14 +9913,14,22,131,41,15,15 +9914,14,22,132,433,15,15 +9915,14,22,133,41,15,15 +9916,14,22,134,433,15,15 +9917,14,23,123,436,33,33 +9918,14,23,124,75,34,34 +9919,14,23,125,307,33,33 +9920,14,23,125,307,33,33 +9921,14,23,125,42,33,33 +9922,14,23,126,35,32,32 +9923,14,23,126,75,32,32 +9924,14,23,126,35,32,32 +9925,14,23,127,67,35,35 +9926,14,23,128,307,35,35 +9927,14,23,129,433,32,32 +9928,14,23,130,299,33,33 +9929,14,23,131,42,34,34 +9930,14,23,132,433,34,34 +9931,14,23,133,42,34,34 +9932,14,23,134,433,34,34 +9933,14,23,150,41,20,30 +9934,14,23,151,41,20,30 +9935,14,23,152,42,20,40 +9936,14,23,153,42,20,40 +9937,14,23,154,42,20,40 +9938,14,23,135,129,3,6 +9939,14,23,136,129,4,7 +9940,14,23,137,129,5,10 +9941,14,23,138,129,5,10 +9942,14,23,139,129,5,15 +9943,14,23,140,129,15,20 +9944,14,23,141,339,15,20 +9945,14,23,142,129,10,25 +9946,14,23,143,339,10,25 +9947,14,23,144,339,10,25 +9948,14,23,145,130,30,40 +9949,14,23,146,340,30,40 +9950,14,23,147,130,40,55 +9951,14,23,148,340,40,55 +9952,14,23,149,340,40,55 +9953,14,24,123,194,28,28 +9954,14,24,124,400,28,28 +9955,14,24,125,357,28,28 +9956,14,24,125,357,28,28 +9957,14,24,125,164,28,28 +9958,14,24,126,357,30,30 +9959,14,24,126,357,30,30 +9960,14,24,126,164,30,30 +9961,14,24,127,194,29,29 +9962,14,24,128,195,30,30 +9963,14,24,129,194,28,28 +9964,14,24,130,194,30,30 +9965,14,24,131,193,30,30 +9966,14,24,131,193,30,30 +9967,14,24,131,193,30,30 +9968,14,24,131,193,30,30 +9969,14,24,131,24,30,30 +9970,14,24,131,193,30,30 +9971,14,24,132,114,30,30 +9972,14,24,132,114,30,30 +9973,14,24,132,114,30,30 +9974,14,24,132,114,30,30 +9975,14,24,132,24,30,30 +9976,14,24,132,114,30,30 +9977,14,24,133,193,31,31 +9978,14,24,134,114,31,31 +9979,14,24,150,194,20,30 +9980,14,24,151,194,20,30 +9981,14,24,152,195,20,40 +9982,14,24,153,195,20,40 +9983,14,24,154,195,20,40 +9984,14,24,135,129,3,6 +9985,14,24,136,129,4,7 +9986,14,24,137,129,5,10 +9987,14,24,138,129,5,10 +9988,14,24,139,129,5,15 +9989,14,24,140,129,15,20 +9990,14,24,141,339,15,20 +9991,14,24,142,129,10,25 +9992,14,24,143,339,10,25 +9993,14,24,144,339,10,25 +9994,14,24,145,130,30,55 +9995,14,24,146,318,30,40 +9996,14,24,147,340,20,50 +9997,14,24,148,318,40,55 +9998,14,24,149,318,40,55 +9999,14,25,123,194,28,28 +10000,14,25,124,400,28,28 +10001,14,25,125,357,28,28 +10002,14,25,125,357,28,28 +10003,14,25,125,164,28,28 +10004,14,25,126,357,30,30 +10005,14,25,126,357,30,30 +10006,14,25,126,164,30,30 +10007,14,25,127,194,29,29 +10008,14,25,128,195,30,30 +10009,14,25,129,194,28,28 +10010,14,25,130,194,30,30 +10011,14,25,131,193,30,30 +10012,14,25,131,193,30,30 +10013,14,25,131,193,30,30 +10014,14,25,131,193,30,30 +10015,14,25,131,24,30,30 +10016,14,25,131,193,30,30 +10017,14,25,132,114,30,30 +10018,14,25,132,114,30,30 +10019,14,25,132,114,30,30 +10020,14,25,132,114,30,30 +10021,14,25,132,24,30,30 +10022,14,25,132,114,30,30 +10023,14,25,133,193,31,31 +10024,14,25,134,114,31,31 +10025,14,25,150,194,20,30 +10026,14,25,151,194,20,30 +10027,14,25,152,195,20,40 +10028,14,25,153,195,20,40 +10029,14,25,154,195,20,40 +10030,14,25,135,129,3,6 +10031,14,25,136,129,4,7 +10032,14,25,137,129,5,10 +10033,14,25,138,129,5,10 +10034,14,25,139,129,5,15 +10035,14,25,140,129,15,20 +10036,14,25,141,339,15,20 +10037,14,25,142,129,10,25 +10038,14,25,143,339,10,25 +10039,14,25,144,339,10,25 +10040,14,25,145,130,30,55 +10041,14,25,146,318,30,40 +10042,14,25,147,340,20,50 +10043,14,25,148,318,40,55 +10044,14,25,149,318,40,55 +10045,14,26,123,194,27,27 +10046,14,26,124,400,27,27 +10047,14,26,125,400,28,28 +10048,14,26,125,400,28,28 +10049,14,26,125,164,28,28 +10050,14,26,126,114,27,27 +10051,14,26,126,114,27,27 +10052,14,26,126,163,27,27 +10053,14,26,127,114,28,28 +10054,14,26,128,195,29,29 +10055,14,26,129,194,28,28 +10056,14,26,130,194,29,29 +10057,14,26,131,193,29,29 +10058,14,26,131,193,29,29 +10059,14,26,131,193,29,29 +10060,14,26,131,193,29,29 +10061,14,26,131,24,29,29 +10062,14,26,131,193,29,29 +10063,14,26,132,114,29,29 +10064,14,26,132,114,29,29 +10065,14,26,132,114,29,29 +10066,14,26,132,114,29,29 +10067,14,26,132,24,29,29 +10068,14,26,132,114,29,29 +10069,14,26,133,193,30,30 +10070,14,26,134,114,30,30 +10071,14,26,150,194,20,30 +10072,14,26,151,194,20,30 +10073,14,26,152,195,20,40 +10074,14,26,153,195,20,40 +10075,14,26,154,195,20,40 +10076,14,26,135,129,3,6 +10077,14,26,136,129,4,7 +10078,14,26,137,129,5,10 +10079,14,26,138,129,5,10 +10080,14,26,139,129,5,15 +10081,14,26,140,129,15,20 +10082,14,26,141,339,15,20 +10083,14,26,142,129,10,25 +10084,14,26,143,339,10,25 +10085,14,26,144,339,10,25 +10086,14,26,145,130,30,55 +10087,14,26,146,318,30,40 +10088,14,26,147,340,20,50 +10089,14,26,148,318,40,55 +10090,14,26,149,318,40,55 +10091,14,27,123,194,27,27 +10092,14,27,124,400,27,27 +10093,14,27,125,400,28,28 +10094,14,27,125,400,28,28 +10095,14,27,125,164,28,28 +10096,14,27,126,114,27,27 +10097,14,27,126,114,27,27 +10098,14,27,126,163,27,27 +10099,14,27,127,114,28,28 +10100,14,27,128,195,29,29 +10101,14,27,129,194,28,28 +10102,14,27,130,194,29,29 +10103,14,27,131,193,29,29 +10104,14,27,131,193,29,29 +10105,14,27,131,193,29,29 +10106,14,27,131,193,29,29 +10107,14,27,131,24,29,29 +10108,14,27,131,193,29,29 +10109,14,27,132,114,29,29 +10110,14,27,132,114,29,29 +10111,14,27,132,114,29,29 +10112,14,27,132,114,29,29 +10113,14,27,132,24,29,29 +10114,14,27,132,114,29,29 +10115,14,27,133,193,30,30 +10116,14,27,134,114,30,30 +10117,14,27,150,194,20,30 +10118,14,27,151,194,20,30 +10119,14,27,152,195,20,40 +10120,14,27,153,195,20,40 +10121,14,27,154,195,20,40 +10122,14,27,135,129,3,6 +10123,14,27,136,129,4,7 +10124,14,27,137,129,5,10 +10125,14,27,138,129,5,10 +10126,14,27,139,129,5,15 +10127,14,27,140,129,15,20 +10128,14,27,141,339,15,20 +10129,14,27,142,129,10,25 +10130,14,27,143,339,10,25 +10131,14,27,144,339,10,25 +10132,14,27,145,130,30,55 +10133,14,27,146,318,30,40 +10134,14,27,147,340,20,50 +10135,14,27,148,318,40,55 +10136,14,27,149,318,40,55 +10137,14,28,123,194,26,26 +10138,14,28,124,400,26,26 +10139,14,28,125,400,27,27 +10140,14,28,125,400,27,27 +10141,14,28,125,163,27,27 +10142,14,28,126,193,26,26 +10143,14,28,126,193,26,26 +10144,14,28,126,163,26,26 +10145,14,28,127,193,27,27 +10146,14,28,128,195,28,28 +10147,14,28,129,194,27,27 +10148,14,28,130,194,28,28 +10149,14,28,131,193,28,28 +10150,14,28,131,193,28,28 +10151,14,28,131,193,28,28 +10152,14,28,131,193,28,28 +10153,14,28,131,24,28,28 +10154,14,28,131,193,28,28 +10155,14,28,132,114,28,28 +10156,14,28,132,114,28,28 +10157,14,28,132,114,28,28 +10158,14,28,132,114,28,28 +10159,14,28,132,24,28,28 +10160,14,28,132,114,28,28 +10161,14,28,133,193,29,29 +10162,14,28,134,114,29,29 +10163,14,28,150,194,20,30 +10164,14,28,151,194,20,30 +10165,14,28,152,195,20,40 +10166,14,28,153,195,20,40 +10167,14,28,154,195,20,40 +10168,14,28,135,129,3,6 +10169,14,28,136,129,4,7 +10170,14,28,137,129,5,10 +10171,14,28,138,129,5,10 +10172,14,28,139,129,5,15 +10173,14,28,140,129,15,20 +10174,14,28,141,339,15,20 +10175,14,28,142,129,10,25 +10176,14,28,143,339,10,25 +10177,14,28,144,339,10,25 +10178,14,28,145,130,30,55 +10179,14,28,146,318,30,40 +10180,14,28,147,340,20,50 +10181,14,28,148,318,40,55 +10182,14,28,149,318,40,55 +10183,14,29,123,194,26,26 +10184,14,29,124,400,26,26 +10185,14,29,125,400,27,27 +10186,14,29,125,400,27,27 +10187,14,29,125,163,27,27 +10188,14,29,126,193,26,26 +10189,14,29,126,193,26,26 +10190,14,29,126,163,26,26 +10191,14,29,127,193,27,27 +10192,14,29,128,195,28,28 +10193,14,29,129,194,27,27 +10194,14,29,130,194,28,28 +10195,14,29,131,193,28,28 +10196,14,29,131,193,28,28 +10197,14,29,131,193,28,28 +10198,14,29,131,193,28,28 +10199,14,29,131,24,28,28 +10200,14,29,131,193,28,28 +10201,14,29,132,114,28,28 +10202,14,29,132,114,28,28 +10203,14,29,132,114,28,28 +10204,14,29,132,114,28,28 +10205,14,29,132,24,28,28 +10206,14,29,132,114,28,28 +10207,14,29,133,193,29,29 +10208,14,29,134,114,29,29 +10209,14,29,150,194,20,30 +10210,14,29,151,194,20,30 +10211,14,29,152,195,20,40 +10212,14,29,153,195,20,40 +10213,14,29,154,195,20,40 +10214,14,29,135,129,3,6 +10215,14,29,136,129,4,7 +10216,14,29,137,129,5,10 +10217,14,29,138,129,5,10 +10218,14,29,139,129,5,15 +10219,14,29,140,129,15,20 +10220,14,29,141,339,15,20 +10221,14,29,142,129,10,25 +10222,14,29,143,339,10,25 +10223,14,29,144,339,10,25 +10224,14,29,145,130,30,55 +10225,14,29,146,318,30,40 +10226,14,29,147,340,20,50 +10227,14,29,148,318,40,55 +10228,14,29,149,318,40,55 +10229,14,30,123,201,20,20 +10230,14,30,124,201,21,21 +10231,14,30,125,201,22,22 +10232,14,30,126,201,23,23 +10233,14,30,127,201,24,24 +10234,14,30,128,201,25,25 +10235,14,30,129,201,26,26 +10236,14,30,130,201,27,27 +10237,14,30,131,201,28,28 +10238,14,30,132,201,29,29 +10239,14,30,133,201,30,30 +10240,14,30,134,201,30,30 +10241,14,31,123,201,20,20 +10242,14,31,124,201,21,21 +10243,14,31,125,201,22,22 +10244,14,31,126,201,23,23 +10245,14,31,127,201,24,24 +10246,14,31,128,201,25,25 +10247,14,31,129,201,26,26 +10248,14,31,130,201,27,27 +10249,14,31,131,201,28,28 +10250,14,31,132,201,29,29 +10251,14,31,133,201,30,30 +10252,14,31,134,201,30,30 +10253,14,32,123,201,20,20 +10254,14,32,124,201,21,21 +10255,14,32,125,201,22,22 +10256,14,32,126,201,23,23 +10257,14,32,127,201,24,24 +10258,14,32,128,201,25,25 +10259,14,32,129,201,26,26 +10260,14,32,130,201,27,27 +10261,14,32,131,201,28,28 +10262,14,32,132,201,29,29 +10263,14,32,133,201,30,30 +10264,14,32,134,201,30,30 +10265,14,33,123,201,20,20 +10266,14,33,124,201,21,21 +10267,14,33,125,201,22,22 +10268,14,33,126,201,23,23 +10269,14,33,127,201,24,24 +10270,14,33,128,201,25,25 +10271,14,33,129,201,26,26 +10272,14,33,130,201,27,27 +10273,14,33,131,201,28,28 +10274,14,33,132,201,29,29 +10275,14,33,133,201,30,30 +10276,14,33,134,201,30,30 +10277,14,34,123,201,20,20 +10278,14,34,124,201,21,21 +10279,14,34,125,201,22,22 +10280,14,34,126,201,23,23 +10281,14,34,127,201,24,24 +10282,14,34,128,201,25,25 +10283,14,34,129,201,26,26 +10284,14,34,130,201,27,27 +10285,14,34,131,201,28,28 +10286,14,34,132,201,29,29 +10287,14,34,133,201,30,30 +10288,14,34,134,201,30,30 +10289,14,35,123,201,20,20 +10290,14,35,124,201,21,21 +10291,14,35,125,201,22,22 +10292,14,35,126,201,23,23 +10293,14,35,127,201,24,24 +10294,14,35,128,201,25,25 +10295,14,35,129,201,26,26 +10296,14,35,130,201,27,27 +10297,14,35,131,201,28,28 +10298,14,35,132,201,29,29 +10299,14,35,133,201,30,30 +10300,14,35,134,201,30,30 +10301,14,36,123,201,20,20 +10302,14,36,124,201,21,21 +10303,14,36,125,201,22,22 +10304,14,36,126,201,23,23 +10305,14,36,127,201,24,24 +10306,14,36,128,201,25,25 +10307,14,36,129,201,26,26 +10308,14,36,130,201,27,27 +10309,14,36,131,201,28,28 +10310,14,36,132,201,29,29 +10311,14,36,133,201,30,30 +10312,14,36,134,201,30,30 +10313,14,37,123,201,20,20 +10314,14,37,124,201,21,21 +10315,14,37,125,201,22,22 +10316,14,37,126,201,23,23 +10317,14,37,127,201,24,24 +10318,14,37,128,201,25,25 +10319,14,37,129,201,26,26 +10320,14,37,130,201,27,27 +10321,14,37,131,201,28,28 +10322,14,37,132,201,29,29 +10323,14,37,133,201,30,30 +10324,14,37,134,201,30,30 +10325,14,38,123,201,20,20 +10326,14,38,124,201,21,21 +10327,14,38,125,201,22,22 +10328,14,38,126,201,23,23 +10329,14,38,127,201,24,24 +10330,14,38,128,201,25,25 +10331,14,38,129,201,26,26 +10332,14,38,130,201,27,27 +10333,14,38,131,201,28,28 +10334,14,38,132,201,29,29 +10335,14,38,133,201,30,30 +10336,14,38,134,201,30,30 +10337,14,39,123,201,20,20 +10338,14,39,124,201,21,21 +10339,14,39,125,201,22,22 +10340,14,39,126,201,23,23 +10341,14,39,127,201,24,24 +10342,14,39,128,201,25,25 +10343,14,39,129,201,26,26 +10344,14,39,130,201,27,27 +10345,14,39,131,201,28,28 +10346,14,39,132,201,29,29 +10347,14,39,133,201,30,30 +10348,14,39,134,201,30,30 +10349,14,40,123,201,20,20 +10350,14,40,124,201,21,21 +10351,14,40,125,201,22,22 +10352,14,40,126,201,23,23 +10353,14,40,127,201,24,24 +10354,14,40,128,201,25,25 +10355,14,40,129,201,26,26 +10356,14,40,130,201,27,27 +10357,14,40,131,201,28,28 +10358,14,40,132,201,29,29 +10359,14,40,133,201,30,30 +10360,14,40,134,201,30,30 +10361,14,41,123,201,20,20 +10362,14,41,124,201,21,21 +10363,14,41,125,201,22,22 +10364,14,41,126,201,23,23 +10365,14,41,127,201,24,24 +10366,14,41,128,201,25,25 +10367,14,41,129,201,26,26 +10368,14,41,130,201,27,27 +10369,14,41,131,201,28,28 +10370,14,41,132,201,29,29 +10371,14,41,133,201,30,30 +10372,14,41,134,201,30,30 +10373,14,42,123,201,20,20 +10374,14,42,124,201,21,21 +10375,14,42,125,201,22,22 +10376,14,42,126,201,23,23 +10377,14,42,127,201,24,24 +10378,14,42,128,201,25,25 +10379,14,42,129,201,26,26 +10380,14,42,130,201,27,27 +10381,14,42,131,201,28,28 +10382,14,42,132,201,29,29 +10383,14,42,133,201,30,30 +10384,14,42,134,201,30,30 +10385,14,43,123,201,20,20 +10386,14,43,124,201,21,21 +10387,14,43,125,201,22,22 +10388,14,43,126,201,23,23 +10389,14,43,127,201,24,24 +10390,14,43,128,201,25,25 +10391,14,43,129,201,26,26 +10392,14,43,130,201,27,27 +10393,14,43,131,201,28,28 +10394,14,43,132,201,29,29 +10395,14,43,133,201,30,30 +10396,14,43,134,201,30,30 +10397,14,44,123,201,20,20 +10398,14,44,124,201,21,21 +10399,14,44,125,201,22,22 +10400,14,44,126,201,23,23 +10401,14,44,127,201,24,24 +10402,14,44,128,201,25,25 +10403,14,44,129,201,26,26 +10404,14,44,130,201,27,27 +10405,14,44,131,201,28,28 +10406,14,44,132,201,29,29 +10407,14,44,133,201,30,30 +10408,14,44,134,201,30,30 +10409,14,45,123,201,20,20 +10410,14,45,124,201,21,21 +10411,14,45,125,201,22,22 +10412,14,45,126,201,23,23 +10413,14,45,127,201,24,24 +10414,14,45,128,201,25,25 +10415,14,45,129,201,26,26 +10416,14,45,130,201,27,27 +10417,14,45,131,201,28,28 +10418,14,45,132,201,29,29 +10419,14,45,133,201,30,30 +10420,14,45,134,201,30,30 +10421,14,46,123,201,20,20 +10422,14,46,124,201,21,21 +10423,14,46,125,201,22,22 +10424,14,46,126,201,23,23 +10425,14,46,127,201,24,24 +10426,14,46,128,201,25,25 +10427,14,46,129,201,26,26 +10428,14,46,130,201,27,27 +10429,14,46,131,201,28,28 +10430,14,46,132,201,29,29 +10431,14,46,133,201,30,30 +10432,14,46,134,201,30,30 +10433,14,47,123,201,20,20 +10434,14,47,124,201,21,21 +10435,14,47,125,201,22,22 +10436,14,47,126,201,23,23 +10437,14,47,127,201,24,24 +10438,14,47,128,201,25,25 +10439,14,47,129,201,26,26 +10440,14,47,130,201,27,27 +10441,14,47,131,201,28,28 +10442,14,47,132,201,29,29 +10443,14,47,133,201,30,30 +10444,14,47,134,201,30,30 +10445,14,48,123,75,40,40 +10446,14,48,124,111,41,41 +10447,14,48,125,75,42,42 +10448,14,48,125,75,42,42 +10449,14,48,125,42,42,42 +10450,14,48,126,95,41,41 +10451,14,48,127,95,42,42 +10452,14,48,128,112,41,41 +10453,14,48,129,42,43,43 +10454,14,48,130,112,43,43 +10455,14,48,131,208,42,42 +10456,14,48,132,444,41,41 +10457,14,48,133,208,42,42 +10458,14,48,134,444,41,41 +10459,14,49,123,82,41,41 +10460,14,49,124,208,42,42 +10461,14,49,125,75,41,41 +10462,14,49,125,75,41,41 +10463,14,49,125,42,41,41 +10464,14,49,126,208,42,42 +10465,14,49,127,208,44,44 +10466,14,49,128,82,43,43 +10467,14,49,129,42,44,44 +10468,14,49,130,75,43,43 +10469,14,49,131,95,42,42 +10470,14,49,132,444,43,43 +10471,14,49,133,95,42,42 +10472,14,49,134,444,43,43 +10473,14,50,123,419,42,42 +10474,14,50,124,184,41,41 +10475,14,50,125,75,41,41 +10476,14,50,125,75,41,41 +10477,14,50,125,42,41,41 +10478,14,50,126,184,43,43 +10479,14,50,127,95,42,42 +10480,14,50,128,419,44,44 +10481,14,50,129,42,44,44 +10482,14,50,130,75,43,43 +10483,14,50,131,208,44,44 +10484,14,50,132,444,43,43 +10485,14,50,133,208,44,44 +10486,14,50,134,444,43,43 +10487,14,50,150,419,30,50 +10488,14,50,151,419,30,50 +10489,14,50,152,42,30,50 +10490,14,50,153,42,30,50 +10491,14,50,154,42,30,50 +10492,14,50,135,129,4,6 +10493,14,50,136,129,3,7 +10494,14,50,137,129,5,10 +10495,14,50,138,129,5,10 +10496,14,50,139,129,5,15 +10497,14,50,140,129,15,20 +10498,14,50,141,129,15,20 +10499,14,50,142,129,10,25 +10500,14,50,143,129,10,25 +10501,14,50,144,129,10,25 +10502,14,50,145,130,30,40 +10503,14,50,146,130,30,40 +10504,14,50,147,130,40,55 +10505,14,50,148,130,40,55 +10506,14,50,149,130,40,55 +10507,14,51,123,419,48,48 +10508,14,51,124,184,47,47 +10509,14,51,125,75,47,47 +10510,14,51,125,75,47,47 +10511,14,51,125,42,47,47 +10512,14,51,126,184,49,49 +10513,14,51,127,87,48,48 +10514,14,51,128,419,50,50 +10515,14,51,129,42,50,50 +10516,14,51,130,75,49,49 +10517,14,51,131,87,50,50 +10518,14,51,132,444,49,49 +10519,14,51,133,87,50,50 +10520,14,51,134,444,49,49 +10521,14,51,150,419,35,55 +10522,14,51,151,87,35,55 +10523,14,51,152,131,35,55 +10524,14,51,153,131,35,55 +10525,14,51,154,131,35,55 +10526,14,51,135,129,4,6 +10527,14,51,136,129,3,7 +10528,14,51,137,129,5,10 +10529,14,51,138,129,5,10 +10530,14,51,139,129,5,15 +10531,14,51,140,129,15,20 +10532,14,51,141,129,15,20 +10533,14,51,142,129,10,25 +10534,14,51,143,129,10,25 +10535,14,51,144,129,10,25 +10536,14,51,145,130,30,40 +10537,14,51,146,130,30,40 +10538,14,51,147,130,40,55 +10539,14,51,148,130,40,55 +10540,14,51,149,130,40,55 +10541,14,52,123,75,47,47 +10542,14,52,124,419,47,47 +10543,14,52,125,75,49,49 +10544,14,52,125,75,49,49 +10545,14,52,125,42,49,49 +10546,14,52,126,95,48,48 +10547,14,52,127,95,50,50 +10548,14,52,128,419,48,48 +10549,14,52,129,42,50,50 +10550,14,52,130,419,49,49 +10551,14,52,131,208,50,50 +10552,14,52,132,444,50,50 +10553,14,52,133,208,50,50 +10554,14,52,134,444,50,50 +10555,14,53,123,75,47,47 +10556,14,53,124,419,47,47 +10557,14,53,125,75,49,49 +10558,14,53,125,75,49,49 +10559,14,53,125,42,49,49 +10560,14,53,126,95,48,48 +10561,14,53,127,95,50,50 +10562,14,53,128,419,48,48 +10563,14,53,129,42,49,49 +10564,14,53,130,419,49,49 +10565,14,53,131,208,50,50 +10566,14,53,132,444,50,50 +10567,14,53,133,208,50,50 +10568,14,53,134,444,50,50 +10569,14,54,123,41,4,4 +10570,14,54,124,54,4,4 +10571,14,54,125,41,5,5 +10572,14,54,126,54,5,5 +10573,14,54,127,41,3,3 +10574,14,54,128,41,3,3 +10575,14,54,129,54,6,6 +10576,14,54,130,41,6,6 +10577,14,54,131,41,6,6 +10578,14,54,132,41,6,6 +10579,14,54,133,41,6,6 +10580,14,54,134,41,6,6 +10581,14,54,150,54,20,30 +10582,14,54,151,41,20,30 +10583,14,54,152,55,20,40 +10584,14,54,153,42,20,40 +10585,14,54,154,42,20,40 +10586,14,54,135,129,4,6 +10587,14,54,136,129,3,7 +10588,14,54,137,129,5,10 +10589,14,54,138,129,5,10 +10590,14,54,139,129,5,15 +10591,14,54,140,129,15,20 +10592,14,54,141,339,15,20 +10593,14,54,142,129,10,25 +10594,14,54,143,339,10,25 +10595,14,54,144,339,10,25 +10596,14,54,145,130,30,55 +10597,14,54,146,340,30,40 +10598,14,54,147,130,40,55 +10599,14,54,148,340,40,55 +10600,14,54,149,340,40,55 +10601,14,55,123,41,5,5 +10602,14,55,124,54,5,5 +10603,14,55,125,41,6,6 +10604,14,55,126,54,6,6 +10605,14,55,127,74,5,5 +10606,14,55,128,41,5,5 +10607,14,55,129,54,7,7 +10608,14,55,130,74,7,7 +10609,14,55,131,41,7,7 +10610,14,55,132,41,8,8 +10611,14,55,133,41,7,7 +10612,14,55,134,41,8,8 +10613,14,56,123,41,6,6 +10614,14,56,124,54,8,8 +10615,14,56,125,41,7,7 +10616,14,56,126,54,9,9 +10617,14,56,127,74,6,6 +10618,14,56,128,41,8,8 +10619,14,56,129,54,10,10 +10620,14,56,130,74,8,8 +10621,14,56,131,41,9,9 +10622,14,56,132,42,10,10 +10623,14,56,133,41,9,9 +10624,14,56,134,42,10,10 +10625,14,56,150,54,20,30 +10626,14,56,151,41,20,30 +10627,14,56,152,55,20,40 +10628,14,56,153,42,20,40 +10629,14,56,154,42,20,40 +10630,14,56,135,129,4,6 +10631,14,56,136,129,3,7 +10632,14,56,137,129,5,10 +10633,14,56,138,129,5,10 +10634,14,56,139,129,5,15 +10635,14,56,140,129,15,20 +10636,14,56,141,339,15,20 +10637,14,56,142,129,10,25 +10638,14,56,143,339,10,25 +10639,14,56,144,339,10,25 +10640,14,56,145,130,30,55 +10641,14,56,146,340,30,40 +10642,14,56,147,130,40,55 +10643,14,56,148,340,40,55 +10644,14,56,149,340,40,55 +10645,14,57,123,323,53,53 +10646,14,57,124,112,54,54 +10647,14,57,125,22,51,51 +10648,14,57,125,22,51,51 +10649,14,57,125,42,51,51 +10650,14,57,126,75,51,51 +10651,14,57,127,22,53,53 +10652,14,57,127,324,53,53 +10653,14,57,128,110,52,52 +10654,14,57,128,324,52,52 +10655,14,57,129,227,53,53 +10656,14,57,130,75,53,53 +10657,14,57,131,322,51,51 +10658,14,57,132,111,52,52 +10659,14,57,133,322,51,51 +10660,14,57,133,324,51,51 +10661,14,57,134,111,52,52 +10662,14,57,134,324,52,52 +10663,14,58,123,219,54,54 +10664,14,58,124,112,54,54 +10665,14,58,125,42,52,52 +10666,14,58,126,75,51,51 +10667,14,58,127,42,52,52 +10668,14,58,128,110,53,53 +10669,14,58,129,110,51,51 +10670,14,58,130,75,53,53 +10671,14,58,131,218,52,52 +10672,14,58,132,111,52,52 +10673,14,58,133,218,52,52 +10674,14,58,134,111,52,52 +10675,14,59,123,219,53,53 +10676,14,59,124,219,55,55 +10677,14,59,125,42,53,53 +10678,14,59,126,75,52,52 +10679,14,59,127,112,55,55 +10680,14,59,128,110,54,54 +10681,14,59,129,110,52,52 +10682,14,59,130,75,54,54 +10683,14,59,131,218,53,53 +10684,14,59,132,109,53,53 +10685,14,59,133,218,53,53 +10686,14,59,134,109,53,53 +10687,14,60,123,75,38,38 +10688,14,60,124,400,37,37 +10689,14,60,125,75,39,39 +10690,14,60,125,75,39,39 +10691,14,60,125,356,39,39 +10692,14,60,126,397,38,38 +10693,14,60,126,397,38,38 +10694,14,60,126,42,38,38 +10695,14,60,127,400,38,38 +10696,14,60,128,397,40,40 +10697,14,60,129,75,37,37 +10698,14,60,130,433,37,37 +10699,14,60,131,356,40,40 +10700,14,60,131,338,40,40 +10701,14,60,131,337,40,40 +10702,14,60,131,356,40,40 +10703,14,60,131,356,40,40 +10704,14,60,131,356,40,40 +10705,14,60,132,433,39,39 +10706,14,60,132,338,39,39 +10707,14,60,132,337,39,39 +10708,14,60,132,433,39,39 +10709,14,60,132,433,39,39 +10710,14,60,132,433,39,39 +10711,14,60,133,356,40,40 +10712,14,60,134,433,39,39 +10713,14,60,150,55,20,40 +10714,14,60,151,55,20,40 +10715,14,60,152,55,20,40 +10716,14,60,153,55,20,40 +10717,14,60,154,55,20,40 +10718,14,60,135,129,4,6 +10719,14,60,136,129,3,7 +10720,14,60,137,129,5,10 +10721,14,60,138,129,5,10 +10722,14,60,139,129,5,15 +10723,14,60,140,129,15,20 +10724,14,60,141,118,15,20 +10725,14,60,142,129,10,25 +10726,14,60,143,118,10,25 +10727,14,60,144,118,10,25 +10728,14,60,145,130,30,40 +10729,14,60,146,119,30,40 +10730,14,60,147,130,40,55 +10731,14,60,148,119,40,55 +10732,14,60,149,119,40,55 +10733,14,61,123,92,15,15 +10734,14,61,124,436,15,15 +10735,14,61,125,92,16,16 +10736,14,61,125,92,16,16 +10737,14,61,125,356,16,16 +10738,14,61,126,42,17,17 +10739,14,61,127,92,17,17 +10740,14,61,128,42,17,17 +10741,14,61,129,42,18,18 +10742,14,61,130,433,16,16 +10743,14,61,131,355,18,18 +10744,14,61,131,338,18,18 +10745,14,61,131,337,18,18 +10746,14,61,131,356,18,18 +10747,14,61,131,356,18,18 +10748,14,61,131,356,18,18 +10749,14,61,132,433,18,18 +10750,14,61,132,338,18,18 +10751,14,61,132,337,18,18 +10752,14,61,132,433,18,18 +10753,14,61,132,433,18,18 +10754,14,61,132,433,18,18 +10755,14,61,133,355,18,18 +10756,14,61,133,356,18,18 +10757,14,61,134,433,18,18 +10758,14,62,123,93,35,35 +10759,14,62,124,437,35,35 +10760,14,62,125,93,36,36 +10761,14,62,125,93,36,36 +10762,14,62,125,356,36,36 +10763,14,62,126,42,37,37 +10764,14,62,127,93,37,37 +10765,14,62,128,42,37,37 +10766,14,62,129,42,38,38 +10767,14,62,130,358,36,36 +10768,14,62,131,356,38,38 +10769,14,62,131,338,38,38 +10770,14,62,131,337,38,38 +10771,14,62,131,356,38,38 +10772,14,62,131,356,38,38 +10773,14,62,131,356,38,38 +10774,14,62,132,358,38,38 +10775,14,62,132,338,38,38 +10776,14,62,132,337,38,38 +10777,14,62,132,358,38,38 +10778,14,62,132,358,38,38 +10779,14,62,132,358,38,38 +10780,14,62,133,356,38,38 +10781,14,62,134,358,38,38 +10782,14,63,123,93,35,35 +10783,14,63,124,437,35,35 +10784,14,63,125,93,36,36 +10785,14,63,125,93,36,36 +10786,14,63,125,356,36,36 +10787,14,63,126,42,37,37 +10788,14,63,127,93,37,37 +10789,14,63,128,42,37,37 +10790,14,63,129,42,38,38 +10791,14,63,130,358,36,36 +10792,14,63,131,356,37,37 +10793,14,63,131,338,37,37 +10794,14,63,131,337,37,37 +10795,14,63,131,356,37,37 +10796,14,63,131,356,37,37 +10797,14,63,131,356,37,37 +10798,14,63,132,358,37,37 +10799,14,63,132,338,37,37 +10800,14,63,132,337,37,37 +10801,14,63,132,358,37,37 +10802,14,63,132,358,37,37 +10803,14,63,132,358,37,37 +10804,14,63,133,356,37,37 +10805,14,63,134,358,37,37 +10806,14,64,123,92,15,15 +10807,14,64,124,436,15,15 +10808,14,64,125,92,16,16 +10809,14,64,125,92,16,16 +10810,14,64,125,356,16,16 +10811,14,64,126,42,17,17 +10812,14,64,127,92,17,17 +10813,14,64,128,42,17,17 +10814,14,64,129,42,18,18 +10815,14,64,130,433,16,16 +10816,14,64,131,355,18,18 +10817,14,64,131,338,18,18 +10818,14,64,131,337,18,18 +10819,14,64,131,356,18,18 +10820,14,64,131,356,18,18 +10821,14,64,131,356,18,18 +10822,14,64,132,433,18,18 +10823,14,64,132,338,18,18 +10824,14,64,132,337,18,18 +10825,14,64,132,433,18,18 +10826,14,64,132,433,18,18 +10827,14,64,132,433,18,18 +10828,14,64,133,355,18,18 +10829,14,64,133,356,18,18 +10830,14,64,134,433,18,18 +10956,14,70,123,93,25,25 +10957,14,70,124,436,25,25 +10958,14,70,125,93,26,26 +10959,14,70,125,93,26,26 +10960,14,70,125,356,26,26 +10961,14,70,126,42,27,27 +10962,14,70,127,93,27,27 +10963,14,70,128,42,27,27 +10964,14,70,129,42,25,25 +10965,14,70,130,433,26,26 +10966,14,70,131,355,28,28 +10967,14,70,131,338,28,28 +10968,14,70,131,337,28,28 +10969,14,70,131,356,28,28 +10970,14,70,131,356,28,28 +10971,14,70,131,356,28,28 +10972,14,70,132,433,28,28 +10973,14,70,132,338,28,28 +10974,14,70,132,337,28,28 +10975,14,70,132,433,28,28 +10976,14,70,132,433,28,28 +10977,14,70,132,433,28,28 +10978,14,70,133,356,28,28 +10979,14,70,134,358,28,28 +10980,14,70,134,433,28,28 +11106,14,76,123,93,35,35 +11107,14,76,124,437,35,35 +11108,14,76,125,93,36,36 +11109,14,76,125,93,36,36 +11110,14,76,125,356,36,36 +11111,14,76,126,42,37,37 +11112,14,76,127,93,37,37 +11113,14,76,128,42,37,37 +11114,14,76,129,42,38,38 +11115,14,76,130,358,36,36 +11116,14,76,131,356,38,38 +11117,14,76,131,338,38,38 +11118,14,76,131,337,38,38 +11119,14,76,131,356,38,38 +11120,14,76,131,356,38,38 +11121,14,76,131,356,38,38 +11122,14,76,132,358,38,38 +11123,14,76,132,338,38,38 +11124,14,76,132,337,38,38 +11125,14,76,132,358,38,38 +11126,14,76,132,358,38,38 +11127,14,76,132,358,38,38 +11128,14,76,133,356,38,38 +11129,14,76,134,358,38,38 +11250,14,82,123,93,45,45 +11251,14,82,124,437,45,45 +11252,14,82,125,93,46,46 +11253,14,82,125,93,46,46 +11254,14,82,125,356,46,46 +11255,14,82,126,42,45,45 +11256,14,82,127,93,47,47 +11257,14,82,128,42,46,46 +11258,14,82,129,42,47,47 +11259,14,82,130,358,46,46 +11260,14,82,131,356,47,47 +11261,14,82,131,338,47,47 +11262,14,82,131,337,47,47 +11263,14,82,131,356,47,47 +11264,14,82,131,356,47,47 +11265,14,82,131,356,47,47 +11266,14,82,132,358,45,45 +11267,14,82,132,338,45,45 +11268,14,82,132,337,45,45 +11269,14,82,132,358,45,45 +11270,14,82,132,358,45,45 +11271,14,82,132,358,45,45 +11272,14,82,133,356,48,48 +11273,14,82,134,358,47,47 +11850,14,107,123,42,47,47 +11851,14,107,124,42,48,48 +11852,14,107,125,42,49,49 +11853,14,107,126,42,50,50 +11854,14,107,127,42,48,48 +11855,14,107,128,215,49,49 +11856,14,107,129,238,47,47 +11857,14,107,130,42,49,49 +11858,14,107,131,238,49,49 +11859,14,107,132,42,47,47 +11860,14,107,133,238,49,49 +11861,14,107,134,42,47,47 +11862,14,108,123,42,47,47 +11863,14,108,124,42,48,48 +11864,14,108,125,42,49,49 +11865,14,108,126,42,50,50 +11866,14,108,127,42,48,48 +11867,14,108,128,215,49,49 +11868,14,108,129,124,47,47 +11869,14,108,130,42,49,49 +11870,14,108,131,124,49,49 +11871,14,108,132,42,47,47 +11872,14,108,133,124,49,49 +11873,14,108,134,42,47,47 +11874,14,109,123,42,47,47 +11875,14,109,124,42,48,48 +11876,14,109,125,42,49,49 +11877,14,109,126,42,50,50 +11878,14,109,127,42,48,48 +11879,14,109,128,215,50,50 +11880,14,109,129,124,48,48 +11881,14,109,130,42,49,49 +11882,14,109,131,124,50,50 +11883,14,109,132,42,47,47 +11884,14,109,133,124,50,50 +11885,14,109,134,42,47,47 +11886,14,110,123,42,47,47 +11887,14,110,124,42,48,48 +11888,14,110,125,42,49,49 +11889,14,110,126,42,50,50 +11890,14,110,127,42,48,48 +11891,14,110,128,215,50,50 +11892,14,110,129,124,48,48 +11893,14,110,130,42,49,49 +11894,14,110,131,124,50,50 +11895,14,110,132,42,47,47 +11896,14,110,133,124,50,50 +11897,14,110,134,42,47,47 +11898,14,111,123,42,47,47 +11899,14,111,124,42,48,48 +11900,14,111,125,42,49,49 +11901,14,111,126,42,50,50 +11902,14,111,127,42,48,48 +11903,14,111,128,215,51,51 +11904,14,111,129,124,49,49 +11905,14,111,130,42,49,49 +11906,14,111,131,124,51,51 +11907,14,111,132,42,47,47 +11908,14,111,133,124,51,51 +11909,14,111,134,42,47,47 +11910,14,112,123,42,47,47 +11911,14,112,124,42,48,48 +11912,14,112,125,42,49,49 +11913,14,112,126,42,50,50 +11914,14,112,127,42,48,48 +11915,14,112,128,215,51,51 +11916,14,112,129,124,49,49 +11917,14,112,130,42,49,49 +11918,14,112,131,124,51,51 +11919,14,112,132,42,47,47 +11920,14,112,133,124,51,51 +11921,14,112,134,42,47,47 +11922,14,113,123,436,18,18 +11923,14,113,124,74,18,18 +11924,14,113,125,74,17,17 +11925,14,113,126,41,19,19 +11926,14,113,127,436,20,20 +11927,14,113,128,95,20,20 +11928,14,113,129,74,19,19 +11929,14,113,130,74,20,20 +11930,14,113,131,41,17,17 +11931,14,113,131,74,17,17 +11932,14,113,131,74,17,17 +11933,14,113,131,74,17,17 +11934,14,113,131,74,17,17 +11935,14,113,131,27,17,17 +11936,14,113,132,95,18,18 +11937,14,113,132,95,18,18 +11938,14,113,132,95,18,18 +11939,14,113,132,95,18,18 +11940,14,113,132,95,18,18 +11941,14,113,132,27,18,18 +11942,14,113,133,41,17,17 +11943,14,113,133,74,17,17 +11944,14,113,134,95,18,18 +11945,14,114,123,436,18,18 +11946,14,114,124,74,18,18 +11947,14,114,125,443,17,17 +11948,14,114,126,41,19,19 +11949,14,114,127,436,20,20 +11950,14,114,128,95,20,20 +11951,14,114,129,443,19,19 +11952,14,114,130,74,20,20 +11953,14,114,131,443,20,20 +11954,14,114,131,443,20,20 +11955,14,114,131,443,20,20 +11956,14,114,131,443,20,20 +11957,14,114,131,443,20,20 +11958,14,114,131,27,20,20 +11959,14,114,132,95,18,18 +11960,14,114,132,95,18,18 +11961,14,114,132,95,18,18 +11962,14,114,132,95,18,18 +11963,14,114,132,95,18,18 +11964,14,114,132,27,18,18 +11965,14,114,133,443,20,20 +11966,14,114,134,95,18,18 +11967,14,115,123,74,23,23 +11968,14,115,124,74,22,22 +11969,14,115,125,74,21,21 +11970,14,115,126,74,23,23 +11971,14,115,127,74,23,23 +11972,14,115,128,74,23,23 +11973,14,115,129,74,23,23 +11974,14,115,130,74,23,23 +11975,14,115,131,74,23,23 +11976,14,115,132,449,22,22 +11977,14,115,133,74,23,23 +11978,14,115,134,449,24,24 +11979,14,116,123,74,24,24 +11980,14,116,124,74,23,23 +11981,14,116,125,74,22,22 +11982,14,116,126,74,24,24 +11983,14,116,127,74,24,24 +11984,14,116,128,74,24,24 +11985,14,116,129,74,24,24 +11986,14,116,130,449,24,24 +11987,14,116,131,74,24,24 +11988,14,116,132,449,23,23 +11989,14,116,133,74,24,24 +11990,14,116,134,449,25,25 +11991,14,117,123,74,25,25 +11992,14,117,124,74,24,24 +11993,14,117,125,74,23,23 +11994,14,117,126,74,25,25 +11995,14,117,127,74,25,25 +11996,14,117,128,449,25,25 +11997,14,117,129,74,25,25 +11998,14,117,130,449,25,25 +11999,14,117,131,74,25,25 +12000,14,117,132,449,24,24 +12001,14,117,133,74,25,25 +12002,14,117,134,449,26,26 +12003,14,118,123,172,21,21 +12004,14,118,124,315,22,22 +12005,14,118,125,397,22,22 +12006,14,118,125,397,22,22 +12007,14,118,125,402,22,22 +12008,14,118,126,402,23,23 +12009,14,118,126,397,23,23 +12010,14,118,126,402,23,23 +12011,14,118,127,315,23,23 +12012,14,118,128,397,24,24 +12013,14,118,129,25,22,22 +12014,14,118,130,172,22,22 +12015,14,118,131,25,24,24 +12016,14,118,132,172,22,22 +12017,14,118,133,25,24,24 +12018,14,118,134,172,22,22 +12019,14,119,150,278,20,30 +12020,14,119,151,72,20,30 +12021,14,119,152,279,20,40 +12022,14,119,153,279,20,40 +12023,14,119,154,73,20,40 +12024,14,119,135,129,4,6 +12025,14,119,136,129,3,7 +12026,14,119,137,129,5,10 +12027,14,119,138,129,5,10 +12028,14,119,139,129,5,15 +12029,14,119,140,129,15,20 +12030,14,119,141,456,15,20 +12031,14,119,142,129,10,25 +12032,14,119,143,456,10,25 +12033,14,119,144,456,10,25 +12034,14,119,145,130,30,55 +12035,14,119,146,457,30,40 +12036,14,119,147,211,20,50 +12037,14,119,148,457,40,55 +12038,14,119,149,457,40,55 +12039,14,120,123,74,31,31 +12040,14,120,124,75,32,32 +12041,14,120,125,41,30,30 +12042,14,120,126,42,32,32 +12043,14,120,127,74,32,32 +12044,14,120,128,75,33,33 +12045,14,120,129,95,31,31 +12046,14,120,130,95,33,33 +12047,14,120,131,74,30,30 +12048,14,120,132,75,31,31 +12049,14,120,133,74,30,30 +12050,14,120,134,75,31,31 +12051,14,121,123,75,31,31 +12052,14,121,124,75,32,32 +12053,14,121,125,42,30,30 +12054,14,121,126,42,32,32 +12055,14,121,127,75,32,32 +12056,14,121,128,75,33,33 +12057,14,121,129,95,31,31 +12058,14,121,130,95,33,33 +12059,14,121,131,75,30,30 +12060,14,121,131,303,30,30 +12061,14,121,131,302,30,30 +12062,14,121,131,75,30,30 +12063,14,121,131,75,30,30 +12064,14,121,131,75,30,30 +12065,14,121,132,75,31,31 +12066,14,121,132,303,31,31 +12067,14,121,132,302,31,31 +12068,14,121,132,75,31,31 +12069,14,121,132,75,31,31 +12070,14,121,132,75,31,31 +12071,14,121,133,75,30,30 +12072,14,121,134,75,31,31 +12073,14,122,123,75,31,31 +12074,14,122,124,75,32,32 +12075,14,122,125,42,30,30 +12076,14,122,126,42,32,32 +12077,14,122,127,75,32,32 +12078,14,122,128,75,33,33 +12079,14,122,129,95,31,31 +12080,14,122,130,95,33,33 +12081,14,122,131,75,30,30 +12082,14,122,131,303,30,30 +12083,14,122,131,302,30,30 +12084,14,122,131,75,30,30 +12085,14,122,131,75,30,30 +12086,14,122,131,75,30,30 +12087,14,122,132,75,31,31 +12088,14,122,132,303,31,31 +12089,14,122,132,302,31,31 +12090,14,122,132,75,31,31 +12091,14,122,132,75,31,31 +12092,14,122,132,75,31,31 +12093,14,122,133,75,30,30 +12094,14,122,134,75,31,31 +12095,14,123,123,95,32,32 +12096,14,123,124,75,33,33 +12097,14,123,125,42,31,31 +12098,14,123,126,42,33,33 +12099,14,123,127,75,33,33 +12100,14,123,128,75,34,34 +12101,14,123,129,208,33,33 +12102,14,123,130,208,35,35 +12103,14,123,131,75,31,31 +12104,14,123,131,303,31,31 +12105,14,123,131,302,31,31 +12106,14,123,131,75,31,31 +12107,14,123,131,75,31,31 +12108,14,123,131,75,31,31 +12109,14,123,132,75,32,32 +12110,14,123,132,303,32,32 +12111,14,123,132,302,32,32 +12112,14,123,132,75,32,32 +12113,14,123,132,75,32,32 +12114,14,123,132,75,32,32 +12115,14,123,133,75,31,31 +12116,14,123,134,75,32,32 +12117,14,124,123,95,32,32 +12118,14,124,124,75,33,33 +12119,14,124,125,42,31,31 +12120,14,124,126,42,33,33 +12121,14,124,127,75,33,33 +12122,14,124,128,75,34,34 +12123,14,124,129,208,33,33 +12124,14,124,130,208,35,35 +12125,14,124,131,75,31,31 +12126,14,124,131,303,31,31 +12127,14,124,131,302,31,31 +12128,14,124,131,75,31,31 +12129,14,124,131,75,31,31 +12130,14,124,131,75,31,31 +12131,14,124,132,75,32,32 +12132,14,124,132,303,32,32 +12133,14,124,132,302,32,32 +12134,14,124,132,75,32,32 +12135,14,124,132,75,32,32 +12136,14,124,132,75,32,32 +12137,14,124,133,75,31,31 +12138,14,124,134,75,32,32 +12139,14,125,123,208,32,32 +12140,14,125,123,95,32,32 +12141,14,125,124,75,33,33 +12142,14,125,125,42,31,31 +12143,14,125,126,42,33,33 +12144,14,125,127,75,33,33 +12145,14,125,128,75,34,34 +12146,14,125,129,208,33,33 +12147,14,125,130,208,35,35 +12148,14,125,131,75,31,31 +12149,14,125,131,303,31,31 +12150,14,125,131,302,31,31 +12151,14,125,131,75,31,31 +12152,14,125,131,75,31,31 +12153,14,125,131,75,31,31 +12154,14,125,132,75,32,32 +12155,14,125,132,303,32,32 +12156,14,125,132,302,32,32 +12157,14,125,132,75,32,32 +12158,14,125,132,75,32,32 +12159,14,125,132,75,32,32 +12160,14,125,133,75,31,31 +12161,14,125,134,75,32,32 +12162,14,126,123,92,14,14 +12163,14,126,124,92,15,15 +12164,14,126,125,92,14,14 +12165,14,126,126,92,15,15 +12166,14,126,127,92,16,16 +12167,14,126,128,92,17,17 +12168,14,126,129,92,16,16 +12169,14,126,130,92,17,17 +12170,14,126,131,92,17,17 +12171,14,126,132,92,17,17 +12172,14,126,133,92,17,17 +12173,14,126,134,92,17,17 +12174,14,127,123,92,14,14 +12175,14,127,124,92,15,15 +12176,14,127,125,92,14,14 +12177,14,127,126,92,15,15 +12178,14,127,127,92,16,16 +12179,14,127,128,92,17,17 +12180,14,127,129,92,16,16 +12181,14,127,130,92,17,17 +12182,14,127,131,92,17,17 +12183,14,127,132,92,17,17 +12184,14,127,133,92,17,17 +12185,14,127,134,92,17,17 +12186,14,128,123,92,14,14 +12187,14,128,124,92,15,15 +12188,14,128,125,92,14,14 +12189,14,128,126,92,15,15 +12190,14,128,127,92,16,16 +12191,14,128,128,92,17,17 +12192,14,128,129,92,16,16 +12193,14,128,130,92,17,17 +12194,14,128,131,92,17,17 +12195,14,128,132,92,17,17 +12196,14,128,133,92,17,17 +12197,14,128,134,92,17,17 +12198,14,129,123,92,14,14 +12199,14,129,124,92,15,15 +12200,14,129,125,92,14,14 +12201,14,129,126,92,15,15 +12202,14,129,127,92,16,16 +12203,14,129,128,92,17,17 +12204,14,129,129,92,16,16 +12205,14,129,130,92,17,17 +12206,14,129,131,92,17,17 +12207,14,129,132,92,17,17 +12208,14,129,133,92,17,17 +12209,14,129,134,92,17,17 +12210,14,130,123,92,14,14 +12211,14,130,124,92,15,15 +12212,14,130,125,92,14,14 +12213,14,130,126,92,15,15 +12214,14,130,127,92,16,16 +12215,14,130,128,92,17,17 +12216,14,130,129,92,16,16 +12217,14,130,130,92,17,17 +12218,14,130,131,92,17,17 +12219,14,130,132,92,17,17 +12220,14,130,133,92,17,17 +12221,14,130,134,92,17,17 +12222,14,131,123,92,14,14 +12223,14,131,124,92,15,15 +12224,14,131,125,92,14,14 +12225,14,131,126,92,15,15 +12226,14,131,127,92,16,16 +12227,14,131,128,92,17,17 +12228,14,131,129,92,16,16 +12229,14,131,130,92,17,17 +12230,14,131,131,92,17,17 +12231,14,131,132,92,17,17 +12232,14,131,133,92,17,17 +12233,14,131,134,92,17,17 +12234,14,132,123,92,14,14 +12235,14,132,124,92,15,15 +12236,14,132,125,92,14,14 +12237,14,132,126,92,15,15 +12238,14,132,127,92,16,16 +12239,14,132,128,92,17,17 +12240,14,132,129,92,16,16 +12241,14,132,130,92,17,17 +12242,14,132,131,92,17,17 +12243,14,132,132,92,17,17 +12244,14,132,133,92,17,17 +12245,14,132,134,92,17,17 +12246,14,133,123,92,14,14 +12247,14,133,124,92,15,15 +12248,14,133,125,92,14,14 +12249,14,133,126,92,15,15 +12250,14,133,127,92,16,16 +12251,14,133,128,92,17,17 +12252,14,133,129,92,16,16 +12253,14,133,130,92,17,17 +12254,14,133,131,92,17,17 +12255,14,133,131,94,17,17 +12256,14,133,131,94,17,17 +12257,14,133,131,94,17,17 +12258,14,133,131,94,17,17 +12259,14,133,131,94,17,17 +12260,14,133,132,92,17,17 +12261,14,133,133,92,17,17 +12262,14,133,134,92,17,17 +12263,14,134,123,92,14,14 +12264,14,134,124,92,15,15 +12265,14,134,125,92,14,14 +12266,14,134,126,92,15,15 +12267,14,134,127,92,16,16 +12268,14,134,128,92,17,17 +12269,14,134,129,92,16,16 +12270,14,134,130,92,17,17 +12271,14,134,131,92,17,17 +12272,14,134,132,92,17,17 +12273,14,134,133,92,17,17 +12274,14,134,134,92,17,17 +12275,14,135,123,396,2,2 +12276,14,135,124,399,2,2 +12277,14,135,125,396,3,3 +12278,14,135,125,396,3,3 +12279,14,135,125,399,3,3 +12280,14,135,126,399,3,3 +12281,14,135,127,396,3,3 +12282,14,135,127,202,3,3 +12283,14,135,128,399,3,3 +12284,14,135,128,202,3,3 +12285,14,135,129,396,4,4 +12286,14,135,130,399,4,4 +12287,14,135,131,396,4,4 +12288,14,135,131,338,4,4 +12289,14,135,131,337,4,4 +12290,14,135,131,396,4,4 +12291,14,135,131,396,4,4 +12292,14,135,131,396,4,4 +12293,14,135,132,399,4,4 +12294,14,135,132,338,4,4 +12295,14,135,132,337,4,4 +12296,14,135,132,399,4,4 +12297,14,135,132,399,4,4 +12298,14,135,132,399,4,4 +12299,14,135,133,396,4,4 +12300,14,135,133,202,4,4 +12301,14,135,134,399,4,4 +12302,14,135,134,202,4,4 +12303,14,135,150,54,20,30 +12304,14,135,151,54,20,30 +12305,14,135,152,55,20,40 +12306,14,135,153,55,20,40 +12307,14,135,154,55,20,40 +12308,14,135,135,129,4,6 +12309,14,135,136,129,3,7 +12310,14,135,137,129,5,10 +12311,14,135,138,129,5,10 +12312,14,135,139,129,5,15 +12313,14,135,140,129,15,20 +12314,14,135,141,118,15,20 +12315,14,135,142,129,10,25 +12316,14,135,143,119,25,35 +12317,14,135,144,119,25,35 +12318,14,135,145,130,30,40 +12319,14,135,146,119,30,40 +12320,14,135,147,130,40,55 +12321,14,135,148,119,40,55 +12322,14,135,149,119,40,55 +12323,14,136,123,396,2,2 +12324,14,136,124,399,2,2 +12325,14,136,125,396,3,3 +12326,14,136,126,399,3,3 +12327,14,136,127,396,3,3 +12328,14,136,127,202,3,3 +12329,14,136,128,399,3,3 +12330,14,136,128,202,3,3 +12331,14,136,129,396,4,4 +12332,14,136,130,399,4,4 +12333,14,136,131,396,4,4 +12334,14,136,131,338,4,4 +12335,14,136,131,337,4,4 +12336,14,136,131,396,4,4 +12337,14,136,131,396,4,4 +12338,14,136,131,396,4,4 +12339,14,136,132,399,4,4 +12340,14,136,132,338,4,4 +12341,14,136,132,337,4,4 +12342,14,136,132,399,4,4 +12343,14,136,132,399,4,4 +12344,14,136,132,399,4,4 +12345,14,136,133,396,4,4 +12346,14,136,133,202,4,4 +12347,14,136,134,399,4,4 +12348,14,136,134,202,4,4 +12349,14,136,150,54,20,30 +12350,14,136,151,54,20,30 +12351,14,136,152,55,20,40 +12352,14,136,153,55,20,40 +12353,14,136,154,55,20,40 +12354,14,136,135,129,4,6 +12355,14,136,136,129,3,7 +12356,14,136,137,129,5,10 +12357,14,136,138,129,5,10 +12358,14,136,139,129,5,15 +12359,14,136,140,129,15,20 +12360,14,136,141,118,15,20 +12361,14,136,142,129,10,25 +12362,14,136,143,119,25,35 +12363,14,136,144,119,25,35 +12364,14,136,145,130,30,40 +12365,14,136,146,119,30,40 +12366,14,136,147,130,40,55 +12367,14,136,148,119,40,55 +12368,14,136,149,119,40,55 +12369,14,137,123,397,38,38 +12370,14,137,124,400,39,39 +12371,14,137,125,397,40,40 +12372,14,137,126,400,41,41 +12373,14,137,127,55,40,40 +12374,14,137,127,202,40,40 +12375,14,137,128,54,38,38 +12376,14,137,128,202,38,38 +12377,14,137,129,55,41,41 +12378,14,137,130,54,39,39 +12379,14,137,131,397,40,40 +12380,14,137,131,338,40,40 +12381,14,137,131,337,40,40 +12382,14,137,131,397,40,40 +12383,14,137,131,397,40,40 +12384,14,137,131,397,40,40 +12385,14,137,132,400,41,41 +12386,14,137,132,338,41,41 +12387,14,137,132,337,41,41 +12388,14,137,132,400,41,41 +12389,14,137,132,400,41,41 +12390,14,137,132,400,41,41 +12391,14,137,133,397,40,40 +12392,14,137,133,202,40,40 +12393,14,137,134,400,41,41 +12394,14,137,134,202,41,41 +12395,14,137,150,54,20,30 +12396,14,137,151,54,20,30 +12397,14,137,152,55,20,40 +12398,14,137,153,55,20,40 +12399,14,137,154,55,20,40 +12400,14,137,135,129,4,6 +12401,14,137,136,129,3,7 +12402,14,137,137,129,5,10 +12403,14,137,138,129,5,10 +12404,14,137,139,129,5,15 +12405,14,137,140,129,15,20 +12406,14,137,141,118,15,20 +12407,14,137,142,129,10,25 +12408,14,137,143,119,25,35 +12409,14,137,144,119,25,35 +12410,14,137,145,130,30,40 +12411,14,137,146,119,30,40 +12412,14,137,147,130,40,55 +12413,14,137,148,119,40,55 +12414,14,137,149,119,40,55 +12415,14,138,123,459,38,38 +12416,14,138,124,400,39,39 +12417,14,138,125,459,39,39 +12418,14,138,125,459,39,39 +12419,14,138,125,361,39,39 +12420,14,138,126,459,40,40 +12421,14,138,126,459,40,40 +12422,14,138,126,361,40,40 +12423,14,138,127,55,40,40 +12424,14,138,128,215,41,41 +12425,14,138,129,55,39,39 +12426,14,138,130,54,38,38 +12427,14,138,131,459,41,41 +12428,14,138,131,338,41,41 +12429,14,138,131,337,41,41 +12430,14,138,131,216,41,41 +12431,14,138,131,459,41,41 +12432,14,138,131,459,41,41 +12433,14,138,132,400,40,40 +12434,14,138,132,338,40,40 +12435,14,138,132,337,40,40 +12436,14,138,132,216,40,40 +12437,14,138,132,400,40,40 +12438,14,138,132,400,40,40 +12439,14,138,133,459,41,41 +12440,14,138,134,400,40,40 +12441,14,138,150,54,20,30 +12442,14,138,151,54,20,30 +12443,14,138,152,55,20,40 +12444,14,138,153,55,20,40 +12445,14,138,154,55,20,40 +12446,14,138,135,129,4,6 +12447,14,138,136,129,3,7 +12448,14,138,137,129,5,10 +12449,14,138,138,129,5,10 +12450,14,138,139,129,5,15 +12451,14,138,140,129,15,20 +12452,14,138,141,118,15,20 +12453,14,138,142,129,10,25 +12454,14,138,143,119,25,35 +12455,14,138,144,119,25,35 +12456,14,138,145,130,30,40 +12457,14,138,146,119,30,40 +12458,14,138,147,130,40,55 +12459,14,138,148,119,40,55 +12460,14,138,149,119,40,55 +12461,14,139,123,203,26,26 +12462,14,139,124,400,25,25 +12463,14,139,125,397,26,26 +12464,14,139,125,397,26,26 +12465,14,139,125,402,26,26 +12466,14,139,126,402,27,27 +12467,14,139,126,397,27,27 +12468,14,139,126,228,27,27 +12469,14,139,127,397,27,27 +12470,14,139,127,33,27,27 +12471,14,139,128,228,28,28 +12472,14,139,128,30,28,28 +12473,14,139,129,397,28,28 +12474,14,139,130,400,26,26 +12475,14,139,131,203,28,28 +12476,14,139,132,400,27,27 +12477,14,139,133,203,28,28 +12478,14,139,133,33,28,28 +12479,14,139,134,400,27,27 +12480,14,139,134,30,27,27 +12481,14,140,123,459,33,33 +12482,14,140,124,220,32,32 +12483,14,140,125,215,33,33 +12484,14,140,125,215,33,33 +12485,14,140,125,361,33,33 +12486,14,140,126,459,32,32 +12487,14,140,126,459,32,32 +12488,14,140,126,361,32,32 +12489,14,140,127,215,35,35 +12490,14,140,128,220,34,34 +12491,14,140,129,459,34,34 +12492,14,140,130,220,32,32 +12493,14,140,131,215,35,35 +12494,14,140,131,215,35,35 +12495,14,140,131,215,35,35 +12496,14,140,131,217,35,35 +12497,14,140,131,215,35,35 +12498,14,140,131,215,35,35 +12499,14,140,132,459,35,35 +12500,14,140,132,459,35,35 +12501,14,140,132,459,35,35 +12502,14,140,132,217,35,35 +12503,14,140,132,459,35,35 +12504,14,140,132,459,35,35 +12505,14,140,133,215,35,35 +12506,14,140,134,459,35,35 +12507,14,141,123,396,2,2 +12508,14,141,123,84,2,2 +12509,14,141,124,399,2,2 +12510,14,141,124,84,2,2 +12511,14,141,125,396,3,3 +12512,14,141,125,396,3,3 +12513,14,141,125,401,3,3 +12514,14,141,126,401,3,3 +12515,14,141,126,399,3,3 +12516,14,141,126,399,3,3 +12517,14,141,127,396,3,3 +12518,14,141,127,32,3,3 +12519,14,141,128,399,3,3 +12520,14,141,128,29,3,3 +12521,14,141,129,396,3,3 +12522,14,141,130,399,3,3 +12523,14,141,131,396,2,2 +12524,14,141,131,396,2,2 +12525,14,141,131,396,2,2 +12526,14,141,131,396,2,2 +12527,14,141,131,58,2,2 +12528,14,141,131,396,2,2 +12529,14,141,132,399,2,2 +12530,14,141,132,399,2,2 +12531,14,141,132,399,2,2 +12532,14,141,132,399,2,2 +12533,14,141,132,58,2,2 +12534,14,141,132,399,2,2 +12535,14,141,133,396,2,2 +12536,14,141,133,32,2,2 +12537,14,141,134,399,2,2 +12538,14,141,134,29,2,2 +12539,14,142,123,403,3,3 +12540,14,142,123,263,3,3 +12541,14,142,124,399,3,3 +12542,14,142,124,263,3,3 +12543,14,142,125,396,4,4 +12544,14,142,125,396,4,4 +12545,14,142,125,401,4,4 +12546,14,142,126,401,3,3 +12547,14,142,126,399,3,3 +12548,14,142,126,399,3,3 +12549,14,142,127,403,4,4 +12550,14,142,127,161,4,4 +12551,14,142,128,399,3,3 +12552,14,142,128,161,3,3 +12553,14,142,129,396,4,4 +12554,14,142,130,399,4,4 +12555,14,142,131,396,2,2 +12556,14,142,131,396,2,2 +12557,14,142,131,396,2,2 +12558,14,142,131,396,2,2 +12559,14,142,131,58,2,2 +12560,14,142,131,396,2,2 +12561,14,142,132,399,2,2 +12562,14,142,132,399,2,2 +12563,14,142,132,399,2,2 +12564,14,142,132,399,2,2 +12565,14,142,132,58,2,2 +12566,14,142,132,399,2,2 +12567,14,142,133,396,2,2 +12568,14,142,133,161,2,2 +12569,14,142,134,399,2,2 +12570,14,142,134,161,2,2 +12571,14,143,123,396,4,4 +12572,14,143,123,104,4,4 +12573,14,143,124,403,4,4 +12574,14,143,124,104,4,4 +12575,14,143,125,396,5,5 +12576,14,143,125,396,5,5 +12577,14,143,125,401,5,5 +12578,14,143,126,401,4,4 +12579,14,143,126,399,4,4 +12580,14,143,126,41,4,4 +12581,14,143,127,399,5,5 +12582,14,143,128,63,4,4 +12583,14,143,129,63,5,5 +12584,14,143,130,403,5,5 +12585,14,143,131,396,6,6 +12586,14,143,131,273,6,6 +12587,14,143,131,270,6,6 +12588,14,143,131,204,6,6 +12589,14,143,131,396,6,6 +12590,14,143,131,396,6,6 +12591,14,143,132,399,6,6 +12592,14,143,132,273,6,6 +12593,14,143,132,270,6,6 +12594,14,143,132,204,6,6 +12595,14,143,132,399,6,6 +12596,14,143,132,399,6,6 +12597,14,143,133,396,7,7 +12598,14,143,134,399,7,7 +12599,14,143,150,54,20,30 +12600,14,143,151,54,20,30 +12601,14,143,152,55,20,40 +12602,14,143,153,55,20,40 +12603,14,143,154,55,20,40 +12604,14,143,135,129,4,6 +12605,14,143,136,129,3,7 +12606,14,143,137,129,5,10 +12607,14,143,138,129,5,10 +12608,14,143,139,129,5,15 +12609,14,143,140,129,15,20 +12610,14,143,141,118,15,20 +12611,14,143,142,129,10,25 +12612,14,143,143,118,10,25 +12613,14,143,144,118,10,25 +12614,14,143,145,130,30,40 +12615,14,143,146,119,30,40 +12616,14,143,147,130,40,55 +12617,14,143,148,119,40,55 +12618,14,143,149,119,40,55 +12619,14,144,123,396,4,4 +12620,14,144,124,399,4,4 +12621,14,144,125,265,4,4 +12622,14,144,125,265,4,4 +12623,14,144,125,401,4,4 +12624,14,144,126,401,3,3 +12625,14,144,126,406,3,3 +12626,14,144,126,41,3,3 +12627,14,144,127,406,4,4 +12628,14,144,128,403,4,4 +12629,14,144,129,406,5,5 +12630,14,144,130,403,5,5 +12631,14,144,131,396,5,5 +12632,14,144,131,273,5,5 +12633,14,144,131,270,5,5 +12634,14,144,131,204,5,5 +12635,14,144,131,10,5,5 +12636,14,144,131,13,5,5 +12637,14,144,132,399,5,5 +12638,14,144,132,273,5,5 +12639,14,144,132,270,5,5 +12640,14,144,132,204,5,5 +12641,14,144,132,10,5,5 +12642,14,144,132,13,5,5 +12643,14,144,133,396,6,6 +12644,14,144,134,399,6,6 +12645,14,144,150,54,20,30 +12646,14,144,151,54,20,30 +12647,14,144,152,55,20,40 +12648,14,144,153,55,20,40 +12649,14,144,154,55,20,40 +12650,14,144,135,129,4,6 +12651,14,144,136,129,3,7 +12652,14,144,137,129,5,10 +12653,14,144,138,129,5,10 +12654,14,144,139,129,5,15 +12655,14,144,140,129,15,20 +12656,14,144,141,118,15,20 +12657,14,144,142,129,10,25 +12658,14,144,143,118,10,25 +12659,14,144,144,118,10,25 +12660,14,144,145,130,30,40 +12661,14,144,146,119,30,40 +12662,14,144,147,130,40,55 +12663,14,144,148,119,40,55 +12664,14,144,149,119,40,55 +12665,14,145,123,396,9,9 +12666,14,145,124,399,9,9 +12667,14,145,125,265,9,9 +12668,14,145,125,265,9,9 +12669,14,145,125,401,9,9 +12670,14,145,126,401,8,8 +12671,14,145,126,406,8,8 +12672,14,145,126,41,8,8 +12673,14,145,127,406,9,9 +12674,14,145,127,191,9,9 +12675,14,145,128,403,9,9 +12676,14,145,128,191,9,9 +12677,14,145,129,406,10,10 +12678,14,145,130,403,10,10 +12679,14,145,131,396,10,10 +12680,14,145,131,273,10,10 +12681,14,145,131,270,10,10 +12682,14,145,131,204,10,10 +12683,14,145,131,10,10,10 +12684,14,145,131,13,10,10 +12685,14,145,132,399,10,10 +12686,14,145,132,273,10,10 +12687,14,145,132,270,10,10 +12688,14,145,132,204,10,10 +12689,14,145,132,10,10,10 +12690,14,145,132,13,10,10 +12691,14,145,133,396,11,11 +12692,14,145,133,191,11,11 +12693,14,145,134,399,11,11 +12694,14,145,134,191,11,11 +12695,14,145,150,54,20,30 +12696,14,145,151,54,20,30 +12697,14,145,152,55,20,40 +12698,14,145,153,55,20,40 +12699,14,145,154,55,20,40 +12700,14,145,135,129,4,6 +12701,14,145,136,129,3,7 +12702,14,145,137,129,5,10 +12703,14,145,138,129,5,10 +12704,14,145,139,129,5,15 +12705,14,145,140,129,15,20 +12706,14,145,141,118,15,20 +12707,14,145,142,129,10,25 +12708,14,145,143,118,10,25 +12709,14,145,144,118,10,25 +12710,14,145,145,130,30,40 +12711,14,145,146,119,30,40 +12712,14,145,147,130,40,55 +12713,14,145,148,119,40,55 +12714,14,145,149,119,40,55 +12715,14,146,123,422,10,10 +12716,14,146,124,422,11,11 +12717,14,146,125,418,10,10 +12718,14,146,126,422,9,9 +12719,14,146,127,399,10,10 +12720,14,146,127,187,10,10 +12721,14,146,128,422,11,11 +12722,14,146,128,187,11,11 +12723,14,146,129,417,9,9 +12724,14,146,130,417,11,11 +12725,14,146,131,418,11,11 +12726,14,146,132,422,12,12 +12727,14,146,133,418,11,11 +12728,14,146,133,187,11,11 +12729,14,146,134,422,12,12 +12730,14,146,134,187,12,12 +12731,14,146,150,422,20,30 +12732,14,146,151,72,20,30 +12733,14,146,152,423,20,40 +12734,14,146,153,423,20,40 +12735,14,146,154,73,20,40 +12736,14,146,135,129,4,6 +12737,14,146,136,129,3,7 +12738,14,146,137,129,5,10 +12739,14,146,138,129,5,10 +12740,14,146,139,129,5,15 +12741,14,146,140,129,15,20 +12742,14,146,141,456,15,20 +12743,14,146,142,129,10,25 +12744,14,146,143,456,10,25 +12745,14,146,144,456,10,25 +12746,14,146,145,130,30,55 +12747,14,146,146,457,30,40 +12748,14,146,147,90,20,50 +12749,14,146,148,457,40,55 +12750,14,146,149,457,40,55 +12751,14,147,123,399,12,12 +12752,14,147,124,406,12,12 +12753,14,147,125,265,13,13 +12754,14,147,125,265,13,13 +12755,14,147,125,401,13,13 +12756,14,147,126,401,12,12 +12757,14,147,126,406,12,12 +12758,14,147,126,163,12,12 +12759,14,147,127,266,14,14 +12760,14,147,127,79,14,14 +12761,14,147,128,268,14,14 +12762,14,147,128,79,14,14 +12763,14,147,129,399,13,13 +12764,14,147,130,399,14,14 +12765,14,147,131,406,13,13 +12766,14,147,131,406,13,13 +12767,14,147,131,270,13,13 +12768,14,147,131,406,13,13 +12769,14,147,131,406,13,13 +12770,14,147,131,406,13,13 +12771,14,147,132,406,14,14 +12772,14,147,132,406,14,14 +12773,14,147,132,270,14,14 +12774,14,147,132,406,14,14 +12775,14,147,132,406,14,14 +12776,14,147,132,406,14,14 +12777,14,147,133,267,15,15 +12778,14,147,133,79,15,15 +12779,14,147,134,269,15,15 +12780,14,147,134,79,15,15 +12781,14,147,150,54,20,30 +12782,14,147,151,54,20,30 +12783,14,147,152,55,20,40 +12784,14,147,153,55,20,40 +12785,14,147,154,55,20,40 +12786,14,147,135,129,4,6 +12787,14,147,136,129,3,7 +12788,14,147,137,129,5,10 +12789,14,147,138,129,5,10 +12790,14,147,139,129,5,15 +12791,14,147,140,129,15,20 +12792,14,147,141,339,15,20 +12793,14,147,142,129,10,25 +12794,14,147,143,339,10,25 +12795,14,147,144,339,10,25 +12796,14,147,145,130,30,40 +12797,14,147,146,340,30,40 +12798,14,147,147,130,40,55 +12799,14,147,148,340,40,55 +12800,14,147,149,340,40,55 +12801,14,148,123,77,16,16 +12802,14,148,123,246,16,16 +12803,14,148,124,74,16,16 +12804,14,148,124,246,16,16 +12805,14,148,125,207,18,18 +12806,14,148,125,207,18,18 +12807,14,148,125,402,18,18 +12808,14,148,126,402,17,17 +12809,14,148,126,77,17,17 +12810,14,148,126,41,17,17 +12811,14,148,127,207,16,16 +12812,14,148,127,343,16,16 +12813,14,148,128,66,17,17 +12814,14,148,128,343,17,17 +12815,14,148,129,66,18,18 +12816,14,148,130,74,18,18 +12817,14,148,131,66,19,19 +12818,14,148,132,74,18,18 +12819,14,148,133,66,19,19 +12820,14,148,133,343,19,19 +12821,14,148,134,74,18,18 +12822,14,148,134,343,18,18 +12823,14,149,123,66,7,7 +12824,14,149,123,231,7,7 +12825,14,149,124,74,5,5 +12826,14,149,124,231,5,5 +12827,14,149,125,77,6,6 +12828,14,149,125,77,6,6 +12829,14,149,125,401,6,6 +12830,14,149,126,401,5,5 +12831,14,149,126,66,5,5 +12832,14,149,126,41,5,5 +12833,14,149,127,77,5,5 +12834,14,149,127,234,5,5 +12835,14,149,128,66,6,6 +12836,14,149,128,234,6,6 +12837,14,149,129,66,8,8 +12838,14,149,130,74,6,6 +12839,14,149,131,77,7,7 +12840,14,149,132,74,7,7 +12841,14,149,133,77,7,7 +12842,14,149,133,234,7,7 +12843,14,149,134,74,7,7 +12844,14,149,134,234,7,7 +12845,14,150,123,406,18,18 +12846,14,150,123,206,18,18 +12847,14,150,124,399,18,18 +12848,14,150,124,206,18,18 +12849,14,150,125,406,19,19 +12850,14,150,125,406,19,19 +12851,14,150,125,41,19,19 +12852,14,150,126,280,17,17 +12853,14,150,127,315,19,19 +12854,14,150,127,235,19,19 +12855,14,150,128,400,18,18 +12856,14,150,128,235,18,18 +12857,14,150,129,280,18,18 +12858,14,150,130,400,19,19 +12859,14,150,131,315,20,20 +12860,14,150,131,335,20,20 +12861,14,150,131,336,20,20 +12862,14,150,131,315,20,20 +12863,14,150,131,315,20,20 +12864,14,150,131,315,20,20 +12865,14,150,132,400,20,20 +12866,14,150,132,335,20,20 +12867,14,150,132,336,20,20 +12868,14,150,132,400,20,20 +12869,14,150,132,400,20,20 +12870,14,150,132,400,20,20 +12871,14,150,133,315,20,20 +12872,14,150,133,235,20,20 +12873,14,150,134,400,20,20 +12874,14,150,134,235,20,20 +12875,14,150,150,54,20,20 +12876,14,150,151,54,20,20 +12877,14,150,152,55,20,40 +12878,14,150,153,55,20,40 +12879,14,150,154,55,20,40 +12880,14,150,135,129,4,6 +12881,14,150,136,129,3,7 +12882,14,150,137,129,5,10 +12883,14,150,138,129,5,10 +12884,14,150,139,129,5,15 +12885,14,150,140,129,15,20 +12886,14,150,141,118,15,20 +12887,14,150,142,129,10,25 +12888,14,150,143,118,10,25 +12889,14,150,144,118,10,25 +12890,14,150,145,130,30,40 +12891,14,150,146,119,30,40 +12892,14,150,147,130,40,55 +12893,14,150,148,119,40,55 +12894,14,150,149,119,40,55 +12895,14,151,123,315,19,19 +12896,14,151,123,209,19,19 +12897,14,151,124,400,18,18 +12898,14,151,124,209,18,18 +12899,14,151,125,397,19,19 +12900,14,151,125,397,19,19 +12901,14,151,125,41,19,19 +12902,14,151,126,280,17,17 +12903,14,151,126,280,17,17 +12904,14,151,126,355,17,17 +12905,14,151,127,397,18,18 +12906,14,151,127,281,18,18 +12907,14,151,128,400,19,19 +12908,14,151,128,281,19,19 +12909,14,151,129,280,18,18 +12910,14,151,130,315,20,20 +12911,14,151,131,280,19,19 +12912,14,151,131,280,19,19 +12913,14,151,131,280,19,19 +12914,14,151,131,280,19,19 +12915,14,151,131,280,19,19 +12916,14,151,131,37,19,19 +12917,14,151,132,113,17,17 +12918,14,151,132,113,17,17 +12919,14,151,132,113,17,17 +12920,14,151,132,113,17,17 +12921,14,151,132,113,17,17 +12922,14,151,132,37,17,17 +12923,14,151,133,280,19,19 +12924,14,151,133,281,19,19 +12925,14,151,134,113,19,19 +12926,14,151,134,281,19,19 +12927,14,151,150,54,20,30 +12928,14,151,151,54,20,30 +12929,14,151,152,55,20,40 +12930,14,151,153,55,20,40 +12931,14,151,154,55,20,40 +12932,14,151,135,129,4,6 +12933,14,151,136,129,3,7 +12934,14,151,137,129,5,10 +12935,14,151,138,129,5,10 +12936,14,151,139,129,5,15 +12937,14,151,140,129,15,20 +12938,14,151,141,118,15,20 +12939,14,151,142,129,10,25 +12940,14,151,143,118,10,25 +12941,14,151,144,118,10,25 +12942,14,151,145,130,30,40 +12943,14,151,146,119,30,40 +12944,14,151,147,130,40,55 +12945,14,151,148,119,40,55 +12946,14,151,149,119,40,55 +12947,14,152,123,92,18,18 +12948,14,152,124,41,17,17 +12949,14,152,125,92,19,19 +12950,14,152,125,92,19,19 +12951,14,152,125,355,19,19 +12952,14,152,126,92,17,17 +12953,14,152,126,92,17,17 +12954,14,152,126,355,17,17 +12955,14,152,127,41,18,18 +12956,14,152,128,92,17,17 +12957,14,152,129,41,19,19 +12958,14,152,130,92,20,20 +12959,14,152,131,92,20,20 +12960,14,152,132,92,20,20 +12961,14,152,133,92,20,20 +12962,14,152,134,92,20,20 +12963,14,153,123,92,18,18 +12964,14,153,124,41,17,17 +12965,14,153,125,92,19,19 +12966,14,153,125,92,19,19 +12967,14,153,125,355,19,19 +12968,14,153,126,92,17,17 +12969,14,153,126,92,17,17 +12970,14,153,126,355,17,17 +12971,14,153,127,41,18,18 +12972,14,153,128,92,17,17 +12973,14,153,129,41,19,19 +12974,14,153,130,92,20,20 +12975,14,153,131,92,20,20 +12976,14,153,132,92,20,20 +12977,14,153,133,92,20,20 +12978,14,153,134,92,20,20 +12979,14,154,123,92,19,19 +12980,14,154,124,41,18,18 +12981,14,154,125,92,20,20 +12982,14,154,125,92,20,20 +12983,14,154,125,355,20,20 +12984,14,154,126,92,18,18 +12985,14,154,126,92,18,18 +12986,14,154,126,355,18,18 +12987,14,154,127,41,19,19 +12988,14,154,128,92,18,18 +12989,14,154,129,41,20,20 +12990,14,154,130,92,21,21 +12991,14,154,131,92,21,21 +12992,14,154,132,92,21,21 +12993,14,154,133,92,21,21 +12994,14,154,134,42,21,21 +12995,14,154,134,92,21,21 +12996,14,155,123,92,19,19 +12997,14,155,124,41,18,18 +12998,14,155,125,92,20,20 +12999,14,155,125,92,20,20 +13000,14,155,125,355,20,20 +13001,14,155,126,92,18,18 +13002,14,155,126,92,18,18 +13003,14,155,126,355,18,18 +13004,14,155,127,41,19,19 +13005,14,155,128,92,18,18 +13006,14,155,129,41,20,20 +13007,14,155,130,92,21,21 +13008,14,155,131,92,21,21 +13009,14,155,132,42,21,21 +13010,14,155,132,92,21,21 +13011,14,155,132,92,21,21 +13012,14,155,132,92,21,21 +13013,14,155,132,92,21,21 +13014,14,155,132,92,21,21 +13015,14,155,133,92,21,21 +13016,14,155,134,42,21,21 +13017,14,155,134,92,21,21 +13018,14,156,123,92,20,20 +13019,14,156,124,41,19,19 +13020,14,156,125,92,21,21 +13021,14,156,125,92,21,21 +13022,14,156,125,355,21,21 +13023,14,156,126,92,19,19 +13024,14,156,126,92,19,19 +13025,14,156,126,355,19,19 +13026,14,156,127,41,20,20 +13027,14,156,128,92,19,19 +13028,14,156,129,41,21,21 +13029,14,156,130,42,22,22 +13030,14,156,131,92,22,22 +13031,14,156,132,42,22,22 +13032,14,156,132,92,22,22 +13033,14,156,132,92,22,22 +13034,14,156,132,92,22,22 +13035,14,156,132,92,22,22 +13036,14,156,132,92,22,22 +13037,14,156,133,92,22,22 +13038,14,156,134,42,22,22 +13039,14,156,134,92,22,22 +13040,14,157,123,397,19,19 +13041,14,157,124,74,18,18 +13042,14,157,125,123,21,21 +13043,14,157,125,77,21,21 +13044,14,157,125,164,21,21 +13045,14,157,126,77,20,20 +13046,14,157,126,77,20,20 +13047,14,157,126,163,20,20 +13048,14,157,127,315,20,20 +13049,14,157,127,241,20,20 +13050,14,157,128,77,19,19 +13051,14,157,128,128,19,19 +13052,14,157,129,123,19,19 +13053,14,157,130,315,21,21 +13054,14,157,131,77,21,21 +13055,14,157,131,273,21,21 +13056,14,157,131,77,21,21 +13057,14,157,131,204,21,21 +13058,14,157,131,77,21,21 +13059,14,157,131,77,21,21 +13060,14,157,132,113,19,19 +13061,14,157,132,274,19,19 +13062,14,157,132,113,19,19 +13063,14,157,132,204,19,19 +13064,14,157,132,113,19,19 +13065,14,157,132,113,19,19 +13066,14,157,133,77,21,21 +13067,14,157,133,241,21,21 +13068,14,157,134,113,21,21 +13069,14,157,134,128,21,21 +13070,14,158,123,333,27,27 +13071,14,158,124,400,28,28 +13072,14,158,125,123,27,27 +13073,14,158,125,333,27,27 +13074,14,158,125,164,27,27 +13075,14,158,126,307,27,27 +13076,14,158,126,307,27,27 +13077,14,158,126,163,27,27 +13078,14,158,127,307,29,29 +13079,14,158,127,371,29,29 +13080,14,158,128,66,28,28 +13081,14,158,128,371,28,28 +13082,14,158,129,123,29,29 +13083,14,158,130,67,29,29 +13084,14,158,131,66,29,29 +13085,14,158,131,335,29,29 +13086,14,158,131,336,29,29 +13087,14,158,131,66,29,29 +13088,14,158,131,66,29,29 +13089,14,158,131,66,29,29 +13090,14,158,132,67,30,30 +13091,14,158,132,335,30,30 +13092,14,158,132,336,30,30 +13093,14,158,132,67,30,30 +13094,14,158,132,67,30,30 +13095,14,158,132,67,30,30 +13096,14,158,133,66,29,29 +13097,14,158,133,371,29,29 +13098,14,158,134,67,30,30 +13099,14,158,134,371,30,30 +13100,14,158,150,54,20,30 +13101,14,158,151,54,20,30 +13102,14,158,152,55,20,40 +13103,14,158,153,55,20,40 +13104,14,158,154,55,20,40 +13105,14,158,135,129,4,6 +13106,14,158,136,129,3,7 +13107,14,158,137,129,5,10 +13108,14,158,138,129,5,10 +13109,14,158,139,129,5,15 +13110,14,158,140,129,15,20 +13111,14,158,141,339,15,20 +13112,14,158,142,129,10,25 +13113,14,158,143,340,25,35 +13114,14,158,144,340,25,35 +13115,14,158,145,130,30,40 +13116,14,158,146,340,30,40 +13117,14,158,147,130,40,55 +13118,14,158,148,340,40,55 +13119,14,158,149,340,40,55 +13120,14,159,123,307,13,13 +13121,14,159,124,399,14,14 +13122,14,159,125,307,14,14 +13123,14,159,125,307,14,14 +13124,14,159,125,41,14,14 +13125,14,159,126,307,15,15 +13126,14,159,126,307,15,15 +13127,14,159,126,163,15,15 +13128,14,159,127,433,14,14 +13129,14,159,127,236,14,14 +13130,14,159,128,66,14,14 +13131,14,159,128,236,14,14 +13132,14,159,129,433,16,16 +13133,14,159,130,436,14,14 +13134,14,159,131,66,15,15 +13135,14,159,131,66,15,15 +13136,14,159,131,66,15,15 +13137,14,159,131,216,15,15 +13138,14,159,131,66,15,15 +13139,14,159,131,66,15,15 +13140,14,159,132,436,16,16 +13141,14,159,132,436,16,16 +13142,14,159,132,436,16,16 +13143,14,159,132,216,16,16 +13144,14,159,132,436,16,16 +13145,14,159,132,436,16,16 +13146,14,159,133,66,15,15 +13147,14,159,133,236,15,15 +13148,14,159,134,436,16,16 +13149,14,159,134,236,16,16 +13150,14,160,123,307,27,27 +13151,14,160,124,75,28,28 +13152,14,160,125,307,28,28 +13153,14,160,125,307,28,28 +13154,14,160,125,41,28,28 +13155,14,160,126,307,29,29 +13156,14,160,126,307,29,29 +13157,14,160,126,164,29,29 +13158,14,160,127,433,28,28 +13159,14,160,128,67,29,29 +13160,14,160,129,433,30,30 +13161,14,160,130,436,29,29 +13162,14,160,131,67,30,30 +13163,14,160,132,436,29,29 +13164,14,160,133,67,30,30 +13165,14,160,134,436,29,29 +13166,14,161,123,315,23,23 +13167,14,161,124,183,21,21 +13168,14,161,125,397,23,23 +13169,14,161,125,397,23,23 +13170,14,161,125,183,23,23 +13171,14,161,126,281,22,22 +13172,14,161,126,280,22,22 +13173,14,161,126,183,22,22 +13174,14,161,127,315,22,22 +13175,14,161,127,235,22,22 +13176,14,161,128,397,21,21 +13177,14,161,128,235,21,21 +13178,14,161,129,281,24,24 +13179,14,161,130,281,24,24 +13180,14,161,131,315,24,24 +13181,14,161,132,183,23,23 +13182,14,161,133,315,24,24 +13183,14,161,133,235,24,24 +13184,14,161,134,183,23,23 +13185,14,161,134,235,23,23 +13186,14,161,150,54,20,30 +13187,14,161,151,54,20,30 +13188,14,161,152,55,20,40 +13189,14,161,153,55,20,40 +13190,14,161,154,55,20,40 +13191,14,161,135,129,4,6 +13192,14,161,136,129,3,7 +13193,14,161,137,129,5,10 +13194,14,161,138,129,5,10 +13195,14,161,139,129,5,15 +13196,14,161,140,129,15,20 +13197,14,161,141,118,15,20 +13198,14,161,142,129,10,25 +13199,14,161,143,118,10,25 +13200,14,161,144,118,10,25 +13201,14,161,145,130,30,40 +13202,14,161,146,119,30,40 +13203,14,161,147,130,40,55 +13204,14,161,148,119,40,55 +13205,14,161,149,119,40,55 +13206,14,162,123,422,23,23 +13207,14,162,124,195,24,24 +13208,14,162,125,418,25,25 +13209,14,162,126,422,24,24 +13210,14,162,127,195,26,26 +13211,14,162,127,88,26,26 +13212,14,162,128,422,25,25 +13213,14,162,128,88,25,25 +13214,14,162,129,453,24,24 +13215,14,162,130,453,25,25 +13216,14,162,131,418,23,23 +13217,14,162,131,418,23,23 +13218,14,162,131,271,23,23 +13219,14,162,131,418,23,23 +13220,14,162,131,23,23,23 +13221,14,162,131,418,23,23 +13222,14,162,132,422,26,26 +13223,14,162,132,422,26,26 +13224,14,162,132,270,26,26 +13225,14,162,132,422,26,26 +13226,14,162,132,23,26,26 +13227,14,162,132,422,26,26 +13228,14,162,133,418,23,23 +13229,14,162,133,88,23,23 +13230,14,162,134,422,26,26 +13231,14,162,134,88,26,26 +13232,14,162,150,422,20,30 +13233,14,162,151,72,20,30 +13234,14,162,152,423,20,40 +13235,14,162,153,423,20,40 +13236,14,162,154,73,20,40 +13237,14,162,135,129,4,6 +13238,14,162,136,129,3,7 +13239,14,162,137,129,5,10 +13240,14,162,138,129,5,10 +13241,14,162,139,129,5,15 +13242,14,162,140,129,15,20 +13243,14,162,141,223,15,20 +13244,14,162,142,129,10,25 +13245,14,162,143,223,10,25 +13246,14,162,144,223,10,25 +13247,14,162,145,130,30,40 +13248,14,162,146,224,30,40 +13249,14,162,147,130,40,55 +13250,14,162,148,224,40,55 +13251,14,162,149,224,40,55 +13252,14,163,123,422,24,24 +13253,14,163,124,418,23,23 +13254,14,163,125,441,23,23 +13255,14,163,125,441,23,23 +13256,14,163,125,422,23,23 +13257,14,163,126,441,25,25 +13258,14,163,126,441,25,25 +13259,14,163,126,418,25,25 +13260,14,163,127,278,25,25 +13261,14,163,127,277,25,25 +13262,14,163,128,422,25,25 +13263,14,163,128,277,25,25 +13264,14,163,129,278,24,24 +13265,14,163,130,278,26,26 +13266,14,163,131,418,25,25 +13267,14,163,132,422,26,26 +13268,14,163,133,418,25,25 +13269,14,163,133,277,25,25 +13270,14,163,134,422,26,26 +13271,14,163,134,277,26,26 +13272,14,163,150,72,20,30 +13273,14,163,151,278,20,30 +13274,14,163,152,73,20,40 +13275,14,163,153,422,20,30 +13276,14,163,154,423,20,40 +13277,14,163,135,129,4,6 +13278,14,163,136,129,3,7 +13279,14,163,137,129,5,10 +13280,14,163,138,129,5,10 +13281,14,163,139,129,5,15 +13282,14,163,140,129,15,20 +13283,14,163,141,223,15,20 +13284,14,163,142,129,10,25 +13285,14,163,143,223,10,25 +13286,14,163,144,223,10,25 +13287,14,163,145,130,30,40 +13288,14,163,146,224,30,40 +13289,14,163,147,130,40,55 +13290,14,163,148,224,40,55 +13291,14,163,149,224,40,55 +13292,14,164,123,75,23,23 +13293,14,164,123,325,23,23 +13294,14,164,124,74,21,21 +13295,14,164,124,325,21,21 +13296,14,164,125,75,22,22 +13297,14,164,125,75,22,22 +13298,14,164,125,228,22,22 +13299,14,164,126,111,22,22 +13300,14,164,126,111,22,22 +13301,14,164,126,41,22,22 +13302,14,164,127,228,23,23 +13303,14,164,127,261,23,23 +13304,14,164,128,111,23,23 +13305,14,164,128,261,23,23 +13306,14,164,129,75,24,24 +13307,14,164,130,111,21,21 +13308,14,164,131,228,24,24 +13309,14,164,131,228,24,24 +13310,14,164,131,228,24,24 +13311,14,164,131,228,24,24 +13312,14,164,131,228,24,24 +13313,14,164,131,37,24,24 +13314,14,164,132,111,24,24 +13315,14,164,132,111,24,24 +13316,14,164,132,111,24,24 +13317,14,164,132,111,24,24 +13318,14,164,132,111,24,24 +13319,14,164,132,37,24,24 +13320,14,164,133,228,24,24 +13321,14,164,133,261,24,24 +13322,14,164,134,111,24,24 +13323,14,164,134,261,24,24 +13324,14,164,150,54,20,30 +13325,14,164,151,54,20,30 +13326,14,164,152,55,20,40 +13327,14,164,153,55,20,40 +13328,14,164,154,55,20,40 +13329,14,164,135,129,4,6 +13330,14,164,136,129,3,7 +13331,14,164,137,129,5,10 +13332,14,164,138,129,5,10 +13333,14,164,139,129,5,15 +13334,14,164,140,129,15,20 +13335,14,164,141,118,15,20 +13336,14,164,142,129,10,25 +13337,14,164,143,118,10,25 +13338,14,164,144,118,10,25 +13339,14,164,145,130,30,40 +13340,14,164,146,119,30,40 +13341,14,164,147,130,40,55 +13342,14,164,148,119,40,55 +13343,14,164,149,119,40,55 +13344,14,165,123,397,19,19 +13345,14,165,123,96,19,19 +13346,14,165,124,183,20,20 +13347,14,165,124,96,20,20 +13348,14,165,125,123,22,22 +13349,14,165,125,397,22,22 +13350,14,165,125,183,22,22 +13351,14,165,126,397,21,21 +13352,14,165,126,397,21,21 +13353,14,165,126,183,21,21 +13354,14,165,127,108,20,20 +13355,14,165,128,63,19,19 +13356,14,165,129,123,20,20 +13357,14,165,130,64,21,21 +13358,14,165,131,183,22,22 +13359,14,165,132,64,22,22 +13360,14,165,133,183,22,22 +13361,14,165,134,64,22,22 +13362,14,166,123,459,32,32 +13363,14,166,124,215,33,33 +13364,14,166,125,307,32,32 +13365,14,166,125,307,32,32 +13366,14,166,125,41,32,32 +13367,14,166,126,459,33,33 +13368,14,166,126,459,33,33 +13369,14,166,126,361,33,33 +13370,14,166,127,307,33,33 +13371,14,166,128,215,34,34 +13372,14,166,129,459,34,34 +13373,14,166,130,215,35,35 +13374,14,166,131,75,35,35 +13375,14,166,131,75,35,35 +13376,14,166,131,75,35,35 +13377,14,166,131,217,35,35 +13378,14,166,131,75,35,35 +13379,14,166,131,75,35,35 +13380,14,166,132,459,35,35 +13381,14,166,132,459,35,35 +13382,14,166,132,459,35,35 +13383,14,166,132,217,35,35 +13384,14,166,132,459,35,35 +13385,14,166,132,459,35,35 +13386,14,166,133,75,35,35 +13387,14,166,134,459,35,35 +13388,14,167,123,459,32,32 +13389,14,167,123,225,32,32 +13390,14,167,124,220,33,33 +13391,14,167,124,225,33,33 +13392,14,167,125,215,33,33 +13393,14,167,125,215,33,33 +13394,14,167,125,361,33,33 +13395,14,167,126,459,33,33 +13396,14,167,126,459,33,33 +13397,14,167,126,361,33,33 +13398,14,167,127,215,34,34 +13399,14,167,127,221,34,34 +13400,14,167,128,220,34,34 +13401,14,167,128,221,34,34 +13402,14,167,129,459,34,34 +13403,14,167,130,220,32,32 +13404,14,167,131,215,35,35 +13405,14,167,131,215,35,35 +13406,14,167,131,215,35,35 +13407,14,167,131,217,35,35 +13408,14,167,131,215,35,35 +13409,14,167,131,215,35,35 +13410,14,167,132,459,35,35 +13411,14,167,132,459,35,35 +13412,14,167,132,459,35,35 +13413,14,167,132,217,35,35 +13414,14,167,132,459,35,35 +13415,14,167,132,459,35,35 +13416,14,167,133,215,35,35 +13417,14,167,133,221,35,35 +13418,14,167,134,459,35,35 +13419,14,167,134,221,35,35 +13420,14,168,123,423,28,28 +13421,14,168,123,100,28,28 +13422,14,168,124,419,29,29 +13423,14,168,124,100,29,29 +13424,14,168,125,441,28,28 +13425,14,168,125,441,28,28 +13426,14,168,125,423,28,28 +13427,14,168,126,441,30,30 +13428,14,168,126,441,30,30 +13429,14,168,126,419,30,30 +13430,14,168,127,122,29,29 +13431,14,168,128,122,30,30 +13432,14,168,129,419,30,30 +13433,14,168,130,122,31,31 +13434,14,168,131,419,31,31 +13435,14,168,132,423,30,30 +13436,14,168,133,419,31,31 +13437,14,168,134,423,30,30 +13438,14,168,150,72,20,30 +13439,14,168,151,422,20,30 +13440,14,168,152,73,20,40 +13441,14,168,153,73,20,40 +13442,14,168,154,423,20,40 +13443,14,168,135,129,4,6 +13444,14,168,136,129,3,7 +13445,14,168,137,129,5,10 +13446,14,168,138,129,5,10 +13447,14,168,139,129,5,15 +13448,14,168,140,129,15,20 +13449,14,168,141,456,15,20 +13450,14,168,142,129,10,25 +13451,14,168,143,456,10,25 +13452,14,168,144,456,10,25 +13453,14,168,145,130,30,40 +13454,14,168,146,457,30,40 +13455,14,168,147,130,40,55 +13456,14,168,148,457,40,55 +13457,14,168,149,457,40,55 +13458,14,169,150,72,20,30 +13459,14,169,151,278,20,30 +13460,14,169,152,73,20,40 +13461,14,169,153,73,20,40 +13462,14,169,154,279,20,40 +13463,14,169,135,129,4,6 +13464,14,169,136,129,3,7 +13465,14,169,137,129,5,10 +13466,14,169,138,129,5,10 +13467,14,169,139,129,5,15 +13468,14,169,140,129,15,20 +13469,14,169,141,456,15,20 +13470,14,169,142,129,10,25 +13471,14,169,143,457,25,35 +13472,14,169,144,457,25,35 +13473,14,169,145,130,30,40 +13474,14,169,146,457,30,40 +13475,14,169,147,130,40,55 +13476,14,169,148,457,40,55 +13477,14,169,149,457,40,55 +13478,14,170,123,419,29,29 +13479,14,170,123,83,29,29 +13480,14,170,124,203,28,28 +13481,14,170,124,83,28,28 +13482,14,170,125,315,28,28 +13483,14,170,125,315,28,28 +13484,14,170,125,419,28,28 +13485,14,170,126,315,29,29 +13486,14,170,127,185,31,31 +13487,14,170,127,33,31,31 +13488,14,170,128,185,30,30 +13489,14,170,128,30,30,30 +13490,14,170,129,203,30,30 +13491,14,170,130,185,29,29 +13492,14,170,131,419,31,31 +13493,14,170,132,315,30,30 +13494,14,170,133,419,31,31 +13495,14,170,133,33,31,31 +13496,14,170,134,315,30,30 +13497,14,170,134,30,30,30 +13498,14,170,150,72,20,30 +13499,14,170,151,278,20,30 +13500,14,170,152,73,20,40 +13501,14,170,153,73,20,40 +13502,14,170,154,279,20,40 +13503,14,170,135,129,4,6 +13504,14,170,136,129,3,7 +13505,14,170,137,129,5,10 +13506,14,170,138,129,5,10 +13507,14,170,139,129,5,15 +13508,14,170,140,129,15,20 +13509,14,170,141,456,15,20 +13510,14,170,142,129,10,25 +13511,14,170,143,457,25,35 +13512,14,170,144,457,25,35 +13513,14,170,145,130,30,40 +13514,14,170,146,457,30,40 +13515,14,170,147,130,40,55 +13516,14,170,148,457,40,55 +13517,14,170,149,457,40,55 +13518,14,171,123,125,39,39 +13519,14,171,123,300,39,39 +13520,14,171,124,419,40,40 +13521,14,171,124,300,40,40 +13522,14,171,125,125,41,41 +13523,14,171,125,125,41,41 +13524,14,171,125,419,41,41 +13525,14,171,126,441,38,38 +13526,14,171,126,441,38,38 +13527,14,171,126,419,38,38 +13528,14,171,127,278,38,38 +13529,14,171,127,180,38,38 +13530,14,171,128,81,39,39 +13531,14,171,128,180,39,39 +13532,14,171,129,404,38,38 +13533,14,171,130,404,40,40 +13534,14,171,131,279,40,40 +13535,14,171,132,82,41,41 +13536,14,171,133,279,40,40 +13537,14,171,133,180,40,40 +13538,14,171,134,82,41,41 +13539,14,171,134,180,41,41 +13540,14,171,150,72,30,40 +13541,14,171,151,278,30,40 +13542,14,171,152,73,30,50 +13543,14,171,153,73,30,50 +13544,14,171,154,279,30,50 +13545,14,171,135,129,4,6 +13546,14,171,136,129,3,7 +13547,14,171,137,129,5,10 +13548,14,171,138,129,5,10 +13549,14,171,139,129,5,15 +13550,14,171,140,129,15,20 +13551,14,171,141,223,15,20 +13552,14,171,142,129,10,25 +13553,14,171,143,223,10,25 +13554,14,171,144,223,10,25 +13555,14,171,145,130,30,40 +13556,14,171,146,224,30,40 +13557,14,171,147,130,40,55 +13558,14,171,148,224,40,55 +13559,14,171,149,224,40,55 +13560,14,172,123,419,50,50 +13561,14,172,123,177,50,50 +13562,14,172,124,315,50,50 +13563,14,172,124,177,50,50 +13564,14,172,125,69,49,49 +13565,14,172,125,69,49,49 +13566,14,172,125,43,49,49 +13567,14,172,126,69,49,49 +13568,14,172,126,69,49,49 +13569,14,172,126,43,49,49 +13570,14,172,127,279,51,51 +13571,14,172,128,423,49,49 +13572,14,172,129,44,51,51 +13573,14,172,130,70,51,51 +13574,14,172,131,267,52,52 +13575,14,172,131,267,52,52 +13576,14,172,131,267,52,52 +13577,14,172,131,213,52,52 +13578,14,172,131,267,52,52 +13579,14,172,131,267,52,52 +13580,14,172,132,269,52,52 +13581,14,172,132,269,52,52 +13582,14,172,132,269,52,52 +13583,14,172,132,213,52,52 +13584,14,172,132,269,52,52 +13585,14,172,132,269,52,52 +13586,14,172,133,267,52,52 +13587,14,172,134,269,52,52 +13588,14,172,150,279,35,55 +13589,14,172,151,73,35,55 +13590,14,172,152,423,35,55 +13591,14,172,153,423,35,55 +13592,14,172,154,423,35,55 +13593,14,172,135,129,4,6 +13594,14,172,136,129,3,7 +13595,14,172,137,129,5,10 +13596,14,172,138,129,5,10 +13597,14,172,139,129,5,15 +13598,14,172,140,129,15,20 +13599,14,172,141,223,15,25 +13600,14,172,142,129,10,25 +13601,14,172,143,223,10,25 +13602,14,172,144,223,10,25 +13603,14,172,145,130,30,55 +13604,14,172,146,224,30,40 +13605,14,172,147,370,20,30 +13606,14,172,148,224,40,55 +13607,14,172,149,224,40,55 +13608,14,173,123,67,48,48 +13609,14,173,123,296,48,48 +13610,14,173,124,75,49,49 +13611,14,173,124,296,49,49 +13612,14,173,125,22,48,48 +13613,14,173,125,22,48,48 +13614,14,173,125,354,48,48 +13615,14,173,126,22,50,50 +13616,14,173,126,22,50,50 +13617,14,173,126,354,50,50 +13618,14,173,127,22,49,49 +13619,14,173,127,57,49,49 +13620,14,173,128,20,50,50 +13621,14,173,128,57,50,50 +13622,14,173,129,67,50,50 +13623,14,173,130,20,49,49 +13624,14,173,131,21,47,47 +13625,14,173,132,19,47,47 +13626,14,173,133,21,47,47 +13627,14,173,133,56,47,47 +13628,14,173,134,19,47,47 +13629,14,173,134,56,47,47 +13630,14,173,150,55,35,55 +13631,14,173,151,55,35,55 +13632,14,173,152,54,35,45 +13633,14,173,153,54,35,45 +13634,14,173,154,54,35,45 +13635,14,173,135,129,4,6 +13636,14,173,136,129,3,7 +13637,14,173,137,129,5,10 +13638,14,173,138,129,5,10 +13639,14,173,139,129,5,15 +13640,14,173,140,129,15,20 +13641,14,173,141,339,15,20 +13642,14,173,142,129,10,25 +13643,14,173,143,339,10,25 +13644,14,173,144,339,10,25 +13645,14,173,145,130,30,40 +13646,14,173,146,340,30,40 +13647,14,173,147,130,40,55 +13648,14,173,148,340,40,55 +13649,14,173,149,340,40,55 +13650,14,174,123,323,53,53 +13651,14,174,123,327,53,53 +13652,14,174,124,112,54,54 +13653,14,174,124,327,54,54 +13654,14,174,125,22,51,51 +13655,14,174,125,22,51,51 +13656,14,174,125,42,51,51 +13657,14,174,126,75,51,51 +13658,14,174,127,22,53,53 +13659,14,174,127,324,53,53 +13660,14,174,128,110,52,52 +13661,14,174,128,324,52,52 +13662,14,174,129,227,53,53 +13663,14,174,130,75,53,53 +13664,14,174,131,322,51,51 +13665,14,174,132,111,52,52 +13666,14,174,133,322,51,51 +13667,14,174,133,324,51,51 +13668,14,174,134,111,52,52 +13669,14,174,134,324,52,52 +13670,14,174,150,61,35,55 +13671,14,174,151,60,35,45 +13672,14,174,152,61,35,55 +13673,14,174,153,61,35,55 +13674,14,174,154,61,35,55 +13675,14,174,135,129,4,6 +13676,14,174,136,129,3,7 +13677,14,174,137,129,5,10 +13678,14,174,138,129,5,10 +13679,14,174,139,129,5,15 +13680,14,174,140,129,15,20 +13681,14,174,141,339,15,20 +13682,14,174,142,129,10,25 +13683,14,174,143,339,10,25 +13684,14,174,144,339,10,25 +13685,14,174,145,130,30,40 +13686,14,174,146,340,30,40 +13687,14,174,147,130,40,55 +13688,14,174,148,340,40,55 +13689,14,174,149,340,40,55 +13690,14,175,123,51,51,51 +13691,14,175,123,374,51,51 +13692,14,175,124,332,52,52 +13693,14,175,124,374,52,52 +13694,14,175,125,450,50,50 +13695,14,175,125,450,50,50 +13696,14,175,125,332,50,50 +13697,14,175,126,112,50,50 +13698,14,175,126,112,50,50 +13699,14,175,126,332,50,50 +13700,14,175,127,112,52,52 +13701,14,175,128,450,51,51 +13702,14,175,129,51,52,52 +13703,14,175,130,51,50,50 +13704,14,175,131,50,49,49 +13705,14,175,131,50,49,49 +13706,14,175,131,50,49,49 +13707,14,175,131,50,49,49 +13708,14,175,131,50,49,49 +13709,14,175,131,28,49,49 +13710,14,175,132,331,50,50 +13711,14,175,132,331,50,50 +13712,14,175,132,331,50,50 +13713,14,175,132,331,50,50 +13714,14,175,132,331,50,50 +13715,14,175,132,28,50,50 +13716,14,175,133,50,49,49 +13717,14,175,134,331,50,50 +13718,14,175,150,61,35,55 +13719,14,175,151,60,35,45 +13720,14,175,152,61,35,55 +13721,14,175,153,61,35,55 +13722,14,175,154,61,35,55 +13723,14,175,135,129,4,6 +13724,14,175,136,129,3,7 +13725,14,175,137,129,5,10 +13726,14,175,138,129,5,10 +13727,14,175,139,129,5,15 +13728,14,175,140,129,15,20 +13729,14,175,141,339,15,20 +13730,14,175,142,129,10,25 +13731,14,175,143,340,25,35 +13732,14,175,144,340,25,35 +13733,14,175,145,130,30,40 +13734,14,175,146,340,30,40 +13735,14,175,147,130,40,55 +13736,14,175,148,340,40,55 +13737,14,175,149,340,40,55 +13738,14,176,123,315,48,48 +13739,14,176,123,127,48,48 +13740,14,176,124,315,49,49 +13741,14,176,124,127,49,49 +13742,14,176,125,166,50,50 +13743,14,176,125,16,50,50 +13744,14,176,125,168,50,50 +13745,14,176,126,166,50,50 +13746,14,176,126,16,50,50 +13747,14,176,126,168,50,50 +13748,14,176,127,313,49,49 +13749,14,176,127,49,49,49 +13750,14,176,128,314,49,49 +13751,14,176,128,49,49,49 +13752,14,176,129,16,47,47 +13753,14,176,130,315,50,50 +13754,14,176,131,267,48,48 +13755,14,176,131,274,48,48 +13756,14,176,131,271,48,48 +13757,14,176,131,204,48,48 +13758,14,176,131,267,48,48 +13759,14,176,131,267,48,48 +13760,14,176,132,269,48,48 +13761,14,176,132,274,48,48 +13762,14,176,132,271,48,48 +13763,14,176,132,204,48,48 +13764,14,176,132,269,48,48 +13765,14,176,132,269,48,48 +13766,14,176,133,267,48,48 +13767,14,176,133,48,48,48 +13768,14,176,134,269,48,48 +13769,14,176,134,48,48,48 +13770,14,176,150,283,35,45 +13771,14,176,151,283,35,45 +13772,14,176,152,283,35,45 +13773,14,176,153,284,35,55 +13774,14,176,154,284,35,55 +13775,14,176,135,129,4,6 +13776,14,176,136,129,3,7 +13777,14,176,137,129,5,10 +13778,14,176,138,129,5,10 +13779,14,176,139,129,5,15 +13780,14,176,140,129,15,20 +13781,14,176,141,118,15,20 +13782,14,176,142,129,10,25 +13783,14,176,143,118,10,25 +13784,14,176,144,118,10,25 +13785,14,176,145,130,30,40 +13786,14,176,146,119,30,40 +13787,14,176,147,130,40,55 +13788,14,176,148,119,40,55 +13789,14,176,149,119,40,55 +13790,14,177,150,54,20,30 +13791,14,177,151,54,20,30 +13792,14,177,152,55,20,40 +13793,14,177,153,55,20,40 +13794,14,177,154,55,20,40 +13795,14,177,135,129,4,6 +13796,14,177,136,129,3,7 +13797,14,177,137,129,5,10 +13798,14,177,138,129,5,10 +13799,14,177,139,129,5,15 +13800,14,177,140,129,15,20 +13801,14,177,141,118,15,20 +13802,14,177,142,129,10,25 +13803,14,177,143,118,25,35 +13804,14,177,144,118,25,35 +13805,14,177,145,130,30,40 +13806,14,177,146,119,30,40 +13807,14,177,147,130,40,55 +13808,14,177,148,119,40,55 +13809,14,177,149,119,40,55 +13810,14,178,150,54,20,30 +13811,14,178,151,54,20,30 +13812,14,178,152,55,20,40 +13813,14,178,153,55,20,40 +13814,14,178,154,55,20,40 +13815,14,178,135,129,4,6 +13816,14,178,136,129,3,7 +13817,14,178,137,129,5,10 +13818,14,178,138,129,5,10 +13819,14,178,139,129,5,15 +13820,14,178,140,129,15,20 +13821,14,178,141,118,15,20 +13822,14,178,142,129,10,25 +13823,14,178,143,118,25,35 +13824,14,178,144,118,25,35 +13825,14,178,145,130,30,55 +13826,14,178,146,341,30,40 +13827,14,178,147,342,40,55 +13828,14,178,148,119,40,55 +13829,14,178,149,119,40,55 +13830,14,179,150,55,35,55 +13831,14,179,151,55,35,55 +13832,14,179,152,54,35,45 +13833,14,179,153,54,35,45 +13834,14,179,154,54,35,45 +13835,14,179,135,129,4,6 +13836,14,179,136,129,3,7 +13837,14,179,137,129,5,10 +13838,14,179,138,129,5,10 +13839,14,179,139,129,5,15 +13840,14,179,140,129,15,20 +13841,14,179,141,129,15,20 +13842,14,179,142,129,10,25 +13843,14,179,143,129,25,35 +13844,14,179,144,129,25,35 +13845,14,179,145,129,40,60 +13846,14,179,146,129,30,70 +13847,14,179,147,129,20,80 +13848,14,179,148,129,10,90 +13849,14,179,149,129,1,100 +13850,14,180,150,72,20,30 +13851,14,180,151,278,20,30 +13852,14,180,152,73,20,40 +13853,14,180,153,73,20,40 +13854,14,180,154,279,20,40 +13855,14,180,135,129,4,6 +13856,14,180,136,129,3,7 +13857,14,180,137,129,5,10 +13858,14,180,138,129,5,10 +13859,14,180,139,129,5,15 +13860,14,180,140,129,15,20 +13861,14,180,141,456,15,20 +13862,14,180,142,129,10,25 +13863,14,180,143,457,25,35 +13864,14,180,144,457,25,35 +13865,14,180,145,130,30,55 +13866,14,180,146,457,30,40 +13867,14,180,147,170,20,50 +13868,14,180,148,457,40,55 +13869,14,180,149,457,40,55 +13870,14,181,150,73,30,50 +13871,14,181,151,279,30,50 +13872,14,181,152,458,30,40 +13873,14,181,153,458,30,40 +13874,14,181,154,458,30,40 +13875,14,181,135,129,4,6 +13876,14,181,136,129,3,7 +13877,14,181,137,129,5,10 +13878,14,181,138,129,5,10 +13879,14,181,139,129,5,15 +13880,14,181,140,129,15,20 +13881,14,181,141,223,15,25 +13882,14,181,142,129,10,25 +13883,14,181,143,224,25,35 +13884,14,181,144,224,25,35 +13885,14,181,145,130,30,55 +13886,14,181,146,320,30,40 +13887,14,181,147,224,20,50 +13888,14,181,148,321,40,55 +13889,14,181,149,321,40,55 +13890,14,182,123,67,48,48 +13891,14,182,123,98,48,48 +13892,14,182,124,75,49,49 +13893,14,182,124,98,49,49 +13894,14,182,125,22,48,48 +13895,14,182,125,22,48,48 +13896,14,182,125,354,48,48 +13897,14,182,126,22,50,50 +13898,14,182,126,22,50,50 +13899,14,182,126,354,50,50 +13900,14,182,127,278,49,49 +13901,14,182,127,57,49,49 +13902,14,182,128,20,50,50 +13903,14,182,128,57,50,50 +13904,14,182,129,67,50,50 +13905,14,182,130,20,49,49 +13906,14,182,131,278,47,47 +13907,14,182,132,19,47,47 +13908,14,182,133,278,47,47 +13909,14,182,133,56,47,47 +13910,14,182,134,19,47,47 +13911,14,182,134,56,47,47 +13912,14,182,150,278,35,45 +13913,14,182,151,279,35,55 +13914,14,182,152,73,35,55 +13915,14,182,153,73,35,55 +13916,14,182,154,73,35,55 +13917,14,182,135,129,4,6 +13918,14,182,136,129,3,7 +13919,14,182,137,129,5,10 +13920,14,182,138,129,5,10 +13921,14,182,139,129,5,15 +13922,14,182,140,129,15,20 +13923,14,182,141,116,15,20 +13924,14,182,142,129,10,25 +13925,14,182,143,116,10,25 +13926,14,182,144,116,10,25 +13927,14,182,145,130,30,55 +13928,14,182,146,117,30,40 +13929,14,182,147,369,20,50 +13930,14,182,148,117,40,55 +13931,14,182,149,117,40,55 +13932,14,183,123,279,48,48 +13933,14,183,123,222,48,48 +13934,14,183,124,419,48,48 +13935,14,183,124,222,48,48 +13936,14,183,125,69,47,47 +13937,14,183,125,69,47,47 +13938,14,183,125,43,47,47 +13939,14,183,126,69,47,47 +13940,14,183,126,69,47,47 +13941,14,183,126,43,47,47 +13942,14,183,127,315,49,49 +13943,14,183,127,175,49,49 +13944,14,183,128,279,50,50 +13945,14,183,128,175,50,50 +13946,14,183,129,44,49,49 +13947,14,183,130,70,49,49 +13948,14,183,131,278,48,48 +13949,14,183,131,279,48,48 +13950,14,183,131,279,48,48 +13951,14,183,131,279,48,48 +13952,14,183,131,279,48,48 +13953,14,183,131,279,48,48 +13954,14,183,132,419,50,50 +13955,14,183,133,278,48,48 +13956,14,183,133,175,48,48 +13957,14,183,134,419,50,50 +13958,14,183,134,175,50,50 +13959,14,183,150,364,35,55 +13960,14,183,151,279,35,55 +13961,14,183,152,73,35,55 +13962,14,183,153,73,35,55 +13963,14,183,154,73,35,55 +13964,14,183,135,129,4,6 +13965,14,183,136,129,3,7 +13966,14,183,137,129,5,10 +13967,14,183,138,129,5,10 +13968,14,183,139,129,5,15 +13969,14,183,140,129,15,20 +13970,14,183,141,223,15,20 +13971,14,183,142,129,10,25 +13972,14,183,143,223,10,25 +13973,14,183,144,223,10,25 +13974,14,183,145,130,30,55 +13975,14,183,146,320,30,40 +13976,14,183,147,224,20,50 +13977,14,183,148,321,40,55 +13978,14,183,149,321,40,55 +13979,15,184,60,72,15,25 +13980,15,184,61,72,10,20 +13981,15,184,62,73,15,25 +13982,15,184,63,73,15,25 +13983,15,184,64,73,15,25 +13984,15,184,45,129,10,10 +13985,15,184,46,129,10,10 +13986,15,184,47,129,10,10 +13987,15,184,48,72,10,10 +13988,15,184,49,72,10,10 +13989,15,184,50,129,20,20 +13990,15,184,51,72,20,20 +13991,15,184,52,170,20,20 +13993,15,184,53,90,20,20 +13995,15,184,54,170,20,20 +13996,15,184,55,170,40,40 +13998,15,184,56,90,40,40 +14000,15,184,57,73,40,40 +14002,15,184,58,171,40,40 +14004,15,184,59,73,40,40 +14006,15,185,33,16,2,2 +14007,15,185,33,16,2,2 +14008,15,185,33,163,2,2 +14010,15,185,34,161,3,3 +14011,15,185,34,161,3,3 +14012,15,185,34,163,3,3 +14014,15,185,35,16,2,2 +14015,15,185,35,16,2,2 +14016,15,185,35,163,2,2 +14017,15,185,35,311,2,2 +14018,15,185,35,403,2,2 +14019,15,185,36,161,3,3 +14020,15,185,36,161,3,3 +14021,15,185,36,163,3,3 +14022,15,185,36,311,3,3 +14023,15,185,36,403,3,3 +14024,15,185,37,16,3,3 +14025,15,185,37,16,3,3 +14026,15,185,37,163,3,3 +14027,15,185,37,312,3,3 +14028,15,185,37,403,3,3 +14029,15,185,38,16,3,3 +14030,15,185,38,16,3,3 +14031,15,185,38,163,3,3 +14032,15,185,38,312,3,3 +14033,15,185,38,403,3,3 +14034,15,185,39,161,2,2 +14035,15,185,39,161,2,2 +14036,15,185,39,19,2,2 +14037,15,185,40,161,2,2 +14038,15,185,40,161,2,2 +14039,15,185,40,19,2,2 +14040,15,185,41,19,4,4 +14041,15,185,42,16,4,4 +14042,15,185,42,16,4,4 +14043,15,185,42,163,4,4 +14044,15,185,43,19,4,4 +14045,15,185,44,16,4,4 +14046,15,185,44,16,4,4 +14047,15,185,44,163,4,4 +14048,15,186,60,72,15,25 +14049,15,186,61,72,10,20 +14050,15,186,62,73,15,25 +14051,15,186,63,73,15,25 +14052,15,186,64,73,15,25 +14053,15,186,45,129,10,10 +14054,15,186,46,129,10,10 +14055,15,186,47,129,10,10 +14056,15,186,48,98,10,10 +14057,15,186,49,98,10,10 +14058,15,186,50,129,20,20 +14059,15,186,51,98,20,20 +14060,15,186,52,98,20,20 +14062,15,186,53,222,20,20 +14063,15,186,53,222,20,20 +14064,15,186,53,120,20,20 +14066,15,186,54,98,20,20 +14067,15,186,55,98,40,40 +14069,15,186,56,222,40,40 +14070,15,186,56,222,40,40 +14071,15,186,56,120,40,40 +14073,15,186,57,98,40,40 +14075,15,186,58,99,40,40 +14077,15,186,59,98,40,40 +14079,15,187,33,16,2,2 +14080,15,187,33,16,2,2 +14081,15,187,33,167,2,2 +14083,15,187,34,10,3,3 +14084,15,187,34,10,3,3 +14085,15,187,34,19,3,3 +14087,15,187,35,16,2,2 +14088,15,187,35,16,2,2 +14089,15,187,35,167,2,2 +14090,15,187,35,293,2,2 +14091,15,187,35,418,2,2 +14092,15,187,36,10,3,3 +14093,15,187,36,10,3,3 +14094,15,187,36,19,3,3 +14095,15,187,36,293,3,3 +14096,15,187,36,418,3,3 +14097,15,187,37,10,4,4 +14098,15,187,37,16,4,4 +14099,15,187,37,163,4,4 +14100,15,187,37,264,4,4 +14101,15,187,37,399,4,4 +14102,15,187,38,10,4,4 +14103,15,187,38,16,4,4 +14104,15,187,38,163,4,4 +14105,15,187,38,264,4,4 +14106,15,187,38,399,4,4 +14107,15,187,39,11,4,4 +14108,15,187,39,11,4,4 +14109,15,187,39,19,4,4 +14110,15,187,40,11,4,4 +14111,15,187,40,11,4,4 +14112,15,187,40,19,4,4 +14113,15,187,41,16,4,4 +14114,15,187,41,10,4,4 +14115,15,187,41,163,4,4 +14116,15,187,42,16,4,4 +14117,15,187,42,11,4,4 +14118,15,187,42,163,4,4 +14119,15,187,43,16,4,4 +14120,15,187,43,10,4,4 +14121,15,187,43,163,4,4 +14122,15,187,44,16,4,4 +14123,15,187,44,11,4,4 +14124,15,187,44,163,4,4 +14125,15,187,60,60,15,25 +14126,15,187,61,60,10,20 +14127,15,187,62,61,15,25 +14128,15,187,63,61,15,25 +14129,15,187,64,61,32,32 +14130,15,187,45,129,10,10 +14131,15,187,46,129,10,10 +14132,15,187,47,129,10,10 +14133,15,187,48,60,10,10 +14134,15,187,49,60,10,10 +14135,15,187,50,129,20,20 +14136,15,187,51,60,20,20 +14137,15,187,52,60,20,20 +14139,15,187,53,60,20,20 +14141,15,187,54,60,20,20 +14142,15,187,55,60,40,40 +14144,15,187,56,60,40,40 +14146,15,187,57,129,40,40 +14147,15,187,58,60,40,40 +14149,15,187,59,129,40,40 +14150,15,188,33,16,3,3 +14151,15,188,33,16,3,3 +14152,15,188,33,167,3,3 +14154,15,188,34,10,4,4 +14155,15,188,34,10,4,4 +14156,15,188,34,19,4,4 +14158,15,188,35,16,3,3 +14159,15,188,35,16,3,3 +14160,15,188,35,167,3,3 +14161,15,188,35,293,3,3 +14162,15,188,35,418,3,3 +14163,15,188,36,10,4,4 +14164,15,188,36,10,4,4 +14165,15,188,36,19,4,4 +14166,15,188,36,293,4,4 +14167,15,188,36,418,4,4 +14168,15,188,37,69,3,3 +14169,15,188,37,264,3,3 +14170,15,188,37,399,3,3 +14171,15,188,38,69,3,3 +14172,15,188,38,264,3,3 +14173,15,188,38,399,3,3 +14174,15,188,39,11,5,5 +14175,15,188,39,11,5,5 +14176,15,188,39,19,5,5 +14177,15,188,40,11,5,5 +14178,15,188,40,11,5,5 +14179,15,188,40,19,5,5 +14180,15,188,41,10,5,5 +14181,15,188,41,10,5,5 +14182,15,188,41,163,5,5 +14183,15,188,42,11,5,5 +14184,15,188,42,11,5,5 +14185,15,188,42,163,5,5 +14186,15,188,43,10,5,5 +14187,15,188,43,10,5,5 +14188,15,188,43,163,5,5 +14189,15,188,44,11,5,5 +14190,15,188,44,11,5,5 +14191,15,188,44,163,5,5 +14192,15,188,60,60,15,25 +14193,15,188,61,60,10,20 +14194,15,188,62,61,15,25 +14195,15,188,63,61,15,25 +14196,15,188,64,61,32,32 +14197,15,188,45,129,10,10 +14198,15,188,46,129,10,10 +14199,15,188,47,129,10,10 +14200,15,188,48,60,10,10 +14201,15,188,49,60,10,10 +14202,15,188,50,129,20,20 +14203,15,188,51,60,20,20 +14204,15,188,52,60,20,20 +14206,15,188,53,60,20,20 +14208,15,188,54,60,20,20 +14209,15,188,55,60,40,40 +14211,15,188,56,60,40,40 +14213,15,188,57,129,40,40 +14214,15,188,58,60,40,40 +14216,15,188,59,129,40,40 +14217,15,189,60,60,15,25 +14218,15,189,61,60,10,20 +14219,15,189,62,61,15,25 +14220,15,189,63,61,15,25 +14221,15,189,64,61,15,25 +14222,15,189,45,129,10,10 +14223,15,189,46,129,10,10 +14224,15,189,47,129,10,10 +14225,15,189,47,340,10,10 +14226,15,189,48,60,10,10 +14227,15,189,49,60,10,10 +14228,15,189,50,129,20,20 +14229,15,189,50,340,20,20 +14230,15,189,51,60,20,20 +14231,15,189,52,60,20,20 +14232,15,189,52,340,20,20 +14233,15,189,53,60,20,20 +14234,15,189,53,340,20,20 +14235,15,189,54,60,20,20 +14236,15,189,55,60,40,40 +14237,15,189,55,340,40,40 +14238,15,189,56,60,40,40 +14239,15,189,56,340,40,40 +14240,15,189,57,129,40,40 +14241,15,189,57,340,40,40 +14242,15,189,58,60,40,40 +14243,15,189,58,340,40,40 +14244,15,189,59,129,40,40 +14245,15,189,59,340,40,40 +14246,15,190,33,19,3,3 +14247,15,190,33,19,3,3 +14248,15,190,33,92,3,3 +14250,15,190,34,19,4,4 +14251,15,190,34,19,4,4 +14252,15,190,34,92,4,4 +14254,15,190,35,19,3,3 +14255,15,190,35,19,3,3 +14256,15,190,35,92,3,3 +14257,15,190,35,263,3,3 +14258,15,190,35,441,3,3 +14259,15,190,36,19,4,4 +14260,15,190,36,19,4,4 +14261,15,190,36,92,4,4 +14262,15,190,36,263,4,4 +14263,15,190,36,441,4,4 +14264,15,190,37,19,5,5 +14265,15,190,37,19,5,5 +14266,15,190,37,92,5,5 +14267,15,190,37,327,5,5 +14268,15,190,37,307,5,5 +14269,15,190,38,19,5,5 +14270,15,190,38,19,5,5 +14271,15,190,38,92,5,5 +14272,15,190,38,327,5,5 +14273,15,190,38,307,5,5 +14274,15,190,39,19,3,3 +14275,15,190,40,19,3,3 +14276,15,190,41,19,6,6 +14277,15,190,41,19,6,6 +14278,15,190,41,92,6,6 +14279,15,190,42,19,5,5 +14280,15,190,43,19,6,6 +14281,15,190,43,19,6,6 +14282,15,190,43,92,6,6 +14283,15,190,44,19,5,5 +14284,15,191,33,19,3,3 +14285,15,191,33,19,3,3 +14286,15,191,33,92,3,3 +14288,15,191,34,19,4,4 +14289,15,191,34,19,4,4 +14290,15,191,34,92,4,4 +14292,15,191,35,19,3,3 +14293,15,191,35,19,3,3 +14294,15,191,35,92,3,3 +14295,15,191,35,263,3,3 +14296,15,191,35,441,3,3 +14297,15,191,36,19,4,4 +14298,15,191,36,19,4,4 +14299,15,191,36,92,4,4 +14300,15,191,36,263,4,4 +14301,15,191,36,441,4,4 +14302,15,191,37,19,5,5 +14303,15,191,37,19,5,5 +14304,15,191,37,92,5,5 +14305,15,191,37,327,5,5 +14306,15,191,37,307,5,5 +14307,15,191,38,19,5,5 +14308,15,191,38,19,5,5 +14309,15,191,38,92,5,5 +14310,15,191,38,327,5,5 +14311,15,191,38,307,5,5 +14312,15,191,39,19,3,3 +14313,15,191,40,19,3,3 +14314,15,191,41,19,6,6 +14315,15,191,41,19,6,6 +14316,15,191,41,92,6,6 +14317,15,191,42,19,5,5 +14318,15,191,43,19,6,6 +14319,15,191,43,19,6,6 +14320,15,191,43,92,6,6 +14321,15,191,44,19,5,5 +14322,15,192,33,69,6,6 +14323,15,192,33,69,6,6 +14324,15,192,33,194,6,6 +14326,15,192,34,19,4,4 +14328,15,192,35,69,6,6 +14329,15,192,35,69,6,6 +14330,15,192,35,194,6,6 +14331,15,192,35,293,6,6 +14332,15,192,35,418,6,6 +14333,15,192,36,19,4,4 +14334,15,192,36,293,4,4 +14335,15,192,36,418,4,4 +14336,15,192,37,179,6,6 +14337,15,192,37,179,6,6 +14338,15,192,37,69,6,6 +14339,15,192,37,264,6,6 +14340,15,192,37,399,6,6 +14341,15,192,38,179,6,6 +14342,15,192,38,179,6,6 +14343,15,192,38,69,6,6 +14344,15,192,38,264,6,6 +14345,15,192,38,399,6,6 +14346,15,192,39,187,6,6 +14347,15,192,39,187,6,6 +14348,15,192,39,179,6,6 +14349,15,192,40,187,6,6 +14350,15,192,40,187,6,6 +14351,15,192,40,179,6,6 +14352,15,192,41,19,6,6 +14353,15,192,41,19,6,6 +14354,15,192,41,194,6,6 +14355,15,192,42,41,4,4 +14356,15,192,42,19,4,4 +14357,15,192,42,41,4,4 +14358,15,192,43,19,6,6 +14359,15,192,43,19,6,6 +14360,15,192,43,194,6,6 +14361,15,192,44,41,4,4 +14362,15,192,44,19,4,4 +14363,15,192,44,41,4,4 +14364,15,192,60,72,10,20 +14365,15,192,61,195,15,25 +14366,15,192,62,73,15,25 +14367,15,192,63,73,15,25 +14368,15,192,64,73,36,36 +14369,15,192,45,129,10,10 +14370,15,192,46,129,10,10 +14371,15,192,47,129,10,10 +14372,15,192,47,211,10,10 +14373,15,192,48,72,10,10 +14374,15,192,49,72,10,10 +14375,15,192,50,129,20,20 +14376,15,192,50,211,20,20 +14377,15,192,51,72,20,20 +14378,15,192,52,72,20,20 +14379,15,192,52,211,20,20 +14380,15,192,53,72,20,20 +14381,15,192,53,211,20,20 +14382,15,192,54,211,20,20 +14383,15,192,55,72,40,40 +14384,15,192,55,211,40,40 +14385,15,192,56,72,40,40 +14386,15,192,56,211,40,40 +14387,15,192,57,129,40,40 +14388,15,192,57,211,40,40 +14389,15,192,58,211,40,40 +14390,15,192,59,129,40,40 +14391,15,192,59,211,40,40 +14392,15,193,33,177,20,20 +14393,15,193,34,177,22,22 +14394,15,193,35,177,20,20 +14395,15,193,35,293,20,20 +14396,15,193,35,418,20,20 +14397,15,193,36,177,22,22 +14398,15,193,36,293,22,22 +14399,15,193,36,418,22,22 +14400,15,193,37,177,18,18 +14401,15,193,37,264,18,18 +14402,15,193,37,399,18,18 +14403,15,193,38,177,18,18 +14404,15,193,38,264,18,18 +14405,15,193,38,399,18,18 +14406,15,193,39,177,24,24 +14407,15,193,40,177,24,24 +14408,15,193,41,235,20,20 +14409,15,193,42,235,22,22 +14410,15,193,43,235,20,20 +14411,15,193,44,235,22,22 +14412,15,193,65,74,8,14 +14413,15,193,66,74,3,6 +14414,15,193,60,194,10,20 +14415,15,193,61,195,15,25 +14416,15,193,62,195,10,20 +14417,15,193,63,195,10,20 +14418,15,193,64,195,10,20 +14419,15,193,45,129,10,10 +14420,15,193,46,129,10,10 +14421,15,193,47,129,10,10 +14422,15,193,48,60,10,10 +14423,15,193,49,60,10,10 +14424,15,193,50,129,20,20 +14425,15,193,51,60,20,20 +14426,15,193,52,60,20,20 +14428,15,193,53,60,20,20 +14430,15,193,54,60,20,20 +14431,15,193,55,60,40,40 +14433,15,193,56,60,40,40 +14435,15,193,57,129,40,40 +14436,15,193,58,60,40,40 +14438,15,193,59,129,40,40 +14439,15,194,33,201,5,5 +14440,15,194,34,201,5,5 +14441,15,194,35,201,5,5 +14442,15,194,36,201,5,5 +14443,15,194,37,201,5,5 +14444,15,194,38,201,5,5 +14445,15,194,39,201,5,5 +14446,15,194,40,201,5,5 +14447,15,194,41,201,5,5 +14448,15,194,42,201,5,5 +14449,15,194,43,201,5,5 +14450,15,194,44,201,5,5 +14451,15,195,33,201,5,5 +14452,15,195,34,201,5,5 +14453,15,195,35,201,5,5 +14454,15,195,36,201,5,5 +14455,15,195,37,201,5,5 +14456,15,195,38,201,5,5 +14457,15,195,39,201,5,5 +14458,15,195,40,201,5,5 +14459,15,195,41,201,5,5 +14460,15,195,42,201,5,5 +14461,15,195,43,201,5,5 +14462,15,195,44,201,5,5 +14463,15,196,33,201,5,5 +14464,15,196,34,201,5,5 +14465,15,196,35,201,5,5 +14466,15,196,36,201,5,5 +14467,15,196,37,201,5,5 +14468,15,196,38,201,5,5 +14469,15,196,39,201,5,5 +14470,15,196,40,201,5,5 +14471,15,196,41,201,5,5 +14472,15,196,42,201,5,5 +14473,15,196,43,201,5,5 +14474,15,196,44,201,5,5 +14475,15,197,33,201,5,5 +14476,15,197,34,201,5,5 +14477,15,197,35,201,5,5 +14478,15,197,36,201,5,5 +14479,15,197,37,201,5,5 +14480,15,197,38,201,5,5 +14481,15,197,39,201,5,5 +14482,15,197,40,201,5,5 +14483,15,197,41,201,5,5 +14484,15,197,42,201,5,5 +14485,15,197,43,201,5,5 +14486,15,197,44,201,5,5 +14487,15,198,33,74,6,6 +14488,15,198,34,27,6,6 +14490,15,198,35,74,6,6 +14491,15,198,35,359,6,6 +14492,15,198,35,436,6,6 +14493,15,198,36,27,6,6 +14494,15,198,36,359,6,6 +14495,15,198,36,436,6,6 +14496,15,198,37,41,5,5 +14497,15,198,37,296,5,5 +14498,15,198,37,433,5,5 +14499,15,198,38,41,5,5 +14500,15,198,38,296,5,5 +14501,15,198,38,433,5,5 +14502,15,198,39,19,4,4 +14503,15,198,40,19,4,4 +14504,15,198,41,41,7,7 +14505,15,198,42,95,6,6 +14506,15,198,43,41,7,7 +14507,15,198,44,95,6,6 +14508,15,198,60,194,10,20 +14509,15,198,61,195,15,25 +14510,15,198,62,195,10,20 +14511,15,198,63,195,10,20 +14512,15,198,64,195,10,20 +14513,15,198,45,129,10,10 +14514,15,198,46,129,10,10 +14515,15,198,47,129,10,10 +14516,15,198,48,118,10,10 +14517,15,198,49,118,10,10 +14518,15,198,50,129,20,20 +14519,15,198,51,118,20,20 +14520,15,198,52,118,20,20 +14522,15,198,53,118,20,20 +14524,15,198,54,118,20,20 +14525,15,198,55,118,40,40 +14527,15,198,56,118,40,40 +14529,15,198,57,129,40,40 +14530,15,198,58,119,40,40 +14532,15,198,59,129,40,40 +14533,15,199,33,74,8,8 +14534,15,199,34,27,8,8 +14536,15,199,35,74,8,8 +14537,15,199,35,359,8,8 +14538,15,199,35,436,8,8 +14539,15,199,36,27,8,8 +14540,15,199,36,359,8,8 +14541,15,199,36,436,8,8 +14542,15,199,37,41,7,7 +14543,15,199,37,296,7,7 +14544,15,199,37,433,7,7 +14545,15,199,38,41,7,7 +14546,15,199,38,296,7,7 +14547,15,199,38,433,7,7 +14548,15,199,39,95,8,8 +14549,15,199,40,95,8,8 +14550,15,199,41,41,9,9 +14551,15,199,42,19,6,6 +14552,15,199,43,41,9,9 +14553,15,199,44,19,6,6 +14554,15,199,60,194,10,20 +14555,15,199,61,195,15,25 +14556,15,199,62,195,10,20 +14557,15,199,63,195,10,20 +14558,15,199,64,195,10,20 +14559,15,199,45,129,10,10 +14560,15,199,46,129,10,10 +14561,15,199,47,129,10,10 +14562,15,199,48,118,10,10 +14563,15,199,49,118,10,10 +14564,15,199,50,129,20,20 +14565,15,199,51,118,20,20 +14566,15,199,52,118,20,20 +14568,15,199,53,118,20,20 +14570,15,199,54,118,20,20 +14571,15,199,55,118,40,40 +14573,15,199,56,118,40,40 +14575,15,199,57,129,40,40 +14576,15,199,58,119,40,40 +14578,15,199,59,129,40,40 +14579,15,200,33,41,22,22 +14580,15,200,34,20,22,22 +14582,15,200,35,41,22,22 +14583,15,200,35,359,22,22 +14584,15,200,35,436,22,22 +14585,15,200,36,20,22,22 +14586,15,200,36,359,22,22 +14587,15,200,36,436,22,22 +14588,15,200,37,42,22,22 +14589,15,200,37,296,22,22 +14590,15,200,37,433,22,22 +14591,15,200,38,42,22,22 +14592,15,200,38,296,22,22 +14593,15,200,38,433,22,22 +14594,15,200,39,74,21,21 +14595,15,200,40,74,21,21 +14596,15,200,41,19,20,20 +14597,15,200,42,95,23,23 +14598,15,200,43,19,20,20 +14599,15,200,44,95,23,23 +14600,15,200,60,72,10,20 +14601,15,200,61,195,15,25 +14602,15,200,62,73,15,25 +14603,15,200,63,73,15,25 +14604,15,200,64,73,15,25 +14605,15,200,45,129,10,10 +14606,15,200,46,129,10,10 +14607,15,200,47,129,10,10 +14608,15,200,48,98,10,10 +14609,15,200,49,98,10,10 +14610,15,200,50,129,20,20 +14611,15,200,51,98,20,20 +14612,15,200,52,98,20,20 +14614,15,200,53,222,20,20 +14615,15,200,53,222,20,20 +14616,15,200,53,120,20,20 +14618,15,200,54,98,20,20 +14619,15,200,55,98,40,40 +14621,15,200,56,222,40,40 +14622,15,200,56,222,40,40 +14623,15,200,56,120,40,40 +14625,15,200,57,98,40,40 +14627,15,200,58,99,40,40 +14629,15,200,59,98,40,40 +14631,15,201,33,187,6,6 +14632,15,201,33,187,6,6 +14633,15,201,33,41,6,6 +14635,15,201,34,19,7,7 +14637,15,201,35,187,6,6 +14638,15,201,35,187,6,6 +14639,15,201,35,41,6,6 +14640,15,201,35,311,6,6 +14641,15,201,35,403,6,6 +14642,15,201,36,19,7,7 +14643,15,201,36,311,7,7 +14644,15,201,36,403,7,7 +14645,15,201,37,21,6,6 +14646,15,201,37,21,6,6 +14647,15,201,37,19,6,6 +14648,15,201,37,312,6,6 +14649,15,201,37,403,6,6 +14650,15,201,38,21,6,6 +14651,15,201,38,21,6,6 +14652,15,201,38,19,6,6 +14653,15,201,38,312,6,6 +14654,15,201,38,403,6,6 +14655,15,201,39,19,6,6 +14656,15,201,40,19,6,6 +14657,15,201,41,187,8,8 +14658,15,201,41,187,8,8 +14659,15,201,41,41,8,8 +14660,15,201,42,41,4,4 +14661,15,201,42,19,4,4 +14662,15,201,42,41,4,4 +14663,15,201,43,187,8,8 +14664,15,201,43,187,8,8 +14665,15,201,43,41,8,8 +14666,15,201,44,41,4,4 +14667,15,201,44,19,4,4 +14668,15,201,44,41,4,4 +14669,15,202,33,41,5,5 +14670,15,202,34,41,6,6 +14671,15,202,35,41,5,5 +14672,15,202,35,359,5,5 +14673,15,202,35,436,5,5 +14674,15,202,36,41,6,6 +14675,15,202,36,359,6,6 +14676,15,202,36,436,6,6 +14677,15,202,37,41,7,7 +14678,15,202,37,296,7,7 +14679,15,202,37,433,7,7 +14680,15,202,38,41,7,7 +14681,15,202,38,296,7,7 +14682,15,202,38,433,7,7 +14683,15,202,39,79,6,6 +14684,15,202,40,79,6,6 +14685,15,202,41,41,8,8 +14686,15,202,42,79,8,8 +14687,15,202,43,41,8,8 +14688,15,202,44,79,8,8 +14689,15,202,60,79,10,20 +14690,15,202,61,79,15,25 +14691,15,202,62,79,5,15 +14692,15,202,63,79,5,15 +14693,15,202,64,79,5,15 +14694,15,202,45,129,10,10 +14695,15,202,46,129,10,10 +14696,15,202,47,129,10,10 +14697,15,202,48,118,10,10 +14698,15,202,49,118,10,10 +14699,15,202,50,129,20,20 +14700,15,202,51,118,20,20 +14701,15,202,52,118,20,20 +14703,15,202,53,118,20,20 +14705,15,202,54,118,20,20 +14706,15,202,55,118,40,40 +14708,15,202,56,118,40,40 +14710,15,202,57,129,40,40 +14711,15,202,58,119,40,40 +14713,15,202,59,129,40,40 +14714,15,203,33,41,21,21 +14715,15,203,34,41,23,23 +14716,15,203,35,41,21,21 +14717,15,203,35,359,21,21 +14718,15,203,35,436,21,21 +14719,15,203,36,41,23,23 +14720,15,203,36,359,23,23 +14721,15,203,36,436,23,23 +14722,15,203,37,41,19,19 +14723,15,203,37,296,19,19 +14724,15,203,37,433,19,19 +14725,15,203,38,41,19,19 +14726,15,203,38,296,19,19 +14727,15,203,38,433,19,19 +14728,15,203,39,79,21,21 +14729,15,203,40,79,21,21 +14730,15,203,41,42,23,23 +14731,15,203,42,79,23,23 +14732,15,203,43,42,23,23 +14733,15,203,44,79,23,23 +14734,15,203,60,79,10,20 +14735,15,203,61,79,15,25 +14736,15,203,62,80,15,25 +14737,15,203,63,80,15,25 +14738,15,203,64,80,30,30 +14739,15,203,45,129,10,10 +14740,15,203,46,129,10,10 +14741,15,203,47,129,10,10 +14742,15,203,48,118,10,10 +14743,15,203,49,118,10,10 +14744,15,203,50,129,20,20 +14745,15,203,51,118,20,20 +14746,15,203,52,118,20,20 +14748,15,203,53,118,20,20 +14750,15,203,54,118,20,20 +14751,15,203,55,118,40,40 +14753,15,203,56,118,40,40 +14755,15,203,57,129,40,40 +14756,15,203,58,119,40,40 +14758,15,203,59,129,40,40 +14759,15,204,33,10,5,5 +14760,15,204,33,10,5,5 +14761,15,204,33,43,5,5 +14763,15,204,34,11,6,6 +14764,15,204,34,10,6,6 +14765,15,204,34,43,6,6 +14767,15,204,35,10,5,5 +14768,15,204,35,10,5,5 +14769,15,204,35,43,5,5 +14770,15,204,35,325,5,5 +14771,15,204,35,406,5,5 +14772,15,204,36,11,6,6 +14773,15,204,36,10,6,6 +14774,15,204,36,43,6,6 +14775,15,204,36,325,6,6 +14776,15,204,36,406,6,6 +14777,15,204,37,10,6,6 +14778,15,204,37,11,6,6 +14779,15,204,37,41,6,6 +14780,15,204,37,322,6,6 +14781,15,204,37,455,6,6 +14782,15,204,38,10,6,6 +14783,15,204,38,11,6,6 +14784,15,204,38,41,6,6 +14785,15,204,38,322,6,6 +14786,15,204,38,455,6,6 +14787,15,204,39,46,5,5 +14788,15,204,39,11,5,5 +14789,15,204,39,46,5,5 +14790,15,204,40,46,5,5 +14791,15,204,40,11,5,5 +14792,15,204,40,46,5,5 +14793,15,204,41,41,5,5 +14794,15,204,42,46,6,6 +14795,15,204,43,41,5,5 +14796,15,204,44,46,6,6 +14797,15,204,60,54,10,20 +14798,15,204,61,54,5,15 +14799,15,204,62,55,10,20 +14800,15,204,63,55,10,20 +14801,15,204,64,55,10,20 +14802,15,204,45,129,10,10 +14803,15,204,46,129,10,10 +14804,15,204,47,129,10,10 +14805,15,204,48,60,10,10 +14806,15,204,49,60,10,10 +14807,15,204,50,129,20,20 +14808,15,204,51,60,20,20 +14809,15,204,52,60,20,20 +14811,15,204,53,60,20,20 +14813,15,204,54,60,20,20 +14814,15,204,55,60,40,40 +14816,15,204,56,60,40,40 +14818,15,204,57,129,40,40 +14819,15,204,58,60,40,40 +14821,15,204,59,129,40,40 +14822,15,205,33,96,10,10 +14823,15,205,33,280,10,10 +14824,15,205,34,19,11,11 +14825,15,205,34,280,11,11 +14826,15,205,35,96,10,10 +14827,15,205,35,293,10,10 +14828,15,205,35,418,10,10 +14829,15,205,36,19,11,11 +14830,15,205,36,293,11,11 +14831,15,205,36,418,11,11 +14832,15,205,37,96,12,12 +14833,15,205,37,264,12,12 +14834,15,205,37,399,12,12 +14835,15,205,38,96,12,12 +14836,15,205,38,264,12,12 +14837,15,205,38,399,12,12 +14838,15,205,39,63,10,10 +14839,15,205,40,63,10,10 +14840,15,205,41,19,13,13 +14841,15,205,42,132,10,10 +14842,15,205,43,19,13,13 +14843,15,205,44,132,10,10 +14844,15,205,60,72,15,25 +14845,15,205,61,72,10,20 +14846,15,205,62,73,15,25 +14847,15,205,63,73,15,25 +14848,15,205,64,73,29,29 +14849,15,205,45,129,10,10 +14850,15,205,46,129,10,10 +14851,15,205,47,129,10,10 +14852,15,205,48,98,10,10 +14853,15,205,49,98,10,10 +14854,15,205,50,129,20,20 +14855,15,205,51,98,20,20 +14856,15,205,52,98,20,20 +14858,15,205,53,222,20,20 +14859,15,205,53,222,20,20 +14860,15,205,53,120,20,20 +14862,15,205,54,98,20,20 +14863,15,205,55,98,40,40 +14865,15,205,56,222,40,40 +14866,15,205,56,222,40,40 +14867,15,205,56,120,40,40 +14869,15,205,57,98,40,40 +14871,15,205,58,99,40,40 +14873,15,205,59,98,40,40 +14875,15,206,33,32,12,12 +14876,15,206,33,193,12,12 +14877,15,206,34,29,12,12 +14878,15,206,34,193,12,12 +14879,15,206,35,32,12,12 +14880,15,206,35,293,12,12 +14881,15,206,35,418,12,12 +14882,15,206,36,29,12,12 +14883,15,206,36,293,12,12 +14884,15,206,36,418,12,12 +14885,15,206,37,96,14,14 +14886,15,206,37,264,14,14 +14887,15,206,37,399,14,14 +14888,15,206,38,96,14,14 +14889,15,206,38,264,14,14 +14890,15,206,38,399,14,14 +14891,15,206,39,63,10,10 +14892,15,206,40,63,10,10 +14893,15,206,41,16,14,14 +14894,15,206,41,16,14,14 +14895,15,206,41,163,14,14 +14896,15,206,42,132,10,10 +14897,15,206,43,16,14,14 +14898,15,206,43,16,14,14 +14899,15,206,43,163,14,14 +14900,15,206,44,193,12,12 +14901,15,206,60,54,15,25 +14902,15,206,61,54,10,20 +14903,15,206,62,55,15,25 +14904,15,206,63,55,15,25 +14905,15,206,64,55,31,31 +14906,15,206,45,129,10,10 +14907,15,206,46,129,10,10 +14908,15,206,47,129,10,10 +14909,15,206,48,60,10,10 +14910,15,206,49,60,10,10 +14911,15,206,50,129,20,20 +14912,15,206,51,60,20,20 +14913,15,206,52,60,20,20 +14915,15,206,53,60,20,20 +14917,15,206,54,60,20,20 +14918,15,206,55,60,40,40 +14920,15,206,56,60,40,40 +14922,15,206,57,129,40,40 +14923,15,206,58,60,40,40 +14925,15,206,59,129,40,40 +14926,15,207,33,10,10,10 +14927,15,207,33,10,10,10 +14928,15,207,33,163,10,10 +14930,15,207,34,11,10,10 +14931,15,207,34,11,10,10 +14932,15,207,34,163,10,10 +14934,15,207,35,10,10,10 +14935,15,207,35,10,10,10 +14936,15,207,35,163,10,10 +14937,15,207,35,311,10,10 +14938,15,207,35,403,10,10 +14939,15,207,36,11,10,10 +14940,15,207,36,11,10,10 +14941,15,207,36,163,10,10 +14942,15,207,36,311,10,10 +14943,15,207,36,403,10,10 +14944,15,207,37,10,12,12 +14945,15,207,37,191,12,12 +14946,15,207,37,163,12,12 +14947,15,207,37,312,12,12 +14948,15,207,37,403,12,12 +14949,15,207,38,10,12,12 +14950,15,207,38,191,12,12 +14951,15,207,38,163,12,12 +14952,15,207,38,312,12,12 +14953,15,207,38,403,12,12 +14954,15,207,39,16,12,12 +14955,15,207,39,16,12,12 +14956,15,207,39,163,12,12 +14957,15,207,40,16,12,12 +14958,15,207,40,16,12,12 +14959,15,207,40,163,12,12 +14960,15,207,41,16,10,10 +14961,15,207,41,191,10,10 +14962,15,207,41,163,10,10 +14963,15,207,42,16,14,14 +14964,15,207,42,16,14,14 +14965,15,207,42,163,14,14 +14966,15,207,43,16,10,10 +14967,15,207,43,191,10,10 +14968,15,207,43,163,10,10 +14969,15,207,44,16,14,14 +14970,15,207,44,16,14,14 +14971,15,207,44,163,14,14 +14972,15,208,33,10,10,10 +14973,15,208,34,10,10,10 +14974,15,208,35,10,10,10 +14975,15,208,36,10,10,10 +14976,15,208,37,10,12,12 +14977,15,208,38,10,12,12 +14978,15,208,39,10,12,12 +14979,15,208,40,10,12,12 +14980,15,208,41,10,10,10 +14981,15,208,42,10,14,14 +14982,15,208,43,10,10,10 +14983,15,208,44,10,14,14 +14984,15,209,33,32,12,12 +14985,15,209,34,29,12,12 +14987,15,209,35,32,12,12 +14988,15,209,35,311,12,12 +14989,15,209,35,403,12,12 +14990,15,209,36,29,12,12 +14991,15,209,36,311,12,12 +14992,15,209,36,403,12,12 +14993,15,209,37,16,13,13 +14994,15,209,37,16,13,13 +14995,15,209,37,163,13,13 +14996,15,209,37,312,13,13 +14997,15,209,37,403,13,13 +14998,15,209,38,16,13,13 +14999,15,209,38,16,13,13 +15000,15,209,38,163,13,13 +15001,15,209,38,312,13,13 +15002,15,209,38,403,13,13 +15003,15,209,39,58,13,13 +15004,15,209,40,58,13,13 +15005,15,209,41,234,13,13 +15006,15,209,42,16,15,15 +15007,15,209,42,58,15,15 +15008,15,209,42,163,15,15 +15009,15,209,43,234,13,13 +15010,15,209,44,16,15,15 +15011,15,209,44,58,15,15 +15012,15,209,44,163,15,15 +15013,15,210,33,16,13,13 +15014,15,210,33,16,13,13 +15015,15,210,33,167,13,13 +15017,15,210,34,234,15,15 +15019,15,210,35,16,13,13 +15020,15,210,35,16,13,13 +15021,15,210,35,167,13,13 +15022,15,210,35,311,13,13 +15023,15,210,35,403,13,13 +15024,15,210,36,234,15,15 +15025,15,210,36,311,15,15 +15026,15,210,36,403,15,15 +15027,15,210,37,16,15,15 +15028,15,210,37,16,15,15 +15029,15,210,37,163,15,15 +15030,15,210,37,312,15,15 +15031,15,210,37,403,15,15 +15032,15,210,38,16,15,15 +15033,15,210,38,16,15,15 +15034,15,210,38,163,15,15 +15035,15,210,38,312,15,15 +15036,15,210,38,403,15,15 +15037,15,210,39,58,14,14 +15038,15,210,40,58,14,14 +15039,15,210,41,16,15,15 +15040,15,210,41,17,15,15 +15041,15,210,41,167,15,15 +15042,15,210,42,16,15,15 +15043,15,210,42,58,15,15 +15044,15,210,42,167,15,15 +15045,15,210,43,16,15,15 +15046,15,210,43,17,15,15 +15047,15,210,43,167,15,15 +15048,15,210,44,16,15,15 +15049,15,210,44,58,15,15 +15050,15,210,44,167,15,15 +15051,15,211,60,60,15,25 +15052,15,211,61,60,10,20 +15053,15,211,62,61,15,25 +15054,15,211,63,61,15,25 +15055,15,211,64,61,15,25 +15056,15,211,45,129,10,10 +15057,15,211,46,129,10,10 +15058,15,211,47,129,10,10 +15059,15,211,48,60,10,10 +15060,15,211,49,60,10,10 +15061,15,211,50,129,20,20 +15062,15,211,51,60,20,20 +15063,15,211,52,60,20,20 +15065,15,211,53,60,20,20 +15067,15,211,54,60,20,20 +15068,15,211,55,60,40,40 +15070,15,211,56,60,40,40 +15072,15,211,57,129,40,40 +15073,15,211,58,60,40,40 +15075,15,211,59,129,40,40 +15076,15,212,33,19,13,13 +15077,15,212,34,109,14,14 +15079,15,212,35,19,13,13 +15080,15,212,35,263,13,13 +15081,15,212,35,441,13,13 +15082,15,212,36,109,14,14 +15083,15,212,36,263,14,14 +15084,15,212,36,441,14,14 +15085,15,212,37,19,15,15 +15086,15,212,37,327,15,15 +15087,15,212,37,307,15,15 +15088,15,212,38,19,15,15 +15089,15,212,38,327,15,15 +15090,15,212,38,307,15,15 +15091,15,212,39,41,14,14 +15092,15,212,40,41,14,14 +15093,15,212,41,109,16,16 +15094,15,212,42,20,15,15 +15095,15,212,43,109,16,16 +15096,15,212,44,20,15,15 +15097,15,213,33,19,14,14 +15098,15,213,34,109,14,14 +15100,15,213,35,19,14,14 +15101,15,213,35,263,14,14 +15102,15,213,35,441,14,14 +15103,15,213,36,109,14,14 +15104,15,213,36,263,14,14 +15105,15,213,36,441,14,14 +15106,15,213,37,109,16,16 +15107,15,213,37,327,16,16 +15108,15,213,37,307,16,16 +15109,15,213,38,109,16,16 +15110,15,213,38,327,16,16 +15111,15,213,38,307,16,16 +15112,15,213,39,19,16,16 +15113,15,213,39,126,16,16 +15114,15,213,39,19,16,16 +15115,15,213,40,19,16,16 +15116,15,213,40,126,16,16 +15117,15,213,40,19,16,16 +15118,15,213,41,41,15,15 +15119,15,213,42,126,14,14 +15120,15,213,42,19,14,14 +15121,15,213,42,126,14,14 +15122,15,213,43,41,15,15 +15123,15,213,44,126,14,14 +15124,15,213,44,19,14,14 +15125,15,213,44,126,14,14 +15126,15,214,33,19,20,20 +15127,15,214,33,19,20,20 +15128,15,214,33,92,20,20 +15130,15,214,34,19,21,21 +15131,15,214,34,19,21,21 +15132,15,214,34,92,21,21 +15134,15,214,35,19,20,20 +15135,15,214,35,19,20,20 +15136,15,214,35,92,20,20 +15137,15,214,35,263,20,20 +15138,15,214,35,441,20,20 +15139,15,214,36,19,21,21 +15140,15,214,36,19,21,21 +15141,15,214,36,92,21,21 +15142,15,214,36,263,21,21 +15143,15,214,36,441,21,21 +15144,15,214,37,19,22,22 +15145,15,214,37,19,22,22 +15146,15,214,37,92,22,22 +15147,15,214,37,327,22,22 +15148,15,214,37,307,22,22 +15149,15,214,38,19,22,22 +15150,15,214,38,19,22,22 +15151,15,214,38,92,22,22 +15152,15,214,38,327,22,22 +15153,15,214,38,307,22,22 +15154,15,214,39,19,22,22 +15155,15,214,40,19,22,22 +15156,15,214,41,19,23,23 +15157,15,214,42,19,24,24 +15158,15,214,43,19,23,23 +15159,15,214,44,19,24,24 +15160,15,215,33,19,20,20 +15161,15,215,33,19,20,20 +15162,15,215,33,92,20,20 +15164,15,215,34,19,21,21 +15165,15,215,34,19,21,21 +15166,15,215,34,92,21,21 +15168,15,215,35,19,20,20 +15169,15,215,35,19,20,20 +15170,15,215,35,92,20,20 +15171,15,215,35,263,20,20 +15172,15,215,35,441,20,20 +15173,15,215,36,19,21,21 +15174,15,215,36,19,21,21 +15175,15,215,36,92,21,21 +15176,15,215,36,263,21,21 +15177,15,215,36,441,21,21 +15178,15,215,37,19,22,22 +15179,15,215,37,19,22,22 +15180,15,215,37,92,22,22 +15181,15,215,37,327,22,22 +15182,15,215,37,307,22,22 +15183,15,215,38,19,22,22 +15184,15,215,38,19,22,22 +15185,15,215,38,92,22,22 +15186,15,215,38,327,22,22 +15187,15,215,38,307,22,22 +15188,15,215,39,19,22,22 +15189,15,215,40,19,22,22 +15190,15,215,41,19,23,23 +15191,15,215,42,19,24,24 +15192,15,215,43,19,23,23 +15193,15,215,44,19,24,24 +15194,15,216,33,19,20,20 +15195,15,216,33,19,20,20 +15196,15,216,33,92,20,20 +15198,15,216,34,19,21,21 +15199,15,216,34,19,21,21 +15200,15,216,34,92,21,21 +15202,15,216,35,19,20,20 +15203,15,216,35,19,20,20 +15204,15,216,35,92,20,20 +15205,15,216,35,263,20,20 +15206,15,216,35,441,20,20 +15207,15,216,36,19,21,21 +15208,15,216,36,19,21,21 +15209,15,216,36,92,21,21 +15210,15,216,36,263,21,21 +15211,15,216,36,441,21,21 +15212,15,216,37,19,22,22 +15213,15,216,37,19,22,22 +15214,15,216,37,92,22,22 +15215,15,216,37,327,22,22 +15216,15,216,37,307,22,22 +15217,15,216,38,19,22,22 +15218,15,216,38,19,22,22 +15219,15,216,38,92,22,22 +15220,15,216,38,327,22,22 +15221,15,216,38,307,22,22 +15222,15,216,39,19,22,22 +15223,15,216,40,19,22,22 +15224,15,216,41,19,23,23 +15225,15,216,42,19,24,24 +15226,15,216,43,19,23,23 +15227,15,216,44,19,24,24 +15228,15,217,33,19,20,20 +15229,15,217,33,19,20,20 +15230,15,217,33,92,20,20 +15232,15,217,34,19,21,21 +15233,15,217,34,19,21,21 +15234,15,217,34,92,21,21 +15236,15,217,35,19,20,20 +15237,15,217,35,19,20,20 +15238,15,217,35,92,20,20 +15239,15,217,35,263,20,20 +15240,15,217,35,441,20,20 +15241,15,217,36,19,21,21 +15242,15,217,36,19,21,21 +15243,15,217,36,92,21,21 +15244,15,217,36,263,21,21 +15245,15,217,36,441,21,21 +15246,15,217,37,19,22,22 +15247,15,217,37,19,22,22 +15248,15,217,37,92,22,22 +15249,15,217,37,327,22,22 +15250,15,217,37,307,22,22 +15251,15,217,38,19,22,22 +15252,15,217,38,19,22,22 +15253,15,217,38,92,22,22 +15254,15,217,38,327,22,22 +15255,15,217,38,307,22,22 +15256,15,217,39,19,22,22 +15257,15,217,40,19,22,22 +15258,15,217,41,19,23,23 +15259,15,217,42,19,24,24 +15260,15,217,43,19,23,23 +15261,15,217,44,19,24,24 +15262,15,218,33,19,20,20 +15263,15,218,33,19,20,20 +15264,15,218,33,92,20,20 +15266,15,218,34,19,21,21 +15267,15,218,34,19,21,21 +15268,15,218,34,92,21,21 +15270,15,218,35,19,20,20 +15271,15,218,35,19,20,20 +15272,15,218,35,92,20,20 +15273,15,218,35,263,20,20 +15274,15,218,35,441,20,20 +15275,15,218,36,19,21,21 +15276,15,218,36,19,21,21 +15277,15,218,36,92,21,21 +15278,15,218,36,263,21,21 +15279,15,218,36,441,21,21 +15280,15,218,37,19,22,22 +15281,15,218,37,19,22,22 +15282,15,218,37,92,22,22 +15283,15,218,37,327,22,22 +15284,15,218,37,307,22,22 +15285,15,218,38,19,22,22 +15286,15,218,38,19,22,22 +15287,15,218,38,92,22,22 +15288,15,218,38,327,22,22 +15289,15,218,38,307,22,22 +15290,15,218,39,19,22,22 +15291,15,218,40,19,22,22 +15292,15,218,41,19,23,23 +15293,15,218,42,19,24,24 +15294,15,218,43,19,23,23 +15295,15,218,44,19,24,24 +15296,15,219,33,19,20,20 +15297,15,219,33,19,20,20 +15298,15,219,33,92,20,20 +15300,15,219,34,19,21,21 +15301,15,219,34,19,21,21 +15302,15,219,34,92,21,21 +15304,15,219,35,19,20,20 +15305,15,219,35,19,20,20 +15306,15,219,35,92,20,20 +15307,15,219,35,263,20,20 +15308,15,219,35,441,20,20 +15309,15,219,36,19,21,21 +15310,15,219,36,19,21,21 +15311,15,219,36,92,21,21 +15312,15,219,36,263,21,21 +15313,15,219,36,441,21,21 +15314,15,219,37,19,22,22 +15315,15,219,37,19,22,22 +15316,15,219,37,92,22,22 +15317,15,219,37,327,22,22 +15318,15,219,37,307,22,22 +15319,15,219,38,19,22,22 +15320,15,219,38,19,22,22 +15321,15,219,38,92,22,22 +15322,15,219,38,327,22,22 +15323,15,219,38,307,22,22 +15324,15,219,39,19,22,22 +15325,15,219,40,19,22,22 +15326,15,219,41,19,23,23 +15327,15,219,42,19,24,24 +15328,15,219,43,19,23,23 +15329,15,219,44,19,24,24 +15330,15,220,33,19,20,20 +15331,15,220,33,19,20,20 +15332,15,220,33,92,20,20 +15334,15,220,34,19,21,21 +15335,15,220,34,19,21,21 +15336,15,220,34,92,21,21 +15338,15,220,35,19,20,20 +15339,15,220,35,19,20,20 +15340,15,220,35,92,20,20 +15341,15,220,35,263,20,20 +15342,15,220,35,441,20,20 +15343,15,220,36,19,21,21 +15344,15,220,36,19,21,21 +15345,15,220,36,92,21,21 +15346,15,220,36,263,21,21 +15347,15,220,36,441,21,21 +15348,15,220,37,19,22,22 +15349,15,220,37,19,22,22 +15350,15,220,37,92,22,22 +15351,15,220,37,327,22,22 +15352,15,220,37,307,22,22 +15353,15,220,38,19,22,22 +15354,15,220,38,19,22,22 +15355,15,220,38,92,22,22 +15356,15,220,38,327,22,22 +15357,15,220,38,307,22,22 +15358,15,220,39,19,22,22 +15359,15,220,40,19,22,22 +15360,15,220,41,19,23,23 +15361,15,220,42,19,24,24 +15362,15,220,43,19,23,23 +15363,15,220,44,19,24,24 +15364,15,221,33,19,20,20 +15365,15,221,33,19,20,20 +15366,15,221,33,92,20,20 +15368,15,221,34,19,21,21 +15369,15,221,34,19,21,21 +15370,15,221,34,92,21,21 +15372,15,221,35,19,20,20 +15373,15,221,35,19,20,20 +15374,15,221,35,92,20,20 +15375,15,221,35,263,20,20 +15376,15,221,35,441,20,20 +15377,15,221,36,19,21,21 +15378,15,221,36,19,21,21 +15379,15,221,36,92,21,21 +15380,15,221,36,263,21,21 +15381,15,221,36,441,21,21 +15382,15,221,37,19,22,22 +15383,15,221,37,19,22,22 +15384,15,221,37,92,22,22 +15385,15,221,37,327,22,22 +15386,15,221,37,307,22,22 +15387,15,221,38,19,22,22 +15388,15,221,38,19,22,22 +15389,15,221,38,92,22,22 +15390,15,221,38,327,22,22 +15391,15,221,38,307,22,22 +15392,15,221,39,19,22,22 +15393,15,221,40,19,22,22 +15394,15,221,41,19,23,23 +15395,15,221,42,19,24,24 +15396,15,221,43,19,23,23 +15397,15,221,44,19,24,24 +15398,15,222,33,19,16,16 +15399,15,222,33,209,16,16 +15400,15,222,34,20,16,16 +15401,15,222,34,209,16,16 +15402,15,222,35,19,16,16 +15403,15,222,35,311,16,16 +15404,15,222,35,403,16,16 +15405,15,222,36,20,16,16 +15406,15,222,36,311,16,16 +15407,15,222,36,403,16,16 +15408,15,222,37,81,16,16 +15409,15,222,37,312,16,16 +15410,15,222,37,403,16,16 +15411,15,222,38,81,16,16 +15412,15,222,38,312,16,16 +15413,15,222,38,403,16,16 +15414,15,222,39,83,16,16 +15415,15,222,39,83,16,16 +15416,15,222,39,19,16,16 +15417,15,222,40,83,16,16 +15418,15,222,40,83,16,16 +15419,15,222,40,19,16,16 +15420,15,222,41,241,13,13 +15421,15,222,42,128,13,13 +15422,15,222,43,241,13,13 +15423,15,222,44,209,13,13 +15424,15,223,33,19,16,16 +15425,15,223,34,20,17,17 +15427,15,223,35,19,16,16 +15428,15,223,35,311,16,16 +15429,15,223,35,403,16,16 +15430,15,223,36,20,17,17 +15431,15,223,36,311,17,17 +15432,15,223,36,403,17,17 +15433,15,223,37,81,16,16 +15434,15,223,37,312,16,16 +15435,15,223,37,403,16,16 +15436,15,223,38,81,16,16 +15437,15,223,38,312,16,16 +15438,15,223,38,403,16,16 +15439,15,223,39,83,16,16 +15440,15,223,39,83,16,16 +15441,15,223,39,19,16,16 +15442,15,223,40,83,16,16 +15443,15,223,40,83,16,16 +15444,15,223,40,19,16,16 +15445,15,223,41,241,15,15 +15446,15,223,42,128,15,15 +15447,15,223,43,241,15,15 +15448,15,223,44,128,15,15 +15449,15,224,60,72,15,25 +15450,15,224,61,72,10,20 +15451,15,224,62,73,15,25 +15452,15,224,63,73,15,25 +15453,15,224,64,73,15,25 +15454,15,224,45,129,10,10 +15455,15,224,46,129,10,10 +15456,15,224,47,129,10,10 +15457,15,224,48,98,10,10 +15458,15,224,49,98,10,10 +15459,15,224,50,129,20,20 +15460,15,224,51,98,20,20 +15461,15,224,52,98,20,20 +15463,15,224,53,222,20,20 +15464,15,224,53,222,20,20 +15465,15,224,53,120,20,20 +15467,15,224,54,98,20,20 +15468,15,224,55,98,40,40 +15470,15,224,56,222,40,40 +15471,15,224,56,222,40,40 +15472,15,224,56,120,40,40 +15474,15,224,57,98,40,40 +15476,15,224,58,99,40,40 +15478,15,224,59,98,40,40 +15480,15,225,60,72,15,25 +15481,15,225,61,72,10,20 +15482,15,225,62,73,15,25 +15483,15,225,63,73,15,25 +15484,15,225,64,73,15,25 +15485,15,225,45,129,10,10 +15486,15,225,46,129,10,10 +15487,15,225,47,129,10,10 +15488,15,225,48,98,10,10 +15489,15,225,49,98,10,10 +15490,15,225,50,129,20,20 +15491,15,225,51,98,20,20 +15492,15,225,52,98,20,20 +15494,15,225,53,222,20,20 +15495,15,225,53,222,20,20 +15496,15,225,53,120,20,20 +15498,15,225,54,98,20,20 +15499,15,225,55,98,40,40 +15501,15,225,56,222,40,40 +15502,15,225,56,222,40,40 +15503,15,225,56,120,40,40 +15505,15,225,57,98,40,40 +15507,15,225,58,99,40,40 +15509,15,225,59,98,40,40 +15511,15,226,60,72,15,25 +15512,15,226,61,73,15,25 +15513,15,226,62,226,15,25 +15514,15,226,63,226,15,25 +15515,15,226,64,226,15,25 +15516,15,226,45,129,10,10 +15517,15,226,46,129,10,10 +15518,15,226,47,129,10,10 +15519,15,226,48,72,10,10 +15520,15,226,49,72,10,10 +15521,15,226,50,129,20,20 +15522,15,226,51,72,20,20 +15523,15,226,52,170,20,20 +15525,15,226,53,90,20,20 +15527,15,226,54,170,20,20 +15528,15,226,55,170,40,40 +15530,15,226,56,90,40,40 +15532,15,226,57,73,40,40 +15534,15,226,58,171,40,40 +15536,15,226,59,73,40,40 +15538,15,227,33,98,22,22 +15539,15,227,34,41,23,23 +15541,15,227,35,98,22,22 +15542,15,227,35,359,22,22 +15543,15,227,35,436,22,22 +15544,15,227,36,41,23,23 +15545,15,227,36,359,23,23 +15546,15,227,36,436,23,23 +15547,15,227,37,98,24,24 +15548,15,227,37,296,24,24 +15549,15,227,37,433,24,24 +15550,15,227,38,98,24,24 +15551,15,227,38,296,24,24 +15552,15,227,38,433,24,24 +15553,15,227,39,86,22,22 +15554,15,227,40,86,22,22 +15555,15,227,41,42,23,23 +15556,15,227,42,86,24,24 +15557,15,227,43,42,23,23 +15558,15,227,44,86,24,24 +15559,15,227,60,72,15,25 +15560,15,227,61,116,10,20 +15561,15,227,62,73,15,25 +15562,15,227,63,73,15,25 +15563,15,227,64,73,15,25 +15564,15,227,45,129,10,10 +15565,15,227,46,129,10,10 +15566,15,227,47,129,10,10 +15567,15,227,48,98,10,10 +15568,15,227,49,98,10,10 +15569,15,227,50,129,20,20 +15570,15,227,51,98,20,20 +15571,15,227,52,98,20,20 +15573,15,227,53,116,20,20 +15575,15,227,54,98,20,20 +15576,15,227,55,98,40,40 +15578,15,227,56,116,40,40 +15580,15,227,57,99,40,40 +15582,15,227,58,117,40,40 +15584,15,227,59,99,40,40 +15586,15,228,33,98,22,22 +15587,15,228,34,41,23,23 +15589,15,228,35,98,22,22 +15590,15,228,35,359,22,22 +15591,15,228,35,436,22,22 +15592,15,228,36,41,23,23 +15593,15,228,36,359,23,23 +15594,15,228,36,436,23,23 +15595,15,228,37,98,24,24 +15596,15,228,37,296,24,24 +15597,15,228,37,433,24,24 +15598,15,228,38,98,24,24 +15599,15,228,38,296,24,24 +15600,15,228,38,433,24,24 +15601,15,228,39,86,22,22 +15602,15,228,40,86,22,22 +15603,15,228,41,42,23,23 +15604,15,228,42,86,24,24 +15605,15,228,43,42,23,23 +15606,15,228,44,86,24,24 +15607,15,230,33,98,22,22 +15608,15,230,34,41,23,23 +15610,15,230,35,98,22,22 +15611,15,230,35,359,22,22 +15612,15,230,35,436,22,22 +15613,15,230,36,41,23,23 +15614,15,230,36,359,23,23 +15615,15,230,36,436,23,23 +15616,15,230,37,98,24,24 +15617,15,230,37,296,24,24 +15618,15,230,37,433,24,24 +15619,15,230,38,98,24,24 +15620,15,230,38,296,24,24 +15621,15,230,38,433,24,24 +15622,15,230,39,86,22,22 +15623,15,230,40,86,22,22 +15624,15,230,41,42,23,23 +15625,15,230,42,86,24,24 +15626,15,230,43,42,23,23 +15627,15,230,44,86,24,24 +15628,15,230,60,116,15,25 +15629,15,230,61,73,15,25 +15630,15,230,62,117,15,25 +15631,15,230,63,117,15,25 +15632,15,230,64,117,30,30 +15633,15,230,45,129,10,10 +15634,15,230,46,129,10,10 +15635,15,230,47,129,10,10 +15636,15,230,48,98,10,10 +15637,15,230,49,98,10,10 +15638,15,230,50,129,20,20 +15639,15,230,51,98,20,20 +15640,15,230,52,98,20,20 +15642,15,230,53,116,20,20 +15644,15,230,54,98,20,20 +15645,15,230,55,98,40,40 +15647,15,230,56,116,40,40 +15649,15,230,57,99,40,40 +15651,15,230,58,117,40,40 +15653,15,230,59,99,40,40 +15655,15,232,33,98,23,23 +15656,15,232,34,41,24,24 +15658,15,232,35,98,23,23 +15659,15,232,35,359,23,23 +15660,15,232,35,436,23,23 +15661,15,232,36,41,24,24 +15662,15,232,36,359,24,24 +15663,15,232,36,436,24,24 +15664,15,232,37,98,25,25 +15665,15,232,37,296,25,25 +15666,15,232,37,433,25,25 +15667,15,232,38,98,25,25 +15668,15,232,38,296,25,25 +15669,15,232,38,433,25,25 +15670,15,232,39,86,23,23 +15671,15,232,40,86,23,23 +15672,15,232,41,42,24,24 +15673,15,232,42,86,25,25 +15674,15,232,43,42,24,24 +15675,15,232,44,86,25,25 +15676,15,235,65,98,15,24 +15677,15,235,66,213,23,28 +15678,15,235,60,72,15,25 +15679,15,235,61,72,10,20 +15680,15,235,62,73,15,25 +15681,15,235,63,73,15,25 +15682,15,235,64,73,15,25 +15683,15,235,45,129,10,10 +15684,15,235,46,129,10,10 +15685,15,235,47,129,10,10 +15686,15,235,48,98,10,10 +15687,15,235,49,98,10,10 +15688,15,235,50,129,20,20 +15689,15,235,51,98,20,20 +15690,15,235,52,98,20,20 +15692,15,235,53,222,20,20 +15693,15,235,53,222,20,20 +15694,15,235,53,120,20,20 +15696,15,235,54,98,20,20 +15697,15,235,55,98,40,40 +15699,15,235,56,222,40,40 +15700,15,235,56,222,40,40 +15701,15,235,56,120,40,40 +15703,15,235,57,98,40,40 +15705,15,235,58,99,40,40 +15707,15,235,59,98,40,40 +15709,15,236,33,56,15,15 +15710,15,236,34,179,13,13 +15712,15,236,35,56,15,15 +15713,15,236,35,293,15,15 +15714,15,236,35,418,15,15 +15715,15,236,36,179,13,13 +15716,15,236,36,293,13,13 +15717,15,236,36,418,13,13 +15718,15,236,37,21,14,14 +15719,15,236,37,21,14,14 +15720,15,236,37,41,14,14 +15721,15,236,37,264,14,14 +15722,15,236,37,399,14,14 +15723,15,236,38,21,14,14 +15724,15,236,38,21,14,14 +15725,15,236,38,41,14,14 +15726,15,236,38,264,14,14 +15727,15,236,38,399,14,14 +15728,15,236,39,21,16,16 +15729,15,236,39,21,16,16 +15730,15,236,39,41,16,16 +15731,15,236,40,21,16,16 +15732,15,236,40,21,16,16 +15733,15,236,40,41,16,16 +15734,15,236,41,180,15,15 +15735,15,236,42,180,17,17 +15736,15,236,43,180,15,15 +15737,15,236,44,180,17,17 +15738,15,236,60,118,15,25 +15739,15,236,61,118,10,20 +15740,15,236,62,119,15,25 +15741,15,236,63,119,15,25 +15742,15,236,64,119,15,25 +15743,15,236,45,129,10,10 +15744,15,236,46,129,10,10 +15745,15,236,47,129,10,10 +15746,15,236,48,118,10,10 +15747,15,236,49,118,10,10 +15748,15,236,50,129,20,20 +15749,15,236,51,118,20,20 +15750,15,236,52,118,20,20 +15752,15,236,53,118,20,20 +15754,15,236,54,118,20,20 +15755,15,236,55,118,40,40 +15757,15,236,56,118,40,40 +15759,15,236,57,129,40,40 +15760,15,236,58,119,40,40 +15762,15,236,59,129,40,40 +15763,15,237,33,41,13,13 +15764,15,237,33,183,13,13 +15765,15,237,34,41,15,15 +15766,15,237,34,183,15,15 +15767,15,237,35,41,13,13 +15768,15,237,35,359,13,13 +15769,15,237,35,436,13,13 +15770,15,237,36,41,15,15 +15771,15,237,36,359,15,15 +15772,15,237,36,436,15,15 +15773,15,237,37,66,14,14 +15774,15,237,37,296,14,14 +15775,15,237,37,433,14,14 +15776,15,237,38,66,14,14 +15777,15,237,38,296,14,14 +15778,15,237,38,433,14,14 +15779,15,237,39,19,14,14 +15780,15,237,40,19,14,14 +15781,15,237,41,74,14,14 +15782,15,237,42,19,16,16 +15783,15,237,43,74,14,14 +15784,15,237,44,183,15,15 +15785,15,237,60,118,15,25 +15786,15,237,61,118,10,20 +15787,15,237,62,119,15,25 +15788,15,237,63,119,15,25 +15789,15,237,64,119,15,25 +15790,15,237,45,129,10,10 +15791,15,237,46,129,10,10 +15792,15,237,47,129,10,10 +15793,15,237,48,118,10,10 +15794,15,237,49,118,10,10 +15795,15,237,50,129,20,20 +15796,15,237,51,118,20,20 +15797,15,237,52,118,20,20 +15799,15,237,53,118,20,20 +15801,15,237,54,118,20,20 +15802,15,237,55,118,40,40 +15804,15,237,56,118,40,40 +15806,15,237,57,129,40,40 +15807,15,237,58,119,40,40 +15809,15,237,59,129,40,40 +15810,15,238,33,74,13,13 +15811,15,238,34,66,13,13 +15813,15,238,35,74,13,13 +15814,15,238,35,359,13,13 +15815,15,238,35,436,13,13 +15816,15,238,36,66,13,13 +15817,15,238,36,359,13,13 +15818,15,238,36,436,13,13 +15819,15,238,37,74,15,15 +15820,15,238,37,296,15,15 +15821,15,238,37,433,15,15 +15822,15,238,38,74,15,15 +15823,15,238,38,296,15,15 +15824,15,238,38,433,15,15 +15825,15,238,39,19,14,14 +15826,15,238,40,19,14,14 +15827,15,238,41,66,15,15 +15828,15,238,42,41,14,14 +15829,15,238,43,66,15,15 +15830,15,238,44,41,14,14 +15831,15,239,33,75,31,31 +15832,15,239,34,67,32,32 +15834,15,239,35,75,31,31 +15835,15,239,35,359,31,31 +15836,15,239,35,436,31,31 +15837,15,239,36,67,32,32 +15838,15,239,36,359,32,32 +15839,15,239,36,436,32,32 +15840,15,239,37,74,31,31 +15841,15,239,37,296,31,31 +15842,15,239,37,433,31,31 +15843,15,239,38,74,31,31 +15844,15,239,38,296,31,31 +15845,15,239,38,433,31,31 +15846,15,239,39,20,30,30 +15847,15,239,40,20,30,30 +15848,15,239,41,66,28,28 +15849,15,239,42,42,30,30 +15850,15,239,43,66,28,28 +15851,15,239,44,42,30,30 +15852,15,239,60,118,15,25 +15853,15,239,61,118,20,30 +15854,15,239,62,119,20,30 +15855,15,239,63,119,20,30 +15856,15,239,64,119,20,30 +15857,15,239,45,129,10,10 +15858,15,239,46,129,10,10 +15859,15,239,47,129,10,10 +15860,15,239,48,118,10,10 +15861,15,239,49,118,10,10 +15862,15,239,50,129,20,20 +15863,15,239,51,118,20,20 +15864,15,239,52,118,20,20 +15866,15,239,53,118,20,20 +15868,15,239,54,118,20,20 +15869,15,239,55,118,40,40 +15871,15,239,56,118,40,40 +15873,15,239,57,129,40,40 +15874,15,239,58,119,40,40 +15876,15,239,59,129,40,40 +15877,15,240,33,41,15,15 +15878,15,240,34,41,17,17 +15879,15,240,35,41,15,15 +15880,15,240,35,359,15,15 +15881,15,240,35,436,15,15 +15882,15,240,36,41,17,17 +15883,15,240,36,359,17,17 +15884,15,240,36,436,17,17 +15885,15,240,37,19,16,16 +15886,15,240,37,296,16,16 +15887,15,240,37,433,16,16 +15888,15,240,38,19,16,16 +15889,15,240,38,296,16,16 +15890,15,240,38,433,16,16 +15891,15,240,39,66,16,16 +15892,15,240,40,66,16,16 +15893,15,240,41,74,16,16 +15894,15,240,42,20,16,16 +15895,15,240,43,74,16,16 +15896,15,240,44,20,16,16 +15897,15,240,60,118,15,25 +15898,15,240,61,118,10,20 +15899,15,240,62,119,15,25 +15900,15,240,63,119,15,25 +15901,15,240,64,119,15,25 +15902,15,240,45,129,10,10 +15903,15,240,46,129,10,10 +15904,15,240,47,129,10,10 +15905,15,240,48,118,10,10 +15906,15,240,49,118,10,10 +15907,15,240,50,129,20,20 +15908,15,240,51,118,20,20 +15909,15,240,52,118,20,20 +15911,15,240,53,118,20,20 +15913,15,240,54,118,20,20 +15914,15,240,55,118,40,40 +15916,15,240,56,118,40,40 +15918,15,240,57,129,40,40 +15919,15,240,58,119,40,40 +15921,15,240,59,129,40,40 +15922,15,241,33,180,15,15 +15923,15,241,34,203,15,15 +15925,15,241,35,180,15,15 +15926,15,241,35,293,15,15 +15927,15,241,35,418,15,15 +15928,15,241,36,203,15,15 +15929,15,241,36,293,15,15 +15930,15,241,36,418,15,15 +15931,15,241,37,17,17,17 +15932,15,241,37,17,17,17 +15933,15,241,37,164,17,17 +15934,15,241,37,264,17,17 +15935,15,241,37,399,17,17 +15936,15,241,38,17,17,17 +15937,15,241,38,17,17,17 +15938,15,241,38,164,17,17 +15939,15,241,38,264,17,17 +15940,15,241,38,399,17,17 +15941,15,241,39,179,15,15 +15942,15,241,39,179,15,15 +15943,15,241,39,48,15,15 +15944,15,241,40,179,15,15 +15945,15,241,40,179,15,15 +15946,15,241,40,48,15,15 +15947,15,241,41,48,16,16 +15948,15,241,41,180,16,16 +15949,15,241,41,179,16,16 +15950,15,241,42,17,17,17 +15951,15,241,42,180,17,17 +15952,15,241,42,48,17,17 +15953,15,241,43,48,16,16 +15954,15,241,43,180,16,16 +15955,15,241,43,179,16,16 +15956,15,241,44,17,17,17 +15957,15,241,44,180,17,17 +15958,15,241,44,48,17,17 +15959,15,241,60,129,15,25 +15960,15,241,61,129,10,20 +15961,15,241,62,129,5,15 +15962,15,241,63,129,5,15 +15963,15,241,64,129,50,50 +15964,15,241,45,129,10,10 +15965,15,241,46,129,10,10 +15966,15,241,47,129,10,10 +15967,15,241,48,60,10,10 +15968,15,241,49,60,10,10 +15969,15,241,50,129,20,20 +15970,15,241,51,60,20,20 +15971,15,241,52,60,20,20 +15973,15,241,53,60,20,20 +15975,15,241,54,60,20,20 +15976,15,241,55,60,40,40 +15978,15,241,56,60,40,40 +15980,15,241,57,129,40,40 +15981,15,241,58,60,40,40 +15983,15,241,59,129,40,40 +15984,15,242,60,129,10,20 +15985,15,242,61,129,5,15 +15986,15,242,62,130,10,20 +15987,15,242,63,130,10,20 +15988,15,242,64,130,10,20 +15989,15,242,45,129,10,10 +15990,15,242,46,129,10,10 +15991,15,242,47,129,10,10 +15992,15,242,48,129,10,10 +15993,15,242,49,129,10,10 +15994,15,242,50,129,20,20 +15995,15,242,51,129,20,20 +15996,15,242,52,129,20,20 +15997,15,242,53,130,20,20 +15999,15,242,54,129,20,20 +16000,15,242,55,129,40,40 +16001,15,242,56,130,40,40 +16003,15,242,57,129,40,40 +16004,15,242,58,129,40,40 +16005,15,242,59,129,40,40 +16006,15,243,33,114,23,23 +16007,15,243,34,70,22,22 +16009,15,243,35,114,23,23 +16010,15,243,35,293,23,23 +16011,15,243,35,418,23,23 +16012,15,243,36,70,22,22 +16013,15,243,36,293,22,22 +16014,15,243,36,418,22,22 +16015,15,243,37,69,22,22 +16016,15,243,37,264,22,22 +16017,15,243,37,399,22,22 +16018,15,243,38,69,22,22 +16019,15,243,38,264,22,22 +16020,15,243,38,399,22,22 +16021,15,243,39,108,24,24 +16022,15,243,40,108,24,24 +16023,15,243,41,70,24,24 +16024,15,243,42,108,26,26 +16025,15,243,43,70,24,24 +16026,15,243,44,108,26,26 +16027,15,243,60,60,20,30 +16028,15,243,61,60,15,25 +16029,15,243,62,61,20,30 +16030,15,243,63,61,20,30 +16031,15,243,64,61,20,30 +16032,15,243,45,129,10,10 +16033,15,243,46,129,10,10 +16034,15,243,47,129,10,10 +16035,15,243,47,223,10,10 +16036,15,243,48,60,10,10 +16037,15,243,49,60,10,10 +16038,15,243,50,129,20,20 +16039,15,243,50,223,20,20 +16040,15,243,51,60,20,20 +16041,15,243,52,60,20,20 +16042,15,243,52,223,20,20 +16043,15,243,53,60,20,20 +16044,15,243,53,223,20,20 +16045,15,243,54,223,20,20 +16046,15,243,55,60,40,40 +16047,15,243,55,223,40,40 +16048,15,243,56,60,40,40 +16049,15,243,56,223,40,40 +16050,15,243,57,129,40,40 +16051,15,243,57,223,40,40 +16052,15,243,58,223,40,40 +16053,15,243,59,129,40,40 +16054,15,243,59,223,40,40 +16055,15,244,33,220,21,21 +16056,15,244,34,42,22,22 +16058,15,244,35,220,21,21 +16059,15,244,35,359,21,21 +16060,15,244,35,436,21,21 +16061,15,244,36,42,22,22 +16062,15,244,36,359,22,22 +16063,15,244,36,436,22,22 +16064,15,244,37,41,22,22 +16065,15,244,37,296,22,22 +16066,15,244,37,433,22,22 +16067,15,244,38,41,22,22 +16068,15,244,38,296,22,22 +16069,15,244,38,433,22,22 +16070,15,244,39,220,23,23 +16071,15,244,40,220,23,23 +16072,15,244,41,41,22,22 +16073,15,244,41,124,22,22 +16074,15,244,41,41,22,22 +16075,15,244,42,124,22,22 +16076,15,244,43,41,22,22 +16077,15,244,43,124,22,22 +16078,15,244,43,41,22,22 +16079,15,244,44,124,22,22 +16080,15,245,33,220,21,21 +16081,15,245,34,42,22,22 +16083,15,245,35,220,21,21 +16084,15,245,35,359,21,21 +16085,15,245,35,436,21,21 +16086,15,245,36,42,22,22 +16087,15,245,36,359,22,22 +16088,15,245,36,436,22,22 +16089,15,245,37,41,22,22 +16090,15,245,37,296,22,22 +16091,15,245,37,433,22,22 +16092,15,245,38,41,22,22 +16093,15,245,38,296,22,22 +16094,15,245,38,433,22,22 +16095,15,245,39,220,23,23 +16096,15,245,40,220,23,23 +16097,15,245,41,41,22,22 +16098,15,245,41,124,22,22 +16099,15,245,41,41,22,22 +16100,15,245,42,124,22,22 +16101,15,245,43,41,22,22 +16102,15,245,43,124,22,22 +16103,15,245,43,41,22,22 +16104,15,245,44,124,22,22 +16105,15,246,33,220,22,22 +16106,15,246,34,42,23,23 +16108,15,246,35,220,22,22 +16109,15,246,35,359,22,22 +16110,15,246,35,436,22,22 +16111,15,246,36,42,23,23 +16112,15,246,36,359,23,23 +16113,15,246,36,436,23,23 +16114,15,246,37,41,23,23 +16115,15,246,37,296,23,23 +16116,15,246,37,433,23,23 +16117,15,246,38,41,23,23 +16118,15,246,38,296,23,23 +16119,15,246,38,433,23,23 +16120,15,246,39,220,24,24 +16121,15,246,40,220,24,24 +16122,15,246,41,41,23,23 +16123,15,246,41,124,23,23 +16124,15,246,41,41,23,23 +16125,15,246,42,124,23,23 +16126,15,246,43,41,23,23 +16127,15,246,43,124,23,23 +16128,15,246,43,41,23,23 +16129,15,246,44,124,23,23 +16130,15,247,33,220,22,22 +16131,15,247,34,42,23,23 +16133,15,247,35,220,22,22 +16134,15,247,35,359,22,22 +16135,15,247,35,436,22,22 +16136,15,247,36,42,23,23 +16137,15,247,36,359,23,23 +16138,15,247,36,436,23,23 +16139,15,247,37,41,23,23 +16140,15,247,37,296,23,23 +16141,15,247,37,433,23,23 +16142,15,247,38,41,23,23 +16143,15,247,38,296,23,23 +16144,15,247,38,433,23,23 +16145,15,247,39,220,24,24 +16146,15,247,40,220,24,24 +16147,15,247,41,41,23,23 +16148,15,247,41,124,23,23 +16149,15,247,41,41,23,23 +16150,15,247,42,124,23,23 +16151,15,247,43,41,23,23 +16152,15,247,43,124,23,23 +16153,15,247,43,41,23,23 +16154,15,247,44,124,23,23 +16155,15,249,60,129,10,20 +16156,15,249,61,129,5,15 +16157,15,249,62,129,2,10 +16158,15,249,63,129,2,10 +16159,15,249,64,129,2,10 +16160,15,249,45,129,10,10 +16161,15,249,46,129,10,10 +16162,15,249,47,129,10,10 +16163,15,249,48,60,10,10 +16164,15,249,49,60,10,10 +16165,15,249,50,129,20,20 +16166,15,249,51,60,20,20 +16167,15,249,52,60,20,20 +16169,15,249,53,60,20,20 +16171,15,249,54,60,20,20 +16172,15,249,55,60,40,40 +16174,15,249,56,60,40,40 +16176,15,249,57,129,40,40 +16177,15,249,58,60,40,40 +16179,15,249,59,129,40,40 +16180,15,250,60,129,10,20 +16181,15,250,61,129,5,15 +16182,15,250,62,147,5,15 +16183,15,250,63,147,5,15 +16184,15,250,64,147,5,15 +16185,15,250,45,129,10,10 +16186,15,250,46,129,10,10 +16187,15,250,47,129,10,10 +16188,15,250,48,129,10,10 +16189,15,250,49,129,10,10 +16190,15,250,50,129,20,20 +16191,15,250,51,129,20,20 +16192,15,250,52,129,20,20 +16193,15,250,53,147,20,20 +16195,15,250,54,129,20,20 +16196,15,250,55,129,40,40 +16197,15,250,56,147,40,40 +16199,15,250,57,129,40,40 +16200,15,250,58,148,40,40 +16202,15,250,59,129,40,40 +16203,15,251,33,74,23,23 +16204,15,251,33,333,23,23 +16205,15,251,34,75,23,23 +16206,15,251,34,333,23,23 +16207,15,251,35,74,23,23 +16208,15,251,35,293,23,23 +16209,15,251,35,418,23,23 +16210,15,251,36,75,23,23 +16211,15,251,36,293,23,23 +16212,15,251,36,418,23,23 +16213,15,251,37,207,24,24 +16214,15,251,37,264,24,24 +16215,15,251,37,399,24,24 +16216,15,251,38,207,24,24 +16217,15,251,38,264,24,24 +16218,15,251,38,399,24,24 +16219,15,251,39,231,20,20 +16220,15,251,40,231,20,20 +16221,15,251,41,75,25,25 +16222,15,251,42,75,27,27 +16223,15,251,43,75,25,25 +16224,15,251,44,75,27,27 +16225,15,251,60,129,15,25 +16226,15,251,61,129,10,20 +16227,15,251,62,129,2,10 +16228,15,251,63,129,2,10 +16229,15,251,64,129,2,10 +16230,15,251,45,129,10,10 +16231,15,251,46,129,10,10 +16232,15,251,47,129,10,10 +16233,15,251,48,60,10,10 +16234,15,251,49,60,10,10 +16235,15,251,50,129,20,20 +16236,15,251,51,60,20,20 +16237,15,251,52,60,20,20 +16239,15,251,53,60,20,20 +16241,15,251,54,60,20,20 +16242,15,251,55,60,40,40 +16244,15,251,56,60,40,40 +16246,15,251,57,129,40,40 +16247,15,251,58,60,40,40 +16249,15,251,59,129,40,40 +16250,15,252,33,74,3,3 +16251,15,252,34,21,2,2 +16252,15,252,34,21,2,2 +16253,15,252,34,19,2,2 +16255,15,252,35,74,3,3 +16256,15,252,35,311,3,3 +16257,15,252,35,403,3,3 +16258,15,252,36,21,2,2 +16259,15,252,36,21,2,2 +16260,15,252,36,19,2,2 +16261,15,252,36,311,2,2 +16262,15,252,36,403,2,2 +16263,15,252,37,19,2,2 +16264,15,252,37,312,2,2 +16265,15,252,37,403,2,2 +16266,15,252,38,19,2,2 +16267,15,252,38,312,2,2 +16268,15,252,38,403,2,2 +16269,15,252,39,74,2,2 +16270,15,252,40,74,2,2 +16271,15,252,41,21,3,3 +16272,15,252,41,21,3,3 +16273,15,252,41,74,3,3 +16274,15,252,42,19,4,4 +16275,15,252,43,21,3,3 +16276,15,252,43,21,3,3 +16277,15,252,43,74,3,3 +16278,15,252,44,19,4,4 +16279,15,253,33,74,3,3 +16280,15,253,33,206,3,3 +16281,15,253,34,41,2,2 +16282,15,253,34,206,2,2 +16283,15,253,35,74,3,3 +16284,15,253,35,359,3,3 +16285,15,253,35,436,3,3 +16286,15,253,36,41,2,2 +16287,15,253,36,359,2,2 +16288,15,253,36,436,2,2 +16289,15,253,37,74,2,2 +16290,15,253,37,296,2,2 +16291,15,253,37,433,2,2 +16292,15,253,38,74,2,2 +16293,15,253,38,296,2,2 +16294,15,253,38,433,2,2 +16295,15,253,39,74,4,4 +16296,15,253,40,74,4,4 +16297,15,253,41,41,3,3 +16298,15,253,42,41,4,4 +16299,15,253,43,41,3,3 +16300,15,253,44,206,4,4 +16301,15,253,65,206,4,8 +16302,15,253,66,74,8,14 +16303,15,253,60,129,10,20 +16304,15,253,61,129,5,15 +16305,15,253,62,129,2,10 +16306,15,253,63,129,2,10 +16307,15,253,64,129,2,10 +16308,15,253,45,129,10,10 +16309,15,253,46,129,10,10 +16310,15,253,47,129,10,10 +16311,15,253,48,118,10,10 +16312,15,253,49,118,10,10 +16313,15,253,50,129,20,20 +16314,15,253,51,118,20,20 +16315,15,253,52,118,20,20 +16317,15,253,53,118,20,20 +16319,15,253,54,118,20,20 +16320,15,253,55,118,40,40 +16322,15,253,56,118,40,40 +16324,15,253,57,129,40,40 +16325,15,253,58,119,40,40 +16327,15,253,59,129,40,40 +16328,15,254,33,74,23,23 +16329,15,254,34,41,23,23 +16331,15,254,35,74,23,23 +16332,15,254,35,359,23,23 +16333,15,254,35,436,23,23 +16334,15,254,36,41,23,23 +16335,15,254,36,359,23,23 +16336,15,254,36,436,23,23 +16337,15,254,37,75,25,25 +16338,15,254,37,296,25,25 +16339,15,254,37,433,25,25 +16340,15,254,38,75,25,25 +16341,15,254,38,296,25,25 +16342,15,254,38,433,25,25 +16343,15,254,39,202,20,20 +16344,15,254,40,202,20,20 +16345,15,254,41,202,25,25 +16346,15,254,42,42,23,23 +16347,15,254,43,202,25,25 +16348,15,254,44,42,23,23 +16349,15,254,60,129,10,20 +16350,15,254,61,129,5,15 +16351,15,254,62,129,2,10 +16352,15,254,63,129,2,10 +16353,15,254,64,129,2,10 +16354,15,254,45,129,10,10 +16355,15,254,46,129,10,10 +16356,15,254,47,129,10,10 +16357,15,254,48,118,10,10 +16358,15,254,49,118,10,10 +16359,15,254,50,129,20,20 +16360,15,254,51,118,20,20 +16361,15,254,52,118,20,20 +16363,15,254,53,118,20,20 +16365,15,254,54,118,20,20 +16366,15,254,55,118,40,40 +16368,15,254,56,118,40,40 +16370,15,254,57,129,40,40 +16371,15,254,58,119,40,40 +16373,15,254,59,129,40,40 +16374,15,255,33,83,35,35 +16375,15,255,33,83,35,35 +16376,15,255,33,164,35,35 +16377,15,255,33,132,35,35 +16378,15,255,34,241,35,35 +16379,15,255,34,132,35,35 +16380,15,255,35,132,34,34 +16381,15,255,35,293,34,34 +16382,15,255,35,418,34,34 +16383,15,255,36,132,33,33 +16384,15,255,36,293,33,33 +16385,15,255,36,418,33,33 +16386,15,255,37,132,32,32 +16387,15,255,37,264,32,32 +16388,15,255,37,399,32,32 +16389,15,255,38,132,31,31 +16390,15,255,38,264,31,31 +16391,15,255,38,399,31,31 +16392,15,255,39,44,32,32 +16393,15,255,40,21,31,31 +16394,15,255,41,22,34,34 +16395,15,255,42,20,31,31 +16396,15,255,43,20,33,33 +16397,15,255,44,132,40,40 +16398,15,255,60,72,15,25 +16399,15,255,61,86,10,20 +16400,15,255,62,120,15,25 +16401,15,255,63,120,15,25 +16402,15,255,64,120,15,25 +16403,15,255,45,129,10,10 +16404,15,255,46,129,10,10 +16405,15,255,47,129,10,10 +16406,15,255,48,72,10,10 +16407,15,255,49,72,10,10 +16408,15,255,50,129,20,20 +16409,15,255,51,72,20,20 +16410,15,255,52,170,20,20 +16412,15,255,53,90,20,20 +16414,15,255,54,170,20,20 +16415,15,255,55,170,40,40 +16417,15,255,56,90,40,40 +16419,15,255,57,73,40,40 +16421,15,255,58,171,40,40 +16423,15,255,59,73,40,40 +16425,15,256,60,60,35,35 +16426,15,256,61,129,30,30 +16427,15,256,62,129,35,35 +16428,15,256,63,129,35,35 +16429,15,256,64,129,35,35 +16430,15,256,45,129,10,10 +16431,15,256,46,129,10,10 +16432,15,256,47,129,10,10 +16433,15,256,48,129,10,10 +16434,15,256,49,129,10,10 +16435,15,256,50,129,20,20 +16436,15,256,51,129,20,20 +16437,15,256,52,60,20,20 +16439,15,256,53,60,20,20 +16441,15,256,54,60,20,20 +16442,15,256,55,60,40,40 +16444,15,256,56,60,40,40 +16446,15,256,57,60,40,40 +16448,15,256,58,60,40,40 +16450,15,256,59,60,40,40 +16452,15,257,60,60,35,35 +16453,15,257,61,60,30,30 +16454,15,257,62,60,35,35 +16455,15,257,63,60,35,35 +16456,15,257,64,60,35,35 +16457,15,257,45,60,10,10 +16458,15,257,46,60,10,10 +16459,15,257,47,60,10,10 +16460,15,257,48,129,10,10 +16461,15,257,49,60,10,10 +16462,15,257,50,60,20,20 +16463,15,257,51,60,20,20 +16464,15,257,52,60,20,20 +16465,15,257,53,129,20,20 +16467,15,257,54,60,20,20 +16468,15,257,55,60,40,40 +16469,15,257,56,60,40,40 +16470,15,257,56,60,40,40 +16471,15,257,56,129,40,40 +16472,15,257,57,60,40,40 +16473,15,257,58,129,40,40 +16475,15,257,59,60,40,40 +16476,15,258,33,41,28,28 +16477,15,258,34,42,32,32 +16479,15,258,35,54,28,28 +16480,15,258,35,359,28,28 +16481,15,258,35,436,28,28 +16482,15,258,36,54,29,29 +16483,15,258,36,359,29,29 +16484,15,258,36,436,29,29 +16485,15,258,37,42,30,30 +16486,15,258,37,296,30,30 +16487,15,258,37,433,30,30 +16488,15,258,38,55,32,32 +16489,15,258,38,296,32,32 +16490,15,258,38,433,32,32 +16491,15,258,39,41,27,27 +16492,15,258,40,41,26,26 +16493,15,258,41,54,27,27 +16494,15,258,42,54,26,26 +16495,15,258,43,54,27,27 +16496,15,258,44,54,26,26 +16497,15,259,33,86,32,32 +16498,15,259,34,42,34,34 +16500,15,259,35,54,28,28 +16501,15,259,35,359,28,28 +16502,15,259,35,436,28,28 +16503,15,259,36,86,34,34 +16504,15,259,36,359,34,34 +16505,15,259,36,436,34,34 +16506,15,259,37,42,32,32 +16507,15,259,37,296,32,32 +16508,15,259,37,433,32,32 +16509,15,259,38,55,34,34 +16510,15,259,38,296,34,34 +16511,15,259,38,433,34,34 +16512,15,259,39,41,29,29 +16513,15,259,40,41,28,28 +16514,15,259,41,55,32,32 +16515,15,259,42,54,28,28 +16516,15,259,43,54,27,27 +16517,15,259,44,54,26,26 +16518,15,260,33,86,33,33 +16519,15,260,34,42,35,35 +16521,15,260,35,54,30,30 +16522,15,260,35,359,30,30 +16523,15,260,35,436,30,30 +16524,15,260,36,86,35,35 +16525,15,260,36,359,35,35 +16526,15,260,36,436,35,35 +16527,15,260,37,42,33,33 +16528,15,260,37,296,33,33 +16529,15,260,37,433,33,33 +16530,15,260,38,55,35,35 +16531,15,260,38,296,35,35 +16532,15,260,38,433,35,35 +16533,15,260,39,41,30,30 +16534,15,260,40,41,29,29 +16535,15,260,41,55,33,33 +16536,15,260,42,54,29,29 +16537,15,260,43,54,28,28 +16538,15,260,44,54,27,27 +16539,15,261,33,87,35,35 +16540,15,261,34,42,36,36 +16542,15,261,35,54,32,32 +16543,15,261,35,359,32,32 +16544,15,261,35,436,32,32 +16545,15,261,36,86,34,34 +16546,15,261,36,359,34,34 +16547,15,261,36,436,34,34 +16548,15,261,37,42,34,34 +16549,15,261,37,296,34,34 +16550,15,261,37,433,34,34 +16551,15,261,38,55,36,36 +16552,15,261,38,296,36,36 +16553,15,261,38,433,36,36 +16554,15,261,39,41,32,32 +16555,15,261,40,41,31,31 +16556,15,261,41,55,34,34 +16557,15,261,42,87,36,36 +16558,15,261,43,54,32,32 +16559,15,261,44,54,31,31 +16560,15,262,33,87,37,37 +16562,15,262,34,42,40,40 +16564,15,262,35,54,34,34 +16565,15,262,35,359,34,34 +16566,15,262,35,436,34,34 +16567,15,262,36,86,34,34 +16568,15,262,36,359,34,34 +16569,15,262,36,436,34,34 +16570,15,262,37,124,38,38 +16571,15,262,37,296,38,38 +16572,15,262,37,433,38,38 +16573,15,262,38,55,38,38 +16574,15,262,38,296,38,38 +16575,15,262,38,433,38,38 +16576,15,262,39,42,39,39 +16577,15,262,40,42,38,38 +16578,15,262,41,55,37,37 +16579,15,262,42,87,38,38 +16580,15,262,43,124,40,40 +16581,15,262,44,124,40,40 +16582,15,262,60,86,30,40 +16583,15,262,61,116,30,40 +16584,15,262,62,80,35,45 +16585,15,262,63,80,50,50 +16586,15,262,64,80,35,45 +16587,15,262,45,129,10,10 +16588,15,262,46,129,10,10 +16589,15,262,47,129,10,10 +16590,15,262,48,98,10,10 +16591,15,262,49,98,10,10 +16592,15,262,50,129,20,20 +16593,15,262,51,54,20,20 +16594,15,262,52,98,20,20 +16596,15,262,53,116,20,20 +16598,15,262,54,98,20,20 +16599,15,262,55,130,40,40 +16601,15,262,56,116,40,40 +16603,15,262,57,99,40,40 +16605,15,262,58,117,40,40 +16607,15,262,59,117,40,40 +16609,15,263,33,195,45,45 +16610,15,263,34,208,48,48 +16612,15,263,35,195,45,45 +16613,15,263,35,359,45,45 +16614,15,263,35,436,45,45 +16615,15,263,36,55,48,48 +16616,15,263,36,359,48,48 +16617,15,263,36,436,48,48 +16618,15,263,37,232,48,48 +16619,15,263,37,296,48,48 +16620,15,263,37,433,48,48 +16621,15,263,38,232,47,47 +16622,15,263,38,296,47,47 +16623,15,263,38,433,47,47 +16624,15,263,39,195,45,45 +16625,15,263,39,195,45,45 +16626,15,263,39,200,45,45 +16627,15,263,40,195,45,45 +16628,15,263,40,195,45,45 +16629,15,263,40,200,45,45 +16630,15,263,41,42,48,48 +16631,15,263,42,246,20,20 +16632,15,263,43,42,48,48 +16633,15,263,44,246,15,15 +16634,15,263,60,119,30,40 +16635,15,263,61,119,35,45 +16636,15,263,62,118,30,40 +16637,15,263,63,118,30,40 +16638,15,263,64,118,30,40 +16639,15,263,45,129,10,10 +16640,15,263,46,129,10,10 +16641,15,263,47,129,10,10 +16642,15,263,48,118,10,10 +16643,15,263,49,118,10,10 +16644,15,263,50,129,20,20 +16645,15,263,51,118,20,20 +16646,15,263,52,118,20,20 +16648,15,263,53,118,20,20 +16650,15,263,54,118,20,20 +16651,15,263,55,118,40,40 +16653,15,263,56,118,40,40 +16655,15,263,57,129,40,40 +16656,15,263,58,119,40,40 +16658,15,263,59,129,40,40 +16659,15,264,33,195,45,45 +16660,15,264,34,215,48,48 +16662,15,264,35,231,46,46 +16663,15,264,35,359,46,46 +16664,15,264,35,436,46,46 +16665,15,264,36,55,48,48 +16666,15,264,36,359,48,48 +16667,15,264,36,436,48,48 +16668,15,264,37,232,48,48 +16669,15,264,37,296,48,48 +16670,15,264,37,433,48,48 +16671,15,264,38,232,50,50 +16672,15,264,38,296,50,50 +16673,15,264,38,433,50,50 +16674,15,264,39,195,45,45 +16675,15,264,39,195,45,45 +16676,15,264,39,200,45,45 +16677,15,264,40,195,45,45 +16678,15,264,40,195,45,45 +16679,15,264,40,200,45,45 +16680,15,264,41,42,48,48 +16681,15,264,42,246,20,20 +16682,15,264,43,42,48,48 +16683,15,264,44,246,15,15 +16684,15,264,60,119,30,40 +16685,15,264,61,119,35,45 +16686,15,264,62,118,30,40 +16687,15,264,63,118,30,40 +16688,15,264,64,118,30,40 +16689,15,264,45,129,10,10 +16690,15,264,46,129,10,10 +16691,15,264,47,129,10,10 +16692,15,264,48,118,10,10 +16693,15,264,49,118,10,10 +16694,15,264,50,129,20,20 +16695,15,264,51,118,20,20 +16696,15,264,52,118,20,20 +16698,15,264,53,118,20,20 +16700,15,264,54,118,20,20 +16701,15,264,55,118,40,40 +16703,15,264,56,118,40,40 +16705,15,264,57,129,40,40 +16706,15,264,58,119,40,40 +16708,15,264,59,129,40,40 +16709,15,265,33,215,50,50 +16710,15,265,34,55,48,48 +16712,15,265,35,195,45,45 +16713,15,265,35,359,45,45 +16714,15,265,35,436,45,45 +16715,15,265,36,55,48,48 +16716,15,265,36,359,48,48 +16717,15,265,36,436,48,48 +16718,15,265,37,232,47,47 +16719,15,265,37,296,47,47 +16720,15,265,37,433,47,47 +16721,15,265,38,232,47,47 +16722,15,265,38,296,47,47 +16723,15,265,38,433,47,47 +16724,15,265,39,195,45,45 +16725,15,265,39,195,45,45 +16726,15,265,39,200,45,45 +16727,15,265,40,195,45,45 +16728,15,265,40,195,45,45 +16729,15,265,40,200,45,45 +16730,15,265,41,42,48,48 +16731,15,265,42,246,20,20 +16732,15,265,43,42,48,48 +16733,15,265,44,246,15,15 +16734,15,265,60,119,30,40 +16735,15,265,61,119,35,45 +16736,15,265,62,118,30,40 +16737,15,265,63,118,30,40 +16738,15,265,64,118,30,40 +16739,15,265,45,129,10,10 +16740,15,265,46,129,10,10 +16741,15,265,47,129,10,10 +16742,15,265,48,118,10,10 +16743,15,265,49,118,10,10 +16744,15,265,50,129,20,20 +16745,15,265,51,118,20,20 +16746,15,265,52,118,20,20 +16748,15,265,53,118,20,20 +16750,15,265,54,118,20,20 +16751,15,265,55,118,40,40 +16753,15,265,56,118,40,40 +16755,15,265,57,129,40,40 +16756,15,265,58,119,40,40 +16758,15,265,59,129,40,40 +16759,15,266,60,194,20,30 +16760,15,266,61,194,20,30 +16761,15,266,62,195,30,40 +16762,15,266,63,195,30,40 +16763,15,266,64,195,30,40 +16764,15,266,45,129,10,10 +16765,15,266,46,129,10,10 +16766,15,266,47,129,10,10 +16767,15,266,48,129,10,10 +16768,15,266,49,129,10,10 +16769,15,266,50,129,20,20 +16770,15,266,51,129,20,20 +16771,15,266,52,129,20,20 +16772,15,266,53,60,20,20 +16773,15,266,53,60,20,20 +16774,15,266,53,129,20,20 +16776,15,266,54,60,20,20 +16777,15,266,55,129,40,40 +16778,15,266,56,129,40,40 +16779,15,266,57,60,40,40 +16781,15,266,58,60,40,40 +16783,15,266,59,60,40,40 +16785,15,267,33,42,22,22 +16786,15,267,34,74,19,19 +16788,15,267,35,98,20,20 +16789,15,267,35,359,20,20 +16790,15,267,35,436,20,20 +16791,15,267,36,99,22,22 +16792,15,267,36,359,22,22 +16793,15,267,36,436,22,22 +16794,15,267,37,66,19,19 +16795,15,267,37,296,19,19 +16796,15,267,37,433,19,19 +16797,15,267,38,95,20,20 +16798,15,267,38,296,20,20 +16799,15,267,38,433,20,20 +16800,15,267,39,194,18,18 +16801,15,267,39,194,18,18 +16802,15,267,39,41,18,18 +16803,15,267,40,195,20,20 +16804,15,267,40,195,20,20 +16805,15,267,40,200,20,20 +16806,15,267,41,75,20,20 +16807,15,267,41,75,20,20 +16808,15,267,41,42,20,20 +16809,15,267,42,67,22,22 +16810,15,267,43,208,23,23 +16811,15,267,44,208,23,23 +16812,15,267,65,98,20,26 +16813,15,267,66,99,28,31 +16814,15,268,33,19,20,20 +16815,15,268,33,19,20,20 +16816,15,268,33,92,20,20 +16818,15,268,34,19,21,21 +16819,15,268,34,19,21,21 +16820,15,268,34,92,21,21 +16822,15,268,35,19,20,20 +16823,15,268,35,19,20,20 +16824,15,268,35,92,20,20 +16825,15,268,35,263,20,20 +16826,15,268,35,441,20,20 +16827,15,268,36,19,21,21 +16828,15,268,36,19,21,21 +16829,15,268,36,92,21,21 +16830,15,268,36,263,21,21 +16831,15,268,36,441,21,21 +16832,15,268,37,19,22,22 +16833,15,268,37,19,22,22 +16834,15,268,37,92,22,22 +16835,15,268,37,327,22,22 +16836,15,268,37,307,22,22 +16837,15,268,38,19,22,22 +16838,15,268,38,19,22,22 +16839,15,268,38,92,22,22 +16840,15,268,38,327,22,22 +16841,15,268,38,307,22,22 +16842,15,268,39,19,22,22 +16843,15,268,40,19,22,22 +16844,15,268,41,19,23,23 +16845,15,268,42,19,24,24 +16846,15,268,43,19,23,23 +16847,15,268,44,19,24,24 +16848,15,269,33,114,41,41 +16849,15,269,34,77,42,42 +16851,15,269,35,114,41,41 +16852,15,269,35,293,41,41 +16853,15,269,35,418,41,41 +16854,15,269,36,77,42,42 +16855,15,269,36,293,42,42 +16856,15,269,36,418,42,42 +16857,15,269,37,232,42,42 +16858,15,269,37,264,42,42 +16859,15,269,37,399,42,42 +16860,15,269,38,232,42,42 +16861,15,269,38,264,42,42 +16862,15,269,38,399,42,42 +16863,15,269,39,78,44,44 +16864,15,269,40,78,44,44 +16865,15,269,41,84,41,41 +16866,15,269,41,84,41,41 +16867,15,269,41,215,41,41 +16868,15,269,42,85,43,43 +16869,15,269,42,85,43,43 +16870,15,269,42,215,43,43 +16871,15,269,43,84,41,41 +16872,15,269,43,84,41,41 +16873,15,269,43,215,41,41 +16874,15,269,44,85,43,43 +16875,15,269,44,85,43,43 +16876,15,269,44,215,43,43 +16877,15,269,60,61,30,40 +16878,15,269,61,61,35,45 +16879,15,269,62,60,30,40 +16880,15,269,63,60,30,40 +16881,15,269,64,61,48,48 +16882,15,269,45,129,10,10 +16883,15,269,46,129,10,10 +16884,15,269,47,129,10,10 +16885,15,269,48,60,10,10 +16886,15,269,49,60,10,10 +16887,15,269,50,129,20,20 +16888,15,269,51,60,20,20 +16889,15,269,52,60,20,20 +16891,15,269,53,60,20,20 +16893,15,269,54,60,20,20 +16894,15,269,55,60,40,40 +16896,15,269,56,60,40,40 +16898,15,269,57,129,40,40 +16899,15,269,58,60,40,40 +16901,15,269,59,129,40,40 +16902,15,270,33,95,42,42 +16903,15,270,34,232,44,44 +16905,15,270,35,95,42,42 +16906,15,270,35,359,42,42 +16907,15,270,35,436,42,42 +16908,15,270,36,232,44,44 +16909,15,270,36,359,44,44 +16910,15,270,36,436,44,44 +16911,15,270,37,231,43,43 +16912,15,270,37,296,43,43 +16913,15,270,37,433,43,43 +16914,15,270,38,75,43,43 +16915,15,270,38,296,43,43 +16916,15,270,38,433,43,43 +16917,15,270,39,75,42,42 +16918,15,270,40,75,41,41 +16919,15,270,41,42,45,45 +16920,15,270,42,246,20,20 +16921,15,270,43,42,45,45 +16922,15,270,44,246,15,15 +16923,15,270,60,119,30,40 +16924,15,270,61,119,35,45 +16925,15,270,62,118,30,40 +16926,15,270,63,118,30,40 +16927,15,270,64,119,50,50 +16928,15,270,45,129,10,10 +16929,15,270,46,129,10,10 +16930,15,270,47,129,10,10 +16931,15,270,48,118,10,10 +16932,15,270,49,118,10,10 +16933,15,270,50,129,20,20 +16934,15,270,51,118,20,20 +16935,15,270,52,119,20,20 +16937,15,270,53,129,20,20 +16938,15,270,53,129,20,20 +16939,15,270,53,130,20,20 +16940,15,270,54,119,20,20 +16941,15,270,55,130,40,40 +16943,15,270,56,119,40,40 +16944,15,270,56,119,40,40 +16945,15,270,56,130,40,40 +16947,15,270,57,119,40,40 +16949,15,270,58,130,40,40 +16951,15,270,59,119,40,40 +16953,15,271,33,42,51,51 +16954,15,271,34,95,48,48 +16956,15,271,35,42,51,51 +16957,15,271,35,359,51,51 +16958,15,271,35,436,51,51 +16959,15,271,36,95,48,48 +16960,15,271,36,359,48,48 +16961,15,271,36,436,48,48 +16962,15,271,37,231,48,48 +16963,15,271,37,296,48,48 +16964,15,271,37,433,48,48 +16965,15,271,38,42,48,48 +16966,15,271,38,296,48,48 +16967,15,271,38,433,48,48 +16968,15,271,39,232,50,50 +16969,15,271,40,232,50,50 +16970,15,271,41,55,51,51 +16971,15,271,42,246,20,20 +16972,15,271,43,55,51,51 +16973,15,271,44,246,15,15 +16974,15,272,33,195,45,45 +16975,15,272,33,195,45,45 +16976,15,272,33,200,45,45 +16978,15,272,34,55,48,48 +16980,15,272,35,195,45,45 +16981,15,272,35,195,45,45 +16982,15,272,35,200,45,45 +16983,15,272,35,359,45,45 +16984,15,272,35,436,45,45 +16985,15,272,36,231,46,46 +16986,15,272,36,359,46,46 +16987,15,272,36,436,46,46 +16988,15,272,37,232,48,48 +16989,15,272,37,296,48,48 +16990,15,272,37,433,48,48 +16991,15,272,38,232,47,47 +16992,15,272,38,296,47,47 +16993,15,272,38,433,47,47 +16994,15,272,39,247,45,45 +16995,15,272,40,195,45,45 +16996,15,272,41,42,48,48 +16997,15,272,42,246,20,20 +16998,15,272,43,42,48,48 +16999,15,272,44,246,15,15 +17000,15,273,33,215,45,45 +17001,15,273,34,55,48,48 +17003,15,273,35,195,45,45 +17004,15,273,35,359,45,45 +17005,15,273,35,436,45,45 +17006,15,273,36,55,48,48 +17007,15,273,36,55,48,48 +17008,15,273,36,200,48,48 +17009,15,273,36,359,48,48 +17010,15,273,36,436,48,48 +17011,15,273,37,232,47,47 +17012,15,273,37,296,47,47 +17013,15,273,37,433,47,47 +17014,15,273,38,232,47,47 +17015,15,273,38,296,47,47 +17016,15,273,38,433,47,47 +17017,15,273,39,246,30,30 +17018,15,273,40,195,45,45 +17019,15,273,40,195,45,45 +17020,15,273,40,200,45,45 +17021,15,273,41,42,48,48 +17022,15,273,42,246,20,20 +17023,15,273,43,42,48,48 +17024,15,273,44,246,15,15 +17025,15,273,60,119,30,40 +17026,15,273,61,119,35,45 +17027,15,273,62,118,30,40 +17028,15,273,63,118,30,40 +17029,15,273,64,118,30,40 +17030,15,273,45,129,10,10 +17031,15,273,46,129,10,10 +17032,15,273,47,129,10,10 +17033,15,273,48,118,10,10 +17034,15,273,49,118,10,10 +17035,15,273,50,129,20,20 +17036,15,273,51,118,20,20 +17037,15,273,52,118,20,20 +17039,15,273,53,118,20,20 +17041,15,273,54,118,20,20 +17042,15,273,55,118,40,40 +17044,15,273,56,118,40,40 +17046,15,273,57,129,40,40 +17047,15,273,58,119,40,40 +17049,15,273,59,129,40,40 +17050,15,275,33,19,20,20 +17051,15,275,34,19,20,20 +17052,15,275,35,19,20,20 +17053,15,275,35,263,20,20 +17054,15,275,35,399,20,20 +17055,15,275,36,19,20,20 +17056,15,275,36,263,20,20 +17057,15,275,36,399,20,20 +17058,15,275,37,19,20,20 +17059,15,275,37,263,20,20 +17060,15,275,37,399,20,20 +17061,15,275,38,19,20,20 +17062,15,275,38,263,20,20 +17063,15,275,38,399,20,20 +17064,15,275,39,19,20,20 +17065,15,275,40,19,20,20 +17066,15,275,41,19,20,20 +17067,15,275,42,19,20,20 +17068,15,275,43,19,20,20 +17069,15,275,44,19,20,20 +17070,15,275,60,129,10,20 +17071,15,275,61,129,10,20 +17072,15,275,62,129,10,20 +17073,15,275,63,129,10,20 +17074,15,275,64,129,10,20 +17075,15,275,45,118,10,20 +17076,15,275,46,118,10,20 +17077,15,275,47,118,10,20 +17078,15,275,48,118,10,20 +17079,15,275,49,118,10,20 +17080,15,275,50,118,10,20 +17081,15,275,51,118,10,20 +17082,15,275,52,118,10,20 +17083,15,275,53,118,10,20 +17084,15,275,54,118,10,20 +17085,15,275,55,118,10,20 +17086,15,275,56,118,10,20 +17087,15,275,57,118,10,20 +17088,15,275,58,118,10,20 +17089,15,275,59,118,10,20 +17090,15,276,60,72,25,25 +17091,15,276,61,195,25,25 +17092,15,276,62,73,25,25 +17093,15,276,63,73,25,25 +17094,15,276,64,73,25,25 +17095,15,276,45,129,10,10 +17096,15,276,46,129,10,10 +17097,15,276,47,129,10,10 +17098,15,276,47,369,10,10 +17099,15,276,48,72,10,10 +17100,15,276,49,72,10,10 +17101,15,276,50,129,20,20 +17102,15,276,50,369,20,20 +17103,15,276,51,72,20,20 +17104,15,276,52,72,20,20 +17105,15,276,52,369,20,20 +17106,15,276,53,72,20,20 +17107,15,276,53,369,20,20 +17108,15,276,54,72,20,20 +17109,15,276,55,72,40,40 +17110,15,276,55,369,40,40 +17111,15,276,56,72,40,40 +17112,15,276,56,369,40,40 +17113,15,276,57,129,40,40 +17114,15,276,57,369,40,40 +17115,15,276,58,211,40,40 +17116,15,276,58,369,40,40 +17117,15,276,59,129,40,40 +17118,15,276,59,369,40,40 +17119,15,277,65,99,28,31 +17120,15,277,66,98,24,27 +17121,15,277,60,72,35,35 +17122,15,277,60,366,35,35 +17123,15,277,61,72,30,30 +17124,15,277,62,73,35,35 +17125,15,277,63,73,35,35 +17126,15,277,64,73,35,35 +17127,15,277,45,129,10,10 +17128,15,277,46,129,10,10 +17129,15,277,47,129,10,10 +17130,15,277,48,98,10,10 +17131,15,277,49,98,10,10 +17132,15,277,50,129,20,20 +17133,15,277,51,98,20,20 +17134,15,277,52,98,20,20 +17136,15,277,53,222,20,20 +17137,15,277,53,222,20,20 +17138,15,277,53,120,20,20 +17140,15,277,54,98,20,20 +17141,15,277,55,98,40,40 +17143,15,277,56,222,40,40 +17144,15,277,56,222,40,40 +17145,15,277,56,120,40,40 +17147,15,277,57,98,40,40 +17149,15,277,58,99,40,40 +17151,15,277,59,98,40,40 +17153,15,278,60,72,35,35 +17154,15,278,61,72,30,30 +17155,15,278,62,73,35,35 +17156,15,278,63,73,35,35 +17157,15,278,64,73,35,35 +17158,15,278,45,129,10,10 +17159,15,278,46,129,10,10 +17160,15,278,47,129,10,10 +17161,15,278,48,72,10,10 +17162,15,278,49,72,10,10 +17163,15,278,50,129,20,20 +17164,15,278,51,72,20,20 +17165,15,278,52,170,20,20 +17167,15,278,53,90,20,20 +17169,15,278,54,170,20,20 +17170,15,278,55,170,40,40 +17172,15,278,56,90,40,40 +17174,15,278,57,73,40,40 +17176,15,278,58,171,40,40 +17178,15,278,59,73,40,40 +17180,15,279,60,72,35,35 +17181,15,279,61,72,30,30 +17182,15,279,62,73,35,35 +17183,15,279,63,73,35,35 +17184,15,279,64,73,35,35 +17185,15,279,45,129,10,10 +17186,15,279,46,129,10,10 +17187,15,279,47,129,10,10 +17188,15,279,48,72,10,10 +17189,15,279,49,72,10,10 +17190,15,279,50,129,20,20 +17191,15,279,51,72,20,20 +17192,15,279,52,170,20,20 +17194,15,279,53,90,20,20 +17196,15,279,54,170,20,20 +17197,15,279,55,170,40,40 +17199,15,279,56,90,40,40 +17201,15,279,57,73,40,40 +17203,15,279,58,171,40,40 +17205,15,279,59,73,40,40 +17207,15,280,60,60,10,10 +17208,15,280,61,60,5,5 +17209,15,280,62,61,10,10 +17210,15,280,63,61,10,10 +17211,15,280,64,61,10,10 +17212,15,280,45,129,10,10 +17213,15,280,46,129,10,10 +17214,15,280,47,129,10,10 +17215,15,280,48,60,10,10 +17216,15,280,49,60,10,10 +17217,15,280,50,129,20,20 +17218,15,280,51,60,20,20 +17219,15,280,52,60,20,20 +17221,15,280,53,60,20,20 +17223,15,280,54,60,20,20 +17224,15,280,55,60,40,40 +17226,15,280,56,60,40,40 +17228,15,280,57,129,40,40 +17229,15,280,58,60,40,40 +17231,15,280,59,129,40,40 +17232,15,281,60,118,10,10 +17233,15,281,61,118,5,5 +17234,15,281,62,119,10,10 +17235,15,281,63,119,10,10 +17236,15,281,64,119,10,10 +17237,15,281,45,129,10,10 +17238,15,281,46,129,10,10 +17239,15,281,47,129,10,10 +17240,15,281,48,118,10,10 +17241,15,281,49,118,10,10 +17242,15,281,50,129,20,20 +17243,15,281,51,118,20,20 +17244,15,281,52,118,20,20 +17246,15,281,53,118,20,20 +17248,15,281,54,118,20,20 +17249,15,281,55,118,40,40 +17251,15,281,56,118,40,40 +17253,15,281,57,129,40,40 +17254,15,281,58,119,40,40 +17256,15,281,59,129,40,40 +17257,15,282,65,50,24,37 +17258,15,282,66,213,32,35 +17259,15,282,60,72,35,35 +17260,15,282,60,278,35,35 +17261,15,282,61,72,30,30 +17262,15,282,62,73,35,35 +17263,15,282,63,73,35,35 +17264,15,282,64,73,35,35 +17265,15,282,45,129,10,10 +17266,15,282,46,129,10,10 +17267,15,282,47,129,10,10 +17268,15,282,48,72,10,10 +17269,15,282,49,72,10,10 +17270,15,282,50,129,20,20 +17271,15,282,51,72,20,20 +17272,15,282,52,170,20,20 +17274,15,282,53,90,20,20 +17276,15,282,54,170,20,20 +17277,15,282,55,170,40,40 +17279,15,282,56,90,40,40 +17281,15,282,57,73,40,40 +17283,15,282,58,171,40,40 +17285,15,282,59,73,40,40 +17287,15,283,60,88,20,20 +17288,15,283,61,88,15,15 +17289,15,283,62,89,15,15 +17290,15,283,63,89,15,15 +17291,15,283,64,89,15,15 +17292,15,284,60,129,20,20 +17293,15,284,61,129,15,15 +17294,15,284,62,129,10,10 +17295,15,284,63,129,10,10 +17296,15,284,64,129,10,10 +17297,15,284,45,129,10,10 +17298,15,284,46,129,10,10 +17299,15,284,47,129,10,10 +17300,15,284,48,129,10,10 +17301,15,284,49,129,10,10 +17302,15,284,50,129,20,20 +17303,15,284,51,129,20,20 +17304,15,284,52,129,20,20 +17305,15,284,53,130,20,20 +17307,15,284,54,129,20,20 +17308,15,284,55,129,40,40 +17309,15,284,56,130,40,40 +17311,15,284,57,129,40,40 +17312,15,284,58,129,40,40 +17313,15,284,59,129,40,40 +17314,15,285,60,72,35,35 +17315,15,285,61,72,30,30 +17316,15,285,62,73,35,35 +17317,15,285,63,73,35,35 +17318,15,285,64,73,35,35 +17319,15,285,45,129,10,10 +17320,15,285,46,129,10,10 +17321,15,285,47,129,10,10 +17322,15,285,48,72,10,10 +17323,15,285,49,72,10,10 +17324,15,285,50,129,20,20 +17325,15,285,51,72,20,20 +17326,15,285,52,170,20,20 +17328,15,285,53,90,20,20 +17330,15,285,54,170,20,20 +17331,15,285,55,170,40,40 +17333,15,285,56,90,40,40 +17335,15,285,57,73,40,40 +17337,15,285,58,171,40,40 +17339,15,285,59,73,40,40 +17341,15,286,33,83,25,25 +17342,15,286,33,83,25,25 +17343,15,286,33,58,25,25 +17345,15,286,34,128,20,20 +17346,15,286,35,187,20,20 +17347,15,286,35,311,20,20 +17348,15,286,35,403,20,20 +17349,15,286,36,22,21,21 +17350,15,286,36,311,21,21 +17351,15,286,36,403,21,21 +17352,15,286,37,44,22,22 +17353,15,286,37,312,22,22 +17354,15,286,37,403,22,22 +17355,15,286,38,44,24,24 +17356,15,286,38,312,24,24 +17357,15,286,38,403,24,24 +17358,15,286,39,58,21,21 +17359,15,286,40,203,20,20 +17360,15,286,41,50,20,20 +17361,15,286,42,58,22,22 +17362,15,286,43,187,22,22 +17363,15,286,44,128,24,24 +17364,15,287,33,84,28,28 +17365,15,287,33,84,28,28 +17366,15,287,33,20,28,28 +17368,15,287,34,28,28,28 +17370,15,287,35,84,28,28 +17371,15,287,35,84,28,28 +17372,15,287,35,20,28,28 +17373,15,287,35,293,28,28 +17374,15,287,35,418,28,28 +17375,15,287,36,28,28,28 +17376,15,287,36,293,28,28 +17377,15,287,36,418,28,28 +17378,15,287,37,77,32,32 +17379,15,287,37,264,32,32 +17380,15,287,37,399,32,32 +17381,15,287,38,77,32,32 +17382,15,287,38,264,32,32 +17383,15,287,38,399,32,32 +17384,15,287,39,84,30,30 +17385,15,287,39,84,30,30 +17386,15,287,39,20,30,30 +17387,15,287,40,84,30,30 +17388,15,287,40,84,30,30 +17389,15,287,40,20,30,30 +17390,15,287,41,20,30,30 +17391,15,287,41,20,30,30 +17392,15,287,41,195,30,30 +17393,15,287,42,85,30,30 +17394,15,287,42,85,30,30 +17395,15,287,42,195,30,30 +17396,15,287,43,20,30,30 +17397,15,287,43,20,30,30 +17398,15,287,43,195,30,30 +17399,15,287,44,85,30,30 +17400,15,287,44,85,30,30 +17401,15,287,44,195,30,30 +17402,15,287,60,72,30,30 +17403,15,287,61,72,25,25 +17404,15,287,62,73,30,30 +17405,15,287,63,73,30,30 +17406,15,287,64,73,30,30 +17407,15,287,45,129,10,10 +17408,15,287,46,129,10,10 +17409,15,287,47,129,10,10 +17410,15,287,48,72,10,10 +17411,15,287,49,72,10,10 +17412,15,287,50,129,20,20 +17413,15,287,51,72,20,20 +17414,15,287,52,170,20,20 +17416,15,287,53,90,20,20 +17418,15,287,54,170,20,20 +17419,15,287,55,170,40,40 +17421,15,287,56,90,40,40 +17423,15,287,57,73,40,40 +17425,15,287,58,171,40,40 +17427,15,287,59,73,40,40 +17429,15,288,33,84,28,28 +17430,15,288,33,84,28,28 +17431,15,288,33,195,28,28 +17433,15,288,34,20,28,28 +17435,15,288,35,84,28,28 +17436,15,288,35,84,28,28 +17437,15,288,35,195,28,28 +17438,15,288,35,293,28,28 +17439,15,288,35,418,28,28 +17440,15,288,36,20,28,28 +17441,15,288,36,293,28,28 +17442,15,288,36,418,28,28 +17443,15,288,37,84,30,30 +17444,15,288,37,84,30,30 +17445,15,288,37,195,30,30 +17446,15,288,37,264,30,30 +17447,15,288,37,399,30,30 +17448,15,288,38,84,30,30 +17449,15,288,38,84,30,30 +17450,15,288,38,195,30,30 +17451,15,288,38,264,30,30 +17452,15,288,38,399,30,30 +17453,15,288,39,20,30,30 +17454,15,288,40,20,30,30 +17455,15,288,41,77,32,32 +17456,15,288,42,28,30,30 +17457,15,288,43,77,32,32 +17458,15,288,44,28,30,30 +17459,15,288,60,72,20,20 +17460,15,288,60,370,20,20 +17461,15,288,61,72,15,15 +17462,15,288,62,73,20,20 +17463,15,288,63,73,20,20 +17464,15,288,64,73,20,20 +17465,15,288,45,129,10,10 +17466,15,288,46,129,10,10 +17467,15,288,47,129,10,10 +17468,15,288,48,72,10,10 +17469,15,288,49,72,10,10 +17470,15,288,50,129,20,20 +17471,15,288,51,72,20,20 +17472,15,288,52,170,20,20 +17474,15,288,53,90,20,20 +17476,15,288,54,170,20,20 +17477,15,288,55,170,40,40 +17479,15,288,56,90,40,40 +17481,15,288,57,73,40,40 +17483,15,288,58,171,40,40 +17485,15,288,59,73,40,40 +17487,15,289,33,114,39,39 +17488,15,289,34,77,40,40 +17490,15,289,35,114,39,39 +17491,15,289,35,293,39,39 +17492,15,289,35,418,39,39 +17493,15,289,36,77,40,40 +17494,15,289,36,293,40,40 +17495,15,289,36,418,40,40 +17496,15,289,37,232,40,40 +17497,15,289,37,264,40,40 +17498,15,289,37,399,40,40 +17499,15,289,38,232,40,40 +17500,15,289,38,264,40,40 +17501,15,289,38,399,40,40 +17502,15,289,39,78,42,42 +17503,15,289,39,78,42,42 +17504,15,289,39,215,42,42 +17505,15,289,40,78,42,42 +17506,15,289,40,78,42,42 +17507,15,289,40,215,42,42 +17508,15,289,41,84,41,41 +17509,15,289,41,84,41,41 +17510,15,289,41,78,41,41 +17511,15,289,42,85,43,43 +17512,15,289,42,85,43,43 +17513,15,289,42,78,43,43 +17514,15,289,43,84,41,41 +17515,15,289,43,84,41,41 +17516,15,289,43,78,41,41 +17517,15,289,44,85,43,43 +17518,15,289,44,85,43,43 +17519,15,289,44,78,43,43 +17520,15,289,60,60,40,40 +17521,15,289,61,60,35,35 +17522,15,289,62,61,40,40 +17523,15,289,63,61,40,40 +17524,15,289,64,61,40,40 +17525,15,289,45,129,10,10 +17526,15,289,46,129,10,10 +17527,15,289,47,129,10,10 +17528,15,289,48,60,10,10 +17529,15,289,49,60,10,10 +17530,15,289,50,129,20,20 +17531,15,289,51,60,20,20 +17532,15,289,52,60,20,20 +17534,15,289,53,60,20,20 +17536,15,289,54,60,20,20 +17537,15,289,55,60,40,40 +17539,15,289,56,60,40,40 +17541,15,289,57,129,40,40 +17542,15,289,58,60,40,40 +17544,15,289,59,129,40,40 +17545,15,290,33,41,6,6 +17546,15,290,34,74,8,8 +17548,15,290,35,41,6,6 +17549,15,290,35,359,6,6 +17550,15,290,35,436,6,6 +17551,15,290,36,74,8,8 +17552,15,290,36,359,8,8 +17553,15,290,36,436,8,8 +17554,15,290,37,27,8,8 +17555,15,290,37,296,8,8 +17556,15,290,37,433,8,8 +17557,15,290,38,27,8,8 +17558,15,290,38,296,8,8 +17559,15,290,38,433,8,8 +17560,15,290,39,46,12,12 +17561,15,290,40,46,12,12 +17562,15,290,41,28,10,10 +17563,15,290,42,35,8,8 +17564,15,290,43,28,10,10 +17565,15,290,44,35,8,8 +17566,15,291,33,41,6,6 +17567,15,291,34,74,8,8 +17569,15,291,35,41,6,6 +17570,15,291,35,359,6,6 +17571,15,291,35,436,6,6 +17572,15,291,36,74,8,8 +17573,15,291,36,359,8,8 +17574,15,291,36,436,8,8 +17575,15,291,37,27,8,8 +17576,15,291,37,296,8,8 +17577,15,291,37,433,8,8 +17578,15,291,38,27,8,8 +17579,15,291,38,296,8,8 +17580,15,291,38,433,8,8 +17581,15,291,39,46,12,12 +17582,15,291,40,46,12,12 +17583,15,291,41,28,10,10 +17584,15,291,42,35,8,8 +17585,15,291,43,28,10,10 +17586,15,291,44,35,8,8 +17587,15,292,33,104,10,10 +17588,15,292,34,74,10,10 +17590,15,292,35,104,10,10 +17591,15,292,35,359,10,10 +17592,15,292,35,436,10,10 +17593,15,292,36,74,10,10 +17594,15,292,36,359,10,10 +17595,15,292,36,436,10,10 +17596,15,292,37,66,12,12 +17597,15,292,37,296,12,12 +17598,15,292,37,433,12,12 +17599,15,292,38,66,12,12 +17600,15,292,38,296,12,12 +17601,15,292,38,433,12,12 +17602,15,292,39,41,8,8 +17603,15,292,40,41,8,8 +17604,15,292,41,67,14,14 +17605,15,292,42,104,13,13 +17606,15,292,43,67,14,14 +17607,15,292,44,104,13,13 +17608,15,293,33,104,12,12 +17609,15,293,34,74,12,12 +17611,15,293,35,104,12,12 +17612,15,293,35,359,12,12 +17613,15,293,35,436,12,12 +17614,15,293,36,74,12,12 +17615,15,293,36,359,12,12 +17616,15,293,36,436,12,12 +17617,15,293,37,95,16,16 +17618,15,293,37,296,16,16 +17619,15,293,37,433,16,16 +17620,15,293,38,95,16,16 +17621,15,293,38,296,16,16 +17622,15,293,38,433,16,16 +17623,15,293,39,41,10,10 +17624,15,293,40,41,10,10 +17625,15,293,41,105,14,14 +17626,15,293,42,115,14,14 +17627,15,293,43,105,14,14 +17628,15,293,44,115,14,14 +17629,15,293,65,74,12,16 +17630,15,293,66,74,17,21 +17631,15,294,33,75,32,32 +17632,15,294,34,42,32,32 +17634,15,294,35,75,32,32 +17635,15,294,35,359,32,32 +17636,15,294,35,436,32,32 +17637,15,294,36,42,32,32 +17638,15,294,36,359,32,32 +17639,15,294,36,436,32,32 +17640,15,294,37,232,33,33 +17641,15,294,37,296,33,33 +17642,15,294,37,433,33,33 +17643,15,294,38,232,33,33 +17644,15,294,38,296,33,33 +17645,15,294,38,433,33,33 +17646,15,294,39,95,34,34 +17647,15,294,40,95,34,34 +17648,15,294,41,95,36,36 +17649,15,294,42,111,35,35 +17650,15,294,43,95,36,36 +17651,15,294,44,111,35,35 +17652,15,295,33,16,2,2 +17653,15,295,33,16,2,2 +17654,15,295,33,163,2,2 +17655,15,295,33,261,2,2 +17656,15,295,34,19,2,2 +17657,15,295,34,261,2,2 +17658,15,295,35,16,2,2 +17659,15,295,35,16,2,2 +17660,15,295,35,163,2,2 +17661,15,295,35,311,2,2 +17662,15,295,35,403,2,2 +17663,15,295,36,19,2,2 +17664,15,295,36,311,2,2 +17665,15,295,36,403,2,2 +17666,15,295,37,161,3,3 +17667,15,295,37,161,3,3 +17668,15,295,37,19,3,3 +17669,15,295,37,312,3,3 +17670,15,295,37,403,3,3 +17671,15,295,38,161,3,3 +17672,15,295,38,161,3,3 +17673,15,295,38,19,3,3 +17674,15,295,38,312,3,3 +17675,15,295,38,403,3,3 +17676,15,295,39,16,3,3 +17677,15,295,39,16,3,3 +17678,15,295,39,163,3,3 +17679,15,295,40,16,3,3 +17680,15,295,40,16,3,3 +17681,15,295,40,163,3,3 +17682,15,295,41,162,6,6 +17683,15,295,41,162,6,6 +17684,15,295,41,19,6,6 +17685,15,295,42,16,4,4 +17686,15,295,42,16,4,4 +17687,15,295,42,163,4,4 +17688,15,295,43,162,6,6 +17689,15,295,43,162,6,6 +17690,15,295,43,19,6,6 +17691,15,295,44,16,4,4 +17692,15,295,44,16,4,4 +17693,15,295,44,163,4,4 +17694,15,296,33,10,3,3 +17695,15,296,33,10,3,3 +17696,15,296,33,163,3,3 +17698,15,296,34,16,3,3 +17699,15,296,34,16,3,3 +17700,15,296,34,167,3,3 +17702,15,296,35,10,3,3 +17703,15,296,35,10,3,3 +17704,15,296,35,163,3,3 +17705,15,296,35,311,3,3 +17706,15,296,35,403,3,3 +17707,15,296,36,16,3,3 +17708,15,296,36,16,3,3 +17709,15,296,36,167,3,3 +17710,15,296,36,311,3,3 +17711,15,296,36,403,3,3 +17712,15,296,37,11,5,5 +17713,15,296,37,11,5,5 +17714,15,296,37,163,5,5 +17715,15,296,37,312,5,5 +17716,15,296,37,403,5,5 +17717,15,296,38,11,5,5 +17718,15,296,38,11,5,5 +17719,15,296,38,163,5,5 +17720,15,296,38,312,5,5 +17721,15,296,38,403,5,5 +17722,15,296,39,12,7,7 +17723,15,296,39,16,7,7 +17724,15,296,39,164,7,7 +17725,15,296,40,12,8,8 +17726,15,296,40,16,8,8 +17727,15,296,40,164,8,8 +17728,15,296,41,17,7,7 +17729,15,296,41,17,7,7 +17730,15,296,41,168,7,7 +17731,15,296,42,167,10,10 +17732,15,296,42,17,10,10 +17733,15,296,42,164,10,10 +17734,15,296,43,17,7,7 +17735,15,296,43,17,7,7 +17736,15,296,43,168,7,7 +17737,15,296,44,10,4,4 +17738,15,296,44,10,4,4 +17739,15,296,44,167,4,4 +17740,15,297,33,21,5,5 +17741,15,297,33,21,5,5 +17742,15,297,33,19,5,5 +17743,15,297,33,343,5,5 +17744,15,297,34,19,5,5 +17745,15,297,34,19,5,5 +17746,15,297,34,41,5,5 +17747,15,297,34,343,5,5 +17748,15,297,35,21,5,5 +17749,15,297,35,21,5,5 +17750,15,297,35,19,5,5 +17751,15,297,35,311,5,5 +17752,15,297,35,403,5,5 +17753,15,297,36,19,5,5 +17754,15,297,36,19,5,5 +17755,15,297,36,41,5,5 +17756,15,297,36,311,5,5 +17757,15,297,36,403,5,5 +17758,15,297,37,21,8,8 +17759,15,297,37,21,8,8 +17760,15,297,37,19,8,8 +17761,15,297,37,312,8,8 +17762,15,297,37,403,8,8 +17763,15,297,38,21,8,8 +17764,15,297,38,21,8,8 +17765,15,297,38,19,8,8 +17766,15,297,38,312,8,8 +17767,15,297,38,403,8,8 +17768,15,297,39,39,6,6 +17769,15,297,40,39,6,6 +17770,15,297,41,19,10,10 +17771,15,297,42,21,8,8 +17772,15,297,42,21,8,8 +17773,15,297,42,19,8,8 +17774,15,297,43,19,10,10 +17775,15,297,44,21,8,8 +17776,15,297,44,21,8,8 +17777,15,297,44,19,8,8 +17778,15,298,33,21,5,5 +17779,15,298,34,19,5,5 +17780,15,298,34,19,5,5 +17781,15,298,34,41,5,5 +17783,15,298,35,21,5,5 +17784,15,298,35,293,5,5 +17785,15,298,35,418,5,5 +17786,15,298,36,19,5,5 +17787,15,298,36,19,5,5 +17788,15,298,36,41,5,5 +17789,15,298,36,293,5,5 +17790,15,298,36,418,5,5 +17791,15,298,37,21,8,8 +17792,15,298,37,21,8,8 +17793,15,298,37,19,8,8 +17794,15,298,37,264,8,8 +17795,15,298,37,399,8,8 +17796,15,298,38,21,8,8 +17797,15,298,38,21,8,8 +17798,15,298,38,19,8,8 +17799,15,298,38,264,8,8 +17800,15,298,38,399,8,8 +17801,15,298,39,39,6,6 +17802,15,298,40,39,6,6 +17803,15,298,41,19,10,10 +17804,15,298,42,21,8,8 +17805,15,298,42,21,8,8 +17806,15,298,42,19,8,8 +17807,15,298,43,19,10,10 +17808,15,298,44,21,8,8 +17809,15,298,44,21,8,8 +17810,15,298,44,19,8,8 +17811,15,298,60,118,10,10 +17812,15,298,61,118,5,5 +17813,15,298,62,119,10,10 +17814,15,298,63,119,10,10 +17815,15,298,64,119,10,10 +17816,15,298,45,129,10,10 +17817,15,298,46,129,10,10 +17818,15,298,47,129,10,10 +17819,15,298,48,118,10,10 +17820,15,298,49,118,10,10 +17821,15,298,50,129,20,20 +17822,15,298,51,118,20,20 +17823,15,298,52,118,20,20 +17825,15,298,53,118,20,20 +17827,15,298,54,118,20,20 +17828,15,298,55,118,40,40 +17830,15,298,56,118,40,40 +17832,15,298,57,129,40,40 +17833,15,298,58,119,40,40 +17835,15,298,59,129,40,40 +17836,15,299,33,16,13,13 +17837,15,299,33,16,13,13 +17838,15,299,33,43,13,13 +17840,15,299,34,69,13,13 +17841,15,299,34,69,13,13 +17842,15,299,34,43,13,13 +17844,15,299,35,16,13,13 +17845,15,299,35,16,13,13 +17846,15,299,35,43,13,13 +17847,15,299,35,311,13,13 +17848,15,299,35,403,13,13 +17849,15,299,36,69,13,13 +17850,15,299,36,69,13,13 +17851,15,299,36,43,13,13 +17852,15,299,36,311,13,13 +17853,15,299,36,403,13,13 +17854,15,299,37,16,14,14 +17855,15,299,37,16,14,14 +17856,15,299,37,69,14,14 +17857,15,299,37,312,14,14 +17858,15,299,37,403,14,14 +17859,15,299,38,16,14,14 +17860,15,299,38,16,14,14 +17861,15,299,38,69,14,14 +17862,15,299,38,312,14,14 +17863,15,299,38,403,14,14 +17864,15,299,39,16,15,15 +17865,15,299,39,16,15,15 +17866,15,299,39,44,15,15 +17867,15,299,40,16,15,15 +17868,15,299,40,16,15,15 +17869,15,299,40,44,15,15 +17870,15,299,41,63,12,12 +17871,15,299,42,63,14,14 +17872,15,299,43,63,12,12 +17873,15,299,44,63,14,14 +17874,15,300,33,16,13,13 +17875,15,300,33,16,13,13 +17876,15,300,33,43,13,13 +17878,15,300,34,69,13,13 +17879,15,300,34,69,13,13 +17880,15,300,34,43,13,13 +17882,15,300,35,16,13,13 +17883,15,300,35,16,13,13 +17884,15,300,35,43,13,13 +17885,15,300,35,293,13,13 +17886,15,300,35,418,13,13 +17887,15,300,36,69,13,13 +17888,15,300,36,69,13,13 +17889,15,300,36,43,13,13 +17890,15,300,36,293,13,13 +17891,15,300,36,418,13,13 +17892,15,300,37,16,14,14 +17893,15,300,37,16,14,14 +17894,15,300,37,69,14,14 +17895,15,300,37,264,14,14 +17896,15,300,37,399,14,14 +17897,15,300,38,16,14,14 +17898,15,300,38,16,14,14 +17899,15,300,38,69,14,14 +17900,15,300,38,264,14,14 +17901,15,300,38,399,14,14 +17902,15,300,39,81,15,15 +17903,15,300,40,81,15,15 +17904,15,300,41,63,12,12 +17905,15,300,42,63,14,14 +17906,15,300,43,63,12,12 +17907,15,300,44,63,14,14 +17908,15,300,60,54,10,10 +17909,15,300,61,54,5,5 +17910,15,300,62,55,10,10 +17911,15,300,63,55,10,10 +17912,15,300,64,55,10,10 +17913,15,300,45,129,10,10 +17914,15,300,46,129,10,10 +17915,15,300,47,129,10,10 +17916,15,300,48,60,10,10 +17917,15,300,49,60,10,10 +17918,15,300,50,129,20,20 +17919,15,300,51,60,20,20 +17920,15,300,52,60,20,20 +17922,15,300,53,60,20,20 +17924,15,300,54,60,20,20 +17925,15,300,55,60,40,40 +17927,15,300,56,60,40,40 +17929,15,300,57,129,40,40 +17930,15,300,58,60,40,40 +17932,15,300,59,129,40,40 +17933,15,301,33,19,17,17 +17934,15,301,34,21,17,17 +17935,15,301,34,21,17,17 +17936,15,301,34,198,17,17 +17938,15,301,35,19,17,17 +17939,15,301,35,311,17,17 +17940,15,301,35,403,17,17 +17941,15,301,36,21,17,17 +17942,15,301,36,21,17,17 +17943,15,301,36,198,17,17 +17944,15,301,36,311,17,17 +17945,15,301,36,403,17,17 +17946,15,301,37,58,18,18 +17947,15,301,37,312,18,18 +17948,15,301,37,403,18,18 +17949,15,301,38,58,18,18 +17950,15,301,38,312,18,18 +17951,15,301,38,403,18,18 +17952,15,301,39,20,19,19 +17953,15,301,40,20,19,19 +17954,15,301,41,19,19,19 +17955,15,301,41,19,19,19 +17956,15,301,41,198,19,19 +17957,15,301,42,19,15,15 +17958,15,301,42,58,15,15 +17959,15,301,42,228,15,15 +17960,15,301,43,19,19,19 +17961,15,301,43,19,19,19 +17962,15,301,43,198,19,19 +17963,15,301,44,19,15,15 +17964,15,301,44,58,15,15 +17965,15,301,44,228,15,15 +17966,15,302,33,17,17,17 +17967,15,302,33,17,17,17 +17968,15,302,33,164,17,17 +17970,15,302,34,17,19,19 +17971,15,302,34,17,19,19 +17972,15,302,34,93,19,19 +17974,15,302,35,17,17,17 +17975,15,302,35,17,17,17 +17976,15,302,35,164,17,17 +17977,15,302,35,311,17,17 +17978,15,302,35,403,17,17 +17979,15,302,36,17,19,19 +17980,15,302,36,17,19,19 +17981,15,302,36,93,19,19 +17982,15,302,36,311,19,19 +17983,15,302,36,403,19,19 +17984,15,302,37,63,15,15 +17985,15,302,37,312,15,15 +17986,15,302,37,403,15,15 +17987,15,302,38,63,15,15 +17988,15,302,38,312,15,15 +17989,15,302,38,403,15,15 +17990,15,302,39,58,18,18 +17991,15,302,39,58,18,18 +17992,15,302,39,164,18,18 +17993,15,302,40,58,18,18 +17994,15,302,40,58,18,18 +17995,15,302,40,164,18,18 +17996,15,302,41,17,17,17 +17997,15,302,41,17,17,17 +17998,15,302,41,58,17,17 +17999,15,302,42,64,15,15 +18000,15,302,43,17,17,17 +18001,15,302,43,17,17,17 +18002,15,302,43,58,17,17 +18003,15,302,44,64,15,15 +18004,15,303,33,56,13,13 +18005,15,303,33,302,13,13 +18006,15,303,34,19,15,15 +18007,15,303,34,302,15,15 +18008,15,303,35,56,13,13 +18009,15,303,35,293,13,13 +18010,15,303,35,418,13,13 +18011,15,303,36,19,15,15 +18012,15,303,36,293,15,15 +18013,15,303,36,418,15,15 +18014,15,303,37,21,13,13 +18015,15,303,37,21,13,13 +18016,15,303,37,20,13,13 +18017,15,303,37,264,13,13 +18018,15,303,37,399,13,13 +18019,15,303,38,21,13,13 +18020,15,303,38,21,13,13 +18021,15,303,38,20,13,13 +18022,15,303,38,264,13,13 +18023,15,303,38,399,13,13 +18024,15,303,39,20,15,15 +18025,15,303,39,20,15,15 +18026,15,303,39,19,15,15 +18027,15,303,40,20,15,15 +18028,15,303,40,20,15,15 +18029,15,303,40,19,15,15 +18030,15,303,41,22,15,15 +18031,15,303,41,22,15,15 +18032,15,303,41,20,15,15 +18033,15,303,42,57,15,15 +18034,15,303,43,22,15,15 +18035,15,303,43,22,15,15 +18036,15,303,43,20,15,15 +18037,15,303,44,57,15,15 +18038,15,303,60,118,15,15 +18039,15,303,61,118,10,10 +18040,15,303,62,119,15,15 +18041,15,303,63,119,15,15 +18042,15,303,64,119,15,15 +18043,15,303,45,129,10,10 +18044,15,303,46,129,10,10 +18045,15,303,47,129,10,10 +18046,15,303,48,118,10,10 +18047,15,303,49,118,10,10 +18048,15,303,50,129,20,20 +18049,15,303,51,118,20,20 +18050,15,303,52,118,20,20 +18052,15,303,53,118,20,20 +18054,15,303,54,118,20,20 +18055,15,303,55,118,40,40 +18057,15,303,56,118,40,40 +18059,15,303,57,129,40,40 +18060,15,303,58,119,40,40 +18062,15,303,59,129,40,40 +18063,15,304,33,21,16,16 +18064,15,304,33,21,16,16 +18065,15,304,33,195,16,16 +18067,15,304,34,100,17,17 +18069,15,304,35,21,16,16 +18070,15,304,35,21,16,16 +18071,15,304,35,195,16,16 +18072,15,304,35,293,16,16 +18073,15,304,35,418,16,16 +18074,15,304,36,100,17,17 +18075,15,304,36,293,17,17 +18076,15,304,36,418,17,17 +18077,15,304,37,20,16,16 +18078,15,304,37,264,16,16 +18079,15,304,37,399,16,16 +18080,15,304,38,20,16,16 +18081,15,304,38,264,16,16 +18082,15,304,38,399,16,16 +18083,15,304,39,22,18,18 +18084,15,304,39,22,18,18 +18085,15,304,39,195,18,18 +18086,15,304,40,22,18,18 +18087,15,304,40,22,18,18 +18088,15,304,40,195,18,18 +18089,15,304,41,20,18,18 +18090,15,304,41,125,18,18 +18091,15,304,41,20,18,18 +18092,15,304,42,125,15,15 +18093,15,304,43,20,18,18 +18094,15,304,43,125,18,18 +18095,15,304,43,20,18,18 +18096,15,304,44,125,15,15 +18097,15,304,60,118,15,15 +18098,15,304,61,118,10,10 +18099,15,304,62,119,15,15 +18100,15,304,63,119,15,15 +18101,15,304,64,119,15,15 +18102,15,304,45,129,10,10 +18103,15,304,46,129,10,10 +18104,15,304,47,129,10,10 +18105,15,304,48,118,10,10 +18106,15,304,49,118,10,10 +18107,15,304,50,129,20,20 +18108,15,304,51,118,20,20 +18109,15,304,52,118,20,20 +18111,15,304,53,118,20,20 +18113,15,304,54,118,20,20 +18114,15,304,55,118,40,40 +18116,15,304,56,118,40,40 +18118,15,304,57,129,40,40 +18119,15,304,58,119,40,40 +18121,15,304,59,129,40,40 +18122,15,305,33,96,14,14 +18123,15,305,34,19,15,15 +18125,15,305,35,96,14,14 +18126,15,305,35,311,14,14 +18127,15,305,35,403,14,14 +18128,15,305,36,19,15,15 +18129,15,305,36,311,15,15 +18130,15,305,36,403,15,15 +18131,15,305,37,81,15,15 +18132,15,305,37,312,15,15 +18133,15,305,37,403,15,15 +18134,15,305,38,81,15,15 +18135,15,305,38,312,15,15 +18136,15,305,38,403,15,15 +18137,15,305,39,96,16,16 +18138,15,305,40,96,16,16 +18139,15,305,41,97,16,16 +18140,15,305,42,97,16,16 +18141,15,305,43,97,16,16 +18142,15,305,44,97,16,16 +18143,15,306,33,30,23,23 +18144,15,306,33,113,23,23 +18145,15,306,34,33,23,23 +18146,15,306,34,113,23,23 +18147,15,306,35,30,23,23 +18148,15,306,35,293,23,23 +18149,15,306,35,418,23,23 +18150,15,306,36,33,23,23 +18151,15,306,36,293,23,23 +18152,15,306,36,418,23,23 +18153,15,306,37,17,25,25 +18154,15,306,37,17,25,25 +18155,15,306,37,164,25,25 +18156,15,306,37,264,25,25 +18157,15,306,37,399,25,25 +18158,15,306,38,17,25,25 +18159,15,306,38,17,25,25 +18160,15,306,38,164,25,25 +18161,15,306,38,264,25,25 +18162,15,306,38,399,25,25 +18163,15,306,39,187,22,22 +18164,15,306,39,187,22,22 +18165,15,306,39,195,22,22 +18166,15,306,40,187,22,22 +18167,15,306,40,187,22,22 +18168,15,306,40,195,22,22 +18169,15,306,41,187,24,24 +18170,15,306,41,187,24,24 +18171,15,306,41,195,24,24 +18172,15,306,42,187,24,24 +18173,15,306,42,187,24,24 +18174,15,306,42,195,24,24 +18175,15,306,43,187,24,24 +18176,15,306,43,187,24,24 +18177,15,306,43,195,24,24 +18178,15,306,44,113,25,25 +18179,15,306,60,72,25,25 +18180,15,306,61,195,25,25 +18181,15,306,62,73,25,25 +18182,15,306,63,73,25,25 +18183,15,306,64,73,25,25 +18184,15,306,45,129,10,10 +18185,15,306,46,129,10,10 +18186,15,306,47,129,10,10 +18187,15,306,48,72,10,10 +18188,15,306,49,72,10,10 +18189,15,306,50,129,20,20 +18190,15,306,51,72,20,20 +18191,15,306,52,72,20,20 +18193,15,306,53,72,20,20 +18195,15,306,54,72,20,20 +18196,15,306,55,72,40,40 +18198,15,306,56,72,40,40 +18200,15,306,57,129,40,40 +18201,15,306,58,211,40,40 +18203,15,306,59,129,40,40 +18204,15,307,33,30,23,23 +18205,15,307,34,33,23,23 +18207,15,307,35,30,23,23 +18208,15,307,35,311,23,23 +18209,15,307,35,403,23,23 +18210,15,307,36,33,23,23 +18211,15,307,36,311,23,23 +18212,15,307,36,403,23,23 +18213,15,307,37,17,25,25 +18214,15,307,37,17,25,25 +18215,15,307,37,164,25,25 +18216,15,307,37,312,25,25 +18217,15,307,37,403,25,25 +18218,15,307,38,17,25,25 +18219,15,307,38,17,25,25 +18220,15,307,38,164,25,25 +18221,15,307,38,312,25,25 +18222,15,307,38,403,25,25 +18223,15,307,39,187,24,24 +18224,15,307,39,187,24,24 +18225,15,307,39,195,24,24 +18226,15,307,40,187,24,24 +18227,15,307,40,187,24,24 +18228,15,307,40,195,24,24 +18229,15,307,41,188,26,26 +18230,15,307,41,188,26,26 +18231,15,307,41,195,26,26 +18232,15,307,42,188,26,26 +18233,15,307,42,188,26,26 +18234,15,307,42,195,26,26 +18235,15,307,43,188,26,26 +18236,15,307,43,188,26,26 +18237,15,307,43,195,26,26 +18238,15,307,44,113,25,25 +18239,15,308,33,30,23,23 +18240,15,308,34,33,23,23 +18242,15,308,35,30,23,23 +18243,15,308,35,311,23,23 +18244,15,308,35,403,23,23 +18245,15,308,36,33,23,23 +18246,15,308,36,311,23,23 +18247,15,308,36,403,23,23 +18248,15,308,37,17,25,25 +18249,15,308,37,17,25,25 +18250,15,308,37,164,25,25 +18251,15,308,37,312,25,25 +18252,15,308,37,403,25,25 +18253,15,308,38,17,25,25 +18254,15,308,38,17,25,25 +18255,15,308,38,164,25,25 +18256,15,308,38,312,25,25 +18257,15,308,38,403,25,25 +18258,15,308,39,187,22,22 +18259,15,308,39,187,22,22 +18260,15,308,39,195,22,22 +18261,15,308,40,187,22,22 +18262,15,308,40,187,22,22 +18263,15,308,40,195,22,22 +18264,15,308,41,187,24,24 +18265,15,308,41,187,24,24 +18266,15,308,41,195,24,24 +18267,15,308,42,187,24,24 +18268,15,308,42,187,24,24 +18269,15,308,42,195,24,24 +18270,15,308,43,187,24,24 +18271,15,308,43,187,24,24 +18272,15,308,43,195,24,24 +18273,15,308,44,113,25,25 +18274,15,309,33,88,26,26 +18275,15,309,34,22,27,27 +18276,15,309,34,22,27,27 +18277,15,309,34,88,27,27 +18279,15,309,35,88,26,26 +18280,15,309,35,311,26,26 +18281,15,309,35,403,26,26 +18282,15,309,36,22,27,27 +18283,15,309,36,22,27,27 +18284,15,309,36,88,27,27 +18285,15,309,36,311,27,27 +18286,15,309,36,403,27,27 +18287,15,309,37,88,28,28 +18288,15,309,37,312,28,28 +18289,15,309,37,403,28,28 +18290,15,309,38,88,28,28 +18291,15,309,38,312,28,28 +18292,15,309,38,403,28,28 +18293,15,309,39,22,29,29 +18294,15,309,39,22,29,29 +18295,15,309,39,198,29,29 +18296,15,309,40,22,29,29 +18297,15,309,40,22,29,29 +18298,15,309,40,198,29,29 +18299,15,309,41,218,27,27 +18300,15,309,42,89,30,30 +18301,15,309,43,218,27,27 +18302,15,309,44,89,30,30 +18303,15,310,33,22,28,28 +18304,15,310,33,22,28,28 +18305,15,310,33,88,28,28 +18307,15,310,34,88,27,27 +18308,15,310,34,218,27,27 +18309,15,310,34,88,27,27 +18311,15,310,35,22,28,28 +18312,15,310,35,22,28,28 +18313,15,310,35,88,28,28 +18314,15,310,35,311,28,28 +18315,15,310,35,403,28,28 +18316,15,310,36,88,27,27 +18317,15,310,36,218,27,27 +18318,15,310,36,88,27,27 +18319,15,310,36,311,27,27 +18320,15,310,36,403,27,27 +18321,15,310,37,88,29,29 +18322,15,310,37,312,29,29 +18323,15,310,37,403,29,29 +18324,15,310,38,88,29,29 +18325,15,310,38,312,29,29 +18326,15,310,38,403,29,29 +18327,15,310,39,22,30,30 +18328,15,310,39,22,30,30 +18329,15,310,39,89,30,30 +18330,15,310,40,22,30,30 +18331,15,310,40,22,30,30 +18332,15,310,40,89,30,30 +18333,15,310,41,218,29,29 +18334,15,310,42,89,32,32 +18335,15,310,43,218,29,29 +18336,15,310,44,89,32,32 +18337,15,311,33,88,26,26 +18338,15,311,34,22,27,27 +18339,15,311,34,22,27,27 +18340,15,311,34,88,27,27 +18342,15,311,35,88,26,26 +18343,15,311,35,311,26,26 +18344,15,311,35,403,26,26 +18345,15,311,36,22,27,27 +18346,15,311,36,22,27,27 +18347,15,311,36,88,27,27 +18348,15,311,36,311,27,27 +18349,15,311,36,403,27,27 +18350,15,311,37,88,28,28 +18351,15,311,37,312,28,28 +18352,15,311,37,403,28,28 +18353,15,311,38,88,28,28 +18354,15,311,38,312,28,28 +18355,15,311,38,403,28,28 +18356,15,311,39,22,29,29 +18357,15,311,39,22,29,29 +18358,15,311,39,89,29,29 +18359,15,311,40,22,29,29 +18360,15,311,40,22,29,29 +18361,15,311,40,89,29,29 +18362,15,311,41,218,27,27 +18363,15,311,42,89,30,30 +18364,15,311,43,218,27,27 +18365,15,311,44,89,30,30 +18366,15,312,33,114,30,30 +18367,15,312,34,114,25,25 +18368,15,312,35,114,30,30 +18369,15,312,35,293,30,30 +18370,15,312,35,418,30,30 +18371,15,312,36,114,25,25 +18372,15,312,36,293,25,25 +18373,15,312,36,418,25,25 +18374,15,312,37,114,35,35 +18375,15,312,37,264,35,35 +18376,15,312,37,399,35,35 +18377,15,312,38,114,35,35 +18378,15,312,38,264,35,35 +18379,15,312,38,399,35,35 +18380,15,312,39,114,20,20 +18381,15,312,40,114,20,20 +18382,15,312,41,114,30,30 +18383,15,312,41,122,30,30 +18384,15,312,41,114,30,30 +18385,15,312,42,122,28,28 +18386,15,312,43,114,30,30 +18387,15,312,43,122,30,30 +18388,15,312,43,114,30,30 +18389,15,312,44,122,28,28 +18390,15,312,60,72,35,35 +18391,15,312,61,72,30,30 +18392,15,312,62,73,35,35 +18393,15,312,63,73,35,35 +18394,15,312,64,73,35,35 +18395,15,312,45,129,10,10 +18396,15,312,46,129,10,10 +18397,15,312,47,129,10,10 +18398,15,312,48,72,10,10 +18399,15,312,49,72,10,10 +18400,15,312,50,129,20,20 +18401,15,312,51,72,20,20 +18402,15,312,52,170,20,20 +18404,15,312,53,90,20,20 +18406,15,312,54,170,20,20 +18407,15,312,55,170,40,40 +18409,15,312,56,90,40,40 +18411,15,312,57,73,40,40 +18413,15,312,58,171,40,40 +18415,15,312,59,73,40,40 +18417,15,313,33,19,3,3 +18418,15,313,34,21,3,3 +18419,15,313,34,21,3,3 +18420,15,313,34,19,3,3 +18422,15,313,35,19,3,3 +18423,15,313,35,293,3,3 +18424,15,313,35,418,3,3 +18425,15,313,36,21,3,3 +18426,15,313,36,21,3,3 +18427,15,313,36,19,3,3 +18428,15,313,36,293,3,3 +18429,15,313,36,418,3,3 +18430,15,313,37,21,5,5 +18431,15,313,37,21,5,5 +18432,15,313,37,19,5,5 +18433,15,313,37,264,5,5 +18434,15,313,37,399,5,5 +18435,15,313,38,21,5,5 +18436,15,313,38,21,5,5 +18437,15,313,38,19,5,5 +18438,15,313,38,264,5,5 +18439,15,313,38,399,5,5 +18440,15,313,39,84,4,4 +18441,15,313,39,84,4,4 +18442,15,313,39,19,4,4 +18443,15,313,40,84,4,4 +18444,15,313,40,84,4,4 +18445,15,313,40,19,4,4 +18446,15,313,41,77,6,6 +18447,15,313,42,22,7,7 +18448,15,313,42,22,7,7 +18449,15,313,42,19,7,7 +18450,15,313,43,77,6,6 +18451,15,313,44,22,7,7 +18452,15,313,44,22,7,7 +18453,15,313,44,19,7,7 +18454,15,313,60,60,10,10 +18455,15,313,61,60,5,5 +18456,15,313,62,61,10,10 +18457,15,313,63,61,10,10 +18458,15,313,64,61,10,10 +18459,15,313,45,129,10,10 +18460,15,313,46,129,10,10 +18461,15,313,47,129,10,10 +18462,15,313,48,60,10,10 +18463,15,313,49,60,10,10 +18464,15,313,50,129,20,20 +18465,15,313,51,60,20,20 +18466,15,313,52,60,20,20 +18468,15,313,53,60,20,20 +18470,15,313,54,60,20,20 +18471,15,313,55,60,40,40 +18473,15,313,56,60,40,40 +18475,15,313,57,129,40,40 +18476,15,313,58,60,40,40 +18478,15,313,59,129,40,40 +18479,15,314,33,69,8,8 +18480,15,314,33,69,8,8 +18481,15,314,33,48,8,8 +18483,15,314,34,69,10,10 +18484,15,314,34,191,10,10 +18485,15,314,34,43,10,10 +18487,15,314,35,69,8,8 +18488,15,314,35,69,8,8 +18489,15,314,35,48,8,8 +18490,15,314,35,293,8,8 +18491,15,314,35,418,8,8 +18492,15,314,36,69,10,10 +18493,15,314,36,191,10,10 +18494,15,314,36,43,10,10 +18495,15,314,36,293,10,10 +18496,15,314,36,418,10,10 +18497,15,314,37,63,9,9 +18498,15,314,37,264,9,9 +18499,15,314,37,399,9,9 +18500,15,314,38,63,9,9 +18501,15,314,38,264,9,9 +18502,15,314,38,399,9,9 +18503,15,314,39,70,12,12 +18504,15,314,40,70,12,12 +18505,15,314,41,48,8,8 +18506,15,314,41,69,8,8 +18507,15,314,41,69,8,8 +18508,15,314,42,70,14,14 +18509,15,314,42,70,14,14 +18510,15,314,42,49,14,14 +18511,15,314,43,48,8,8 +18512,15,314,43,69,8,8 +18513,15,314,43,69,8,8 +18514,15,314,44,70,14,14 +18515,15,314,44,70,14,14 +18516,15,314,44,49,14,14 +18517,15,314,60,118,10,10 +18518,15,314,61,118,5,5 +18519,15,314,62,119,10,10 +18520,15,314,63,119,10,10 +18521,15,314,64,119,10,10 +18522,15,314,45,129,10,10 +18523,15,314,46,129,10,10 +18524,15,314,47,129,10,10 +18525,15,314,48,118,10,10 +18526,15,314,49,118,10,10 +18527,15,314,50,129,20,20 +18528,15,314,51,118,20,20 +18529,15,314,52,118,20,20 +18531,15,314,53,118,20,20 +18533,15,314,54,118,20,20 +18534,15,314,55,118,40,40 +18536,15,314,56,118,40,40 +18538,15,314,57,129,40,40 +18539,15,314,58,119,40,40 +18541,15,314,59,129,40,40 +18542,15,315,33,16,8,8 +18543,15,315,33,16,8,8 +18544,15,315,33,48,8,8 +18545,15,315,33,427,8,8 +18546,15,315,34,69,10,10 +18547,15,315,34,69,10,10 +18548,15,315,34,43,10,10 +18549,15,315,34,427,10,10 +18550,15,315,35,16,8,8 +18551,15,315,35,16,8,8 +18552,15,315,35,48,8,8 +18553,15,315,35,293,8,8 +18554,15,315,35,418,8,8 +18555,15,315,36,69,10,10 +18556,15,315,36,69,10,10 +18557,15,315,36,43,10,10 +18558,15,315,36,293,10,10 +18559,15,315,36,418,10,10 +18560,15,315,37,48,8,8 +18561,15,315,37,16,8,8 +18562,15,315,37,49,8,8 +18563,15,315,37,264,8,8 +18564,15,315,37,399,8,8 +18565,15,315,38,48,8,8 +18566,15,315,38,16,8,8 +18567,15,315,38,49,8,8 +18568,15,315,38,264,8,8 +18569,15,315,38,399,8,8 +18570,15,315,39,63,9,9 +18571,15,315,40,63,9,9 +18572,15,315,41,17,10,10 +18573,15,315,41,17,10,10 +18574,15,315,41,70,10,10 +18575,15,315,42,70,14,14 +18576,15,315,42,70,14,14 +18577,15,315,42,69,14,14 +18578,15,315,43,17,10,10 +18579,15,315,43,17,10,10 +18580,15,315,43,70,10,10 +18581,15,315,44,70,14,14 +18582,15,315,44,70,14,14 +18583,15,315,44,69,14,14 +18584,15,315,60,118,10,10 +18585,15,315,61,118,5,5 +18586,15,315,62,119,10,10 +18587,15,315,63,119,10,10 +18588,15,315,64,119,10,10 +18589,15,315,45,129,10,10 +18590,15,315,46,129,10,10 +18591,15,315,47,129,10,10 +18592,15,315,48,118,10,10 +18593,15,315,49,118,10,10 +18594,15,315,50,129,20,20 +18595,15,315,51,118,20,20 +18596,15,315,52,118,20,20 +18598,15,315,53,118,20,20 +18600,15,315,54,118,20,20 +18601,15,315,55,118,40,40 +18603,15,315,56,118,40,40 +18605,15,315,57,129,40,40 +18606,15,315,58,119,40,40 +18608,15,315,59,129,40,40 +18609,15,316,33,41,22,22 +18610,15,316,34,20,22,22 +18612,15,316,35,41,22,22 +18613,15,316,35,359,22,22 +18614,15,316,35,436,22,22 +18615,15,316,36,20,22,22 +18616,15,316,36,359,22,22 +18617,15,316,36,436,22,22 +18618,15,316,37,42,22,22 +18619,15,316,37,296,22,22 +18620,15,316,37,433,22,22 +18621,15,316,38,42,22,22 +18622,15,316,38,296,22,22 +18623,15,316,38,433,22,22 +18624,15,316,39,79,21,21 +18625,15,316,40,79,21,21 +18626,15,316,41,19,20,20 +18627,15,316,42,79,23,23 +18628,15,316,43,19,20,20 +18629,15,316,44,79,23,23 +18630,15,316,60,118,20,20 +18631,15,316,61,79,20,20 +18632,15,316,62,119,20,20 +18633,15,316,63,119,20,20 +18634,15,316,64,119,20,20 +18635,15,316,45,129,10,10 +18636,15,316,46,129,10,10 +18637,15,316,47,129,10,10 +18638,15,316,48,118,10,10 +18639,15,316,49,118,10,10 +18640,15,316,50,129,20,20 +18641,15,316,51,118,20,20 +18642,15,316,52,118,20,20 +18644,15,316,53,118,20,20 +18646,15,316,54,118,20,20 +18647,15,316,55,118,40,40 +18649,15,316,56,118,40,40 +18651,15,316,57,129,40,40 +18652,15,316,58,119,40,40 +18654,15,316,59,129,40,40 +18655,15,317,33,50,15,15 +18656,15,317,34,50,17,17 +18657,15,317,35,50,15,15 +18658,15,317,35,359,15,15 +18659,15,317,35,436,15,15 +18660,15,317,36,50,17,17 +18661,15,317,36,359,17,17 +18662,15,317,36,436,17,17 +18663,15,317,37,50,19,19 +18664,15,317,37,296,19,19 +18665,15,317,37,433,19,19 +18666,15,317,38,50,19,19 +18667,15,317,38,296,19,19 +18668,15,317,38,433,19,19 +18669,15,317,39,50,13,13 +18670,15,317,40,50,13,13 +18671,15,317,41,51,19,19 +18672,15,317,42,51,24,24 +18673,15,317,43,51,19,19 +18674,15,317,44,51,29,29 +18675,15,318,33,75,32,32 +18676,15,318,34,42,32,32 +18678,15,318,35,75,32,32 +18679,15,318,35,359,32,32 +18680,15,318,35,436,32,32 +18681,15,318,36,42,32,32 +18682,15,318,36,359,32,32 +18683,15,318,36,436,32,32 +18684,15,318,37,232,33,33 +18685,15,318,37,296,33,33 +18686,15,318,37,433,33,33 +18687,15,318,38,232,33,33 +18688,15,318,38,296,33,33 +18689,15,318,38,433,33,33 +18690,15,318,39,95,34,34 +18691,15,318,40,95,34,34 +18692,15,318,41,95,36,36 +18693,15,318,42,111,35,35 +18694,15,318,43,95,36,36 +18695,15,318,44,111,35,35 +18696,15,319,33,75,32,32 +18697,15,319,34,42,32,32 +18699,15,319,35,75,32,32 +18700,15,319,35,359,32,32 +18701,15,319,35,436,32,32 +18702,15,319,36,42,32,32 +18703,15,319,36,359,32,32 +18704,15,319,36,436,32,32 +18705,15,319,37,232,33,33 +18706,15,319,37,296,33,33 +18707,15,319,37,433,33,33 +18708,15,319,38,232,33,33 +18709,15,319,38,296,33,33 +18710,15,319,38,433,33,33 +18711,15,319,39,95,34,34 +18712,15,319,40,95,34,34 +18713,15,319,41,95,36,36 +18714,15,319,42,111,35,35 +18715,15,319,43,95,36,36 +18716,15,319,44,111,35,35 +18717,15,319,65,74,24,32 +18718,15,319,66,75,30,33 +18719,15,320,33,10,3,3 +18720,15,320,33,10,3,3 +18721,15,320,33,163,3,3 +18723,15,320,34,16,3,3 +18724,15,320,34,16,3,3 +18725,15,320,34,167,3,3 +18727,15,320,35,10,3,3 +18728,15,320,35,10,3,3 +18729,15,320,35,163,3,3 +18730,15,320,35,311,3,3 +18731,15,320,35,403,3,3 +18732,15,320,36,16,3,3 +18733,15,320,36,16,3,3 +18734,15,320,36,167,3,3 +18735,15,320,36,311,3,3 +18736,15,320,36,403,3,3 +18737,15,320,37,11,5,5 +18738,15,320,37,16,5,5 +18739,15,320,37,163,5,5 +18740,15,320,37,312,5,5 +18741,15,320,37,403,5,5 +18742,15,320,38,11,5,5 +18743,15,320,38,16,5,5 +18744,15,320,38,163,5,5 +18745,15,320,38,312,5,5 +18746,15,320,38,403,5,5 +18747,15,320,39,12,7,7 +18748,15,320,39,12,7,7 +18749,15,320,39,164,7,7 +18750,15,320,40,12,8,8 +18751,15,320,40,12,8,8 +18752,15,320,40,164,8,8 +18753,15,320,41,17,7,7 +18754,15,320,41,17,7,7 +18755,15,320,41,168,7,7 +18756,15,320,42,167,10,10 +18757,15,320,42,17,10,10 +18758,15,320,42,164,10,10 +18759,15,320,43,17,7,7 +18760,15,320,43,17,7,7 +18761,15,320,43,168,7,7 +18762,15,320,44,10,4,4 +18763,15,320,44,10,4,4 +18764,15,320,44,167,4,4 +18765,15,321,33,10,3,3 +18766,15,321,33,10,3,3 +18767,15,321,33,163,3,3 +18768,15,321,33,401,3,3 +18769,15,321,34,10,3,3 +18770,15,321,34,10,3,3 +18771,15,321,34,163,3,3 +18772,15,321,34,401,3,3 +18773,15,321,35,11,3,3 +18774,15,321,35,11,3,3 +18775,15,321,35,163,3,3 +18776,15,321,35,325,3,3 +18777,15,321,35,406,3,3 +18778,15,321,36,16,3,3 +18779,15,321,36,16,3,3 +18780,15,321,36,163,3,3 +18781,15,321,36,325,3,3 +18782,15,321,36,406,3,3 +18783,15,321,37,11,5,5 +18784,15,321,37,11,5,5 +18785,15,321,37,163,5,5 +18786,15,321,37,322,5,5 +18787,15,321,37,455,5,5 +18788,15,321,38,11,5,5 +18789,15,321,38,11,5,5 +18790,15,321,38,163,5,5 +18791,15,321,38,322,5,5 +18792,15,321,38,455,5,5 +18793,15,321,39,12,7,7 +18794,15,321,39,16,7,7 +18795,15,321,39,164,7,7 +18796,15,321,40,12,7,7 +18797,15,321,40,17,7,7 +18798,15,321,40,164,7,7 +18799,15,321,41,17,7,7 +18800,15,321,41,17,7,7 +18801,15,321,41,164,7,7 +18802,15,321,42,25,4,4 +18803,15,321,43,25,7,7 +18804,15,321,43,25,7,7 +18805,15,321,43,164,7,7 +18806,15,321,44,25,4,4 +18807,15,323,33,67,39,39 +18808,15,323,33,67,39,39 +18809,15,323,33,42,39,39 +18811,15,323,34,47,38,38 +18812,15,323,34,47,38,38 +18813,15,323,34,42,38,38 +18815,15,323,35,42,38,38 +18816,15,323,35,359,38,38 +18817,15,323,35,436,38,38 +18818,15,323,36,57,38,38 +18819,15,323,36,57,38,38 +18820,15,323,36,47,38,38 +18821,15,323,36,359,38,38 +18822,15,323,36,436,38,38 +18823,15,323,37,82,40,40 +18824,15,323,37,296,40,40 +18825,15,323,37,433,40,40 +18826,15,323,38,132,39,39 +18827,15,323,38,296,39,39 +18828,15,323,38,433,39,39 +18829,15,323,39,101,40,40 +18830,15,323,40,202,37,37 +18831,15,323,41,57,39,39 +18832,15,323,42,67,40,40 +18833,15,323,43,82,39,39 +18834,15,323,43,82,39,39 +18835,15,323,43,67,39,39 +18836,15,323,44,132,40,40 +18837,15,323,44,132,40,40 +18838,15,323,44,67,40,40 +18839,15,323,65,74,22,24 +18840,15,323,66,75,26,30 +18841,15,323,60,54,40,40 +18843,15,323,61,54,35,35 +18844,15,323,62,55,40,40 +18845,15,323,63,55,40,40 +18846,15,323,64,55,40,40 +18847,15,323,45,129,10,10 +18848,15,323,46,129,10,10 +18849,15,323,47,129,10,10 +18850,15,323,48,129,10,10 +18851,15,323,49,129,10,10 +18852,15,323,50,60,20,20 +18854,15,323,51,118,20,20 +18855,15,323,52,129,20,20 +18856,15,323,53,118,20,20 +18857,15,323,53,118,20,20 +18858,15,323,53,60,20,20 +18860,15,323,54,60,20,20 +18861,15,323,55,60,40,40 +18863,15,323,56,61,40,40 +18864,15,323,56,61,40,40 +18865,15,323,56,60,40,40 +18867,15,323,57,130,40,40 +18869,15,323,58,130,40,40 +18871,15,323,59,130,40,40 +18873,15,324,33,64,42,42 +18874,15,324,34,47,40,40 +18876,15,324,35,42,41,41 +18877,15,324,35,359,41,41 +18878,15,324,35,436,41,41 +18879,15,324,36,67,39,39 +18880,15,324,36,359,39,39 +18881,15,324,36,436,39,39 +18882,15,324,37,82,41,41 +18883,15,324,37,296,41,41 +18884,15,324,37,433,41,41 +18885,15,324,38,132,42,42 +18886,15,324,38,296,42,42 +18887,15,324,38,433,42,42 +18888,15,324,39,101,41,41 +18889,15,324,40,202,42,42 +18890,15,324,41,67,41,41 +18891,15,324,41,67,41,41 +18892,15,324,41,42,41,41 +18893,15,324,42,67,42,42 +18894,15,324,42,67,42,42 +18895,15,324,42,42,42,42 +18896,15,324,43,67,41,41 +18897,15,324,43,67,41,41 +18898,15,324,43,42,41,41 +18899,15,324,44,67,42,42 +18900,15,324,44,67,42,42 +18901,15,324,44,42,42,42 +18902,15,324,60,54,40,40 +18904,15,324,61,54,35,35 +18905,15,324,62,55,40,40 +18906,15,324,63,55,40,40 +18907,15,324,64,55,40,40 +18908,15,324,45,129,10,10 +18909,15,324,46,129,10,10 +18910,15,324,47,129,10,10 +18911,15,324,48,129,10,10 +18912,15,324,49,129,10,10 +18913,15,324,50,60,20,20 +18915,15,324,51,118,20,20 +18916,15,324,52,129,20,20 +18917,15,324,53,118,20,20 +18918,15,324,53,118,20,20 +18919,15,324,53,60,20,20 +18921,15,324,54,60,20,20 +18922,15,324,55,60,40,40 +18924,15,324,56,61,40,40 +18925,15,324,56,61,40,40 +18926,15,324,56,60,40,40 +18928,15,324,57,130,40,40 +18930,15,324,58,130,40,40 +18932,15,324,59,130,40,40 +18934,15,325,33,64,46,46 +18935,15,325,34,47,45,45 +18937,15,325,35,42,47,47 +18938,15,325,35,359,47,47 +18939,15,325,35,436,47,47 +18940,15,325,36,67,45,45 +18941,15,325,36,359,45,45 +18942,15,325,36,436,45,45 +18943,15,325,37,82,45,45 +18944,15,325,37,296,45,45 +18945,15,325,37,433,45,45 +18946,15,325,38,132,45,45 +18947,15,325,38,296,45,45 +18948,15,325,38,433,45,45 +18949,15,325,39,101,46,46 +18950,15,325,40,82,47,47 +18951,15,325,41,47,47,47 +18952,15,325,42,202,49,49 +18953,15,325,43,47,47,47 +18954,15,325,44,202,49,49 +18955,15,325,65,74,22,24 +18956,15,325,66,75,26,30 +18957,15,325,60,54,40,40 +18959,15,325,61,54,35,35 +18960,15,325,62,55,40,40 +18961,15,325,63,55,40,40 +18962,15,325,64,55,40,40 +18963,15,325,45,129,10,10 +18964,15,325,46,129,10,10 +18965,15,325,47,129,10,10 +18966,15,325,48,129,10,10 +18967,15,325,49,129,10,10 +18968,15,325,50,60,20,20 +18970,15,325,51,118,20,20 +18971,15,325,52,129,20,20 +18972,15,325,53,118,20,20 +18973,15,325,53,118,20,20 +18974,15,325,53,60,20,20 +18976,15,325,54,60,20,20 +18977,15,325,55,60,40,40 +18979,15,325,56,61,40,40 +18980,15,325,56,61,40,40 +18981,15,325,56,60,40,40 +18983,15,325,57,130,40,40 +18985,15,325,58,130,40,40 +18987,15,325,59,130,40,40 +18989,16,184,60,72,15,25 +18990,16,184,61,72,10,20 +18991,16,184,62,73,15,25 +18992,16,184,63,73,15,25 +18993,16,184,64,73,15,25 +18994,16,184,45,129,10,10 +18995,16,184,46,129,10,10 +18996,16,184,47,129,10,10 +18997,16,184,48,72,10,10 +18998,16,184,49,72,10,10 +18999,16,184,50,129,20,20 +19000,16,184,51,72,20,20 +19001,16,184,52,170,20,20 +19003,16,184,53,90,20,20 +19005,16,184,54,170,20,20 +19006,16,184,55,170,40,40 +19008,16,184,56,90,40,40 +19010,16,184,57,73,40,40 +19012,16,184,58,171,40,40 +19014,16,184,59,73,40,40 +19016,16,185,33,16,2,2 +19017,16,185,33,16,2,2 +19018,16,185,33,163,2,2 +19020,16,185,34,161,3,3 +19021,16,185,34,161,3,3 +19022,16,185,34,163,3,3 +19024,16,185,35,16,2,2 +19025,16,185,35,16,2,2 +19026,16,185,35,163,2,2 +19027,16,185,35,311,2,2 +19028,16,185,35,403,2,2 +19029,16,185,36,161,3,3 +19030,16,185,36,161,3,3 +19031,16,185,36,163,3,3 +19032,16,185,36,311,3,3 +19033,16,185,36,403,3,3 +19034,16,185,37,16,3,3 +19035,16,185,37,16,3,3 +19036,16,185,37,163,3,3 +19037,16,185,37,312,3,3 +19038,16,185,37,403,3,3 +19039,16,185,38,16,3,3 +19040,16,185,38,16,3,3 +19041,16,185,38,163,3,3 +19042,16,185,38,312,3,3 +19043,16,185,38,403,3,3 +19044,16,185,39,161,2,2 +19045,16,185,39,161,2,2 +19046,16,185,39,19,2,2 +19047,16,185,40,19,4,4 +19048,16,185,40,161,4,4 +19049,16,185,40,19,4,4 +19050,16,185,41,161,2,2 +19051,16,185,41,19,2,2 +19052,16,185,41,19,2,2 +19053,16,185,42,16,4,4 +19054,16,185,42,16,4,4 +19055,16,185,42,163,4,4 +19056,16,185,43,161,2,2 +19057,16,185,43,19,2,2 +19058,16,185,43,19,2,2 +19059,16,185,44,16,4,4 +19060,16,185,44,16,4,4 +19061,16,185,44,163,4,4 +19062,16,186,60,72,15,25 +19063,16,186,61,72,10,20 +19064,16,186,62,73,15,25 +19065,16,186,63,73,15,25 +19066,16,186,64,73,15,25 +19067,16,186,45,129,10,10 +19068,16,186,46,129,10,10 +19069,16,186,47,129,10,10 +19070,16,186,48,98,10,10 +19071,16,186,49,98,10,10 +19072,16,186,50,129,20,20 +19073,16,186,51,98,20,20 +19074,16,186,52,98,20,20 +19076,16,186,53,222,20,20 +19077,16,186,53,222,20,20 +19078,16,186,53,120,20,20 +19080,16,186,54,98,20,20 +19081,16,186,55,98,40,40 +19083,16,186,56,222,40,40 +19084,16,186,56,222,40,40 +19085,16,186,56,120,40,40 +19087,16,186,57,98,40,40 +19089,16,186,58,99,40,40 +19091,16,186,59,98,40,40 +19093,16,187,33,165,3,3 +19094,16,187,33,16,3,3 +19095,16,187,33,163,3,3 +19097,16,187,34,13,3,3 +19098,16,187,34,13,3,3 +19099,16,187,34,19,3,3 +19101,16,187,35,165,3,3 +19102,16,187,35,16,3,3 +19103,16,187,35,163,3,3 +19104,16,187,35,293,3,3 +19105,16,187,35,418,3,3 +19106,16,187,36,13,3,3 +19107,16,187,36,13,3,3 +19108,16,187,36,19,3,3 +19109,16,187,36,293,3,3 +19110,16,187,36,418,3,3 +19111,16,187,37,13,4,4 +19112,16,187,37,16,4,4 +19113,16,187,37,163,4,4 +19114,16,187,37,264,4,4 +19115,16,187,37,399,4,4 +19116,16,187,38,13,4,4 +19117,16,187,38,16,4,4 +19118,16,187,38,163,4,4 +19119,16,187,38,264,4,4 +19120,16,187,38,399,4,4 +19121,16,187,39,14,4,4 +19122,16,187,39,14,4,4 +19123,16,187,39,19,4,4 +19124,16,187,40,14,4,4 +19125,16,187,40,14,4,4 +19126,16,187,40,19,4,4 +19127,16,187,41,16,4,4 +19128,16,187,41,13,4,4 +19129,16,187,41,163,4,4 +19130,16,187,42,16,4,4 +19131,16,187,42,14,4,4 +19132,16,187,42,163,4,4 +19133,16,187,43,16,4,4 +19134,16,187,43,13,4,4 +19135,16,187,43,163,4,4 +19136,16,187,44,16,4,4 +19137,16,187,44,14,4,4 +19138,16,187,44,163,4,4 +19139,16,187,60,60,15,25 +19140,16,187,61,60,10,20 +19141,16,187,62,61,15,25 +19142,16,187,63,61,15,25 +19143,16,187,64,61,32,32 +19144,16,187,45,129,10,10 +19145,16,187,46,129,10,10 +19146,16,187,47,129,10,10 +19147,16,187,48,60,10,10 +19148,16,187,49,60,10,10 +19149,16,187,50,129,20,20 +19150,16,187,51,60,20,20 +19151,16,187,52,60,20,20 +19153,16,187,53,60,20,20 +19155,16,187,54,60,20,20 +19156,16,187,55,60,40,40 +19158,16,187,56,60,40,40 +19160,16,187,57,129,40,40 +19161,16,187,58,60,40,40 +19163,16,187,59,129,40,40 +19164,16,188,33,165,4,4 +19165,16,188,33,16,4,4 +19166,16,188,33,163,4,4 +19168,16,188,34,13,4,4 +19169,16,188,34,13,4,4 +19170,16,188,34,19,4,4 +19172,16,188,35,165,4,4 +19173,16,188,35,16,4,4 +19174,16,188,35,163,4,4 +19175,16,188,35,293,4,4 +19176,16,188,35,418,4,4 +19177,16,188,36,13,4,4 +19178,16,188,36,13,4,4 +19179,16,188,36,19,4,4 +19180,16,188,36,293,4,4 +19181,16,188,36,418,4,4 +19182,16,188,37,69,3,3 +19183,16,188,37,264,3,3 +19184,16,188,37,399,3,3 +19185,16,188,38,69,3,3 +19186,16,188,38,264,3,3 +19187,16,188,38,399,3,3 +19188,16,188,39,14,5,5 +19189,16,188,39,14,5,5 +19190,16,188,39,19,5,5 +19191,16,188,40,14,5,5 +19192,16,188,40,14,5,5 +19193,16,188,40,19,5,5 +19194,16,188,41,16,5,5 +19195,16,188,41,13,5,5 +19196,16,188,41,163,5,5 +19197,16,188,42,16,5,5 +19198,16,188,42,14,5,5 +19199,16,188,42,163,5,5 +19200,16,188,43,16,5,5 +19201,16,188,43,13,5,5 +19202,16,188,43,163,5,5 +19203,16,188,44,16,5,5 +19204,16,188,44,14,5,5 +19205,16,188,44,163,5,5 +19206,16,188,60,60,15,25 +19207,16,188,61,60,10,20 +19208,16,188,62,61,15,25 +19209,16,188,63,61,15,25 +19210,16,188,64,61,32,32 +19211,16,188,45,129,10,10 +19212,16,188,46,129,10,10 +19213,16,188,47,129,10,10 +19214,16,188,48,60,10,10 +19215,16,188,49,60,10,10 +19216,16,188,50,129,20,20 +19217,16,188,51,60,20,20 +19218,16,188,52,60,20,20 +19220,16,188,53,60,20,20 +19222,16,188,54,60,20,20 +19223,16,188,55,60,40,40 +19225,16,188,56,60,40,40 +19227,16,188,57,129,40,40 +19228,16,188,58,60,40,40 +19230,16,188,59,129,40,40 +19231,16,189,60,60,15,25 +19232,16,189,61,60,10,20 +19233,16,189,62,61,15,25 +19234,16,189,63,61,15,25 +19235,16,189,64,61,15,25 +19236,16,189,45,129,10,10 +19237,16,189,46,129,10,10 +19238,16,189,47,129,10,10 +19239,16,189,47,340,10,10 +19240,16,189,48,60,10,10 +19241,16,189,49,60,10,10 +19242,16,189,50,129,20,20 +19243,16,189,50,340,20,20 +19244,16,189,51,60,20,20 +19245,16,189,52,60,20,20 +19246,16,189,52,340,20,20 +19247,16,189,53,60,20,20 +19248,16,189,53,340,20,20 +19249,16,189,54,60,20,20 +19250,16,189,55,60,40,40 +19251,16,189,55,340,40,40 +19252,16,189,56,60,40,40 +19253,16,189,56,340,40,40 +19254,16,189,57,129,40,40 +19255,16,189,57,340,40,40 +19256,16,189,58,60,40,40 +19257,16,189,58,340,40,40 +19258,16,189,59,129,40,40 +19259,16,189,59,340,40,40 +19260,16,190,33,19,3,3 +19261,16,190,33,19,3,3 +19262,16,190,33,92,3,3 +19264,16,190,34,19,4,4 +19265,16,190,34,19,4,4 +19266,16,190,34,92,4,4 +19268,16,190,35,19,3,3 +19269,16,190,35,19,3,3 +19270,16,190,35,92,3,3 +19271,16,190,35,263,3,3 +19272,16,190,35,441,3,3 +19273,16,190,36,19,4,4 +19274,16,190,36,19,4,4 +19275,16,190,36,92,4,4 +19276,16,190,36,263,4,4 +19277,16,190,36,441,4,4 +19278,16,190,37,19,5,5 +19279,16,190,37,19,5,5 +19280,16,190,37,92,5,5 +19281,16,190,37,327,5,5 +19282,16,190,37,307,5,5 +19283,16,190,38,19,5,5 +19284,16,190,38,19,5,5 +19285,16,190,38,92,5,5 +19286,16,190,38,327,5,5 +19287,16,190,38,307,5,5 +19288,16,190,39,19,3,3 +19289,16,190,40,19,3,3 +19290,16,190,41,19,6,6 +19291,16,190,41,19,6,6 +19292,16,190,41,92,6,6 +19293,16,190,42,19,5,5 +19294,16,190,43,19,6,6 +19295,16,190,43,19,6,6 +19296,16,190,43,92,6,6 +19297,16,190,44,19,5,5 +19298,16,191,33,19,3,3 +19299,16,191,33,19,3,3 +19300,16,191,33,92,3,3 +19302,16,191,34,19,4,4 +19303,16,191,34,19,4,4 +19304,16,191,34,92,4,4 +19306,16,191,35,19,3,3 +19307,16,191,35,19,3,3 +19308,16,191,35,92,3,3 +19309,16,191,35,263,3,3 +19310,16,191,35,441,3,3 +19311,16,191,36,19,4,4 +19312,16,191,36,19,4,4 +19313,16,191,36,92,4,4 +19314,16,191,36,263,4,4 +19315,16,191,36,441,4,4 +19316,16,191,37,19,5,5 +19317,16,191,37,19,5,5 +19318,16,191,37,92,5,5 +19319,16,191,37,327,5,5 +19320,16,191,37,307,5,5 +19321,16,191,38,19,5,5 +19322,16,191,38,19,5,5 +19323,16,191,38,92,5,5 +19324,16,191,38,327,5,5 +19325,16,191,38,307,5,5 +19326,16,191,39,19,3,3 +19327,16,191,40,19,3,3 +19328,16,191,41,19,6,6 +19329,16,191,41,19,6,6 +19330,16,191,41,92,6,6 +19331,16,191,42,19,5,5 +19332,16,191,43,19,6,6 +19333,16,191,43,19,6,6 +19334,16,191,43,92,6,6 +19335,16,191,44,19,5,5 +19336,16,192,33,69,6,6 +19337,16,192,33,69,6,6 +19338,16,192,33,194,6,6 +19340,16,192,34,23,4,4 +19342,16,192,35,69,6,6 +19343,16,192,35,69,6,6 +19344,16,192,35,194,6,6 +19345,16,192,35,293,6,6 +19346,16,192,35,418,6,6 +19347,16,192,36,23,4,4 +19348,16,192,36,293,4,4 +19349,16,192,36,418,4,4 +19350,16,192,37,179,6,6 +19351,16,192,37,179,6,6 +19352,16,192,37,69,6,6 +19353,16,192,37,264,6,6 +19354,16,192,37,399,6,6 +19355,16,192,38,179,6,6 +19356,16,192,38,179,6,6 +19357,16,192,38,69,6,6 +19358,16,192,38,264,6,6 +19359,16,192,38,399,6,6 +19360,16,192,39,187,6,6 +19361,16,192,39,187,6,6 +19362,16,192,39,179,6,6 +19363,16,192,40,187,6,6 +19364,16,192,40,187,6,6 +19365,16,192,40,179,6,6 +19366,16,192,41,19,6,6 +19367,16,192,41,19,6,6 +19368,16,192,41,194,6,6 +19369,16,192,42,41,4,4 +19370,16,192,42,19,4,4 +19371,16,192,42,41,4,4 +19372,16,192,43,19,6,6 +19373,16,192,43,19,6,6 +19374,16,192,43,194,6,6 +19375,16,192,44,41,4,4 +19376,16,192,44,19,4,4 +19377,16,192,44,41,4,4 +19378,16,192,60,72,10,20 +19379,16,192,61,195,15,25 +19380,16,192,62,73,15,25 +19381,16,192,63,73,15,25 +19382,16,192,64,73,36,36 +19383,16,192,45,129,10,10 +19384,16,192,46,129,10,10 +19385,16,192,47,129,10,10 +19386,16,192,47,211,10,10 +19387,16,192,48,72,10,10 +19388,16,192,49,72,10,10 +19389,16,192,50,129,20,20 +19390,16,192,50,211,20,20 +19391,16,192,51,72,20,20 +19392,16,192,52,72,20,20 +19393,16,192,52,211,20,20 +19394,16,192,53,72,20,20 +19395,16,192,53,211,20,20 +19396,16,192,54,211,20,20 +19397,16,192,55,72,40,40 +19398,16,192,55,211,40,40 +19399,16,192,56,72,40,40 +19400,16,192,56,211,40,40 +19401,16,192,57,129,40,40 +19402,16,192,57,211,40,40 +19403,16,192,58,211,40,40 +19404,16,192,59,129,40,40 +19405,16,192,59,211,40,40 +19406,16,193,33,177,20,20 +19407,16,193,34,177,22,22 +19408,16,193,35,177,20,20 +19409,16,193,35,293,20,20 +19410,16,193,35,418,20,20 +19411,16,193,36,177,22,22 +19412,16,193,36,293,22,22 +19413,16,193,36,418,22,22 +19414,16,193,37,177,18,18 +19415,16,193,37,264,18,18 +19416,16,193,37,399,18,18 +19417,16,193,38,177,18,18 +19418,16,193,38,264,18,18 +19419,16,193,38,399,18,18 +19420,16,193,39,177,24,24 +19421,16,193,40,177,24,24 +19422,16,193,41,235,20,20 +19423,16,193,42,235,22,22 +19424,16,193,43,235,20,20 +19425,16,193,44,235,22,22 +19426,16,193,65,74,8,14 +19427,16,193,66,74,3,6 +19428,16,193,60,194,10,20 +19429,16,193,61,195,15,25 +19430,16,193,62,195,10,20 +19431,16,193,63,195,10,20 +19432,16,193,64,195,10,20 +19433,16,193,45,129,10,10 +19434,16,193,46,129,10,10 +19435,16,193,47,129,10,10 +19436,16,193,48,60,10,10 +19437,16,193,49,60,10,10 +19438,16,193,50,129,20,20 +19439,16,193,51,60,20,20 +19440,16,193,52,60,20,20 +19442,16,193,53,60,20,20 +19444,16,193,54,60,20,20 +19445,16,193,55,60,40,40 +19447,16,193,56,60,40,40 +19449,16,193,57,129,40,40 +19450,16,193,58,60,40,40 +19452,16,193,59,129,40,40 +19453,16,194,33,201,5,5 +19454,16,194,34,201,5,5 +19455,16,194,35,201,5,5 +19456,16,194,36,201,5,5 +19457,16,194,37,201,5,5 +19458,16,194,38,201,5,5 +19459,16,194,39,201,5,5 +19460,16,194,40,201,5,5 +19461,16,194,41,201,5,5 +19462,16,194,42,201,5,5 +19463,16,194,43,201,5,5 +19464,16,194,44,201,5,5 +19465,16,195,33,201,5,5 +19466,16,195,34,201,5,5 +19467,16,195,35,201,5,5 +19468,16,195,36,201,5,5 +19469,16,195,37,201,5,5 +19470,16,195,38,201,5,5 +19471,16,195,39,201,5,5 +19472,16,195,40,201,5,5 +19473,16,195,41,201,5,5 +19474,16,195,42,201,5,5 +19475,16,195,43,201,5,5 +19476,16,195,44,201,5,5 +19477,16,196,33,201,5,5 +19478,16,196,34,201,5,5 +19479,16,196,35,201,5,5 +19480,16,196,36,201,5,5 +19481,16,196,37,201,5,5 +19482,16,196,38,201,5,5 +19483,16,196,39,201,5,5 +19484,16,196,40,201,5,5 +19485,16,196,41,201,5,5 +19486,16,196,42,201,5,5 +19487,16,196,43,201,5,5 +19488,16,196,44,201,5,5 +19489,16,197,33,201,5,5 +19490,16,197,34,201,5,5 +19491,16,197,35,201,5,5 +19492,16,197,36,201,5,5 +19493,16,197,37,201,5,5 +19494,16,197,38,201,5,5 +19495,16,197,39,201,5,5 +19496,16,197,40,201,5,5 +19497,16,197,41,201,5,5 +19498,16,197,42,201,5,5 +19499,16,197,43,201,5,5 +19500,16,197,44,201,5,5 +19501,16,198,33,74,6,6 +19502,16,198,34,19,6,6 +19504,16,198,35,74,6,6 +19505,16,198,35,359,6,6 +19506,16,198,35,436,6,6 +19507,16,198,36,19,6,6 +19508,16,198,36,359,6,6 +19509,16,198,36,436,6,6 +19510,16,198,37,41,5,5 +19511,16,198,37,296,5,5 +19512,16,198,37,433,5,5 +19513,16,198,38,41,5,5 +19514,16,198,38,296,5,5 +19515,16,198,38,433,5,5 +19516,16,198,39,19,4,4 +19517,16,198,40,19,4,4 +19518,16,198,41,41,7,7 +19519,16,198,42,95,6,6 +19520,16,198,43,41,7,7 +19521,16,198,44,95,6,6 +19522,16,198,60,194,10,20 +19523,16,198,61,195,15,25 +19524,16,198,62,195,10,20 +19525,16,198,63,195,10,20 +19526,16,198,64,195,10,20 +19527,16,198,45,129,10,10 +19528,16,198,46,129,10,10 +19529,16,198,47,129,10,10 +19530,16,198,48,118,10,10 +19531,16,198,49,118,10,10 +19532,16,198,50,129,20,20 +19533,16,198,51,118,20,20 +19534,16,198,52,118,20,20 +19536,16,198,53,118,20,20 +19538,16,198,54,118,20,20 +19539,16,198,55,118,40,40 +19541,16,198,56,118,40,40 +19543,16,198,57,129,40,40 +19544,16,198,58,119,40,40 +19546,16,198,59,129,40,40 +19547,16,199,33,74,8,8 +19548,16,199,34,19,8,8 +19550,16,199,35,74,8,8 +19551,16,199,35,359,8,8 +19552,16,199,35,436,8,8 +19553,16,199,36,19,8,8 +19554,16,199,36,359,8,8 +19555,16,199,36,436,8,8 +19556,16,199,37,41,7,7 +19557,16,199,37,296,7,7 +19558,16,199,37,433,7,7 +19559,16,199,38,41,7,7 +19560,16,199,38,296,7,7 +19561,16,199,38,433,7,7 +19562,16,199,39,95,8,8 +19563,16,199,40,95,8,8 +19564,16,199,41,41,9,9 +19565,16,199,42,19,6,6 +19566,16,199,43,41,9,9 +19567,16,199,44,19,6,6 +19568,16,199,60,194,10,20 +19569,16,199,61,195,15,25 +19570,16,199,62,195,10,20 +19571,16,199,63,195,10,20 +19572,16,199,64,195,10,20 +19573,16,199,45,129,10,10 +19574,16,199,46,129,10,10 +19575,16,199,47,129,10,10 +19576,16,199,48,118,10,10 +19577,16,199,49,118,10,10 +19578,16,199,50,129,20,20 +19579,16,199,51,118,20,20 +19580,16,199,52,118,20,20 +19582,16,199,53,118,20,20 +19584,16,199,54,118,20,20 +19585,16,199,55,118,40,40 +19587,16,199,56,118,40,40 +19589,16,199,57,129,40,40 +19590,16,199,58,119,40,40 +19592,16,199,59,129,40,40 +19593,16,200,33,41,22,22 +19594,16,200,34,20,22,22 +19596,16,200,35,41,22,22 +19597,16,200,35,359,22,22 +19598,16,200,35,436,22,22 +19599,16,200,36,20,22,22 +19600,16,200,36,359,22,22 +19601,16,200,36,436,22,22 +19602,16,200,37,42,22,22 +19603,16,200,37,296,22,22 +19604,16,200,37,433,22,22 +19605,16,200,38,42,22,22 +19606,16,200,38,296,22,22 +19607,16,200,38,433,22,22 +19608,16,200,39,74,21,21 +19609,16,200,40,74,21,21 +19610,16,200,41,19,20,20 +19611,16,200,42,95,23,23 +19612,16,200,43,19,20,20 +19613,16,200,44,95,23,23 +19614,16,200,60,72,10,20 +19615,16,200,61,195,15,25 +19616,16,200,62,73,15,25 +19617,16,200,63,73,15,25 +19618,16,200,64,73,15,25 +19619,16,200,45,129,10,10 +19620,16,200,46,129,10,10 +19621,16,200,47,129,10,10 +19622,16,200,48,98,10,10 +19623,16,200,49,98,10,10 +19624,16,200,50,129,20,20 +19625,16,200,51,98,20,20 +19626,16,200,52,98,20,20 +19628,16,200,53,222,20,20 +19629,16,200,53,222,20,20 +19630,16,200,53,120,20,20 +19632,16,200,54,98,20,20 +19633,16,200,55,98,40,40 +19635,16,200,56,222,40,40 +19636,16,200,56,222,40,40 +19637,16,200,56,120,40,40 +19639,16,200,57,98,40,40 +19641,16,200,58,99,40,40 +19643,16,200,59,98,40,40 +19645,16,201,33,187,6,6 +19646,16,201,33,187,6,6 +19647,16,201,33,41,6,6 +19649,16,201,34,23,7,7 +19651,16,201,35,187,6,6 +19652,16,201,35,187,6,6 +19653,16,201,35,41,6,6 +19654,16,201,35,311,6,6 +19655,16,201,35,403,6,6 +19656,16,201,36,23,7,7 +19657,16,201,36,311,7,7 +19658,16,201,36,403,7,7 +19659,16,201,37,21,6,6 +19660,16,201,37,21,6,6 +19661,16,201,37,19,6,6 +19662,16,201,37,312,6,6 +19663,16,201,37,403,6,6 +19664,16,201,38,21,6,6 +19665,16,201,38,21,6,6 +19666,16,201,38,19,6,6 +19667,16,201,38,312,6,6 +19668,16,201,38,403,6,6 +19669,16,201,39,19,6,6 +19670,16,201,40,19,6,6 +19671,16,201,41,187,8,8 +19672,16,201,41,187,8,8 +19673,16,201,41,41,8,8 +19674,16,201,42,41,4,4 +19675,16,201,42,19,4,4 +19676,16,201,42,41,4,4 +19677,16,201,43,187,8,8 +19678,16,201,43,187,8,8 +19679,16,201,43,41,8,8 +19680,16,201,44,41,4,4 +19681,16,201,44,19,4,4 +19682,16,201,44,41,4,4 +19683,16,202,33,41,5,5 +19684,16,202,34,41,6,6 +19685,16,202,35,41,5,5 +19686,16,202,35,359,5,5 +19687,16,202,35,436,5,5 +19688,16,202,36,41,6,6 +19689,16,202,36,359,6,6 +19690,16,202,36,436,6,6 +19691,16,202,37,41,7,7 +19692,16,202,37,296,7,7 +19693,16,202,37,433,7,7 +19694,16,202,38,41,7,7 +19695,16,202,38,296,7,7 +19696,16,202,38,433,7,7 +19697,16,202,39,79,6,6 +19698,16,202,40,79,6,6 +19699,16,202,41,41,8,8 +19700,16,202,42,79,8,8 +19701,16,202,43,41,8,8 +19702,16,202,44,79,8,8 +19703,16,202,60,79,10,20 +19704,16,202,61,79,15,25 +19705,16,202,62,79,5,15 +19706,16,202,63,79,5,15 +19707,16,202,64,79,5,15 +19708,16,202,45,129,10,10 +19709,16,202,46,129,10,10 +19710,16,202,47,129,10,10 +19711,16,202,48,118,10,10 +19712,16,202,49,118,10,10 +19713,16,202,50,129,20,20 +19714,16,202,51,118,20,20 +19715,16,202,52,118,20,20 +19717,16,202,53,118,20,20 +19719,16,202,54,118,20,20 +19720,16,202,55,118,40,40 +19722,16,202,56,118,40,40 +19724,16,202,57,129,40,40 +19725,16,202,58,119,40,40 +19727,16,202,59,129,40,40 +19728,16,203,33,41,21,21 +19729,16,203,34,41,23,23 +19730,16,203,35,41,21,21 +19731,16,203,35,359,21,21 +19732,16,203,35,436,21,21 +19733,16,203,36,41,23,23 +19734,16,203,36,359,23,23 +19735,16,203,36,436,23,23 +19736,16,203,37,41,19,19 +19737,16,203,37,296,19,19 +19738,16,203,37,433,19,19 +19739,16,203,38,41,19,19 +19740,16,203,38,296,19,19 +19741,16,203,38,433,19,19 +19742,16,203,39,79,21,21 +19743,16,203,40,79,21,21 +19744,16,203,41,42,23,23 +19745,16,203,42,79,23,23 +19746,16,203,43,42,23,23 +19747,16,203,44,79,23,23 +19748,16,203,60,79,10,20 +19749,16,203,61,79,15,25 +19750,16,203,62,80,15,25 +19751,16,203,63,80,15,25 +19752,16,203,64,80,30,30 +19753,16,203,45,129,10,10 +19754,16,203,46,129,10,10 +19755,16,203,47,129,10,10 +19756,16,203,48,118,10,10 +19757,16,203,49,118,10,10 +19758,16,203,50,129,20,20 +19759,16,203,51,118,20,20 +19760,16,203,52,118,20,20 +19762,16,203,53,118,20,20 +19764,16,203,54,118,20,20 +19765,16,203,55,118,40,40 +19767,16,203,56,118,40,40 +19769,16,203,57,129,40,40 +19770,16,203,58,119,40,40 +19772,16,203,59,129,40,40 +19773,16,204,33,13,5,5 +19774,16,204,33,13,5,5 +19775,16,204,33,43,5,5 +19777,16,204,34,14,6,6 +19778,16,204,34,13,6,6 +19779,16,204,34,43,6,6 +19781,16,204,35,13,5,5 +19782,16,204,35,13,5,5 +19783,16,204,35,43,5,5 +19784,16,204,35,325,5,5 +19785,16,204,35,406,5,5 +19786,16,204,36,14,6,6 +19787,16,204,36,13,6,6 +19788,16,204,36,43,6,6 +19789,16,204,36,325,6,6 +19790,16,204,36,406,6,6 +19791,16,204,37,13,6,6 +19792,16,204,37,14,6,6 +19793,16,204,37,41,6,6 +19794,16,204,37,322,6,6 +19795,16,204,37,455,6,6 +19796,16,204,38,13,6,6 +19797,16,204,38,14,6,6 +19798,16,204,38,41,6,6 +19799,16,204,38,322,6,6 +19800,16,204,38,455,6,6 +19801,16,204,39,46,5,5 +19802,16,204,39,14,5,5 +19803,16,204,39,46,5,5 +19804,16,204,40,46,5,5 +19805,16,204,40,14,5,5 +19806,16,204,40,46,5,5 +19807,16,204,41,41,5,5 +19808,16,204,42,46,6,6 +19809,16,204,43,41,5,5 +19810,16,204,44,46,6,6 +19811,16,204,60,54,10,20 +19812,16,204,61,54,5,15 +19813,16,204,62,55,10,20 +19814,16,204,63,55,10,20 +19815,16,204,64,55,10,20 +19816,16,204,45,129,10,10 +19817,16,204,46,129,10,10 +19818,16,204,47,129,10,10 +19819,16,204,48,60,10,10 +19820,16,204,49,60,10,10 +19821,16,204,50,129,20,20 +19822,16,204,51,60,20,20 +19823,16,204,52,60,20,20 +19825,16,204,53,60,20,20 +19827,16,204,54,60,20,20 +19828,16,204,55,60,40,40 +19830,16,204,56,60,40,40 +19832,16,204,57,129,40,40 +19833,16,204,58,60,40,40 +19835,16,204,59,129,40,40 +19836,16,205,33,96,10,10 +19837,16,205,33,280,10,10 +19838,16,205,34,19,11,11 +19839,16,205,34,280,11,11 +19840,16,205,35,96,10,10 +19841,16,205,35,293,10,10 +19842,16,205,35,418,10,10 +19843,16,205,36,19,11,11 +19844,16,205,36,293,11,11 +19845,16,205,36,418,11,11 +19846,16,205,37,96,12,12 +19847,16,205,37,264,12,12 +19848,16,205,37,399,12,12 +19849,16,205,38,96,12,12 +19850,16,205,38,264,12,12 +19851,16,205,38,399,12,12 +19852,16,205,39,63,10,10 +19853,16,205,40,63,10,10 +19854,16,205,41,19,13,13 +19855,16,205,42,132,10,10 +19856,16,205,43,19,13,13 +19857,16,205,44,132,10,10 +19858,16,205,60,72,15,25 +19859,16,205,61,72,10,20 +19860,16,205,62,73,15,25 +19861,16,205,63,73,15,25 +19862,16,205,64,73,29,29 +19863,16,205,45,129,10,10 +19864,16,205,46,129,10,10 +19865,16,205,47,129,10,10 +19866,16,205,48,98,10,10 +19867,16,205,49,98,10,10 +19868,16,205,50,129,20,20 +19869,16,205,51,98,20,20 +19870,16,205,52,98,20,20 +19872,16,205,53,222,20,20 +19873,16,205,53,222,20,20 +19874,16,205,53,120,20,20 +19876,16,205,54,98,20,20 +19877,16,205,55,98,40,40 +19879,16,205,56,222,40,40 +19880,16,205,56,222,40,40 +19881,16,205,56,120,40,40 +19883,16,205,57,98,40,40 +19885,16,205,58,99,40,40 +19887,16,205,59,98,40,40 +19889,16,206,33,29,12,12 +19890,16,206,33,193,12,12 +19891,16,206,34,32,12,12 +19892,16,206,34,193,12,12 +19893,16,206,35,29,12,12 +19894,16,206,35,293,12,12 +19895,16,206,35,418,12,12 +19896,16,206,36,32,12,12 +19897,16,206,36,293,12,12 +19898,16,206,36,418,12,12 +19899,16,206,37,96,14,14 +19900,16,206,37,264,14,14 +19901,16,206,37,399,14,14 +19902,16,206,38,96,14,14 +19903,16,206,38,264,14,14 +19904,16,206,38,399,14,14 +19905,16,206,39,63,10,10 +19906,16,206,40,63,10,10 +19907,16,206,41,16,14,14 +19908,16,206,41,16,14,14 +19909,16,206,41,163,14,14 +19910,16,206,42,132,10,10 +19911,16,206,43,16,14,14 +19912,16,206,43,16,14,14 +19913,16,206,43,163,14,14 +19914,16,206,44,193,12,12 +19915,16,206,60,54,15,25 +19916,16,206,61,54,10,20 +19917,16,206,62,55,15,25 +19918,16,206,63,55,15,25 +19919,16,206,64,55,31,31 +19920,16,206,45,129,10,10 +19921,16,206,46,129,10,10 +19922,16,206,47,129,10,10 +19923,16,206,48,60,10,10 +19924,16,206,49,60,10,10 +19925,16,206,50,129,20,20 +19926,16,206,51,60,20,20 +19927,16,206,52,60,20,20 +19929,16,206,53,60,20,20 +19931,16,206,54,60,20,20 +19932,16,206,55,60,40,40 +19934,16,206,56,60,40,40 +19936,16,206,57,129,40,40 +19937,16,206,58,60,40,40 +19939,16,206,59,129,40,40 +19940,16,207,33,13,10,10 +19941,16,207,33,13,10,10 +19942,16,207,33,163,10,10 +19944,16,207,34,14,10,10 +19945,16,207,34,14,10,10 +19946,16,207,34,163,10,10 +19948,16,207,35,13,10,10 +19949,16,207,35,13,10,10 +19950,16,207,35,163,10,10 +19951,16,207,35,311,10,10 +19952,16,207,35,403,10,10 +19953,16,207,36,14,10,10 +19954,16,207,36,14,10,10 +19955,16,207,36,163,10,10 +19956,16,207,36,311,10,10 +19957,16,207,36,403,10,10 +19958,16,207,37,13,12,12 +19959,16,207,37,191,12,12 +19960,16,207,37,163,12,12 +19961,16,207,37,312,12,12 +19962,16,207,37,403,12,12 +19963,16,207,38,13,12,12 +19964,16,207,38,191,12,12 +19965,16,207,38,163,12,12 +19966,16,207,38,312,12,12 +19967,16,207,38,403,12,12 +19968,16,207,39,16,12,12 +19969,16,207,39,16,12,12 +19970,16,207,39,163,12,12 +19971,16,207,40,16,12,12 +19972,16,207,40,16,12,12 +19973,16,207,40,163,12,12 +19974,16,207,41,16,10,10 +19975,16,207,41,191,10,10 +19976,16,207,41,163,10,10 +19977,16,207,42,16,14,14 +19978,16,207,42,16,14,14 +19979,16,207,42,163,14,14 +19980,16,207,43,16,10,10 +19981,16,207,43,191,10,10 +19982,16,207,43,163,10,10 +19983,16,207,44,16,14,14 +19984,16,207,44,16,14,14 +19985,16,207,44,163,14,14 +19986,16,208,33,13,10,10 +19987,16,208,34,13,10,10 +19988,16,208,35,13,10,10 +19989,16,208,36,13,10,10 +19990,16,208,37,13,12,12 +19991,16,208,38,13,12,12 +19992,16,208,39,13,12,12 +19993,16,208,40,13,12,12 +19994,16,208,41,13,10,10 +19995,16,208,42,13,14,14 +19996,16,208,43,13,10,10 +19997,16,208,44,13,14,14 +19998,16,209,33,29,12,12 +19999,16,209,34,32,12,12 +20001,16,209,35,16,12,12 +20002,16,209,35,29,12,12 +20003,16,209,35,29,12,12 +20004,16,209,35,311,12,12 +20005,16,209,35,403,12,12 +20006,16,209,36,16,12,12 +20007,16,209,36,32,12,12 +20008,16,209,36,32,12,12 +20009,16,209,36,311,12,12 +20010,16,209,36,403,12,12 +20011,16,209,37,29,13,13 +20012,16,209,37,16,13,13 +20013,16,209,37,163,13,13 +20014,16,209,37,312,13,13 +20015,16,209,37,403,13,13 +20016,16,209,38,32,13,13 +20017,16,209,38,16,13,13 +20018,16,209,38,163,13,13 +20019,16,209,38,312,13,13 +20020,16,209,38,403,13,13 +20021,16,209,39,37,13,13 +20022,16,209,40,37,13,13 +20023,16,209,41,234,13,13 +20024,16,209,42,16,15,15 +20025,16,209,42,37,15,15 +20026,16,209,42,163,15,15 +20027,16,209,43,234,13,13 +20028,16,209,44,16,15,15 +20029,16,209,44,37,15,15 +20030,16,209,44,163,15,15 +20031,16,210,33,165,13,13 +20032,16,210,33,16,13,13 +20033,16,210,33,163,13,13 +20035,16,210,34,234,15,15 +20037,16,210,35,165,13,13 +20038,16,210,35,16,13,13 +20039,16,210,35,163,13,13 +20040,16,210,35,311,13,13 +20041,16,210,35,403,13,13 +20042,16,210,36,234,15,15 +20043,16,210,36,311,15,15 +20044,16,210,36,403,15,15 +20045,16,210,37,16,15,15 +20046,16,210,37,16,15,15 +20047,16,210,37,163,15,15 +20048,16,210,37,312,15,15 +20049,16,210,37,403,15,15 +20050,16,210,38,16,15,15 +20051,16,210,38,16,15,15 +20052,16,210,38,163,15,15 +20053,16,210,38,312,15,15 +20054,16,210,38,403,15,15 +20055,16,210,39,37,14,14 +20056,16,210,40,37,14,14 +20057,16,210,41,165,15,15 +20058,16,210,41,17,15,15 +20059,16,210,41,163,15,15 +20060,16,210,42,165,15,15 +20061,16,210,42,37,15,15 +20062,16,210,42,163,15,15 +20063,16,210,43,165,15,15 +20064,16,210,43,17,15,15 +20065,16,210,43,163,15,15 +20066,16,210,44,165,15,15 +20067,16,210,44,37,15,15 +20068,16,210,44,163,15,15 +20069,16,211,60,60,15,25 +20070,16,211,61,60,10,20 +20071,16,211,62,61,15,25 +20072,16,211,63,61,15,25 +20073,16,211,64,61,15,25 +20074,16,211,45,129,10,10 +20075,16,211,46,129,10,10 +20076,16,211,47,129,10,10 +20077,16,211,48,60,10,10 +20078,16,211,49,60,10,10 +20079,16,211,50,129,20,20 +20080,16,211,51,60,20,20 +20081,16,211,52,60,20,20 +20083,16,211,53,60,20,20 +20085,16,211,54,60,20,20 +20086,16,211,55,60,40,40 +20088,16,211,56,60,40,40 +20090,16,211,57,129,40,40 +20091,16,211,58,60,40,40 +20093,16,211,59,129,40,40 +20094,16,212,33,19,13,13 +20095,16,212,34,109,14,14 +20097,16,212,35,19,13,13 +20098,16,212,35,263,13,13 +20099,16,212,35,441,13,13 +20100,16,212,36,109,14,14 +20101,16,212,36,263,14,14 +20102,16,212,36,441,14,14 +20103,16,212,37,19,15,15 +20104,16,212,37,327,15,15 +20105,16,212,37,307,15,15 +20106,16,212,38,19,15,15 +20107,16,212,38,327,15,15 +20108,16,212,38,307,15,15 +20109,16,212,39,41,14,14 +20110,16,212,40,41,14,14 +20111,16,212,41,109,16,16 +20112,16,212,42,20,15,15 +20113,16,212,43,109,16,16 +20114,16,212,44,20,15,15 +20115,16,213,33,19,14,14 +20116,16,213,34,109,14,14 +20118,16,213,35,19,14,14 +20119,16,213,35,263,14,14 +20120,16,213,35,441,14,14 +20121,16,213,36,109,14,14 +20122,16,213,36,263,14,14 +20123,16,213,36,441,14,14 +20124,16,213,37,109,16,16 +20125,16,213,37,327,16,16 +20126,16,213,37,307,16,16 +20127,16,213,38,109,16,16 +20128,16,213,38,327,16,16 +20129,16,213,38,307,16,16 +20130,16,213,39,19,16,16 +20131,16,213,39,126,16,16 +20132,16,213,39,19,16,16 +20133,16,213,40,19,16,16 +20134,16,213,40,126,16,16 +20135,16,213,40,19,16,16 +20136,16,213,41,41,15,15 +20137,16,213,42,126,14,14 +20138,16,213,42,19,14,14 +20139,16,213,42,126,14,14 +20140,16,213,43,41,15,15 +20141,16,213,44,126,14,14 +20142,16,213,44,19,14,14 +20143,16,213,44,126,14,14 +20144,16,214,33,19,20,20 +20145,16,214,33,19,20,20 +20146,16,214,33,92,20,20 +20148,16,214,34,19,21,21 +20149,16,214,34,19,21,21 +20150,16,214,34,92,21,21 +20152,16,214,35,19,20,20 +20153,16,214,35,19,20,20 +20154,16,214,35,92,20,20 +20155,16,214,35,263,20,20 +20156,16,214,35,441,20,20 +20157,16,214,36,19,21,21 +20158,16,214,36,19,21,21 +20159,16,214,36,92,21,21 +20160,16,214,36,263,21,21 +20161,16,214,36,441,21,21 +20162,16,214,37,19,22,22 +20163,16,214,37,19,22,22 +20164,16,214,37,92,22,22 +20165,16,214,37,327,22,22 +20166,16,214,37,307,22,22 +20167,16,214,38,19,22,22 +20168,16,214,38,19,22,22 +20169,16,214,38,92,22,22 +20170,16,214,38,327,22,22 +20171,16,214,38,307,22,22 +20172,16,214,39,19,22,22 +20173,16,214,40,19,22,22 +20174,16,214,41,19,23,23 +20175,16,214,42,19,24,24 +20176,16,214,43,19,23,23 +20177,16,214,44,19,24,24 +20178,16,215,33,19,20,20 +20179,16,215,33,19,20,20 +20180,16,215,33,92,20,20 +20182,16,215,34,19,21,21 +20183,16,215,34,19,21,21 +20184,16,215,34,92,21,21 +20186,16,215,35,19,20,20 +20187,16,215,35,19,20,20 +20188,16,215,35,92,20,20 +20189,16,215,35,263,20,20 +20190,16,215,35,441,20,20 +20191,16,215,36,19,21,21 +20192,16,215,36,19,21,21 +20193,16,215,36,92,21,21 +20194,16,215,36,263,21,21 +20195,16,215,36,441,21,21 +20196,16,215,37,19,22,22 +20197,16,215,37,19,22,22 +20198,16,215,37,92,22,22 +20199,16,215,37,327,22,22 +20200,16,215,37,307,22,22 +20201,16,215,38,19,22,22 +20202,16,215,38,19,22,22 +20203,16,215,38,92,22,22 +20204,16,215,38,327,22,22 +20205,16,215,38,307,22,22 +20206,16,215,39,19,22,22 +20207,16,215,40,19,22,22 +20208,16,215,41,19,23,23 +20209,16,215,42,19,24,24 +20210,16,215,43,19,23,23 +20211,16,215,44,19,24,24 +20212,16,216,33,19,20,20 +20213,16,216,33,19,20,20 +20214,16,216,33,92,20,20 +20216,16,216,34,19,21,21 +20217,16,216,34,19,21,21 +20218,16,216,34,92,21,21 +20220,16,216,35,19,20,20 +20221,16,216,35,19,20,20 +20222,16,216,35,92,20,20 +20223,16,216,35,263,20,20 +20224,16,216,35,441,20,20 +20225,16,216,36,19,21,21 +20226,16,216,36,19,21,21 +20227,16,216,36,92,21,21 +20228,16,216,36,263,21,21 +20229,16,216,36,441,21,21 +20230,16,216,37,19,22,22 +20231,16,216,37,19,22,22 +20232,16,216,37,92,22,22 +20233,16,216,37,327,22,22 +20234,16,216,37,307,22,22 +20235,16,216,38,19,22,22 +20236,16,216,38,19,22,22 +20237,16,216,38,92,22,22 +20238,16,216,38,327,22,22 +20239,16,216,38,307,22,22 +20240,16,216,39,19,22,22 +20241,16,216,40,19,22,22 +20242,16,216,41,19,23,23 +20243,16,216,42,19,24,24 +20244,16,216,43,19,23,23 +20245,16,216,44,19,24,24 +20246,16,217,33,19,20,20 +20247,16,217,33,19,20,20 +20248,16,217,33,92,20,20 +20250,16,217,34,19,21,21 +20251,16,217,34,19,21,21 +20252,16,217,34,92,21,21 +20254,16,217,35,19,20,20 +20255,16,217,35,19,20,20 +20256,16,217,35,92,20,20 +20257,16,217,35,263,20,20 +20258,16,217,35,441,20,20 +20259,16,217,36,19,21,21 +20260,16,217,36,19,21,21 +20261,16,217,36,92,21,21 +20262,16,217,36,263,21,21 +20263,16,217,36,441,21,21 +20264,16,217,37,19,22,22 +20265,16,217,37,19,22,22 +20266,16,217,37,92,22,22 +20267,16,217,37,327,22,22 +20268,16,217,37,307,22,22 +20269,16,217,38,19,22,22 +20270,16,217,38,19,22,22 +20271,16,217,38,92,22,22 +20272,16,217,38,327,22,22 +20273,16,217,38,307,22,22 +20274,16,217,39,19,22,22 +20275,16,217,40,19,22,22 +20276,16,217,41,19,23,23 +20277,16,217,42,19,24,24 +20278,16,217,43,19,23,23 +20279,16,217,44,19,24,24 +20280,16,218,33,19,20,20 +20281,16,218,33,19,20,20 +20282,16,218,33,92,20,20 +20284,16,218,34,19,21,21 +20285,16,218,34,19,21,21 +20286,16,218,34,92,21,21 +20288,16,218,35,19,20,20 +20289,16,218,35,19,20,20 +20290,16,218,35,92,20,20 +20291,16,218,35,263,20,20 +20292,16,218,35,441,20,20 +20293,16,218,36,19,21,21 +20294,16,218,36,19,21,21 +20295,16,218,36,92,21,21 +20296,16,218,36,263,21,21 +20297,16,218,36,441,21,21 +20298,16,218,37,19,22,22 +20299,16,218,37,19,22,22 +20300,16,218,37,92,22,22 +20301,16,218,37,327,22,22 +20302,16,218,37,307,22,22 +20303,16,218,38,19,22,22 +20304,16,218,38,19,22,22 +20305,16,218,38,92,22,22 +20306,16,218,38,327,22,22 +20307,16,218,38,307,22,22 +20308,16,218,39,19,22,22 +20309,16,218,40,19,22,22 +20310,16,218,41,19,23,23 +20311,16,218,42,19,24,24 +20312,16,218,43,19,23,23 +20313,16,218,44,19,24,24 +20314,16,219,33,19,20,20 +20315,16,219,33,19,20,20 +20316,16,219,33,92,20,20 +20318,16,219,34,19,21,21 +20319,16,219,34,19,21,21 +20320,16,219,34,92,21,21 +20322,16,219,35,19,20,20 +20323,16,219,35,19,20,20 +20324,16,219,35,92,20,20 +20325,16,219,35,263,20,20 +20326,16,219,35,441,20,20 +20327,16,219,36,19,21,21 +20328,16,219,36,19,21,21 +20329,16,219,36,92,21,21 +20330,16,219,36,263,21,21 +20331,16,219,36,441,21,21 +20332,16,219,37,19,22,22 +20333,16,219,37,19,22,22 +20334,16,219,37,92,22,22 +20335,16,219,37,327,22,22 +20336,16,219,37,307,22,22 +20337,16,219,38,19,22,22 +20338,16,219,38,19,22,22 +20339,16,219,38,92,22,22 +20340,16,219,38,327,22,22 +20341,16,219,38,307,22,22 +20342,16,219,39,19,22,22 +20343,16,219,40,19,22,22 +20344,16,219,41,19,23,23 +20345,16,219,42,19,24,24 +20346,16,219,43,19,23,23 +20347,16,219,44,19,24,24 +20348,16,220,33,19,20,20 +20349,16,220,33,19,20,20 +20350,16,220,33,92,20,20 +20352,16,220,34,19,21,21 +20353,16,220,34,19,21,21 +20354,16,220,34,92,21,21 +20356,16,220,35,19,20,20 +20357,16,220,35,19,20,20 +20358,16,220,35,92,20,20 +20359,16,220,35,263,20,20 +20360,16,220,35,441,20,20 +20361,16,220,36,19,21,21 +20362,16,220,36,19,21,21 +20363,16,220,36,92,21,21 +20364,16,220,36,263,21,21 +20365,16,220,36,441,21,21 +20366,16,220,37,19,22,22 +20367,16,220,37,19,22,22 +20368,16,220,37,92,22,22 +20369,16,220,37,327,22,22 +20370,16,220,37,307,22,22 +20371,16,220,38,19,22,22 +20372,16,220,38,19,22,22 +20373,16,220,38,92,22,22 +20374,16,220,38,327,22,22 +20375,16,220,38,307,22,22 +20376,16,220,39,19,22,22 +20377,16,220,40,19,22,22 +20378,16,220,41,19,23,23 +20379,16,220,42,19,24,24 +20380,16,220,43,19,23,23 +20381,16,220,44,19,24,24 +20382,16,221,33,19,20,20 +20383,16,221,33,19,20,20 +20384,16,221,33,92,20,20 +20386,16,221,34,19,21,21 +20387,16,221,34,19,21,21 +20388,16,221,34,92,21,21 +20390,16,221,35,19,20,20 +20391,16,221,35,19,20,20 +20392,16,221,35,92,20,20 +20393,16,221,35,263,20,20 +20394,16,221,35,441,20,20 +20395,16,221,36,19,21,21 +20396,16,221,36,19,21,21 +20397,16,221,36,92,21,21 +20398,16,221,36,263,21,21 +20399,16,221,36,441,21,21 +20400,16,221,37,19,22,22 +20401,16,221,37,19,22,22 +20402,16,221,37,92,22,22 +20403,16,221,37,327,22,22 +20404,16,221,37,307,22,22 +20405,16,221,38,19,22,22 +20406,16,221,38,19,22,22 +20407,16,221,38,92,22,22 +20408,16,221,38,327,22,22 +20409,16,221,38,307,22,22 +20410,16,221,39,19,22,22 +20411,16,221,40,19,22,22 +20412,16,221,41,19,23,23 +20413,16,221,42,19,24,24 +20414,16,221,43,19,23,23 +20415,16,221,44,19,24,24 +20416,16,222,33,52,16,16 +20417,16,222,33,209,16,16 +20418,16,222,34,20,16,16 +20419,16,222,34,209,16,16 +20420,16,222,35,83,16,16 +20421,16,222,35,52,16,16 +20422,16,222,35,52,16,16 +20423,16,222,35,311,16,16 +20424,16,222,35,403,16,16 +20425,16,222,36,20,16,16 +20426,16,222,36,311,16,16 +20427,16,222,36,403,16,16 +20428,16,222,37,81,16,16 +20429,16,222,37,312,16,16 +20430,16,222,37,403,16,16 +20431,16,222,38,81,16,16 +20432,16,222,38,312,16,16 +20433,16,222,38,403,16,16 +20434,16,222,39,52,16,16 +20435,16,222,39,83,16,16 +20436,16,222,39,52,16,16 +20437,16,222,40,52,16,16 +20438,16,222,40,83,16,16 +20439,16,222,40,52,16,16 +20440,16,222,41,241,13,13 +20441,16,222,42,128,13,13 +20442,16,222,43,241,13,13 +20443,16,222,44,209,13,13 +20444,16,223,33,52,16,16 +20445,16,223,34,20,17,17 +20447,16,223,35,83,16,16 +20448,16,223,35,52,16,16 +20449,16,223,35,52,16,16 +20450,16,223,35,311,16,16 +20451,16,223,35,403,16,16 +20452,16,223,36,20,17,17 +20453,16,223,36,311,17,17 +20454,16,223,36,403,17,17 +20455,16,223,37,81,16,16 +20456,16,223,37,312,16,16 +20457,16,223,37,403,16,16 +20458,16,223,38,81,16,16 +20459,16,223,38,312,16,16 +20460,16,223,38,403,16,16 +20461,16,223,39,52,16,16 +20462,16,223,39,83,16,16 +20463,16,223,39,52,16,16 +20464,16,223,40,52,16,16 +20465,16,223,40,83,16,16 +20466,16,223,40,52,16,16 +20467,16,223,41,241,15,15 +20468,16,223,42,128,15,15 +20469,16,223,43,241,15,15 +20470,16,223,44,128,15,15 +20471,16,224,60,72,15,25 +20472,16,224,61,72,10,20 +20473,16,224,62,73,15,25 +20474,16,224,63,73,15,25 +20475,16,224,64,73,15,25 +20476,16,224,45,129,10,10 +20477,16,224,46,129,10,10 +20478,16,224,47,129,10,10 +20479,16,224,48,98,10,10 +20480,16,224,49,98,10,10 +20481,16,224,50,129,20,20 +20482,16,224,51,98,20,20 +20483,16,224,52,98,20,20 +20485,16,224,53,222,20,20 +20486,16,224,53,222,20,20 +20487,16,224,53,120,20,20 +20489,16,224,54,98,20,20 +20490,16,224,55,98,40,40 +20492,16,224,56,222,40,40 +20493,16,224,56,222,40,40 +20494,16,224,56,120,40,40 +20496,16,224,57,98,40,40 +20498,16,224,58,99,40,40 +20500,16,224,59,98,40,40 +20502,16,225,60,72,15,25 +20503,16,225,61,72,10,20 +20504,16,225,62,73,15,25 +20505,16,225,63,73,15,25 +20506,16,225,64,73,15,25 +20507,16,225,45,129,10,10 +20508,16,225,46,129,10,10 +20509,16,225,47,129,10,10 +20510,16,225,48,98,10,10 +20511,16,225,49,98,10,10 +20512,16,225,50,129,20,20 +20513,16,225,51,98,20,20 +20514,16,225,52,98,20,20 +20516,16,225,53,222,20,20 +20517,16,225,53,222,20,20 +20518,16,225,53,120,20,20 +20520,16,225,54,98,20,20 +20521,16,225,55,98,40,40 +20523,16,225,56,222,40,40 +20524,16,225,56,222,40,40 +20525,16,225,56,120,40,40 +20527,16,225,57,98,40,40 +20529,16,225,58,99,40,40 +20531,16,225,59,98,40,40 +20533,16,226,60,72,15,25 +20534,16,226,61,72,10,20 +20535,16,226,62,73,15,25 +20536,16,226,63,73,15,25 +20537,16,226,64,73,15,25 +20538,16,226,45,129,10,10 +20539,16,226,46,129,10,10 +20540,16,226,47,129,10,10 +20541,16,226,48,72,10,10 +20542,16,226,49,72,10,10 +20543,16,226,50,129,20,20 +20544,16,226,51,72,20,20 +20545,16,226,52,170,20,20 +20547,16,226,53,90,20,20 +20549,16,226,54,170,20,20 +20550,16,226,55,170,40,40 +20552,16,226,56,90,40,40 +20554,16,226,57,73,40,40 +20556,16,226,58,171,40,40 +20558,16,226,59,73,40,40 +20560,16,227,33,98,22,22 +20561,16,227,34,41,23,23 +20563,16,227,35,98,22,22 +20564,16,227,35,359,22,22 +20565,16,227,35,436,22,22 +20566,16,227,36,41,23,23 +20567,16,227,36,359,23,23 +20568,16,227,36,436,23,23 +20569,16,227,37,98,24,24 +20570,16,227,37,296,24,24 +20571,16,227,37,433,24,24 +20572,16,227,38,98,24,24 +20573,16,227,38,296,24,24 +20574,16,227,38,433,24,24 +20575,16,227,39,86,22,22 +20576,16,227,40,86,22,22 +20577,16,227,41,42,23,23 +20578,16,227,42,86,24,24 +20579,16,227,43,42,23,23 +20580,16,227,44,86,24,24 +20581,16,227,60,72,15,25 +20582,16,227,61,116,10,20 +20583,16,227,62,73,15,25 +20584,16,227,63,73,15,25 +20585,16,227,64,73,15,25 +20586,16,227,45,129,10,10 +20587,16,227,46,129,10,10 +20588,16,227,47,129,10,10 +20589,16,227,48,98,10,10 +20590,16,227,49,98,10,10 +20591,16,227,50,129,20,20 +20592,16,227,51,98,20,20 +20593,16,227,52,98,20,20 +20595,16,227,53,116,20,20 +20597,16,227,54,98,20,20 +20598,16,227,55,98,40,40 +20600,16,227,56,116,40,40 +20602,16,227,57,99,40,40 +20604,16,227,58,117,40,40 +20606,16,227,59,99,40,40 +20608,16,228,33,98,22,22 +20609,16,228,34,41,23,23 +20611,16,228,35,98,22,22 +20612,16,228,35,359,22,22 +20613,16,228,35,436,22,22 +20614,16,228,36,41,23,23 +20615,16,228,36,359,23,23 +20616,16,228,36,436,23,23 +20617,16,228,37,98,24,24 +20618,16,228,37,296,24,24 +20619,16,228,37,433,24,24 +20620,16,228,38,98,24,24 +20621,16,228,38,296,24,24 +20622,16,228,38,433,24,24 +20623,16,228,39,86,22,22 +20624,16,228,40,86,22,22 +20625,16,228,41,42,23,23 +20626,16,228,42,86,24,24 +20627,16,228,43,42,23,23 +20628,16,228,44,86,24,24 +20629,16,230,33,98,22,22 +20630,16,230,34,41,23,23 +20632,16,230,35,98,22,22 +20633,16,230,35,359,22,22 +20634,16,230,35,436,22,22 +20635,16,230,36,41,23,23 +20636,16,230,36,359,23,23 +20637,16,230,36,436,23,23 +20638,16,230,37,98,24,24 +20639,16,230,37,296,24,24 +20640,16,230,37,433,24,24 +20641,16,230,38,98,24,24 +20642,16,230,38,296,24,24 +20643,16,230,38,433,24,24 +20644,16,230,39,86,22,22 +20645,16,230,40,86,22,22 +20646,16,230,41,42,23,23 +20647,16,230,42,86,24,24 +20648,16,230,43,42,23,23 +20649,16,230,44,86,24,24 +20650,16,230,60,116,15,25 +20651,16,230,61,73,15,25 +20652,16,230,62,117,15,25 +20653,16,230,63,117,15,25 +20654,16,230,64,117,30,30 +20655,16,230,45,129,10,10 +20656,16,230,46,129,10,10 +20657,16,230,47,129,10,10 +20658,16,230,48,98,10,10 +20659,16,230,49,98,10,10 +20660,16,230,50,129,20,20 +20661,16,230,51,98,20,20 +20662,16,230,52,98,20,20 +20664,16,230,53,116,20,20 +20666,16,230,54,98,20,20 +20667,16,230,55,98,40,40 +20669,16,230,56,116,40,40 +20671,16,230,57,99,40,40 +20673,16,230,58,117,40,40 +20675,16,230,59,99,40,40 +20677,16,232,33,98,23,23 +20678,16,232,34,41,24,24 +20680,16,232,35,98,23,23 +20681,16,232,35,359,23,23 +20682,16,232,35,436,23,23 +20683,16,232,36,41,24,24 +20684,16,232,36,359,24,24 +20685,16,232,36,436,24,24 +20686,16,232,37,98,25,25 +20687,16,232,37,296,25,25 +20688,16,232,37,433,25,25 +20689,16,232,38,98,25,25 +20690,16,232,38,296,25,25 +20691,16,232,38,433,25,25 +20692,16,232,39,86,23,23 +20693,16,232,40,86,23,23 +20694,16,232,41,42,24,24 +20695,16,232,42,86,25,25 +20696,16,232,43,42,24,24 +20697,16,232,44,86,25,25 +20698,16,235,65,98,15,24 +20699,16,235,66,213,23,28 +20700,16,235,60,72,15,25 +20701,16,235,61,72,10,20 +20702,16,235,62,73,15,25 +20703,16,235,63,73,15,25 +20704,16,235,64,73,15,25 +20705,16,235,45,129,10,10 +20706,16,235,46,129,10,10 +20707,16,235,47,129,10,10 +20708,16,235,48,98,10,10 +20709,16,235,49,98,10,10 +20710,16,235,50,129,20,20 +20711,16,235,51,98,20,20 +20712,16,235,52,98,20,20 +20714,16,235,53,222,20,20 +20715,16,235,53,222,20,20 +20716,16,235,53,120,20,20 +20718,16,235,54,98,20,20 +20719,16,235,55,98,40,40 +20721,16,235,56,222,40,40 +20722,16,235,56,222,40,40 +20723,16,235,56,120,40,40 +20725,16,235,57,98,40,40 +20727,16,235,58,99,40,40 +20729,16,235,59,98,40,40 +20731,16,236,33,179,13,13 +20732,16,236,34,21,14,14 +20733,16,236,34,21,14,14 +20734,16,236,34,41,14,14 +20736,16,236,35,179,13,13 +20737,16,236,35,293,13,13 +20738,16,236,35,418,13,13 +20739,16,236,36,21,14,14 +20740,16,236,36,21,14,14 +20741,16,236,36,41,14,14 +20742,16,236,36,293,14,14 +20743,16,236,36,418,14,14 +20744,16,236,37,179,15,15 +20745,16,236,37,264,15,15 +20746,16,236,37,399,15,15 +20747,16,236,38,179,15,15 +20748,16,236,38,264,15,15 +20749,16,236,38,399,15,15 +20750,16,236,39,21,16,16 +20751,16,236,39,21,16,16 +20752,16,236,39,41,16,16 +20753,16,236,40,21,16,16 +20754,16,236,40,21,16,16 +20755,16,236,40,41,16,16 +20756,16,236,41,180,15,15 +20757,16,236,42,180,17,17 +20758,16,236,43,180,15,15 +20759,16,236,44,180,17,17 +20760,16,236,60,118,15,25 +20761,16,236,61,118,10,20 +20762,16,236,62,119,15,25 +20763,16,236,63,119,15,25 +20764,16,236,64,119,15,25 +20765,16,236,45,129,10,10 +20766,16,236,46,129,10,10 +20767,16,236,47,129,10,10 +20768,16,236,48,118,10,10 +20769,16,236,49,118,10,10 +20770,16,236,50,129,20,20 +20771,16,236,51,118,20,20 +20772,16,236,52,118,20,20 +20774,16,236,53,118,20,20 +20776,16,236,54,118,20,20 +20777,16,236,55,118,40,40 +20779,16,236,56,118,40,40 +20781,16,236,57,129,40,40 +20782,16,236,58,119,40,40 +20784,16,236,59,129,40,40 +20785,16,237,33,41,13,13 +20786,16,237,33,183,13,13 +20787,16,237,34,41,15,15 +20788,16,237,34,183,15,15 +20789,16,237,35,41,13,13 +20790,16,237,35,359,13,13 +20791,16,237,35,436,13,13 +20792,16,237,36,41,15,15 +20793,16,237,36,359,15,15 +20794,16,237,36,436,15,15 +20795,16,237,37,66,14,14 +20796,16,237,37,296,14,14 +20797,16,237,37,433,14,14 +20798,16,237,38,66,14,14 +20799,16,237,38,296,14,14 +20800,16,237,38,433,14,14 +20801,16,237,39,19,14,14 +20802,16,237,40,19,14,14 +20803,16,237,41,74,14,14 +20804,16,237,42,19,16,16 +20805,16,237,43,74,14,14 +20806,16,237,44,183,15,15 +20807,16,237,60,118,15,25 +20808,16,237,61,118,10,20 +20809,16,237,62,119,15,25 +20810,16,237,63,119,15,25 +20811,16,237,64,119,15,25 +20812,16,237,45,129,10,10 +20813,16,237,46,129,10,10 +20814,16,237,47,129,10,10 +20815,16,237,48,118,10,10 +20816,16,237,49,118,10,10 +20817,16,237,50,129,20,20 +20818,16,237,51,118,20,20 +20819,16,237,52,118,20,20 +20821,16,237,53,118,20,20 +20823,16,237,54,118,20,20 +20824,16,237,55,118,40,40 +20826,16,237,56,118,40,40 +20828,16,237,57,129,40,40 +20829,16,237,58,119,40,40 +20831,16,237,59,129,40,40 +20832,16,238,33,74,13,13 +20833,16,238,34,66,13,13 +20835,16,238,35,74,13,13 +20836,16,238,35,359,13,13 +20837,16,238,35,436,13,13 +20838,16,238,36,66,13,13 +20839,16,238,36,359,13,13 +20840,16,238,36,436,13,13 +20841,16,238,37,74,15,15 +20842,16,238,37,296,15,15 +20843,16,238,37,433,15,15 +20844,16,238,38,74,15,15 +20845,16,238,38,296,15,15 +20846,16,238,38,433,15,15 +20847,16,238,39,19,14,14 +20848,16,238,40,19,14,14 +20849,16,238,41,66,15,15 +20850,16,238,42,41,14,14 +20851,16,238,43,66,15,15 +20852,16,238,44,41,14,14 +20853,16,239,33,75,31,31 +20854,16,239,34,67,32,32 +20856,16,239,35,75,31,31 +20857,16,239,35,359,31,31 +20858,16,239,35,436,31,31 +20859,16,239,36,67,32,32 +20860,16,239,36,359,32,32 +20861,16,239,36,436,32,32 +20862,16,239,37,74,31,31 +20863,16,239,37,296,31,31 +20864,16,239,37,433,31,31 +20865,16,239,38,74,31,31 +20866,16,239,38,296,31,31 +20867,16,239,38,433,31,31 +20868,16,239,39,20,30,30 +20869,16,239,40,20,30,30 +20870,16,239,41,66,28,28 +20871,16,239,42,42,30,30 +20872,16,239,43,66,28,28 +20873,16,239,44,42,30,30 +20874,16,239,60,118,15,25 +20875,16,239,61,118,20,30 +20876,16,239,62,119,20,30 +20877,16,239,63,119,20,30 +20878,16,239,64,119,20,30 +20879,16,239,45,129,10,10 +20880,16,239,46,129,10,10 +20881,16,239,47,129,10,10 +20882,16,239,48,118,10,10 +20883,16,239,49,118,10,10 +20884,16,239,50,129,20,20 +20885,16,239,51,118,20,20 +20886,16,239,52,118,20,20 +20888,16,239,53,118,20,20 +20890,16,239,54,118,20,20 +20891,16,239,55,118,40,40 +20893,16,239,56,118,40,40 +20895,16,239,57,129,40,40 +20896,16,239,58,119,40,40 +20898,16,239,59,129,40,40 +20899,16,240,33,41,15,15 +20900,16,240,34,41,17,17 +20901,16,240,35,41,15,15 +20902,16,240,35,359,15,15 +20903,16,240,35,436,15,15 +20904,16,240,36,41,17,17 +20905,16,240,36,359,17,17 +20906,16,240,36,436,17,17 +20907,16,240,37,19,16,16 +20908,16,240,37,296,16,16 +20909,16,240,37,433,16,16 +20910,16,240,38,19,16,16 +20911,16,240,38,296,16,16 +20912,16,240,38,433,16,16 +20913,16,240,39,66,16,16 +20914,16,240,40,66,16,16 +20915,16,240,41,74,16,16 +20916,16,240,42,20,16,16 +20917,16,240,43,74,16,16 +20918,16,240,44,20,16,16 +20919,16,240,60,118,15,25 +20920,16,240,61,118,10,20 +20921,16,240,62,119,15,25 +20922,16,240,63,119,15,25 +20923,16,240,64,119,15,25 +20924,16,240,45,129,10,10 +20925,16,240,46,129,10,10 +20926,16,240,47,129,10,10 +20927,16,240,48,118,10,10 +20928,16,240,49,118,10,10 +20929,16,240,50,129,20,20 +20930,16,240,51,118,20,20 +20931,16,240,52,118,20,20 +20933,16,240,53,118,20,20 +20935,16,240,54,118,20,20 +20936,16,240,55,118,40,40 +20938,16,240,56,118,40,40 +20940,16,240,57,129,40,40 +20941,16,240,58,119,40,40 +20943,16,240,59,129,40,40 +20944,16,241,33,180,15,15 +20945,16,241,34,203,15,15 +20947,16,241,35,180,15,15 +20948,16,241,35,293,15,15 +20949,16,241,35,418,15,15 +20950,16,241,36,203,15,15 +20951,16,241,36,293,15,15 +20952,16,241,36,418,15,15 +20953,16,241,37,17,17,17 +20954,16,241,37,17,17,17 +20955,16,241,37,164,17,17 +20956,16,241,37,264,17,17 +20957,16,241,37,399,17,17 +20958,16,241,38,17,17,17 +20959,16,241,38,17,17,17 +20960,16,241,38,164,17,17 +20961,16,241,38,264,17,17 +20962,16,241,38,399,17,17 +20963,16,241,39,179,15,15 +20964,16,241,39,179,15,15 +20965,16,241,39,48,15,15 +20966,16,241,40,179,15,15 +20967,16,241,40,179,15,15 +20968,16,241,40,48,15,15 +20969,16,241,41,48,16,16 +20970,16,241,41,180,16,16 +20971,16,241,41,179,16,16 +20972,16,241,42,17,17,17 +20973,16,241,42,180,17,17 +20974,16,241,42,48,17,17 +20975,16,241,43,48,16,16 +20976,16,241,43,180,16,16 +20977,16,241,43,179,16,16 +20978,16,241,44,17,17,17 +20979,16,241,44,180,17,17 +20980,16,241,44,48,17,17 +20981,16,241,60,129,15,25 +20982,16,241,61,129,10,20 +20983,16,241,62,129,5,15 +20984,16,241,63,129,5,15 +20985,16,241,64,129,50,50 +20986,16,241,45,129,10,10 +20987,16,241,46,129,10,10 +20988,16,241,47,129,10,10 +20989,16,241,48,60,10,10 +20990,16,241,49,60,10,10 +20991,16,241,50,129,20,20 +20992,16,241,51,60,20,20 +20993,16,241,52,60,20,20 +20995,16,241,53,60,20,20 +20997,16,241,54,60,20,20 +20998,16,241,55,60,40,40 +21000,16,241,56,60,40,40 +21002,16,241,57,129,40,40 +21003,16,241,58,60,40,40 +21005,16,241,59,129,40,40 +21006,16,242,60,129,10,20 +21007,16,242,61,129,5,15 +21008,16,242,62,130,10,20 +21009,16,242,63,130,10,20 +21010,16,242,64,130,10,20 +21011,16,242,45,129,10,10 +21012,16,242,46,129,10,10 +21013,16,242,47,129,10,10 +21014,16,242,48,129,10,10 +21015,16,242,49,129,10,10 +21016,16,242,50,129,20,20 +21017,16,242,51,129,20,20 +21018,16,242,52,129,20,20 +21019,16,242,53,130,20,20 +21021,16,242,54,129,20,20 +21022,16,242,55,129,40,40 +21023,16,242,56,130,40,40 +21025,16,242,57,129,40,40 +21026,16,242,58,129,40,40 +21027,16,242,59,129,40,40 +21028,16,243,33,114,23,23 +21029,16,243,34,70,22,22 +21031,16,243,35,114,23,23 +21032,16,243,35,293,23,23 +21033,16,243,35,418,23,23 +21034,16,243,36,70,22,22 +21035,16,243,36,293,22,22 +21036,16,243,36,418,22,22 +21037,16,243,37,69,22,22 +21038,16,243,37,264,22,22 +21039,16,243,37,399,22,22 +21040,16,243,38,69,22,22 +21041,16,243,38,264,22,22 +21042,16,243,38,399,22,22 +21043,16,243,39,108,24,24 +21044,16,243,40,108,24,24 +21045,16,243,41,70,24,24 +21046,16,243,42,108,26,26 +21047,16,243,43,70,24,24 +21048,16,243,44,108,26,26 +21049,16,243,60,60,20,30 +21050,16,243,61,60,15,25 +21051,16,243,62,61,20,30 +21052,16,243,63,61,20,30 +21053,16,243,64,61,20,30 +21054,16,243,45,129,10,10 +21055,16,243,46,129,10,10 +21056,16,243,47,129,10,10 +21057,16,243,47,223,10,10 +21058,16,243,48,60,10,10 +21059,16,243,49,60,10,10 +21060,16,243,50,129,20,20 +21061,16,243,50,223,20,20 +21062,16,243,51,60,20,20 +21063,16,243,52,60,20,20 +21064,16,243,52,223,20,20 +21065,16,243,53,60,20,20 +21066,16,243,53,223,20,20 +21067,16,243,54,223,20,20 +21068,16,243,55,60,40,40 +21069,16,243,55,223,40,40 +21070,16,243,56,60,40,40 +21071,16,243,56,223,40,40 +21072,16,243,57,129,40,40 +21073,16,243,57,223,40,40 +21074,16,243,58,223,40,40 +21075,16,243,59,129,40,40 +21076,16,243,59,223,40,40 +21077,16,244,33,220,21,21 +21078,16,244,34,42,22,22 +21080,16,244,35,220,21,21 +21081,16,244,35,359,21,21 +21082,16,244,35,436,21,21 +21083,16,244,36,42,22,22 +21084,16,244,36,359,22,22 +21085,16,244,36,436,22,22 +21086,16,244,37,225,22,22 +21087,16,244,37,296,22,22 +21088,16,244,37,433,22,22 +21089,16,244,38,225,22,22 +21090,16,244,38,296,22,22 +21091,16,244,38,433,22,22 +21092,16,244,39,220,23,23 +21093,16,244,40,220,23,23 +21094,16,244,41,41,22,22 +21095,16,244,41,124,22,22 +21096,16,244,41,41,22,22 +21097,16,244,42,124,22,22 +21098,16,244,43,41,22,22 +21099,16,244,43,124,22,22 +21100,16,244,43,41,22,22 +21101,16,244,44,124,22,22 +21102,16,245,33,220,21,21 +21103,16,245,34,42,22,22 +21105,16,245,35,220,21,21 +21106,16,245,35,359,21,21 +21107,16,245,35,436,21,21 +21108,16,245,36,42,22,22 +21109,16,245,36,359,22,22 +21110,16,245,36,436,22,22 +21111,16,245,37,225,22,22 +21112,16,245,37,296,22,22 +21113,16,245,37,433,22,22 +21114,16,245,38,225,22,22 +21115,16,245,38,296,22,22 +21116,16,245,38,433,22,22 +21117,16,245,39,220,23,23 +21118,16,245,40,220,23,23 +21119,16,245,41,41,22,22 +21120,16,245,41,124,22,22 +21121,16,245,41,41,22,22 +21122,16,245,42,124,22,22 +21123,16,245,43,41,22,22 +21124,16,245,43,124,22,22 +21125,16,245,43,41,22,22 +21126,16,245,44,124,22,22 +21127,16,246,33,220,22,22 +21128,16,246,34,42,23,23 +21130,16,246,35,220,22,22 +21131,16,246,35,359,22,22 +21132,16,246,35,436,22,22 +21133,16,246,36,42,23,23 +21134,16,246,36,359,23,23 +21135,16,246,36,436,23,23 +21136,16,246,37,225,23,23 +21137,16,246,37,296,23,23 +21138,16,246,37,433,23,23 +21139,16,246,38,225,23,23 +21140,16,246,38,296,23,23 +21141,16,246,38,433,23,23 +21142,16,246,39,220,24,24 +21143,16,246,40,220,24,24 +21144,16,246,41,41,23,23 +21145,16,246,41,124,23,23 +21146,16,246,41,41,23,23 +21147,16,246,42,124,23,23 +21148,16,246,43,41,23,23 +21149,16,246,43,124,23,23 +21150,16,246,43,41,23,23 +21151,16,246,44,124,23,23 +21152,16,247,33,220,22,22 +21153,16,247,34,42,23,23 +21155,16,247,35,220,22,22 +21156,16,247,35,359,22,22 +21157,16,247,35,436,22,22 +21158,16,247,36,42,23,23 +21159,16,247,36,359,23,23 +21160,16,247,36,436,23,23 +21161,16,247,37,225,23,23 +21162,16,247,37,296,23,23 +21163,16,247,37,433,23,23 +21164,16,247,38,225,23,23 +21165,16,247,38,296,23,23 +21166,16,247,38,433,23,23 +21167,16,247,39,220,24,24 +21168,16,247,40,220,24,24 +21169,16,247,41,41,23,23 +21170,16,247,41,124,23,23 +21171,16,247,41,41,23,23 +21172,16,247,42,124,23,23 +21173,16,247,43,41,23,23 +21174,16,247,43,124,23,23 +21175,16,247,43,41,23,23 +21176,16,247,44,124,23,23 +21177,16,249,60,129,10,20 +21178,16,249,61,129,5,15 +21179,16,249,62,129,2,10 +21180,16,249,63,129,2,10 +21181,16,249,64,129,2,10 +21182,16,249,45,129,10,10 +21183,16,249,46,129,10,10 +21184,16,249,47,129,10,10 +21185,16,249,48,60,10,10 +21186,16,249,49,60,10,10 +21187,16,249,50,129,20,20 +21188,16,249,51,60,20,20 +21189,16,249,52,60,20,20 +21191,16,249,53,60,20,20 +21193,16,249,54,60,20,20 +21194,16,249,55,60,40,40 +21196,16,249,56,60,40,40 +21198,16,249,57,129,40,40 +21199,16,249,58,60,40,40 +21201,16,249,59,129,40,40 +21202,16,250,60,129,10,20 +21203,16,250,61,129,5,15 +21204,16,250,62,147,5,15 +21205,16,250,63,147,5,15 +21206,16,250,64,147,5,15 +21207,16,250,45,129,10,10 +21208,16,250,46,129,10,10 +21209,16,250,47,129,10,10 +21210,16,250,48,129,10,10 +21211,16,250,49,129,10,10 +21212,16,250,50,129,20,20 +21213,16,250,51,129,20,20 +21214,16,250,52,129,20,20 +21215,16,250,53,147,20,20 +21217,16,250,54,129,20,20 +21218,16,250,55,129,40,40 +21219,16,250,56,147,40,40 +21221,16,250,57,129,40,40 +21222,16,250,58,148,40,40 +21224,16,250,59,129,40,40 +21225,16,251,33,74,23,23 +21226,16,251,33,333,23,23 +21227,16,251,34,75,23,23 +21228,16,251,34,333,23,23 +21229,16,251,35,74,23,23 +21230,16,251,35,293,23,23 +21231,16,251,35,418,23,23 +21232,16,251,36,75,23,23 +21233,16,251,36,293,23,23 +21234,16,251,36,418,23,23 +21235,16,251,37,75,24,24 +21236,16,251,37,264,24,24 +21237,16,251,37,399,24,24 +21238,16,251,38,75,24,24 +21239,16,251,38,264,24,24 +21240,16,251,38,399,24,24 +21241,16,251,39,216,20,20 +21242,16,251,40,216,20,20 +21243,16,251,41,75,25,25 +21244,16,251,42,227,27,27 +21245,16,251,43,75,25,25 +21246,16,251,44,227,27,27 +21247,16,251,60,129,15,25 +21248,16,251,61,129,10,20 +21249,16,251,62,129,2,10 +21250,16,251,63,129,2,10 +21251,16,251,64,129,2,10 +21252,16,251,45,129,10,10 +21253,16,251,46,129,10,10 +21254,16,251,47,129,10,10 +21255,16,251,48,60,10,10 +21256,16,251,49,60,10,10 +21257,16,251,50,129,20,20 +21258,16,251,51,60,20,20 +21259,16,251,52,60,20,20 +21261,16,251,53,60,20,20 +21263,16,251,54,60,20,20 +21264,16,251,55,60,40,40 +21266,16,251,56,60,40,40 +21268,16,251,57,129,40,40 +21269,16,251,58,60,40,40 +21271,16,251,59,129,40,40 +21272,16,252,33,74,3,3 +21273,16,252,34,21,2,2 +21274,16,252,34,21,2,2 +21275,16,252,34,19,2,2 +21277,16,252,35,74,3,3 +21278,16,252,35,311,3,3 +21279,16,252,35,403,3,3 +21280,16,252,36,21,2,2 +21281,16,252,36,21,2,2 +21282,16,252,36,19,2,2 +21283,16,252,36,311,2,2 +21284,16,252,36,403,2,2 +21285,16,252,37,19,2,2 +21286,16,252,37,312,2,2 +21287,16,252,37,403,2,2 +21288,16,252,38,19,2,2 +21289,16,252,38,312,2,2 +21290,16,252,38,403,2,2 +21291,16,252,39,74,2,2 +21292,16,252,40,74,2,2 +21293,16,252,41,21,3,3 +21294,16,252,41,21,3,3 +21295,16,252,41,74,3,3 +21296,16,252,42,19,4,4 +21297,16,252,43,21,3,3 +21298,16,252,43,21,3,3 +21299,16,252,43,74,3,3 +21300,16,252,44,19,4,4 +21301,16,253,33,74,3,3 +21302,16,253,33,206,3,3 +21303,16,253,34,41,2,2 +21304,16,253,34,206,2,2 +21305,16,253,35,74,3,3 +21306,16,253,35,359,3,3 +21307,16,253,35,436,3,3 +21308,16,253,36,41,2,2 +21309,16,253,36,359,2,2 +21310,16,253,36,436,2,2 +21311,16,253,37,74,2,2 +21312,16,253,37,296,2,2 +21313,16,253,37,433,2,2 +21314,16,253,38,74,2,2 +21315,16,253,38,296,2,2 +21316,16,253,38,433,2,2 +21317,16,253,39,74,4,4 +21318,16,253,40,74,4,4 +21319,16,253,41,41,3,3 +21320,16,253,42,41,4,4 +21321,16,253,43,41,3,3 +21322,16,253,44,206,4,4 +21323,16,253,65,206,4,8 +21324,16,253,66,74,8,14 +21325,16,253,60,129,10,20 +21326,16,253,61,129,5,15 +21327,16,253,62,129,2,10 +21328,16,253,63,129,2,10 +21329,16,253,64,129,2,10 +21330,16,253,45,129,10,10 +21331,16,253,46,129,10,10 +21332,16,253,47,129,10,10 +21333,16,253,48,118,10,10 +21334,16,253,49,118,10,10 +21335,16,253,50,129,20,20 +21336,16,253,51,118,20,20 +21337,16,253,52,118,20,20 +21339,16,253,53,118,20,20 +21341,16,253,54,118,20,20 +21342,16,253,55,118,40,40 +21344,16,253,56,118,40,40 +21346,16,253,57,129,40,40 +21347,16,253,58,119,40,40 +21349,16,253,59,129,40,40 +21350,16,254,33,74,23,23 +21351,16,254,34,41,23,23 +21353,16,254,35,74,23,23 +21354,16,254,35,359,23,23 +21355,16,254,35,436,23,23 +21356,16,254,36,41,23,23 +21357,16,254,36,359,23,23 +21358,16,254,36,436,23,23 +21359,16,254,37,75,25,25 +21360,16,254,37,296,25,25 +21361,16,254,37,433,25,25 +21362,16,254,38,75,25,25 +21363,16,254,38,296,25,25 +21364,16,254,38,433,25,25 +21365,16,254,39,202,20,20 +21366,16,254,40,202,20,20 +21367,16,254,41,202,25,25 +21368,16,254,42,42,23,23 +21369,16,254,43,202,25,25 +21370,16,254,44,42,23,23 +21371,16,254,60,129,10,20 +21372,16,254,61,129,5,15 +21373,16,254,62,129,2,10 +21374,16,254,63,129,2,10 +21375,16,254,64,129,2,10 +21376,16,254,45,129,10,10 +21377,16,254,46,129,10,10 +21378,16,254,47,129,10,10 +21379,16,254,48,118,10,10 +21380,16,254,49,118,10,10 +21381,16,254,50,129,20,20 +21382,16,254,51,118,20,20 +21383,16,254,52,118,20,20 +21385,16,254,53,118,20,20 +21387,16,254,54,118,20,20 +21388,16,254,55,118,40,40 +21390,16,254,56,118,40,40 +21392,16,254,57,129,40,40 +21393,16,254,58,119,40,40 +21395,16,254,59,129,40,40 +21396,16,255,33,83,35,35 +21397,16,255,33,83,35,35 +21398,16,255,33,164,35,35 +21399,16,255,33,132,35,35 +21400,16,255,34,241,35,35 +21401,16,255,34,132,35,35 +21402,16,255,35,132,34,34 +21403,16,255,35,293,34,34 +21404,16,255,35,418,34,34 +21405,16,255,36,132,33,33 +21406,16,255,36,293,33,33 +21407,16,255,36,418,33,33 +21408,16,255,37,132,32,32 +21409,16,255,37,264,32,32 +21410,16,255,37,399,32,32 +21411,16,255,38,132,31,31 +21412,16,255,38,264,31,31 +21413,16,255,38,399,31,31 +21414,16,255,39,44,32,32 +21415,16,255,40,21,31,31 +21416,16,255,41,22,34,34 +21417,16,255,42,20,31,31 +21418,16,255,43,20,33,33 +21419,16,255,44,132,40,40 +21420,16,255,60,72,15,25 +21421,16,255,61,86,10,20 +21422,16,255,62,120,15,25 +21423,16,255,63,120,15,25 +21424,16,255,64,120,15,25 +21425,16,255,45,129,10,10 +21426,16,255,46,129,10,10 +21427,16,255,47,129,10,10 +21428,16,255,48,72,10,10 +21429,16,255,49,72,10,10 +21430,16,255,50,129,20,20 +21431,16,255,51,72,20,20 +21432,16,255,52,170,20,20 +21434,16,255,53,90,20,20 +21436,16,255,54,170,20,20 +21437,16,255,55,170,40,40 +21439,16,255,56,90,40,40 +21441,16,255,57,73,40,40 +21443,16,255,58,171,40,40 +21445,16,255,59,73,40,40 +21447,16,256,60,60,35,35 +21448,16,256,61,129,30,30 +21449,16,256,62,129,35,35 +21450,16,256,63,129,35,35 +21451,16,256,64,129,35,35 +21452,16,256,45,129,10,10 +21453,16,256,46,129,10,10 +21454,16,256,47,129,10,10 +21455,16,256,48,129,10,10 +21456,16,256,49,129,10,10 +21457,16,256,50,129,20,20 +21458,16,256,51,129,20,20 +21459,16,256,52,60,20,20 +21461,16,256,53,60,20,20 +21463,16,256,54,60,20,20 +21464,16,256,55,60,40,40 +21466,16,256,56,60,40,40 +21468,16,256,57,60,40,40 +21470,16,256,58,60,40,40 +21472,16,256,59,60,40,40 +21474,16,257,60,60,35,35 +21475,16,257,61,60,30,30 +21476,16,257,62,60,35,35 +21477,16,257,63,60,35,35 +21478,16,257,64,60,35,35 +21479,16,257,45,60,10,10 +21480,16,257,46,60,10,10 +21481,16,257,47,60,10,10 +21482,16,257,48,129,10,10 +21483,16,257,49,60,10,10 +21484,16,257,50,60,20,20 +21485,16,257,51,60,20,20 +21486,16,257,52,60,20,20 +21487,16,257,53,129,20,20 +21489,16,257,54,60,20,20 +21490,16,257,55,60,40,40 +21491,16,257,56,60,40,40 +21492,16,257,56,60,40,40 +21493,16,257,56,129,40,40 +21494,16,257,57,60,40,40 +21495,16,257,58,129,40,40 +21497,16,257,59,60,40,40 +21498,16,258,33,41,28,28 +21499,16,258,34,42,32,32 +21501,16,258,35,54,28,28 +21502,16,258,35,359,28,28 +21503,16,258,35,436,28,28 +21504,16,258,36,54,29,29 +21505,16,258,36,359,29,29 +21506,16,258,36,436,29,29 +21507,16,258,37,42,30,30 +21508,16,258,37,296,30,30 +21509,16,258,37,433,30,30 +21510,16,258,38,55,32,32 +21511,16,258,38,296,32,32 +21512,16,258,38,433,32,32 +21513,16,258,39,41,27,27 +21514,16,258,40,41,26,26 +21515,16,258,41,54,27,27 +21516,16,258,42,54,26,26 +21517,16,258,43,54,27,27 +21518,16,258,44,54,26,26 +21519,16,259,33,86,32,32 +21520,16,259,34,42,34,34 +21522,16,259,35,54,28,28 +21523,16,259,35,359,28,28 +21524,16,259,35,436,28,28 +21525,16,259,36,86,34,34 +21526,16,259,36,359,34,34 +21527,16,259,36,436,34,34 +21528,16,259,37,42,32,32 +21529,16,259,37,296,32,32 +21530,16,259,37,433,32,32 +21531,16,259,38,55,34,34 +21532,16,259,38,296,34,34 +21533,16,259,38,433,34,34 +21534,16,259,39,41,29,29 +21535,16,259,40,41,28,28 +21536,16,259,41,55,32,32 +21537,16,259,42,54,28,28 +21538,16,259,43,54,27,27 +21539,16,259,44,54,26,26 +21540,16,260,33,86,33,33 +21541,16,260,34,42,35,35 +21543,16,260,35,54,30,30 +21544,16,260,35,359,30,30 +21545,16,260,35,436,30,30 +21546,16,260,36,86,35,35 +21547,16,260,36,359,35,35 +21548,16,260,36,436,35,35 +21549,16,260,37,42,33,33 +21550,16,260,37,296,33,33 +21551,16,260,37,433,33,33 +21552,16,260,38,55,35,35 +21553,16,260,38,296,35,35 +21554,16,260,38,433,35,35 +21555,16,260,39,41,30,30 +21556,16,260,40,41,29,29 +21557,16,260,41,55,33,33 +21558,16,260,42,54,29,29 +21559,16,260,43,54,28,28 +21560,16,260,44,54,27,27 +21561,16,261,33,87,35,35 +21562,16,261,34,42,36,36 +21564,16,261,35,54,32,32 +21565,16,261,35,359,32,32 +21566,16,261,35,436,32,32 +21567,16,261,36,86,34,34 +21568,16,261,36,359,34,34 +21569,16,261,36,436,34,34 +21570,16,261,37,42,34,34 +21571,16,261,37,296,34,34 +21572,16,261,37,433,34,34 +21573,16,261,38,55,36,36 +21574,16,261,38,296,36,36 +21575,16,261,38,433,36,36 +21576,16,261,39,41,32,32 +21577,16,261,40,41,31,31 +21578,16,261,41,55,34,34 +21579,16,261,42,87,36,36 +21580,16,261,43,54,32,32 +21581,16,261,44,54,31,31 +21582,16,262,33,87,37,37 +21584,16,262,34,42,40,40 +21586,16,262,35,54,34,34 +21587,16,262,35,359,34,34 +21588,16,262,35,436,34,34 +21589,16,262,36,86,34,34 +21590,16,262,36,359,34,34 +21591,16,262,36,436,34,34 +21592,16,262,37,124,38,38 +21593,16,262,37,296,38,38 +21594,16,262,37,433,38,38 +21595,16,262,38,55,38,38 +21596,16,262,38,296,38,38 +21597,16,262,38,433,38,38 +21598,16,262,39,42,39,39 +21599,16,262,40,42,38,38 +21600,16,262,41,55,37,37 +21601,16,262,42,87,38,38 +21602,16,262,43,124,40,40 +21603,16,262,44,124,40,40 +21604,16,262,60,86,30,40 +21605,16,262,61,116,30,40 +21606,16,262,62,80,35,45 +21607,16,262,63,80,50,50 +21608,16,262,64,80,35,45 +21609,16,262,45,129,10,10 +21610,16,262,46,129,10,10 +21611,16,262,47,129,10,10 +21612,16,262,48,98,10,10 +21613,16,262,49,98,10,10 +21614,16,262,50,129,20,20 +21615,16,262,51,54,20,20 +21616,16,262,52,98,20,20 +21618,16,262,53,116,20,20 +21620,16,262,54,98,20,20 +21621,16,262,55,130,40,40 +21623,16,262,56,116,40,40 +21625,16,262,57,99,40,40 +21627,16,262,58,117,40,40 +21629,16,262,59,117,40,40 +21631,16,263,33,195,45,45 +21632,16,263,34,208,48,48 +21634,16,263,35,195,45,45 +21635,16,263,35,359,45,45 +21636,16,263,35,436,45,45 +21637,16,263,36,55,48,48 +21638,16,263,36,359,48,48 +21639,16,263,36,436,48,48 +21640,16,263,37,217,48,48 +21641,16,263,37,296,48,48 +21642,16,263,37,433,48,48 +21643,16,263,38,217,47,47 +21644,16,263,38,296,47,47 +21645,16,263,38,433,47,47 +21646,16,263,39,195,45,45 +21647,16,263,39,195,45,45 +21648,16,263,39,200,45,45 +21649,16,263,40,195,45,45 +21650,16,263,40,195,45,45 +21651,16,263,40,200,45,45 +21652,16,263,41,42,48,48 +21653,16,263,42,246,20,20 +21654,16,263,43,42,48,48 +21655,16,263,44,246,15,15 +21656,16,263,60,119,30,40 +21657,16,263,61,119,35,45 +21658,16,263,62,118,30,40 +21659,16,263,63,118,30,40 +21660,16,263,64,118,30,40 +21661,16,263,45,129,10,10 +21662,16,263,46,129,10,10 +21663,16,263,47,129,10,10 +21664,16,263,48,118,10,10 +21665,16,263,49,118,10,10 +21666,16,263,50,129,20,20 +21667,16,263,51,118,20,20 +21668,16,263,52,118,20,20 +21670,16,263,53,118,20,20 +21672,16,263,54,118,20,20 +21673,16,263,55,118,40,40 +21675,16,263,56,118,40,40 +21677,16,263,57,129,40,40 +21678,16,263,58,119,40,40 +21680,16,263,59,129,40,40 +21681,16,264,33,195,45,45 +21682,16,264,34,215,48,48 +21684,16,264,35,216,46,46 +21685,16,264,35,359,46,46 +21686,16,264,35,436,46,46 +21687,16,264,36,55,48,48 +21688,16,264,36,359,48,48 +21689,16,264,36,436,48,48 +21690,16,264,37,217,48,48 +21691,16,264,37,296,48,48 +21692,16,264,37,433,48,48 +21693,16,264,38,217,50,50 +21694,16,264,38,296,50,50 +21695,16,264,38,433,50,50 +21696,16,264,39,195,45,45 +21697,16,264,39,195,45,45 +21698,16,264,39,200,45,45 +21699,16,264,40,195,45,45 +21700,16,264,40,195,45,45 +21701,16,264,40,200,45,45 +21702,16,264,41,42,48,48 +21703,16,264,42,246,20,20 +21704,16,264,43,42,48,48 +21705,16,264,44,246,15,15 +21706,16,264,60,119,30,40 +21707,16,264,61,119,35,45 +21708,16,264,62,118,30,40 +21709,16,264,63,118,30,40 +21710,16,264,64,118,30,40 +21711,16,264,45,129,10,10 +21712,16,264,46,129,10,10 +21713,16,264,47,129,10,10 +21714,16,264,48,118,10,10 +21715,16,264,49,118,10,10 +21716,16,264,50,129,20,20 +21717,16,264,51,118,20,20 +21718,16,264,52,118,20,20 +21720,16,264,53,118,20,20 +21722,16,264,54,118,20,20 +21723,16,264,55,118,40,40 +21725,16,264,56,118,40,40 +21727,16,264,57,129,40,40 +21728,16,264,58,119,40,40 +21730,16,264,59,129,40,40 +21731,16,265,33,215,50,50 +21732,16,265,34,55,48,48 +21734,16,265,35,195,45,45 +21735,16,265,35,359,45,45 +21736,16,265,35,436,45,45 +21737,16,265,36,55,48,48 +21738,16,265,36,359,48,48 +21739,16,265,36,436,48,48 +21740,16,265,37,217,47,47 +21741,16,265,37,296,47,47 +21742,16,265,37,433,47,47 +21743,16,265,38,217,47,47 +21744,16,265,38,296,47,47 +21745,16,265,38,433,47,47 +21746,16,265,39,195,45,45 +21747,16,265,39,195,45,45 +21748,16,265,39,200,45,45 +21749,16,265,40,195,45,45 +21750,16,265,40,195,45,45 +21751,16,265,40,200,45,45 +21752,16,265,41,42,48,48 +21753,16,265,42,246,20,20 +21754,16,265,43,42,48,48 +21755,16,265,44,246,15,15 +21756,16,265,60,119,30,40 +21757,16,265,61,119,35,45 +21758,16,265,62,118,30,40 +21759,16,265,63,118,30,40 +21760,16,265,64,118,30,40 +21761,16,265,45,129,10,10 +21762,16,265,46,129,10,10 +21763,16,265,47,129,10,10 +21764,16,265,48,118,10,10 +21765,16,265,49,118,10,10 +21766,16,265,50,129,20,20 +21767,16,265,51,118,20,20 +21768,16,265,52,118,20,20 +21770,16,265,53,118,20,20 +21772,16,265,54,118,20,20 +21773,16,265,55,118,40,40 +21775,16,265,56,118,40,40 +21777,16,265,57,129,40,40 +21778,16,265,58,119,40,40 +21780,16,265,59,129,40,40 +21781,16,266,60,194,20,30 +21782,16,266,61,194,20,30 +21783,16,266,62,195,30,40 +21784,16,266,63,195,30,40 +21785,16,266,64,195,30,40 +21786,16,266,45,129,10,10 +21787,16,266,46,129,10,10 +21788,16,266,47,129,10,10 +21789,16,266,48,129,10,10 +21790,16,266,49,129,10,10 +21791,16,266,50,129,20,20 +21792,16,266,51,129,20,20 +21793,16,266,52,129,20,20 +21794,16,266,53,60,20,20 +21795,16,266,53,60,20,20 +21796,16,266,53,129,20,20 +21798,16,266,54,60,20,20 +21799,16,266,55,129,40,40 +21800,16,266,56,129,40,40 +21801,16,266,57,60,40,40 +21803,16,266,58,60,40,40 +21805,16,266,59,60,40,40 +21807,16,267,33,42,22,22 +21808,16,267,34,74,19,19 +21810,16,267,35,98,20,20 +21811,16,267,35,359,20,20 +21812,16,267,35,436,20,20 +21813,16,267,36,99,22,22 +21814,16,267,36,359,22,22 +21815,16,267,36,436,22,22 +21816,16,267,37,66,19,19 +21817,16,267,37,296,19,19 +21818,16,267,37,433,19,19 +21819,16,267,38,95,20,20 +21820,16,267,38,296,20,20 +21821,16,267,38,433,20,20 +21822,16,267,39,194,18,18 +21823,16,267,39,194,18,18 +21824,16,267,39,41,18,18 +21825,16,267,40,195,20,20 +21826,16,267,40,195,20,20 +21827,16,267,40,200,20,20 +21828,16,267,41,75,20,20 +21829,16,267,41,75,20,20 +21830,16,267,41,42,20,20 +21831,16,267,42,67,22,22 +21832,16,267,43,208,23,23 +21833,16,267,44,208,23,23 +21834,16,267,65,98,20,26 +21835,16,267,66,99,28,31 +21836,16,268,33,19,20,20 +21837,16,268,33,19,20,20 +21838,16,268,33,92,20,20 +21840,16,268,34,19,21,21 +21841,16,268,34,19,21,21 +21842,16,268,34,92,21,21 +21844,16,268,35,19,20,20 +21845,16,268,35,19,20,20 +21846,16,268,35,92,20,20 +21847,16,268,35,263,20,20 +21848,16,268,35,441,20,20 +21849,16,268,36,19,21,21 +21850,16,268,36,19,21,21 +21851,16,268,36,92,21,21 +21852,16,268,36,263,21,21 +21853,16,268,36,441,21,21 +21854,16,268,37,19,22,22 +21855,16,268,37,19,22,22 +21856,16,268,37,92,22,22 +21857,16,268,37,327,22,22 +21858,16,268,37,307,22,22 +21859,16,268,38,19,22,22 +21860,16,268,38,19,22,22 +21861,16,268,38,92,22,22 +21862,16,268,38,327,22,22 +21863,16,268,38,307,22,22 +21864,16,268,39,19,22,22 +21865,16,268,40,19,22,22 +21866,16,268,41,19,23,23 +21867,16,268,42,19,24,24 +21868,16,268,43,19,23,23 +21869,16,268,44,19,24,24 +21870,16,269,33,114,41,41 +21871,16,269,34,77,42,42 +21873,16,269,35,114,41,41 +21874,16,269,35,293,41,41 +21875,16,269,35,418,41,41 +21876,16,269,36,77,42,42 +21877,16,269,36,293,42,42 +21878,16,269,36,418,42,42 +21879,16,269,37,217,42,42 +21880,16,269,37,264,42,42 +21881,16,269,37,399,42,42 +21882,16,269,38,217,42,42 +21883,16,269,38,264,42,42 +21884,16,269,38,399,42,42 +21885,16,269,39,78,44,44 +21886,16,269,40,78,44,44 +21887,16,269,41,84,41,41 +21888,16,269,41,84,41,41 +21889,16,269,41,215,41,41 +21890,16,269,42,85,43,43 +21891,16,269,42,85,43,43 +21892,16,269,42,215,43,43 +21893,16,269,43,84,41,41 +21894,16,269,43,84,41,41 +21895,16,269,43,215,41,41 +21896,16,269,44,85,43,43 +21897,16,269,44,85,43,43 +21898,16,269,44,215,43,43 +21899,16,269,60,61,30,40 +21900,16,269,61,61,35,45 +21901,16,269,62,60,30,40 +21902,16,269,63,60,30,40 +21903,16,269,64,61,48,48 +21904,16,269,45,129,10,10 +21905,16,269,46,129,10,10 +21906,16,269,47,129,10,10 +21907,16,269,48,60,10,10 +21908,16,269,49,60,10,10 +21909,16,269,50,129,20,20 +21910,16,269,51,60,20,20 +21911,16,269,52,60,20,20 +21913,16,269,53,60,20,20 +21915,16,269,54,60,20,20 +21916,16,269,55,60,40,40 +21918,16,269,56,60,40,40 +21920,16,269,57,129,40,40 +21921,16,269,58,60,40,40 +21923,16,269,59,129,40,40 +21924,16,270,33,95,42,42 +21925,16,270,34,217,44,44 +21927,16,270,35,95,42,42 +21928,16,270,35,359,42,42 +21929,16,270,35,436,42,42 +21930,16,270,36,217,44,44 +21931,16,270,36,359,44,44 +21932,16,270,36,436,44,44 +21933,16,270,37,216,43,43 +21934,16,270,37,296,43,43 +21935,16,270,37,433,43,43 +21936,16,270,38,75,43,43 +21937,16,270,38,296,43,43 +21938,16,270,38,433,43,43 +21939,16,270,39,75,42,42 +21940,16,270,40,75,41,41 +21941,16,270,41,42,45,45 +21942,16,270,42,246,20,20 +21943,16,270,43,42,45,45 +21944,16,270,44,246,15,15 +21945,16,270,60,119,30,40 +21946,16,270,61,119,35,45 +21947,16,270,62,118,30,40 +21948,16,270,63,118,30,40 +21949,16,270,64,119,50,50 +21950,16,270,45,129,10,10 +21951,16,270,46,129,10,10 +21952,16,270,47,129,10,10 +21953,16,270,48,118,10,10 +21954,16,270,49,118,10,10 +21955,16,270,50,129,20,20 +21956,16,270,51,118,20,20 +21957,16,270,52,119,20,20 +21959,16,270,53,129,20,20 +21960,16,270,53,129,20,20 +21961,16,270,53,130,20,20 +21962,16,270,54,119,20,20 +21963,16,270,55,130,40,40 +21965,16,270,56,119,40,40 +21966,16,270,56,119,40,40 +21967,16,270,56,130,40,40 +21969,16,270,57,119,40,40 +21971,16,270,58,130,40,40 +21973,16,270,59,119,40,40 +21975,16,271,33,42,51,51 +21976,16,271,34,95,48,48 +21978,16,271,35,42,51,51 +21979,16,271,35,359,51,51 +21980,16,271,35,436,51,51 +21981,16,271,36,95,48,48 +21982,16,271,36,359,48,48 +21983,16,271,36,436,48,48 +21984,16,271,37,216,48,48 +21985,16,271,37,296,48,48 +21986,16,271,37,433,48,48 +21987,16,271,38,42,48,48 +21988,16,271,38,296,48,48 +21989,16,271,38,433,48,48 +21990,16,271,39,217,50,50 +21991,16,271,40,217,50,50 +21992,16,271,41,55,51,51 +21993,16,271,42,246,20,20 +21994,16,271,43,55,51,51 +21995,16,271,44,246,15,15 +21996,16,272,33,195,45,45 +21997,16,272,33,195,45,45 +21998,16,272,33,200,45,45 +22000,16,272,34,55,48,48 +22002,16,272,35,195,45,45 +22003,16,272,35,195,45,45 +22004,16,272,35,200,45,45 +22005,16,272,35,359,45,45 +22006,16,272,35,436,45,45 +22007,16,272,36,216,46,46 +22008,16,272,36,359,46,46 +22009,16,272,36,436,46,46 +22010,16,272,37,217,48,48 +22011,16,272,37,296,48,48 +22012,16,272,37,433,48,48 +22013,16,272,38,217,47,47 +22014,16,272,38,296,47,47 +22015,16,272,38,433,47,47 +22016,16,272,39,247,30,30 +22017,16,272,40,195,45,45 +22018,16,272,41,42,48,48 +22019,16,272,42,246,20,20 +22020,16,272,43,42,48,48 +22021,16,272,44,246,15,15 +22022,16,273,33,215,45,45 +22023,16,273,34,55,48,48 +22025,16,273,35,195,45,45 +22026,16,273,35,359,45,45 +22027,16,273,35,436,45,45 +22028,16,273,36,55,48,48 +22029,16,273,36,55,48,48 +22030,16,273,36,200,48,48 +22031,16,273,36,359,48,48 +22032,16,273,36,436,48,48 +22033,16,273,37,217,47,47 +22034,16,273,37,296,47,47 +22035,16,273,37,433,47,47 +22036,16,273,38,217,47,47 +22037,16,273,38,296,47,47 +22038,16,273,38,433,47,47 +22039,16,273,39,246,30,30 +22040,16,273,40,195,45,45 +22041,16,273,40,195,45,45 +22042,16,273,40,200,45,45 +22043,16,273,41,42,48,48 +22044,16,273,42,246,20,20 +22045,16,273,43,42,48,48 +22046,16,273,44,246,15,15 +22047,16,273,60,119,30,40 +22048,16,273,61,119,35,45 +22049,16,273,62,118,30,40 +22050,16,273,63,118,30,40 +22051,16,273,64,118,30,40 +22052,16,273,45,129,10,10 +22053,16,273,46,129,10,10 +22054,16,273,47,129,10,10 +22055,16,273,48,118,10,10 +22056,16,273,49,118,10,10 +22057,16,273,50,129,20,20 +22058,16,273,51,118,20,20 +22059,16,273,52,118,20,20 +22061,16,273,53,118,20,20 +22063,16,273,54,118,20,20 +22064,16,273,55,118,40,40 +22066,16,273,56,118,40,40 +22068,16,273,57,129,40,40 +22069,16,273,58,119,40,40 +22071,16,273,59,129,40,40 +22072,16,275,33,19,20,20 +22073,16,275,34,19,20,20 +22074,16,275,35,19,20,20 +22075,16,275,35,263,20,20 +22076,16,275,35,399,20,20 +22077,16,275,36,19,20,20 +22078,16,275,36,263,20,20 +22079,16,275,36,399,20,20 +22080,16,275,37,19,20,20 +22081,16,275,37,263,20,20 +22082,16,275,37,399,20,20 +22083,16,275,38,19,20,20 +22084,16,275,38,263,20,20 +22085,16,275,38,399,20,20 +22086,16,275,39,19,20,20 +22087,16,275,40,19,20,20 +22088,16,275,41,19,20,20 +22089,16,275,42,19,20,20 +22090,16,275,43,19,20,20 +22091,16,275,44,19,20,20 +22092,16,275,60,129,10,20 +22093,16,275,61,129,10,20 +22094,16,275,62,129,10,20 +22095,16,275,63,129,10,20 +22096,16,275,64,129,10,20 +22097,16,275,45,118,10,20 +22098,16,275,46,118,10,20 +22099,16,275,47,118,10,20 +22100,16,275,48,118,10,20 +22101,16,275,49,118,10,20 +22102,16,275,50,118,10,20 +22103,16,275,51,118,10,20 +22104,16,275,52,118,10,20 +22105,16,275,53,118,10,20 +22106,16,275,54,118,10,20 +22107,16,275,55,118,10,20 +22108,16,275,56,118,10,20 +22109,16,275,57,118,10,20 +22110,16,275,58,118,10,20 +22111,16,275,59,118,10,20 +22112,16,276,60,72,25,25 +22113,16,276,61,195,25,25 +22114,16,276,62,73,25,25 +22115,16,276,63,73,25,25 +22116,16,276,64,73,25,25 +22117,16,276,45,129,10,10 +22118,16,276,46,129,10,10 +22119,16,276,47,129,10,10 +22120,16,276,47,369,10,10 +22121,16,276,48,72,10,10 +22122,16,276,49,72,10,10 +22123,16,276,50,129,20,20 +22124,16,276,50,369,20,20 +22125,16,276,51,72,20,20 +22126,16,276,52,72,20,20 +22127,16,276,52,369,20,20 +22128,16,276,53,72,20,20 +22129,16,276,53,369,20,20 +22130,16,276,54,72,20,20 +22131,16,276,55,72,40,40 +22132,16,276,55,369,40,40 +22133,16,276,56,72,40,40 +22134,16,276,56,369,40,40 +22135,16,276,57,129,40,40 +22136,16,276,57,369,40,40 +22137,16,276,58,211,40,40 +22138,16,276,58,369,40,40 +22139,16,276,59,129,40,40 +22140,16,276,59,369,40,40 +22141,16,277,65,99,28,31 +22142,16,277,66,98,24,27 +22143,16,277,60,72,35,35 +22144,16,277,60,366,35,35 +22145,16,277,61,72,30,30 +22146,16,277,62,73,35,35 +22147,16,277,63,73,35,35 +22148,16,277,64,73,35,35 +22149,16,277,45,129,10,10 +22150,16,277,46,129,10,10 +22151,16,277,47,129,10,10 +22152,16,277,48,98,10,10 +22153,16,277,49,98,10,10 +22154,16,277,50,129,20,20 +22155,16,277,51,98,20,20 +22156,16,277,52,98,20,20 +22158,16,277,53,222,20,20 +22159,16,277,53,222,20,20 +22160,16,277,53,120,20,20 +22162,16,277,54,98,20,20 +22163,16,277,55,98,40,40 +22165,16,277,56,222,40,40 +22166,16,277,56,222,40,40 +22167,16,277,56,120,40,40 +22169,16,277,57,98,40,40 +22171,16,277,58,99,40,40 +22173,16,277,59,98,40,40 +22175,16,278,60,72,35,35 +22176,16,278,61,72,30,30 +22177,16,278,62,73,35,35 +22178,16,278,63,73,35,35 +22179,16,278,64,73,35,35 +22180,16,278,45,129,10,10 +22181,16,278,46,129,10,10 +22182,16,278,47,129,10,10 +22183,16,278,48,72,10,10 +22184,16,278,49,72,10,10 +22185,16,278,50,129,20,20 +22186,16,278,51,72,20,20 +22187,16,278,52,170,20,20 +22189,16,278,53,90,20,20 +22191,16,278,54,170,20,20 +22192,16,278,55,170,40,40 +22194,16,278,56,90,40,40 +22196,16,278,57,73,40,40 +22198,16,278,58,171,40,40 +22200,16,278,59,73,40,40 +22202,16,279,60,72,35,35 +22203,16,279,61,72,30,30 +22204,16,279,62,73,35,35 +22205,16,279,63,73,35,35 +22206,16,279,64,73,35,35 +22207,16,279,45,129,10,10 +22208,16,279,46,129,10,10 +22209,16,279,47,129,10,10 +22210,16,279,48,72,10,10 +22211,16,279,49,72,10,10 +22212,16,279,50,129,20,20 +22213,16,279,51,72,20,20 +22214,16,279,52,170,20,20 +22216,16,279,53,90,20,20 +22218,16,279,54,170,20,20 +22219,16,279,55,170,40,40 +22221,16,279,56,90,40,40 +22223,16,279,57,73,40,40 +22225,16,279,58,171,40,40 +22227,16,279,59,73,40,40 +22229,16,280,60,60,10,10 +22230,16,280,61,60,5,5 +22231,16,280,62,61,10,10 +22232,16,280,63,61,10,10 +22233,16,280,64,61,10,10 +22234,16,280,45,129,10,10 +22235,16,280,46,129,10,10 +22236,16,280,47,129,10,10 +22237,16,280,48,60,10,10 +22238,16,280,49,60,10,10 +22239,16,280,50,129,20,20 +22240,16,280,51,60,20,20 +22241,16,280,52,60,20,20 +22243,16,280,53,60,20,20 +22245,16,280,54,60,20,20 +22246,16,280,55,60,40,40 +22248,16,280,56,60,40,40 +22250,16,280,57,129,40,40 +22251,16,280,58,60,40,40 +22253,16,280,59,129,40,40 +22254,16,281,60,118,10,10 +22255,16,281,61,118,5,5 +22256,16,281,62,119,10,10 +22257,16,281,63,119,10,10 +22258,16,281,64,119,10,10 +22259,16,281,45,129,10,10 +22260,16,281,46,129,10,10 +22261,16,281,47,129,10,10 +22262,16,281,48,118,10,10 +22263,16,281,49,118,10,10 +22264,16,281,50,129,20,20 +22265,16,281,51,118,20,20 +22266,16,281,52,118,20,20 +22268,16,281,53,118,20,20 +22270,16,281,54,118,20,20 +22271,16,281,55,118,40,40 +22273,16,281,56,118,40,40 +22275,16,281,57,129,40,40 +22276,16,281,58,119,40,40 +22278,16,281,59,129,40,40 +22279,16,282,65,50,24,37 +22280,16,282,66,213,32,35 +22281,16,282,60,72,35,35 +22282,16,282,60,278,35,35 +22283,16,282,61,72,30,30 +22284,16,282,62,73,35,35 +22285,16,282,63,73,35,35 +22286,16,282,64,73,35,35 +22287,16,282,45,129,10,10 +22288,16,282,46,129,10,10 +22289,16,282,47,129,10,10 +22290,16,282,48,72,10,10 +22291,16,282,49,72,10,10 +22292,16,282,50,129,20,20 +22293,16,282,51,72,20,20 +22294,16,282,52,170,20,20 +22296,16,282,53,90,20,20 +22298,16,282,54,170,20,20 +22299,16,282,55,170,40,40 +22301,16,282,56,90,40,40 +22303,16,282,57,73,40,40 +22305,16,282,58,171,40,40 +22307,16,282,59,73,40,40 +22309,16,283,60,88,20,20 +22310,16,283,61,88,15,15 +22311,16,283,62,89,15,15 +22312,16,283,63,89,15,15 +22313,16,283,64,89,15,15 +22314,16,284,60,129,20,20 +22315,16,284,61,129,15,15 +22316,16,284,62,129,10,10 +22317,16,284,63,129,10,10 +22318,16,284,64,129,10,10 +22319,16,284,45,129,10,10 +22320,16,284,46,129,10,10 +22321,16,284,47,129,10,10 +22322,16,284,48,129,10,10 +22323,16,284,49,129,10,10 +22324,16,284,50,129,20,20 +22325,16,284,51,129,20,20 +22326,16,284,52,129,20,20 +22327,16,284,53,130,20,20 +22329,16,284,54,129,20,20 +22330,16,284,55,129,40,40 +22331,16,284,56,130,40,40 +22333,16,284,57,129,40,40 +22334,16,284,58,129,40,40 +22335,16,284,59,129,40,40 +22336,16,285,60,72,35,35 +22337,16,285,61,72,30,30 +22338,16,285,62,73,35,35 +22339,16,285,63,73,35,35 +22340,16,285,64,73,35,35 +22341,16,285,45,129,10,10 +22342,16,285,46,129,10,10 +22343,16,285,47,129,10,10 +22344,16,285,48,72,10,10 +22345,16,285,49,72,10,10 +22346,16,285,50,129,20,20 +22347,16,285,51,72,20,20 +22348,16,285,52,170,20,20 +22350,16,285,53,90,20,20 +22352,16,285,54,170,20,20 +22353,16,285,55,170,40,40 +22355,16,285,56,90,40,40 +22357,16,285,57,73,40,40 +22359,16,285,58,171,40,40 +22361,16,285,59,73,40,40 +22363,16,286,33,83,24,24 +22364,16,286,33,83,24,24 +22365,16,286,33,37,24,24 +22367,16,286,34,128,20,20 +22368,16,286,35,187,20,20 +22369,16,286,35,311,20,20 +22370,16,286,35,403,20,20 +22371,16,286,36,22,21,21 +22372,16,286,36,311,21,21 +22373,16,286,36,403,21,21 +22374,16,286,37,44,22,22 +22375,16,286,37,312,22,22 +22376,16,286,37,403,22,22 +22377,16,286,38,44,24,24 +22378,16,286,38,312,24,24 +22379,16,286,38,403,24,24 +22380,16,286,39,37,21,21 +22381,16,286,40,203,20,20 +22382,16,286,41,50,20,20 +22383,16,286,42,37,22,22 +22384,16,286,43,187,22,22 +22385,16,286,44,128,24,24 +22386,16,287,33,84,28,28 +22387,16,287,33,84,28,28 +22388,16,287,33,20,28,28 +22390,16,287,34,20,28,28 +22392,16,287,35,84,28,28 +22393,16,287,35,84,28,28 +22394,16,287,35,20,28,28 +22395,16,287,35,293,28,28 +22396,16,287,35,418,28,28 +22397,16,287,36,20,28,28 +22398,16,287,36,293,28,28 +22399,16,287,36,418,28,28 +22400,16,287,37,77,32,32 +22401,16,287,37,264,32,32 +22402,16,287,37,399,32,32 +22403,16,287,38,77,32,32 +22404,16,287,38,264,32,32 +22405,16,287,38,399,32,32 +22406,16,287,39,84,30,30 +22407,16,287,40,84,30,30 +22408,16,287,41,20,30,30 +22409,16,287,41,20,30,30 +22410,16,287,41,195,30,30 +22411,16,287,42,24,30,30 +22412,16,287,43,20,30,30 +22413,16,287,43,20,30,30 +22414,16,287,43,195,30,30 +22415,16,287,44,24,30,30 +22416,16,287,60,72,30,30 +22417,16,287,61,72,25,25 +22418,16,287,62,73,30,30 +22419,16,287,63,73,30,30 +22420,16,287,64,73,30,30 +22421,16,287,45,129,10,10 +22422,16,287,46,129,10,10 +22423,16,287,47,129,10,10 +22424,16,287,48,72,10,10 +22425,16,287,49,72,10,10 +22426,16,287,50,129,20,20 +22427,16,287,51,72,20,20 +22428,16,287,52,170,20,20 +22430,16,287,53,90,20,20 +22432,16,287,54,170,20,20 +22433,16,287,55,170,40,40 +22435,16,287,56,90,40,40 +22437,16,287,57,73,40,40 +22439,16,287,58,171,40,40 +22441,16,287,59,73,40,40 +22443,16,288,33,84,28,28 +22444,16,288,33,84,28,28 +22445,16,288,33,195,28,28 +22447,16,288,34,24,28,28 +22449,16,288,35,84,28,28 +22450,16,288,35,84,28,28 +22451,16,288,35,195,28,28 +22452,16,288,35,293,28,28 +22453,16,288,35,418,28,28 +22454,16,288,36,24,28,28 +22455,16,288,36,293,28,28 +22456,16,288,36,418,28,28 +22457,16,288,37,20,30,30 +22458,16,288,37,20,30,30 +22459,16,288,37,195,30,30 +22460,16,288,37,264,30,30 +22461,16,288,37,399,30,30 +22462,16,288,38,20,30,30 +22463,16,288,38,20,30,30 +22464,16,288,38,195,30,30 +22465,16,288,38,264,30,30 +22466,16,288,38,399,30,30 +22467,16,288,39,84,30,30 +22468,16,288,39,84,30,30 +22469,16,288,39,20,30,30 +22470,16,288,40,84,30,30 +22471,16,288,40,84,30,30 +22472,16,288,40,20,30,30 +22473,16,288,41,77,32,32 +22474,16,288,42,85,30,30 +22475,16,288,42,85,30,30 +22476,16,288,42,195,30,30 +22477,16,288,43,77,32,32 +22478,16,288,44,85,30,30 +22479,16,288,44,85,30,30 +22480,16,288,44,195,30,30 +22481,16,288,60,72,20,20 +22482,16,288,60,370,20,20 +22483,16,288,61,72,15,15 +22484,16,288,62,73,20,20 +22485,16,288,63,73,20,20 +22486,16,288,64,73,20,20 +22487,16,288,45,129,10,10 +22488,16,288,46,129,10,10 +22489,16,288,47,129,10,10 +22490,16,288,48,72,10,10 +22491,16,288,49,72,10,10 +22492,16,288,50,129,20,20 +22493,16,288,51,72,20,20 +22494,16,288,52,170,20,20 +22496,16,288,53,90,20,20 +22498,16,288,54,170,20,20 +22499,16,288,55,170,40,40 +22501,16,288,56,90,40,40 +22503,16,288,57,73,40,40 +22505,16,288,58,171,40,40 +22507,16,288,59,73,40,40 +22509,16,289,33,114,39,39 +22510,16,289,34,77,40,40 +22512,16,289,35,114,39,39 +22513,16,289,35,293,39,39 +22514,16,289,35,418,39,39 +22515,16,289,36,77,40,40 +22516,16,289,36,293,40,40 +22517,16,289,36,418,40,40 +22518,16,289,37,217,40,40 +22519,16,289,37,264,40,40 +22520,16,289,37,399,40,40 +22521,16,289,38,217,40,40 +22522,16,289,38,264,40,40 +22523,16,289,38,399,40,40 +22524,16,289,39,78,42,42 +22525,16,289,39,78,42,42 +22526,16,289,39,215,42,42 +22527,16,289,40,78,42,42 +22528,16,289,40,78,42,42 +22529,16,289,40,215,42,42 +22530,16,289,41,84,41,41 +22531,16,289,41,84,41,41 +22532,16,289,41,78,41,41 +22533,16,289,42,85,43,43 +22534,16,289,42,85,43,43 +22535,16,289,42,78,43,43 +22536,16,289,43,84,41,41 +22537,16,289,43,84,41,41 +22538,16,289,43,78,41,41 +22539,16,289,44,85,43,43 +22540,16,289,44,85,43,43 +22541,16,289,44,78,43,43 +22542,16,289,60,60,40,40 +22543,16,289,61,60,35,35 +22544,16,289,62,61,40,40 +22545,16,289,63,61,40,40 +22546,16,289,64,61,40,40 +22547,16,289,45,129,10,10 +22548,16,289,46,129,10,10 +22549,16,289,47,129,10,10 +22550,16,289,48,60,10,10 +22551,16,289,49,60,10,10 +22552,16,289,50,129,20,20 +22553,16,289,51,60,20,20 +22554,16,289,52,60,20,20 +22556,16,289,53,60,20,20 +22558,16,289,54,60,20,20 +22559,16,289,55,60,40,40 +22561,16,289,56,60,40,40 +22563,16,289,57,129,40,40 +22564,16,289,58,60,40,40 +22566,16,289,59,129,40,40 +22567,16,290,33,41,6,6 +22568,16,290,34,74,8,8 +22570,16,290,35,41,6,6 +22571,16,290,35,359,6,6 +22572,16,290,35,436,6,6 +22573,16,290,36,74,8,8 +22574,16,290,36,359,8,8 +22575,16,290,36,436,8,8 +22576,16,290,37,41,8,8 +22577,16,290,37,296,8,8 +22578,16,290,37,433,8,8 +22579,16,290,38,41,8,8 +22580,16,290,38,296,8,8 +22581,16,290,38,433,8,8 +22582,16,290,39,46,12,12 +22583,16,290,40,46,12,12 +22584,16,290,41,74,10,10 +22585,16,290,42,35,8,8 +22586,16,290,43,74,10,10 +22587,16,290,44,35,8,8 +22588,16,291,33,41,6,6 +22589,16,291,34,74,8,8 +22591,16,291,35,41,6,6 +22592,16,291,35,359,6,6 +22593,16,291,35,436,6,6 +22594,16,291,36,74,8,8 +22595,16,291,36,359,8,8 +22596,16,291,36,436,8,8 +22597,16,291,37,41,8,8 +22598,16,291,37,296,8,8 +22599,16,291,37,433,8,8 +22600,16,291,38,41,8,8 +22601,16,291,38,296,8,8 +22602,16,291,38,433,8,8 +22603,16,291,39,46,12,12 +22604,16,291,40,46,12,12 +22605,16,291,41,74,10,10 +22606,16,291,42,35,8,8 +22607,16,291,43,74,10,10 +22608,16,291,44,35,8,8 +22609,16,292,33,104,10,10 +22610,16,292,34,74,10,10 +22612,16,292,35,104,10,10 +22613,16,292,35,359,10,10 +22614,16,292,35,436,10,10 +22615,16,292,36,74,10,10 +22616,16,292,36,359,10,10 +22617,16,292,36,436,10,10 +22618,16,292,37,66,12,12 +22619,16,292,37,296,12,12 +22620,16,292,37,433,12,12 +22621,16,292,38,66,12,12 +22622,16,292,38,296,12,12 +22623,16,292,38,433,12,12 +22624,16,292,39,41,8,8 +22625,16,292,40,41,8,8 +22626,16,292,41,67,14,14 +22627,16,292,42,104,13,13 +22628,16,292,43,67,14,14 +22629,16,292,44,104,13,13 +22630,16,293,33,104,12,12 +22631,16,293,34,74,12,12 +22633,16,293,35,104,12,12 +22634,16,293,35,359,12,12 +22635,16,293,35,436,12,12 +22636,16,293,36,74,12,12 +22637,16,293,36,359,12,12 +22638,16,293,36,436,12,12 +22639,16,293,37,95,16,16 +22640,16,293,37,296,16,16 +22641,16,293,37,433,16,16 +22642,16,293,38,95,16,16 +22643,16,293,38,296,16,16 +22644,16,293,38,433,16,16 +22645,16,293,39,41,10,10 +22646,16,293,40,41,10,10 +22647,16,293,41,105,14,14 +22648,16,293,42,115,14,14 +22649,16,293,43,105,14,14 +22650,16,293,44,115,14,14 +22651,16,293,65,74,12,16 +22652,16,293,66,74,17,21 +22653,16,294,33,75,32,32 +22654,16,294,34,42,32,32 +22656,16,294,35,75,32,32 +22657,16,294,35,359,32,32 +22658,16,294,35,436,32,32 +22659,16,294,36,42,32,32 +22660,16,294,36,359,32,32 +22661,16,294,36,436,32,32 +22662,16,294,37,217,33,33 +22663,16,294,37,296,33,33 +22664,16,294,37,433,33,33 +22665,16,294,38,217,33,33 +22666,16,294,38,296,33,33 +22667,16,294,38,433,33,33 +22668,16,294,39,95,34,34 +22669,16,294,40,95,34,34 +22670,16,294,41,95,36,36 +22671,16,294,42,111,35,35 +22672,16,294,43,95,36,36 +22673,16,294,44,111,35,35 +22674,16,295,33,16,2,2 +22675,16,295,33,16,2,2 +22676,16,295,33,163,2,2 +22677,16,295,33,261,2,2 +22678,16,295,34,19,2,2 +22679,16,295,34,261,2,2 +22680,16,295,35,16,2,2 +22681,16,295,35,16,2,2 +22682,16,295,35,163,2,2 +22683,16,295,35,311,2,2 +22684,16,295,35,403,2,2 +22685,16,295,36,19,2,2 +22686,16,295,36,311,2,2 +22687,16,295,36,403,2,2 +22688,16,295,37,161,3,3 +22689,16,295,37,161,3,3 +22690,16,295,37,19,3,3 +22691,16,295,37,312,3,3 +22692,16,295,37,403,3,3 +22693,16,295,38,161,3,3 +22694,16,295,38,161,3,3 +22695,16,295,38,19,3,3 +22696,16,295,38,312,3,3 +22697,16,295,38,403,3,3 +22698,16,295,39,16,3,3 +22699,16,295,39,16,3,3 +22700,16,295,39,163,3,3 +22701,16,295,40,16,3,3 +22702,16,295,40,16,3,3 +22703,16,295,40,163,3,3 +22704,16,295,41,162,6,6 +22705,16,295,41,162,6,6 +22706,16,295,41,19,6,6 +22707,16,295,42,16,4,4 +22708,16,295,42,16,4,4 +22709,16,295,42,163,4,4 +22710,16,295,43,162,6,6 +22711,16,295,43,162,6,6 +22712,16,295,43,19,6,6 +22713,16,295,44,16,4,4 +22714,16,295,44,16,4,4 +22715,16,295,44,163,4,4 +22716,16,296,33,165,3,3 +22717,16,296,33,13,3,3 +22718,16,296,33,163,3,3 +22720,16,296,34,16,3,3 +22721,16,296,34,16,3,3 +22722,16,296,34,163,3,3 +22724,16,296,35,13,3,3 +22725,16,296,35,13,3,3 +22726,16,296,35,14,3,3 +22727,16,296,35,311,3,3 +22728,16,296,35,403,3,3 +22729,16,296,36,165,3,3 +22730,16,296,36,16,3,3 +22731,16,296,36,163,3,3 +22732,16,296,36,311,3,3 +22733,16,296,36,403,3,3 +22734,16,296,37,14,5,5 +22735,16,296,37,14,5,5 +22736,16,296,37,163,5,5 +22737,16,296,37,312,5,5 +22738,16,296,37,403,5,5 +22739,16,296,38,14,5,5 +22740,16,296,38,14,5,5 +22741,16,296,38,13,5,5 +22742,16,296,38,312,5,5 +22743,16,296,38,403,5,5 +22744,16,296,39,15,7,7 +22745,16,296,39,16,7,7 +22746,16,296,39,164,7,7 +22747,16,296,40,15,7,7 +22748,16,296,40,16,7,7 +22749,16,296,40,164,7,7 +22750,16,296,41,166,7,7 +22751,16,296,41,17,7,7 +22752,16,296,41,164,7,7 +22753,16,296,42,166,10,10 +22754,16,296,42,165,10,10 +22755,16,296,42,15,10,10 +22756,16,296,43,166,7,7 +22757,16,296,43,17,7,7 +22758,16,296,43,14,7,7 +22759,16,296,44,13,4,4 +22760,16,297,33,21,5,5 +22761,16,297,33,21,5,5 +22762,16,297,33,19,5,5 +22763,16,297,33,316,5,5 +22764,16,297,34,19,5,5 +22765,16,297,34,19,5,5 +22766,16,297,34,41,5,5 +22767,16,297,34,316,5,5 +22768,16,297,35,21,5,5 +22769,16,297,35,21,5,5 +22770,16,297,35,19,5,5 +22771,16,297,35,311,5,5 +22772,16,297,35,403,5,5 +22773,16,297,36,19,5,5 +22774,16,297,36,19,5,5 +22775,16,297,36,41,5,5 +22776,16,297,36,311,5,5 +22777,16,297,36,403,5,5 +22778,16,297,37,23,8,8 +22779,16,297,37,312,8,8 +22780,16,297,37,403,8,8 +22781,16,297,38,23,8,8 +22782,16,297,38,312,8,8 +22783,16,297,38,403,8,8 +22784,16,297,39,39,6,6 +22785,16,297,40,39,6,6 +22786,16,297,41,24,10,10 +22787,16,297,42,21,8,8 +22788,16,297,42,21,8,8 +22789,16,297,42,19,8,8 +22790,16,297,43,24,10,10 +22791,16,297,44,21,8,8 +22792,16,297,44,21,8,8 +22793,16,297,44,19,8,8 +22794,16,298,33,21,5,5 +22795,16,298,33,21,5,5 +22796,16,298,33,19,5,5 +22798,16,298,34,19,5,5 +22799,16,298,34,19,5,5 +22800,16,298,34,41,5,5 +22802,16,298,35,21,5,5 +22803,16,298,35,21,5,5 +22804,16,298,35,19,5,5 +22805,16,298,35,293,5,5 +22806,16,298,35,418,5,5 +22807,16,298,36,19,5,5 +22808,16,298,36,19,5,5 +22809,16,298,36,41,5,5 +22810,16,298,36,293,5,5 +22811,16,298,36,418,5,5 +22812,16,298,37,23,8,8 +22813,16,298,37,264,8,8 +22814,16,298,37,399,8,8 +22815,16,298,38,23,8,8 +22816,16,298,38,264,8,8 +22817,16,298,38,399,8,8 +22818,16,298,39,39,6,6 +22819,16,298,40,39,6,6 +22820,16,298,41,24,10,10 +22821,16,298,42,21,8,8 +22822,16,298,42,21,8,8 +22823,16,298,42,19,8,8 +22824,16,298,43,24,10,10 +22825,16,298,44,21,8,8 +22826,16,298,44,21,8,8 +22827,16,298,44,19,8,8 +22828,16,298,60,118,10,10 +22829,16,298,61,118,5,5 +22830,16,298,62,119,10,10 +22831,16,298,63,119,10,10 +22832,16,298,64,119,10,10 +22833,16,298,45,129,10,10 +22834,16,298,46,129,10,10 +22835,16,298,47,129,10,10 +22836,16,298,48,118,10,10 +22837,16,298,49,118,10,10 +22838,16,298,50,129,20,20 +22839,16,298,51,118,20,20 +22840,16,298,52,118,20,20 +22842,16,298,53,118,20,20 +22844,16,298,54,118,20,20 +22845,16,298,55,118,40,40 +22847,16,298,56,118,40,40 +22849,16,298,57,129,40,40 +22850,16,298,58,119,40,40 +22852,16,298,59,129,40,40 +22853,16,299,33,16,13,13 +22854,16,299,33,16,13,13 +22855,16,299,33,43,13,13 +22857,16,299,34,69,13,13 +22858,16,299,34,69,13,13 +22859,16,299,34,52,13,13 +22861,16,299,35,16,13,13 +22862,16,299,35,16,13,13 +22863,16,299,35,43,13,13 +22864,16,299,35,311,13,13 +22865,16,299,35,403,13,13 +22866,16,299,36,69,13,13 +22867,16,299,36,69,13,13 +22868,16,299,36,52,13,13 +22869,16,299,36,311,13,13 +22870,16,299,36,403,13,13 +22871,16,299,37,52,14,14 +22872,16,299,37,52,14,14 +22873,16,299,37,69,14,14 +22874,16,299,37,312,14,14 +22875,16,299,37,403,14,14 +22876,16,299,38,52,14,14 +22877,16,299,38,52,14,14 +22878,16,299,38,69,14,14 +22879,16,299,38,312,14,14 +22880,16,299,38,403,14,14 +22881,16,299,39,16,15,15 +22882,16,299,39,16,15,15 +22883,16,299,39,44,15,15 +22884,16,299,40,16,15,15 +22885,16,299,40,16,15,15 +22886,16,299,40,44,15,15 +22887,16,299,41,63,12,12 +22888,16,299,42,63,14,14 +22889,16,299,43,63,12,12 +22890,16,299,44,63,14,14 +22891,16,300,33,16,13,13 +22892,16,300,33,16,13,13 +22893,16,300,33,43,13,13 +22895,16,300,34,69,13,13 +22896,16,300,34,69,13,13 +22897,16,300,34,52,13,13 +22899,16,300,35,16,13,13 +22900,16,300,35,16,13,13 +22901,16,300,35,43,13,13 +22902,16,300,35,293,13,13 +22903,16,300,35,418,13,13 +22904,16,300,36,69,13,13 +22905,16,300,36,69,13,13 +22906,16,300,36,52,13,13 +22907,16,300,36,293,13,13 +22908,16,300,36,418,13,13 +22909,16,300,37,52,14,14 +22910,16,300,37,52,14,14 +22911,16,300,37,69,14,14 +22912,16,300,37,264,14,14 +22913,16,300,37,399,14,14 +22914,16,300,38,52,14,14 +22915,16,300,38,52,14,14 +22916,16,300,38,69,14,14 +22917,16,300,38,264,14,14 +22918,16,300,38,399,14,14 +22919,16,300,39,81,15,15 +22920,16,300,40,81,15,15 +22921,16,300,41,63,12,12 +22922,16,300,42,63,14,14 +22923,16,300,43,63,12,12 +22924,16,300,44,63,14,14 +22925,16,300,60,54,10,10 +22926,16,300,61,54,5,5 +22927,16,300,62,55,10,10 +22928,16,300,63,55,10,10 +22929,16,300,64,55,10,10 +22930,16,300,45,129,10,10 +22931,16,300,46,129,10,10 +22932,16,300,47,129,10,10 +22933,16,300,48,60,10,10 +22934,16,300,49,60,10,10 +22935,16,300,50,129,20,20 +22936,16,300,51,60,20,20 +22937,16,300,52,60,20,20 +22939,16,300,53,60,20,20 +22941,16,300,54,60,20,20 +22942,16,300,55,60,40,40 +22944,16,300,56,60,40,40 +22946,16,300,57,129,40,40 +22947,16,300,58,60,40,40 +22949,16,300,59,129,40,40 +22950,16,301,33,52,17,17 +22951,16,301,34,21,17,17 +22952,16,301,34,21,17,17 +22953,16,301,34,198,17,17 +22955,16,301,35,52,17,17 +22956,16,301,35,311,17,17 +22957,16,301,35,403,17,17 +22958,16,301,36,21,17,17 +22959,16,301,36,21,17,17 +22960,16,301,36,198,17,17 +22961,16,301,36,311,17,17 +22962,16,301,36,403,17,17 +22963,16,301,37,37,18,18 +22964,16,301,37,312,18,18 +22965,16,301,37,403,18,18 +22966,16,301,38,37,18,18 +22967,16,301,38,312,18,18 +22968,16,301,38,403,18,18 +22969,16,301,39,20,19,19 +22970,16,301,40,20,19,19 +22971,16,301,41,53,19,19 +22972,16,301,42,19,15,15 +22973,16,301,42,37,15,15 +22974,16,301,42,228,15,15 +22975,16,301,43,53,19,19 +22976,16,301,44,19,15,15 +22977,16,301,44,37,15,15 +22978,16,301,44,228,15,15 +22979,16,302,33,52,17,17 +22980,16,302,34,17,19,19 +22981,16,302,34,17,19,19 +22982,16,302,34,93,19,19 +22984,16,302,35,52,17,17 +22985,16,302,35,311,17,17 +22986,16,302,35,403,17,17 +22987,16,302,36,17,19,19 +22988,16,302,36,17,19,19 +22989,16,302,36,93,19,19 +22990,16,302,36,311,19,19 +22991,16,302,36,403,19,19 +22992,16,302,37,63,15,15 +22993,16,302,37,312,15,15 +22994,16,302,37,403,15,15 +22995,16,302,38,63,15,15 +22996,16,302,38,312,15,15 +22997,16,302,38,403,15,15 +22998,16,302,39,37,18,18 +22999,16,302,39,37,18,18 +23000,16,302,39,164,18,18 +23001,16,302,40,37,18,18 +23002,16,302,40,37,18,18 +23003,16,302,40,164,18,18 +23004,16,302,41,17,17,17 +23005,16,302,41,17,17,17 +23006,16,302,41,37,17,17 +23007,16,302,42,64,15,15 +23008,16,302,43,17,17,17 +23009,16,302,43,17,17,17 +23010,16,302,43,37,17,17 +23011,16,302,44,64,15,15 +23012,16,303,33,19,13,13 +23013,16,303,33,303,13,13 +23014,16,303,34,21,15,15 +23015,16,303,34,21,15,15 +23016,16,303,34,19,15,15 +23017,16,303,34,303,15,15 +23018,16,303,35,19,13,13 +23019,16,303,35,293,13,13 +23020,16,303,35,418,13,13 +23021,16,303,36,21,15,15 +23022,16,303,36,21,15,15 +23023,16,303,36,19,15,15 +23024,16,303,36,293,15,15 +23025,16,303,36,418,15,15 +23026,16,303,37,21,13,13 +23027,16,303,37,21,13,13 +23028,16,303,37,20,13,13 +23029,16,303,37,264,13,13 +23030,16,303,37,399,13,13 +23031,16,303,38,21,13,13 +23032,16,303,38,21,13,13 +23033,16,303,38,20,13,13 +23034,16,303,38,264,13,13 +23035,16,303,38,399,13,13 +23036,16,303,39,20,15,15 +23037,16,303,39,20,15,15 +23038,16,303,39,19,15,15 +23039,16,303,40,20,15,15 +23040,16,303,40,20,15,15 +23041,16,303,40,19,15,15 +23042,16,303,41,22,15,15 +23043,16,303,41,22,15,15 +23044,16,303,41,20,15,15 +23045,16,303,42,20,15,15 +23046,16,303,43,22,15,15 +23047,16,303,43,22,15,15 +23048,16,303,43,20,15,15 +23049,16,303,44,20,15,15 +23050,16,303,60,118,15,15 +23051,16,303,61,118,10,10 +23052,16,303,62,119,15,15 +23053,16,303,63,119,15,15 +23054,16,303,64,119,15,15 +23055,16,303,45,129,10,10 +23056,16,303,46,129,10,10 +23057,16,303,47,129,10,10 +23058,16,303,48,118,10,10 +23059,16,303,49,118,10,10 +23060,16,303,50,129,20,20 +23061,16,303,51,118,20,20 +23062,16,303,52,118,20,20 +23064,16,303,53,118,20,20 +23066,16,303,54,118,20,20 +23067,16,303,55,118,40,40 +23069,16,303,56,118,40,40 +23071,16,303,57,129,40,40 +23072,16,303,58,119,40,40 +23074,16,303,59,129,40,40 +23075,16,304,33,21,16,16 +23076,16,304,33,21,16,16 +23077,16,304,33,195,16,16 +23079,16,304,34,100,17,17 +23081,16,304,35,21,16,16 +23082,16,304,35,21,16,16 +23083,16,304,35,195,16,16 +23084,16,304,35,293,16,16 +23085,16,304,35,418,16,16 +23086,16,304,36,100,17,17 +23087,16,304,36,293,17,17 +23088,16,304,36,418,17,17 +23089,16,304,37,20,16,16 +23090,16,304,37,264,16,16 +23091,16,304,37,399,16,16 +23092,16,304,38,20,16,16 +23093,16,304,38,264,16,16 +23094,16,304,38,399,16,16 +23095,16,304,39,22,18,18 +23096,16,304,39,22,18,18 +23097,16,304,39,195,18,18 +23098,16,304,40,22,18,18 +23099,16,304,40,22,18,18 +23100,16,304,40,195,18,18 +23101,16,304,41,20,18,18 +23102,16,304,41,125,18,18 +23103,16,304,41,20,18,18 +23104,16,304,42,125,15,15 +23105,16,304,43,20,18,18 +23106,16,304,43,125,18,18 +23107,16,304,43,20,18,18 +23108,16,304,44,125,15,15 +23109,16,304,60,118,15,15 +23110,16,304,61,118,10,10 +23111,16,304,62,119,15,15 +23112,16,304,63,119,15,15 +23113,16,304,64,119,15,15 +23114,16,304,45,129,10,10 +23115,16,304,46,129,10,10 +23116,16,304,47,129,10,10 +23117,16,304,48,118,10,10 +23118,16,304,49,118,10,10 +23119,16,304,50,129,20,20 +23120,16,304,51,118,20,20 +23121,16,304,52,118,20,20 +23123,16,304,53,118,20,20 +23125,16,304,54,118,20,20 +23126,16,304,55,118,40,40 +23128,16,304,56,118,40,40 +23130,16,304,57,129,40,40 +23131,16,304,58,119,40,40 +23133,16,304,59,129,40,40 +23134,16,305,33,96,14,14 +23135,16,305,34,19,15,15 +23137,16,305,35,96,14,14 +23138,16,305,35,311,14,14 +23139,16,305,35,403,14,14 +23140,16,305,36,19,15,15 +23141,16,305,36,311,15,15 +23142,16,305,36,403,15,15 +23143,16,305,37,81,15,15 +23144,16,305,37,312,15,15 +23145,16,305,37,403,15,15 +23146,16,305,38,81,15,15 +23147,16,305,38,312,15,15 +23148,16,305,38,403,15,15 +23149,16,305,39,96,16,16 +23150,16,305,40,96,16,16 +23151,16,305,41,97,16,16 +23152,16,305,42,97,16,16 +23153,16,305,43,97,16,16 +23154,16,305,44,97,16,16 +23155,16,306,33,33,23,23 +23156,16,306,33,113,23,23 +23157,16,306,34,30,23,23 +23158,16,306,34,113,23,23 +23159,16,306,35,33,23,23 +23160,16,306,35,293,23,23 +23161,16,306,35,418,23,23 +23162,16,306,36,30,23,23 +23163,16,306,36,293,23,23 +23164,16,306,36,418,23,23 +23165,16,306,37,17,25,25 +23166,16,306,37,17,25,25 +23167,16,306,37,164,25,25 +23168,16,306,37,264,25,25 +23169,16,306,37,399,25,25 +23170,16,306,38,17,25,25 +23171,16,306,38,17,25,25 +23172,16,306,38,164,25,25 +23173,16,306,38,264,25,25 +23174,16,306,38,399,25,25 +23175,16,306,39,187,22,22 +23176,16,306,39,187,22,22 +23177,16,306,39,195,22,22 +23178,16,306,40,187,22,22 +23179,16,306,40,187,22,22 +23180,16,306,40,195,22,22 +23181,16,306,41,187,24,24 +23182,16,306,41,187,24,24 +23183,16,306,41,195,24,24 +23184,16,306,42,187,24,24 +23185,16,306,42,187,24,24 +23186,16,306,42,195,24,24 +23187,16,306,43,187,24,24 +23188,16,306,43,187,24,24 +23189,16,306,43,195,24,24 +23190,16,306,44,113,25,25 +23191,16,306,60,72,25,25 +23192,16,306,61,195,25,25 +23193,16,306,62,73,25,25 +23194,16,306,63,73,25,25 +23195,16,306,64,73,25,25 +23196,16,306,45,129,10,10 +23197,16,306,46,129,10,10 +23198,16,306,47,129,10,10 +23199,16,306,48,72,10,10 +23200,16,306,49,72,10,10 +23201,16,306,50,129,20,20 +23202,16,306,51,72,20,20 +23203,16,306,52,72,20,20 +23205,16,306,53,72,20,20 +23207,16,306,54,72,20,20 +23208,16,306,55,72,40,40 +23210,16,306,56,72,40,40 +23212,16,306,57,129,40,40 +23213,16,306,58,211,40,40 +23215,16,306,59,129,40,40 +23216,16,307,33,33,23,23 +23217,16,307,34,30,23,23 +23219,16,307,35,33,23,23 +23220,16,307,35,311,23,23 +23221,16,307,35,403,23,23 +23222,16,307,36,30,23,23 +23223,16,307,36,311,23,23 +23224,16,307,36,403,23,23 +23225,16,307,37,17,25,25 +23226,16,307,37,17,25,25 +23227,16,307,37,164,25,25 +23228,16,307,37,312,25,25 +23229,16,307,37,403,25,25 +23230,16,307,38,17,25,25 +23231,16,307,38,17,25,25 +23232,16,307,38,164,25,25 +23233,16,307,38,312,25,25 +23234,16,307,38,403,25,25 +23235,16,307,39,187,24,24 +23236,16,307,39,187,24,24 +23237,16,307,39,195,24,24 +23238,16,307,40,187,24,24 +23239,16,307,40,187,24,24 +23240,16,307,40,195,24,24 +23241,16,307,41,188,26,26 +23242,16,307,41,188,26,26 +23243,16,307,41,195,26,26 +23244,16,307,42,188,26,26 +23245,16,307,42,188,26,26 +23246,16,307,42,195,26,26 +23247,16,307,43,188,26,26 +23248,16,307,43,188,26,26 +23249,16,307,43,195,26,26 +23250,16,307,44,113,25,25 +23251,16,308,33,33,23,23 +23252,16,308,34,30,23,23 +23254,16,308,35,33,23,23 +23255,16,308,35,311,23,23 +23256,16,308,35,403,23,23 +23257,16,308,36,30,23,23 +23258,16,308,36,311,23,23 +23259,16,308,36,403,23,23 +23260,16,308,37,17,25,25 +23261,16,308,37,17,25,25 +23262,16,308,37,164,25,25 +23263,16,308,37,312,25,25 +23264,16,308,37,403,25,25 +23265,16,308,38,17,25,25 +23266,16,308,38,17,25,25 +23267,16,308,38,164,25,25 +23268,16,308,38,312,25,25 +23269,16,308,38,403,25,25 +23270,16,308,39,187,22,22 +23271,16,308,39,187,22,22 +23272,16,308,39,195,22,22 +23273,16,308,40,187,22,22 +23274,16,308,40,187,22,22 +23275,16,308,40,195,22,22 +23276,16,308,41,187,24,24 +23277,16,308,41,187,24,24 +23278,16,308,41,195,24,24 +23279,16,308,42,187,24,24 +23280,16,308,42,187,24,24 +23281,16,308,42,195,24,24 +23282,16,308,43,187,24,24 +23283,16,308,43,187,24,24 +23284,16,308,43,195,24,24 +23285,16,308,44,113,25,25 +23286,16,309,33,88,26,26 +23287,16,309,34,22,27,27 +23288,16,309,34,22,27,27 +23289,16,309,34,88,27,27 +23291,16,309,35,88,26,26 +23292,16,309,35,311,26,26 +23293,16,309,35,403,26,26 +23294,16,309,36,22,27,27 +23295,16,309,36,22,27,27 +23296,16,309,36,88,27,27 +23297,16,309,36,311,27,27 +23298,16,309,36,403,27,27 +23299,16,309,37,88,28,28 +23300,16,309,37,312,28,28 +23301,16,309,37,403,28,28 +23302,16,309,38,88,28,28 +23303,16,309,38,312,28,28 +23304,16,309,38,403,28,28 +23305,16,309,39,22,29,29 +23306,16,309,39,22,29,29 +23307,16,309,39,198,29,29 +23308,16,309,40,22,29,29 +23309,16,309,40,22,29,29 +23310,16,309,40,198,29,29 +23311,16,309,41,218,27,27 +23312,16,309,42,89,30,30 +23313,16,309,43,218,27,27 +23314,16,309,44,89,30,30 +23315,16,310,33,22,28,28 +23316,16,310,33,22,28,28 +23317,16,310,33,88,28,28 +23319,16,310,34,88,27,27 +23320,16,310,34,218,27,27 +23321,16,310,34,88,27,27 +23323,16,310,35,22,28,28 +23324,16,310,35,22,28,28 +23325,16,310,35,88,28,28 +23326,16,310,35,311,28,28 +23327,16,310,35,403,28,28 +23328,16,310,36,88,27,27 +23329,16,310,36,218,27,27 +23330,16,310,36,88,27,27 +23331,16,310,36,311,27,27 +23332,16,310,36,403,27,27 +23333,16,310,37,88,29,29 +23334,16,310,37,312,29,29 +23335,16,310,37,403,29,29 +23336,16,310,38,88,29,29 +23337,16,310,38,312,29,29 +23338,16,310,38,403,29,29 +23339,16,310,39,22,30,30 +23340,16,310,39,22,30,30 +23341,16,310,39,89,30,30 +23342,16,310,40,22,30,30 +23343,16,310,40,22,30,30 +23344,16,310,40,89,30,30 +23345,16,310,41,218,29,29 +23346,16,310,42,89,32,32 +23347,16,310,43,218,29,29 +23348,16,310,44,89,32,32 +23349,16,311,33,88,26,26 +23350,16,311,34,22,27,27 +23351,16,311,34,22,27,27 +23352,16,311,34,88,27,27 +23354,16,311,35,88,26,26 +23355,16,311,35,311,26,26 +23356,16,311,35,403,26,26 +23357,16,311,36,22,27,27 +23358,16,311,36,22,27,27 +23359,16,311,36,88,27,27 +23360,16,311,36,311,27,27 +23361,16,311,36,403,27,27 +23362,16,311,37,88,28,28 +23363,16,311,37,312,28,28 +23364,16,311,37,403,28,28 +23365,16,311,38,88,28,28 +23366,16,311,38,312,28,28 +23367,16,311,38,403,28,28 +23368,16,311,39,22,29,29 +23369,16,311,39,22,29,29 +23370,16,311,39,89,29,29 +23371,16,311,40,22,29,29 +23372,16,311,40,22,29,29 +23373,16,311,40,89,29,29 +23374,16,311,41,218,27,27 +23375,16,311,42,89,30,30 +23376,16,311,43,218,27,27 +23377,16,311,44,89,30,30 +23378,16,312,33,114,30,30 +23379,16,312,34,114,25,25 +23380,16,312,35,114,30,30 +23381,16,312,35,293,30,30 +23382,16,312,35,418,30,30 +23383,16,312,36,114,25,25 +23384,16,312,36,293,25,25 +23385,16,312,36,418,25,25 +23386,16,312,37,114,35,35 +23387,16,312,37,264,35,35 +23388,16,312,37,399,35,35 +23389,16,312,38,114,35,35 +23390,16,312,38,264,35,35 +23391,16,312,38,399,35,35 +23392,16,312,39,114,20,20 +23393,16,312,40,114,20,20 +23394,16,312,41,114,30,30 +23395,16,312,41,122,30,30 +23396,16,312,41,114,30,30 +23397,16,312,42,122,28,28 +23398,16,312,43,114,30,30 +23399,16,312,43,122,30,30 +23400,16,312,43,114,30,30 +23401,16,312,44,122,28,28 +23402,16,312,60,72,35,35 +23403,16,312,61,72,30,30 +23404,16,312,62,73,35,35 +23405,16,312,63,73,35,35 +23406,16,312,64,73,35,35 +23407,16,312,45,129,10,10 +23408,16,312,46,129,10,10 +23409,16,312,47,129,10,10 +23410,16,312,48,72,10,10 +23411,16,312,49,72,10,10 +23412,16,312,50,129,20,20 +23413,16,312,51,72,20,20 +23414,16,312,52,170,20,20 +23416,16,312,53,90,20,20 +23418,16,312,54,170,20,20 +23419,16,312,55,170,40,40 +23421,16,312,56,90,40,40 +23423,16,312,57,73,40,40 +23425,16,312,58,171,40,40 +23427,16,312,59,73,40,40 +23429,16,313,33,19,3,3 +23430,16,313,34,21,3,3 +23431,16,313,34,21,3,3 +23432,16,313,34,19,3,3 +23434,16,313,35,19,3,3 +23435,16,313,35,293,3,3 +23436,16,313,35,418,3,3 +23437,16,313,36,21,3,3 +23438,16,313,36,21,3,3 +23439,16,313,36,19,3,3 +23440,16,313,36,293,3,3 +23441,16,313,36,418,3,3 +23442,16,313,37,21,5,5 +23443,16,313,37,21,5,5 +23444,16,313,37,19,5,5 +23445,16,313,37,264,5,5 +23446,16,313,37,399,5,5 +23447,16,313,38,21,5,5 +23448,16,313,38,21,5,5 +23449,16,313,38,19,5,5 +23450,16,313,38,264,5,5 +23451,16,313,38,399,5,5 +23452,16,313,39,84,4,4 +23453,16,313,39,84,4,4 +23454,16,313,39,19,4,4 +23455,16,313,40,84,4,4 +23456,16,313,40,84,4,4 +23457,16,313,40,19,4,4 +23458,16,313,41,77,6,6 +23459,16,313,42,22,7,7 +23460,16,313,42,22,7,7 +23461,16,313,42,19,7,7 +23462,16,313,43,77,6,6 +23463,16,313,44,22,7,7 +23464,16,313,44,22,7,7 +23465,16,313,44,19,7,7 +23466,16,313,60,60,10,10 +23467,16,313,61,60,5,5 +23468,16,313,62,61,10,10 +23469,16,313,63,61,10,10 +23470,16,313,64,61,10,10 +23471,16,313,45,129,10,10 +23472,16,313,46,129,10,10 +23473,16,313,47,129,10,10 +23474,16,313,48,60,10,10 +23475,16,313,49,60,10,10 +23476,16,313,50,129,20,20 +23477,16,313,51,60,20,20 +23478,16,313,52,60,20,20 +23480,16,313,53,60,20,20 +23482,16,313,54,60,20,20 +23483,16,313,55,60,40,40 +23485,16,313,56,60,40,40 +23487,16,313,57,129,40,40 +23488,16,313,58,60,40,40 +23490,16,313,59,129,40,40 +23491,16,314,33,69,8,8 +23492,16,314,33,69,8,8 +23493,16,314,33,48,8,8 +23495,16,314,34,69,10,10 +23496,16,314,34,191,10,10 +23497,16,314,34,43,10,10 +23499,16,314,35,69,8,8 +23500,16,314,35,69,8,8 +23501,16,314,35,48,8,8 +23502,16,314,35,293,8,8 +23503,16,314,35,418,8,8 +23504,16,314,36,69,10,10 +23505,16,314,36,191,10,10 +23506,16,314,36,43,10,10 +23507,16,314,36,293,10,10 +23508,16,314,36,418,10,10 +23509,16,314,37,63,9,9 +23510,16,314,37,264,9,9 +23511,16,314,37,399,9,9 +23512,16,314,38,63,9,9 +23513,16,314,38,264,9,9 +23514,16,314,38,399,9,9 +23515,16,314,39,70,12,12 +23516,16,314,40,70,12,12 +23517,16,314,41,48,8,8 +23518,16,314,41,69,8,8 +23519,16,314,41,69,8,8 +23520,16,314,42,70,14,14 +23521,16,314,42,70,14,14 +23522,16,314,42,49,14,14 +23523,16,314,43,48,8,8 +23524,16,314,43,69,8,8 +23525,16,314,43,69,8,8 +23526,16,314,44,70,14,14 +23527,16,314,44,70,14,14 +23528,16,314,44,49,14,14 +23529,16,314,60,118,10,10 +23530,16,314,61,118,5,5 +23531,16,314,62,119,10,10 +23532,16,314,63,119,10,10 +23533,16,314,64,119,10,10 +23534,16,314,45,129,10,10 +23535,16,314,46,129,10,10 +23536,16,314,47,129,10,10 +23537,16,314,48,118,10,10 +23538,16,314,49,118,10,10 +23539,16,314,50,129,20,20 +23540,16,314,51,118,20,20 +23541,16,314,52,118,20,20 +23543,16,314,53,118,20,20 +23545,16,314,54,118,20,20 +23546,16,314,55,118,40,40 +23548,16,314,56,118,40,40 +23550,16,314,57,129,40,40 +23551,16,314,58,119,40,40 +23553,16,314,59,129,40,40 +23554,16,315,33,16,8,8 +23555,16,315,33,16,8,8 +23556,16,315,33,48,8,8 +23557,16,315,33,427,8,8 +23558,16,315,34,69,10,10 +23559,16,315,34,69,10,10 +23560,16,315,34,43,10,10 +23561,16,315,34,427,10,10 +23562,16,315,35,16,8,8 +23563,16,315,35,16,8,8 +23564,16,315,35,48,8,8 +23565,16,315,35,293,8,8 +23566,16,315,35,418,8,8 +23567,16,315,36,69,10,10 +23568,16,315,36,69,10,10 +23569,16,315,36,43,10,10 +23570,16,315,36,293,10,10 +23571,16,315,36,418,10,10 +23572,16,315,37,48,8,8 +23573,16,315,37,16,8,8 +23574,16,315,37,49,8,8 +23575,16,315,37,264,8,8 +23576,16,315,37,399,8,8 +23577,16,315,38,48,8,8 +23578,16,315,38,16,8,8 +23579,16,315,38,49,8,8 +23580,16,315,38,264,8,8 +23581,16,315,38,399,8,8 +23582,16,315,39,63,9,9 +23583,16,315,40,63,9,9 +23584,16,315,41,17,10,10 +23585,16,315,41,17,10,10 +23586,16,315,41,70,10,10 +23587,16,315,42,70,14,14 +23588,16,315,42,70,14,14 +23589,16,315,42,69,14,14 +23590,16,315,43,17,10,10 +23591,16,315,43,17,10,10 +23592,16,315,43,70,10,10 +23593,16,315,44,70,14,14 +23594,16,315,44,70,14,14 +23595,16,315,44,69,14,14 +23596,16,315,60,118,10,10 +23597,16,315,61,118,5,5 +23598,16,315,62,119,10,10 +23599,16,315,63,119,10,10 +23600,16,315,64,119,10,10 +23601,16,315,45,129,10,10 +23602,16,315,46,129,10,10 +23603,16,315,47,129,10,10 +23604,16,315,48,118,10,10 +23605,16,315,49,118,10,10 +23606,16,315,50,129,20,20 +23607,16,315,51,118,20,20 +23608,16,315,52,118,20,20 +23610,16,315,53,118,20,20 +23612,16,315,54,118,20,20 +23613,16,315,55,118,40,40 +23615,16,315,56,118,40,40 +23617,16,315,57,129,40,40 +23618,16,315,58,119,40,40 +23620,16,315,59,129,40,40 +23621,16,316,33,41,22,22 +23622,16,316,34,20,22,22 +23624,16,316,35,41,22,22 +23625,16,316,35,359,22,22 +23626,16,316,35,436,22,22 +23627,16,316,36,20,22,22 +23628,16,316,36,359,22,22 +23629,16,316,36,436,22,22 +23630,16,316,37,42,22,22 +23631,16,316,37,296,22,22 +23632,16,316,37,433,22,22 +23633,16,316,38,42,22,22 +23634,16,316,38,296,22,22 +23635,16,316,38,433,22,22 +23636,16,316,39,79,21,21 +23637,16,316,40,79,21,21 +23638,16,316,41,19,20,20 +23639,16,316,42,79,23,23 +23640,16,316,43,19,20,20 +23641,16,316,44,79,23,23 +23642,16,316,60,118,20,20 +23643,16,316,61,79,20,20 +23644,16,316,62,119,20,20 +23645,16,316,63,119,20,20 +23646,16,316,64,119,20,20 +23647,16,316,45,129,10,10 +23648,16,316,46,129,10,10 +23649,16,316,47,129,10,10 +23650,16,316,48,118,10,10 +23651,16,316,49,118,10,10 +23652,16,316,50,129,20,20 +23653,16,316,51,118,20,20 +23654,16,316,52,118,20,20 +23656,16,316,53,118,20,20 +23658,16,316,54,118,20,20 +23659,16,316,55,118,40,40 +23661,16,316,56,118,40,40 +23663,16,316,57,129,40,40 +23664,16,316,58,119,40,40 +23666,16,316,59,129,40,40 +23667,16,317,33,50,15,15 +23668,16,317,34,50,17,17 +23669,16,317,35,50,15,15 +23670,16,317,35,359,15,15 +23671,16,317,35,436,15,15 +23672,16,317,36,50,17,17 +23673,16,317,36,359,17,17 +23674,16,317,36,436,17,17 +23675,16,317,37,50,19,19 +23676,16,317,37,296,19,19 +23677,16,317,37,433,19,19 +23678,16,317,38,50,19,19 +23679,16,317,38,296,19,19 +23680,16,317,38,433,19,19 +23681,16,317,39,50,13,13 +23682,16,317,40,50,13,13 +23683,16,317,41,51,19,19 +23684,16,317,42,51,24,24 +23685,16,317,43,51,19,19 +23686,16,317,44,51,29,29 +23687,16,318,33,75,32,32 +23688,16,318,34,42,32,32 +23690,16,318,35,75,32,32 +23691,16,318,35,359,32,32 +23692,16,318,35,436,32,32 +23693,16,318,36,42,32,32 +23694,16,318,36,359,32,32 +23695,16,318,36,436,32,32 +23696,16,318,37,217,33,33 +23697,16,318,37,296,33,33 +23698,16,318,37,433,33,33 +23699,16,318,38,217,33,33 +23700,16,318,38,296,33,33 +23701,16,318,38,433,33,33 +23702,16,318,39,95,34,34 +23703,16,318,40,95,34,34 +23704,16,318,41,95,36,36 +23705,16,318,42,111,35,35 +23706,16,318,43,95,36,36 +23707,16,318,44,111,35,35 +23708,16,319,33,75,32,32 +23709,16,319,34,42,32,32 +23711,16,319,35,75,32,32 +23712,16,319,35,359,32,32 +23713,16,319,35,436,32,32 +23714,16,319,36,42,32,32 +23715,16,319,36,359,32,32 +23716,16,319,36,436,32,32 +23717,16,319,37,217,33,33 +23718,16,319,37,296,33,33 +23719,16,319,37,433,33,33 +23720,16,319,38,217,33,33 +23721,16,319,38,296,33,33 +23722,16,319,38,433,33,33 +23723,16,319,39,95,34,34 +23724,16,319,40,95,34,34 +23725,16,319,41,95,36,36 +23726,16,319,42,111,35,35 +23727,16,319,43,95,36,36 +23728,16,319,44,111,35,35 +23729,16,319,65,74,24,32 +23730,16,319,66,75,30,33 +23731,16,320,33,165,3,3 +23732,16,320,33,13,3,3 +23733,16,320,33,163,3,3 +23735,16,320,34,16,3,3 +23736,16,320,34,16,3,3 +23737,16,320,34,163,3,3 +23739,16,320,35,13,3,3 +23740,16,320,35,13,3,3 +23741,16,320,35,14,3,3 +23742,16,320,35,311,3,3 +23743,16,320,35,403,3,3 +23744,16,320,36,165,3,3 +23745,16,320,36,16,3,3 +23746,16,320,36,163,3,3 +23747,16,320,36,311,3,3 +23748,16,320,36,403,3,3 +23749,16,320,37,14,5,5 +23750,16,320,37,14,5,5 +23751,16,320,37,163,5,5 +23752,16,320,37,312,5,5 +23753,16,320,37,403,5,5 +23754,16,320,38,14,5,5 +23755,16,320,38,14,5,5 +23756,16,320,38,13,5,5 +23757,16,320,38,312,5,5 +23758,16,320,38,403,5,5 +23759,16,320,39,15,7,7 +23760,16,320,39,16,7,7 +23761,16,320,39,164,7,7 +23762,16,320,40,15,7,7 +23763,16,320,40,16,7,7 +23764,16,320,40,164,7,7 +23765,16,320,41,166,7,7 +23766,16,320,41,17,7,7 +23767,16,320,41,164,7,7 +23768,16,320,42,166,10,10 +23769,16,320,42,165,10,10 +23770,16,320,42,15,10,10 +23771,16,320,43,166,7,7 +23772,16,320,43,17,7,7 +23773,16,320,43,14,7,7 +23774,16,320,44,13,4,4 +23775,16,321,33,13,3,3 +23776,16,321,33,13,3,3 +23777,16,321,33,163,3,3 +23778,16,321,33,401,3,3 +23779,16,321,34,13,3,3 +23780,16,321,34,13,3,3 +23781,16,321,34,163,3,3 +23782,16,321,34,401,3,3 +23783,16,321,35,14,3,3 +23784,16,321,35,14,3,3 +23785,16,321,35,163,3,3 +23786,16,321,35,325,3,3 +23787,16,321,35,406,3,3 +23788,16,321,36,16,3,3 +23789,16,321,36,16,3,3 +23790,16,321,36,163,3,3 +23791,16,321,36,325,3,3 +23792,16,321,36,406,3,3 +23793,16,321,37,14,5,5 +23794,16,321,37,14,5,5 +23795,16,321,37,163,5,5 +23796,16,321,37,322,5,5 +23797,16,321,37,455,5,5 +23798,16,321,38,14,5,5 +23799,16,321,38,14,5,5 +23800,16,321,38,163,5,5 +23801,16,321,38,322,5,5 +23802,16,321,38,455,5,5 +23803,16,321,39,15,7,7 +23804,16,321,39,16,7,7 +23805,16,321,39,164,7,7 +23806,16,321,40,15,7,7 +23807,16,321,40,17,7,7 +23808,16,321,40,164,7,7 +23809,16,321,41,17,7,7 +23810,16,321,41,17,7,7 +23811,16,321,41,164,7,7 +23812,16,321,42,25,4,4 +23813,16,321,43,25,7,7 +23814,16,321,43,25,7,7 +23815,16,321,43,164,7,7 +23816,16,321,44,25,4,4 +23817,16,323,33,67,39,39 +23818,16,323,33,67,39,39 +23819,16,323,33,42,39,39 +23821,16,323,34,47,38,38 +23822,16,323,34,47,38,38 +23823,16,323,34,42,38,38 +23825,16,323,35,42,38,38 +23826,16,323,35,359,38,38 +23827,16,323,35,436,38,38 +23828,16,323,36,53,38,38 +23829,16,323,36,53,38,38 +23830,16,323,36,47,38,38 +23831,16,323,36,359,38,38 +23832,16,323,36,436,38,38 +23833,16,323,37,82,40,40 +23834,16,323,37,296,40,40 +23835,16,323,37,433,40,40 +23836,16,323,38,132,39,39 +23837,16,323,38,296,39,39 +23838,16,323,38,433,39,39 +23839,16,323,39,101,40,40 +23840,16,323,40,202,37,37 +23841,16,323,41,53,39,39 +23842,16,323,42,67,40,40 +23843,16,323,43,82,39,39 +23844,16,323,43,82,39,39 +23845,16,323,43,67,39,39 +23846,16,323,44,132,40,40 +23847,16,323,44,132,40,40 +23848,16,323,44,67,40,40 +23849,16,323,65,74,22,24 +23850,16,323,66,75,26,30 +23851,16,323,60,54,40,40 +23853,16,323,61,54,35,35 +23854,16,323,62,55,40,40 +23855,16,323,63,55,40,40 +23856,16,323,64,55,40,40 +23857,16,323,45,129,10,10 +23858,16,323,46,129,10,10 +23859,16,323,47,129,10,10 +23860,16,323,48,129,10,10 +23861,16,323,49,129,10,10 +23862,16,323,50,60,20,20 +23864,16,323,51,118,20,20 +23865,16,323,52,129,20,20 +23866,16,323,53,118,20,20 +23867,16,323,53,118,20,20 +23868,16,323,53,60,20,20 +23870,16,323,54,60,20,20 +23871,16,323,55,60,40,40 +23873,16,323,56,61,40,40 +23874,16,323,56,61,40,40 +23875,16,323,56,60,40,40 +23877,16,323,57,130,40,40 +23879,16,323,58,130,40,40 +23881,16,323,59,130,40,40 +23883,16,324,33,64,42,42 +23884,16,324,34,47,40,40 +23886,16,324,35,42,41,41 +23887,16,324,35,359,41,41 +23888,16,324,35,436,41,41 +23889,16,324,36,67,39,39 +23890,16,324,36,359,39,39 +23891,16,324,36,436,39,39 +23892,16,324,37,82,41,41 +23893,16,324,37,296,41,41 +23894,16,324,37,433,41,41 +23895,16,324,38,132,42,42 +23896,16,324,38,296,42,42 +23897,16,324,38,433,42,42 +23898,16,324,39,101,41,41 +23899,16,324,40,202,42,42 +23900,16,324,41,67,41,41 +23901,16,324,41,67,41,41 +23902,16,324,41,42,41,41 +23903,16,324,42,67,42,42 +23904,16,324,42,67,42,42 +23905,16,324,42,42,42,42 +23906,16,324,43,67,41,41 +23907,16,324,43,67,41,41 +23908,16,324,43,42,41,41 +23909,16,324,44,67,42,42 +23910,16,324,44,67,42,42 +23911,16,324,44,42,42,42 +23912,16,324,60,54,40,40 +23914,16,324,61,54,35,35 +23915,16,324,62,55,40,40 +23916,16,324,63,55,40,40 +23917,16,324,64,55,40,40 +23918,16,324,45,129,10,10 +23919,16,324,46,129,10,10 +23920,16,324,47,129,10,10 +23921,16,324,48,129,10,10 +23922,16,324,49,129,10,10 +23923,16,324,50,60,20,20 +23925,16,324,51,118,20,20 +23926,16,324,52,129,20,20 +23927,16,324,53,118,20,20 +23928,16,324,53,118,20,20 +23929,16,324,53,60,20,20 +23931,16,324,54,60,20,20 +23932,16,324,55,60,40,40 +23934,16,324,56,61,40,40 +23935,16,324,56,61,40,40 +23936,16,324,56,60,40,40 +23938,16,324,57,130,40,40 +23940,16,324,58,130,40,40 +23942,16,324,59,130,40,40 +23944,16,325,33,64,46,46 +23945,16,325,34,47,45,45 +23947,16,325,35,42,47,47 +23948,16,325,35,359,47,47 +23949,16,325,35,436,47,47 +23950,16,325,36,67,45,45 +23951,16,325,36,359,45,45 +23952,16,325,36,436,45,45 +23953,16,325,37,82,45,45 +23954,16,325,37,296,45,45 +23955,16,325,37,433,45,45 +23956,16,325,38,132,45,45 +23957,16,325,38,296,45,45 +23958,16,325,38,433,45,45 +23959,16,325,39,101,46,46 +23960,16,325,40,82,47,47 +23961,16,325,41,47,47,47 +23962,16,325,42,202,49,49 +23963,16,325,43,47,47,47 +23964,16,325,44,202,49,49 +23965,16,325,65,74,22,24 +23966,16,325,66,75,26,30 +23967,16,325,60,54,40,40 +23969,16,325,61,54,35,35 +23970,16,325,62,55,40,40 +23971,16,325,63,55,40,40 +23972,16,325,64,55,40,40 +23973,16,325,45,129,10,10 +23974,16,325,46,129,10,10 +23975,16,325,47,129,10,10 +23976,16,325,48,129,10,10 +23977,16,325,49,129,10,10 +23978,16,325,50,60,20,20 +23980,16,325,51,118,20,20 +23981,16,325,52,129,20,20 +23982,16,325,53,118,20,20 +23983,16,325,53,118,20,20 +23984,16,325,53,60,20,20 +23986,16,325,54,60,20,20 +23987,16,325,55,60,40,40 +23989,16,325,56,61,40,40 +23990,16,325,56,61,40,40 +23991,16,325,56,60,40,40 +23993,16,325,57,130,40,40 +23995,16,325,58,130,40,40 +23997,16,325,59,130,40,40 +23999,1,295,67,16,3,3 +24000,1,295,68,19,3,3 +24001,1,295,69,19,3,3 +24002,1,295,70,19,2,2 +24003,1,295,71,16,2,2 +24004,1,295,72,16,3,3 +24005,1,295,73,16,3,3 +24006,1,295,74,19,4,4 +24007,1,295,75,16,4,4 +24008,1,295,76,16,5,5 +24009,1,296,67,19,3,3 +24010,1,296,68,16,3,3 +24011,1,296,69,16,4,4 +24012,1,296,70,19,4,4 +24013,1,296,71,16,5,5 +24014,1,296,72,13,3,3 +24015,1,296,73,19,2,2 +24016,1,296,74,19,5,5 +24017,1,296,75,13,4,4 +24018,1,296,76,13,5,5 +24019,1,297,67,16,6,6 +24020,1,297,68,21,5,5 +24021,1,297,69,16,7,7 +24022,1,297,70,21,6,6 +24023,1,297,71,21,7,7 +24024,1,297,72,16,8,8 +24025,1,297,73,21,8,8 +24026,1,297,74,39,3,3 +24027,1,297,75,39,5,5 +24028,1,297,76,39,7,7 +24029,1,298,67,19,10,10 +24030,1,298,68,21,10,10 +24031,1,298,69,19,8,8 +24032,1,298,70,23,6,6 +24033,1,298,71,21,8,8 +24034,1,298,72,23,10,10 +24035,1,298,73,19,12,12 +24036,1,298,74,21,12,12 +24037,1,298,75,23,8,8 +24038,1,298,76,23,12,12 +24039,1,299,67,43,13,13 +24040,1,299,68,16,13,13 +24041,1,299,69,16,15,15 +24042,1,299,70,56,10,10 +24043,1,299,71,56,12,12 +24044,1,299,72,43,15,15 +24045,1,299,73,43,16,16 +24046,1,299,74,16,16,16 +24047,1,299,75,56,14,14 +24048,1,299,76,56,16,16 +24049,1,300,67,43,13,13 +24050,1,300,68,16,13,13 +24051,1,300,69,16,15,15 +24052,1,300,70,56,10,10 +24053,1,300,71,56,12,12 +24054,1,300,72,43,15,15 +24055,1,300,73,43,16,16 +24056,1,300,74,16,16,16 +24057,1,300,75,56,14,14 +24058,1,300,76,56,16,16 +24059,1,301,67,16,19,19 +24060,1,301,68,43,19,19 +24061,1,301,69,56,17,17 +24062,1,301,70,43,22,22 +24063,1,301,71,16,22,22 +24064,1,301,72,56,18,18 +24065,1,301,73,58,18,18 +24066,1,301,74,58,20,20 +24067,1,301,75,56,19,19 +24068,1,301,76,56,20,20 +24069,1,302,67,16,18,18 +24070,1,302,68,56,18,18 +24071,1,302,69,23,17,17 +24072,1,302,70,58,16,16 +24073,1,302,71,16,20,20 +24074,1,302,72,56,20,20 +24075,1,302,73,23,19,19 +24076,1,302,74,58,17,17 +24077,1,302,75,58,15,15 +24078,1,302,76,58,18,18 +24079,1,303,67,19,16,16 +24080,1,303,68,21,16,16 +24081,1,303,69,19,14,14 +24082,1,303,70,23,11,11 +24083,1,303,71,21,13,13 +24084,1,303,72,23,15,15 +24085,1,303,73,19,17,17 +24086,1,303,74,21,17,17 +24087,1,303,75,23,13,13 +24088,1,303,76,23,17,17 +24089,1,304,67,100,16,16 +24090,1,304,68,21,16,16 +24091,1,304,69,100,14,14 +24092,1,304,70,23,11,11 +24093,1,304,71,21,13,13 +24094,1,304,72,23,15,15 +24095,1,304,73,100,17,17 +24096,1,304,74,21,17,17 +24097,1,304,75,23,13,13 +24098,1,304,76,23,17,17 +24099,1,305,67,23,14,14 +24100,1,305,68,21,15,15 +24101,1,305,69,23,12,12 +24102,1,305,70,96,9,9 +24103,1,305,71,21,13,13 +24104,1,305,72,96,13,13 +24105,1,305,73,23,15,15 +24106,1,305,74,21,17,17 +24107,1,305,75,96,11,11 +24108,1,305,76,96,15,15 +24109,1,276,67,43,24,24 +24110,1,276,68,16,25,25 +24111,1,276,69,16,23,23 +24112,1,276,70,48,24,24 +24113,1,276,71,43,22,22 +24114,1,276,72,48,26,26 +24115,1,276,73,43,26,26 +24116,1,276,74,16,27,27 +24117,1,276,75,44,28,28 +24118,1,276,76,44,30,30 +24119,1,306,67,43,24,24 +24120,1,306,68,16,25,25 +24121,1,306,69,16,27,27 +24122,1,306,70,48,24,24 +24123,1,306,71,43,22,22 +24124,1,306,72,48,26,26 +24125,1,306,73,43,26,26 +24126,1,306,74,132,25,25 +24127,1,306,75,44,28,28 +24128,1,306,76,44,30,30 +24129,1,307,67,43,24,24 +24130,1,307,68,16,26,26 +24131,1,307,69,132,23,23 +24132,1,307,70,48,24,24 +24133,1,307,71,43,22,22 +24134,1,307,72,48,26,26 +24135,1,307,73,43,26,26 +24136,1,307,74,44,30,30 +24137,1,307,75,17,28,28 +24138,1,307,76,17,30,30 +24139,1,308,67,43,24,24 +24140,1,308,68,132,26,26 +24141,1,308,69,16,23,23 +24142,1,308,70,48,26,26 +24143,1,308,71,43,22,22 +24144,1,308,72,48,28,28 +24145,1,308,73,43,26,26 +24146,1,308,74,44,30,30 +24147,1,308,75,17,28,28 +24148,1,308,76,17,30,30 +24149,1,309,67,21,20,20 +24150,1,309,68,21,22,22 +24151,1,309,69,19,18,18 +24152,1,309,70,84,20,20 +24153,1,309,71,19,20,20 +24154,1,309,72,84,18,18 +24155,1,309,73,84,22,22 +24156,1,309,74,19,22,22 +24157,1,309,75,20,23,23 +24158,1,309,76,20,25,25 +24159,1,310,67,21,20,20 +24160,1,310,68,21,22,22 +24161,1,310,69,20,25,25 +24162,1,310,70,84,24,24 +24163,1,310,71,20,27,27 +24164,1,310,72,84,26,26 +24165,1,310,73,84,28,28 +24166,1,310,74,20,29,29 +24167,1,310,75,22,25,25 +24168,1,310,76,22,27,27 +24169,1,311,67,21,20,20 +24170,1,311,68,21,22,22 +24171,1,311,69,20,25,25 +24172,1,311,70,84,24,24 +24173,1,311,71,22,25,25 +24174,1,311,72,84,26,26 +24175,1,311,73,84,28,28 +24176,1,311,74,20,29,29 +24177,1,311,75,22,27,27 +24178,1,311,76,22,29,29 +24179,1,277,77,72,5,5 +24180,1,277,78,72,10,10 +24181,1,277,79,72,15,15 +24182,1,277,80,72,5,5 +24183,1,277,81,72,10,10 +24184,1,277,82,72,15,15 +24185,1,277,83,72,20,20 +24186,1,277,84,72,30,30 +24187,1,277,85,72,35,35 +24188,1,277,86,72,40,40 +24189,1,278,77,72,5,5 +24190,1,278,78,72,10,10 +24191,1,278,79,72,15,15 +24192,1,278,80,72,5,5 +24193,1,278,81,72,10,10 +24194,1,278,82,72,15,15 +24195,1,278,83,72,20,20 +24196,1,278,84,72,30,30 +24197,1,278,85,72,35,35 +24198,1,278,86,72,40,40 +24199,1,312,67,19,21,21 +24200,1,312,68,16,23,23 +24201,1,312,69,20,30,30 +24202,1,312,70,19,23,23 +24203,1,312,71,16,21,21 +24204,1,312,72,17,30,30 +24205,1,312,73,17,32,32 +24206,1,312,74,114,28,28 +24207,1,312,75,114,30,30 +24208,1,312,76,114,32,32 +24209,1,312,77,72,5,5 +24210,1,312,78,72,10,10 +24211,1,312,79,72,15,15 +24212,1,312,80,72,5,5 +24213,1,312,81,72,10,10 +24214,1,312,82,72,15,15 +24215,1,312,83,72,20,20 +24216,1,312,84,72,30,30 +24217,1,312,85,72,35,35 +24218,1,312,86,72,40,40 +24219,1,313,67,19,3,3 +24220,1,313,68,32,3,3 +24221,1,313,69,19,4,4 +24222,1,313,70,32,4,4 +24223,1,313,71,19,2,2 +24224,1,313,72,32,2,2 +24225,1,313,73,21,3,3 +24226,1,313,74,21,5,5 +24227,1,313,75,29,3,3 +24228,1,313,76,29,4,4 +24229,1,329,67,23,26,26 +24230,1,329,68,132,33,33 +24231,1,329,69,21,26,26 +24232,1,329,70,22,38,38 +24233,1,329,71,132,38,38 +24234,1,329,72,22,38,38 +24235,1,329,73,24,41,41 +24236,1,329,74,132,43,43 +24237,1,329,75,22,41,41 +24238,1,329,76,22,43,43 +24239,1,314,67,13,7,7 +24240,1,314,68,14,8,8 +24241,1,314,69,16,12,12 +24242,1,314,70,43,12,12 +24243,1,314,71,43,13,13 +24244,1,314,72,63,10,10 +24245,1,314,73,43,14,14 +24246,1,314,74,16,13,13 +24247,1,314,75,63,8,8 +24248,1,314,76,63,12,12 +24249,1,315,67,13,8,8 +24250,1,315,68,14,9,9 +24251,1,315,69,16,13,13 +24252,1,315,70,43,12,12 +24253,1,315,71,43,13,13 +24254,1,315,72,63,12,12 +24255,1,315,73,43,14,14 +24256,1,315,74,63,10,10 +24257,1,315,75,11,7,7 +24258,1,315,76,10,8,8 +24259,1,321,67,13,4,4 +24260,1,321,68,14,5,5 +24261,1,321,69,13,3,3 +24262,1,321,70,13,5,5 +24263,1,321,71,14,4,4 +24264,1,321,72,14,6,6 +24265,1,321,73,11,4,4 +24266,1,321,74,10,3,3 +24267,1,321,75,25,3,3 +24268,1,321,76,25,5,5 +24269,1,290,67,41,8,8 +24270,1,290,68,41,7,7 +24271,1,290,69,41,9,9 +24272,1,290,70,74,8,8 +24273,1,290,71,41,6,6 +24274,1,290,72,41,10,10 +24275,1,290,73,74,10,10 +24276,1,290,74,46,8,8 +24277,1,290,75,41,11,11 +24278,1,290,76,35,8,8 +24279,1,326,67,41,8,8 +24280,1,326,68,41,7,7 +24281,1,326,69,74,7,7 +24282,1,326,70,74,8,8 +24283,1,326,71,41,9,9 +24284,1,326,72,46,10,10 +24285,1,326,73,41,10,10 +24286,1,326,74,41,11,11 +24287,1,326,75,35,9,9 +24288,1,326,76,74,9,9 +24289,1,327,67,41,9,9 +24290,1,327,68,74,9,9 +24291,1,327,69,41,10,10 +24292,1,327,70,74,10,10 +24293,1,327,71,41,11,11 +24294,1,327,72,46,10,10 +24295,1,327,73,46,12,12 +24296,1,327,74,35,10,10 +24297,1,327,75,41,12,12 +24298,1,327,76,35,12,12 +24299,1,293,67,41,16,16 +24300,1,293,68,41,17,17 +24301,1,293,69,74,17,17 +24302,1,293,70,66,15,15 +24303,1,293,71,74,16,16 +24304,1,293,72,41,18,18 +24305,1,293,73,41,15,15 +24306,1,293,74,66,17,17 +24307,1,293,75,95,13,13 +24308,1,293,76,95,15,15 +24309,1,330,67,100,21,21 +24310,1,330,68,81,21,21 +24311,1,330,69,25,20,20 +24312,1,330,70,25,24,24 +24313,1,330,71,81,23,23 +24314,1,330,72,100,23,23 +24315,1,330,73,82,32,32 +24316,1,330,74,82,35,35 +24317,1,330,75,125,33,33 +24318,1,330,76,125,36,36 +24319,1,331,67,66,24,24 +24320,1,331,68,74,26,26 +24321,1,331,69,41,22,22 +24322,1,331,70,95,36,36 +24323,1,331,71,95,39,39 +24324,1,331,72,95,42,42 +24325,1,331,73,75,41,41 +24326,1,331,74,42,41,41 +24327,1,331,75,67,42,42 +24328,1,331,76,105,43,43 +24329,1,336,67,92,20,20 +24330,1,336,68,92,21,21 +24331,1,336,69,92,22,22 +24332,1,336,70,92,23,23 +24333,1,336,71,92,19,19 +24334,1,336,72,92,18,18 +24335,1,336,73,92,24,24 +24336,1,336,74,104,20,20 +24337,1,336,75,104,22,22 +24338,1,336,76,93,25,25 +24339,1,337,67,92,20,20 +24340,1,337,68,92,21,21 +24341,1,337,69,92,22,22 +24342,1,337,70,92,23,23 +24343,1,337,71,92,19,19 +24344,1,337,72,92,18,18 +24345,1,337,73,93,25,25 +24346,1,337,74,104,20,20 +24347,1,337,75,104,22,22 +24348,1,337,76,92,24,24 +24349,1,338,67,92,20,20 +24350,1,338,68,92,21,21 +24351,1,338,69,92,22,22 +24352,1,338,70,92,23,23 +24353,1,338,71,92,19,19 +24354,1,338,72,92,18,18 +24355,1,338,73,93,25,25 +24356,1,338,74,104,20,20 +24357,1,338,75,104,22,22 +24358,1,338,76,92,24,24 +24359,1,339,67,92,21,21 +24360,1,339,68,92,22,22 +24361,1,339,69,92,23,23 +24362,1,339,70,92,24,24 +24363,1,339,71,92,20,20 +24364,1,339,72,92,19,19 +24365,1,339,73,93,26,26 +24366,1,339,74,104,22,22 +24367,1,339,75,104,24,24 +24368,1,339,76,93,28,28 +24369,1,340,67,92,21,21 +24370,1,340,68,92,22,22 +24371,1,340,69,92,23,23 +24372,1,340,70,92,24,24 +24373,1,340,71,92,20,20 +24374,1,340,72,93,28,28 +24375,1,340,73,104,22,22 +24376,1,340,74,104,24,24 +24377,1,340,75,93,28,28 +24378,1,340,76,93,30,30 +24379,1,259,67,120,30,30 +24380,1,259,68,116,30,30 +24381,1,259,69,90,32,32 +24382,1,259,70,116,32,32 +24383,1,259,71,79,28,28 +24384,1,259,72,86,30,30 +24385,1,259,73,79,30,30 +24386,1,259,74,86,28,28 +24387,1,259,75,87,38,38 +24388,1,259,76,117,37,37 +24389,1,260,67,86,30,30 +24390,1,260,68,79,30,30 +24391,1,260,69,86,32,32 +24392,1,260,70,79,32,32 +24393,1,260,71,116,28,28 +24394,1,260,72,120,30,30 +24395,1,260,73,116,30,30 +24396,1,260,74,90,28,28 +24397,1,260,75,42,30,30 +24398,1,260,76,80,37,37 +24399,1,261,67,79,31,31 +24400,1,261,68,86,31,31 +24401,1,261,69,79,33,33 +24402,1,261,70,86,33,33 +24403,1,261,71,116,29,29 +24404,1,261,72,90,31,31 +24405,1,261,73,116,31,31 +24406,1,261,74,90,29,29 +24407,1,261,75,117,39,39 +24408,1,261,76,87,37,37 +24409,1,262,67,116,31,31 +24410,1,262,68,90,31,31 +24411,1,262,69,116,33,33 +24412,1,262,70,90,33,33 +24413,1,262,71,79,29,29 +24414,1,262,72,86,31,31 +24415,1,262,73,79,31,31 +24416,1,262,74,86,29,29 +24417,1,262,75,80,39,39 +24418,1,262,76,42,32,32 +24419,1,341,67,109,32,32 +24420,1,341,68,109,30,30 +24421,1,341,69,77,34,34 +24422,1,341,70,77,30,30 +24423,1,341,71,58,34,34 +24424,1,341,72,77,32,32 +24425,1,341,73,88,30,30 +24426,1,341,74,77,28,28 +24427,1,341,75,110,37,37 +24428,1,341,76,89,39,39 +24429,1,258,67,86,30,30 +24430,1,258,68,79,30,30 +24431,1,258,69,90,30,30 +24432,1,258,70,116,30,30 +24433,1,258,71,116,28,28 +24434,1,258,72,41,21,21 +24435,1,258,73,42,29,29 +24436,1,258,74,54,28,28 +24437,1,258,75,90,28,28 +24438,1,258,76,55,38,38 +24439,1,332,67,66,22,22 +24440,1,332,68,74,24,24 +24441,1,332,69,41,26,26 +24442,1,332,70,95,36,36 +24443,1,332,71,95,39,39 +24444,1,332,72,95,42,42 +24445,1,332,73,67,41,41 +24446,1,332,74,42,40,40 +24447,1,332,75,105,40,40 +24448,1,332,76,75,43,43 +24449,1,317,67,50,18,18 +24450,1,317,68,50,19,19 +24451,1,317,69,50,17,17 +24452,1,317,70,50,20,20 +24453,1,317,71,50,16,16 +24454,1,317,72,50,15,15 +24455,1,317,73,50,21,21 +24456,1,317,74,50,22,22 +24457,1,317,75,51,29,29 +24458,1,317,76,51,31,31 +24459,1,333,67,66,24,24 +24460,1,333,68,74,26,26 +24461,1,333,69,41,22,22 +24462,1,333,70,95,42,42 +24463,1,333,71,49,40,40 +24464,1,333,72,95,45,45 +24465,1,333,73,75,43,43 +24466,1,333,74,42,41,41 +24467,1,333,75,67,42,42 +24468,1,333,76,67,45,45 +24469,1,342,67,58,32,32 +24470,1,342,68,109,34,34 +24471,1,342,69,109,34,34 +24472,1,342,70,77,30,30 +24473,1,342,71,109,30,30 +24474,1,342,72,77,32,32 +24475,1,342,73,88,30,30 +24476,1,342,74,77,28,28 +24477,1,342,75,110,39,39 +24478,1,342,76,89,37,37 +24479,1,343,67,109,31,31 +24480,1,343,68,58,33,33 +24481,1,343,69,109,35,35 +24482,1,343,70,77,32,32 +24483,1,343,71,77,34,34 +24484,1,343,72,110,40,40 +24485,1,343,73,88,34,34 +24486,1,343,74,110,38,38 +24487,1,343,75,77,36,36 +24488,1,343,76,89,42,42 +24489,1,344,67,109,33,33 +24490,1,344,68,109,31,31 +24491,1,344,69,58,35,35 +24492,1,344,70,77,32,32 +24493,1,344,71,109,31,31 +24494,1,344,72,110,40,40 +24495,1,344,73,77,34,34 +24496,1,344,74,88,35,35 +24497,1,344,75,110,42,42 +24498,1,344,76,89,42,42 +24499,1,346,67,32,24,24 +24500,1,346,68,84,26,26 +24501,1,346,69,46,22,22 +24502,1,346,70,102,25,25 +24503,1,346,71,33,33,33 +24504,1,346,72,102,23,23 +24505,1,346,73,29,24,24 +24506,1,346,74,47,25,25 +24507,1,346,75,115,25,25 +24508,1,346,76,123,28,28 +24509,1,347,67,32,22,22 +24510,1,347,68,111,26,26 +24511,1,347,69,46,23,23 +24512,1,347,70,102,25,25 +24513,1,347,71,33,30,30 +24514,1,347,72,102,27,27 +24515,1,347,73,30,30,30 +24516,1,347,74,49,32,32 +24517,1,347,75,113,26,26 +24518,1,347,76,128,28,28 +24519,1,348,67,32,25,25 +24520,1,348,68,84,26,26 +24521,1,348,69,48,23,23 +24522,1,348,70,102,24,24 +24523,1,348,71,33,33,33 +24524,1,348,72,102,26,26 +24525,1,348,73,29,25,25 +24526,1,348,74,49,31,31 +24527,1,348,75,128,26,26 +24528,1,348,76,115,28,28 +24529,1,345,67,32,22,22 +24530,1,345,68,111,25,25 +24531,1,345,69,48,22,22 +24532,1,345,70,102,24,24 +24533,1,345,71,33,31,31 +24534,1,345,72,102,25,25 +24535,1,345,73,30,31,31 +24536,1,345,74,47,30,30 +24537,1,345,75,123,23,23 +24538,1,345,76,113,23,23 +24539,1,324,67,85,51,51 +24540,1,324,68,49,51,51 +24541,1,324,69,64,51,51 +24542,1,324,70,112,52,52 +24543,1,324,71,105,52,52 +24544,1,324,72,101,52,52 +24545,1,324,73,113,56,56 +24546,1,324,74,40,54,54 +24547,1,324,75,132,55,55 +24548,1,324,76,132,60,60 +24549,1,325,67,112,55,55 +24550,1,325,68,105,55,55 +24551,1,325,69,101,55,55 +24552,1,325,70,113,64,64 +24553,1,325,71,47,64,64 +24554,1,325,72,26,64,64 +24555,1,325,73,24,57,57 +24556,1,325,74,132,65,65 +24557,1,325,75,132,63,63 +24558,1,325,76,132,67,67 +24559,1,323,67,42,46,46 +24560,1,323,68,97,46,46 +24561,1,323,69,82,46,46 +24562,1,323,70,85,49,49 +24563,1,323,71,49,49,49 +24564,1,323,72,24,52,52 +24565,1,323,73,64,49,49 +24566,1,323,74,47,52,52 +24567,1,323,75,26,53,53 +24568,1,323,76,132,53,53 +24569,1,328,67,41,16,16 +24570,1,328,68,41,17,17 +24571,1,328,69,74,17,17 +24572,1,328,70,66,15,15 +24573,1,328,71,74,16,16 +24574,1,328,72,41,18,18 +24575,1,328,73,66,17,17 +24576,1,328,74,95,17,17 +24577,1,328,75,95,13,13 +24578,1,328,76,74,18,18 +24579,2,295,67,16,3,3 +24580,2,295,68,19,3,3 +24581,2,295,69,19,3,3 +24582,2,295,70,19,2,2 +24583,2,295,71,16,2,2 +24584,2,295,72,16,3,3 +24585,2,295,73,16,3,3 +24586,2,295,74,19,4,4 +24587,2,295,75,16,4,4 +24588,2,295,76,16,5,5 +24589,2,296,67,19,3,3 +24590,2,296,68,16,3,3 +24591,2,296,69,16,4,4 +24592,2,296,70,19,4,4 +24593,2,296,71,16,5,5 +24594,2,296,72,10,3,3 +24595,2,296,73,19,2,2 +24596,2,296,74,19,5,5 +24597,2,296,75,10,4,4 +24598,2,296,76,10,5,5 +24599,2,297,67,16,6,6 +24600,2,297,68,21,5,5 +24601,2,297,69,16,7,7 +24602,2,297,70,21,6,6 +24603,2,297,71,21,7,7 +24604,2,297,72,16,8,8 +24605,2,297,73,21,8,8 +24606,2,297,74,39,3,3 +24607,2,297,75,39,5,5 +24608,2,297,76,39,7,7 +24609,2,298,67,19,10,10 +24610,2,298,68,21,10,10 +24611,2,298,69,19,8,8 +24612,2,298,70,27,6,6 +24613,2,298,71,21,8,8 +24614,2,298,72,27,10,10 +24615,2,298,73,19,12,12 +24616,2,298,74,21,12,12 +24617,2,298,75,27,8,8 +24618,2,298,76,27,12,12 +24619,2,299,67,69,13,13 +24620,2,299,68,16,13,13 +24621,2,299,69,16,15,15 +24622,2,299,70,52,10,10 +24623,2,299,71,52,12,12 +24624,2,299,72,69,15,15 +24625,2,299,73,69,16,16 +24626,2,299,74,16,16,16 +24627,2,299,75,52,14,14 +24628,2,299,76,52,16,16 +24629,2,300,67,69,13,13 +24630,2,300,68,16,13,13 +24631,2,300,69,16,15,15 +24632,2,300,70,52,10,10 +24633,2,300,71,52,12,12 +24634,2,300,72,69,15,15 +24635,2,300,73,69,16,16 +24636,2,300,74,16,16,16 +24637,2,300,75,52,14,14 +24638,2,300,76,52,16,16 +24639,2,301,67,16,19,19 +24640,2,301,68,69,19,19 +24641,2,301,69,52,17,17 +24642,2,301,70,69,22,22 +24643,2,301,71,16,22,22 +24644,2,301,72,52,18,18 +24645,2,301,73,37,18,18 +24646,2,301,74,37,20,20 +24647,2,301,75,52,19,19 +24648,2,301,76,52,20,20 +24649,2,302,67,16,18,18 +24650,2,302,68,52,18,18 +24651,2,302,69,27,17,17 +24652,2,302,70,37,16,16 +24653,2,302,71,16,20,20 +24654,2,302,72,52,20,20 +24655,2,302,73,27,19,19 +24656,2,302,74,37,17,17 +24657,2,302,75,37,15,15 +24658,2,302,76,37,18,18 +24659,2,303,67,19,16,16 +24660,2,303,68,21,16,16 +24661,2,303,69,19,14,14 +24662,2,303,70,27,11,11 +24663,2,303,71,21,13,13 +24664,2,303,72,27,15,15 +24665,2,303,73,19,17,17 +24666,2,303,74,21,17,17 +24667,2,303,75,27,13,13 +24668,2,303,76,27,17,17 +24669,2,304,67,100,16,16 +24670,2,304,68,21,16,16 +24671,2,304,69,100,14,14 +24672,2,304,70,27,11,11 +24673,2,304,71,21,13,13 +24674,2,304,72,27,15,15 +24675,2,304,73,100,17,17 +24676,2,304,74,21,17,17 +24677,2,304,75,27,13,13 +24678,2,304,76,27,17,17 +24679,2,305,67,27,14,14 +24680,2,305,68,21,15,15 +24681,2,305,69,27,12,12 +24682,2,305,70,96,9,9 +24683,2,305,71,21,13,13 +24684,2,305,72,96,13,13 +24685,2,305,73,27,15,15 +24686,2,305,74,21,17,17 +24687,2,305,75,96,11,11 +24688,2,305,76,96,15,15 +24689,2,276,67,69,24,24 +24690,2,276,68,16,25,25 +24691,2,276,69,16,23,23 +24692,2,276,70,48,24,24 +24693,2,276,71,69,22,22 +24694,2,276,72,48,26,26 +24695,2,276,73,69,26,26 +24696,2,276,74,16,27,27 +24697,2,276,75,70,28,28 +24698,2,276,76,70,30,30 +24699,2,306,67,69,24,24 +24700,2,306,68,16,25,25 +24701,2,306,69,16,27,27 +24702,2,306,70,48,24,24 +24703,2,306,71,69,22,22 +24704,2,306,72,48,26,26 +24705,2,306,73,69,26,26 +24706,2,306,74,132,25,25 +24707,2,306,75,70,28,28 +24708,2,306,76,70,30,30 +24709,2,307,67,69,24,24 +24710,2,307,68,16,26,26 +24711,2,307,69,132,23,23 +24712,2,307,70,48,24,24 +24713,2,307,71,69,22,22 +24714,2,307,72,48,26,26 +24715,2,307,73,69,26,26 +24716,2,307,74,70,30,30 +24717,2,307,75,17,28,28 +24718,2,307,76,17,30,30 +24719,2,308,67,69,24,24 +24720,2,308,68,132,26,26 +24721,2,308,69,16,23,23 +24722,2,308,70,48,26,26 +24723,2,308,71,69,22,22 +24724,2,308,72,48,28,28 +24725,2,308,73,69,26,26 +24726,2,308,74,70,30,30 +24727,2,308,75,17,28,28 +24728,2,308,76,17,30,30 +24729,2,309,67,21,20,20 +24730,2,309,68,21,22,22 +24731,2,309,69,19,18,18 +24732,2,309,70,84,20,20 +24733,2,309,71,19,20,20 +24734,2,309,72,84,18,18 +24735,2,309,73,84,22,22 +24736,2,309,74,19,22,22 +24737,2,309,75,20,23,23 +24738,2,309,76,20,25,25 +24739,2,310,67,21,20,20 +24740,2,310,68,21,22,22 +24741,2,310,69,20,25,25 +24742,2,310,70,84,24,24 +24743,2,310,71,20,27,27 +24744,2,310,72,84,26,26 +24745,2,310,73,84,28,28 +24746,2,310,74,20,29,29 +24747,2,310,75,22,25,25 +24748,2,310,76,22,27,27 +24749,2,311,67,21,20,20 +24750,2,311,68,21,22,22 +24751,2,311,69,20,25,25 +24752,2,311,70,84,24,24 +24753,2,311,71,22,25,25 +24754,2,311,72,84,26,26 +24755,2,311,73,84,28,28 +24756,2,311,74,20,29,29 +24757,2,311,75,22,27,27 +24758,2,311,76,22,29,29 +24759,2,277,77,72,5,5 +24760,2,277,78,72,10,10 +24761,2,277,79,72,15,15 +24762,2,277,80,72,5,5 +24763,2,277,81,72,10,10 +24764,2,277,82,72,15,15 +24765,2,277,83,72,20,20 +24766,2,277,84,72,30,30 +24767,2,277,85,72,35,35 +24768,2,277,86,72,40,40 +24769,2,278,77,72,5,5 +24770,2,278,78,72,10,10 +24771,2,278,79,72,15,15 +24772,2,278,80,72,5,5 +24773,2,278,81,72,10,10 +24774,2,278,82,72,15,15 +24775,2,278,83,72,20,20 +24776,2,278,84,72,30,30 +24777,2,278,85,72,35,35 +24778,2,278,86,72,40,40 +24779,2,312,67,19,21,21 +24780,2,312,68,16,23,23 +24781,2,312,69,20,30,30 +24782,2,312,70,19,23,23 +24783,2,312,71,16,21,21 +24784,2,312,72,17,30,30 +24785,2,312,73,17,32,32 +24786,2,312,74,114,28,28 +24787,2,312,75,114,30,30 +24788,2,312,76,114,32,32 +24789,2,312,77,72,5,5 +24790,2,312,78,72,10,10 +24791,2,312,79,72,15,15 +24792,2,312,80,72,5,5 +24793,2,312,81,72,10,10 +24794,2,312,82,72,15,15 +24795,2,312,83,72,20,20 +24796,2,312,84,72,30,30 +24797,2,312,85,72,35,35 +24798,2,312,86,72,40,40 +24799,2,313,67,19,3,3 +24800,2,313,68,29,3,3 +24801,2,313,69,19,4,4 +24802,2,313,70,29,4,4 +24803,2,313,71,19,2,2 +24804,2,313,72,29,2,2 +24805,2,313,73,21,3,3 +24806,2,313,74,21,5,5 +24807,2,313,75,32,3,3 +24808,2,313,76,32,4,4 +24809,2,329,67,27,26,26 +24810,2,329,68,132,33,33 +24811,2,329,69,21,26,26 +24812,2,329,70,22,38,38 +24813,2,329,71,132,38,38 +24814,2,329,72,22,38,38 +24815,2,329,73,28,41,41 +24816,2,329,74,132,43,43 +24817,2,329,75,22,41,41 +24818,2,329,76,22,43,43 +24819,2,314,67,10,7,7 +24820,2,314,68,11,8,8 +24821,2,314,69,16,12,12 +24822,2,314,70,69,12,12 +24823,2,314,71,69,13,13 +24824,2,314,72,63,10,10 +24825,2,314,73,69,14,14 +24826,2,314,74,16,13,13 +24827,2,314,75,63,8,8 +24828,2,314,76,63,12,12 +24829,2,315,67,10,8,8 +24830,2,315,68,11,9,9 +24831,2,315,69,16,13,13 +24832,2,315,70,69,12,12 +24833,2,315,71,69,13,13 +24834,2,315,72,63,12,12 +24835,2,315,73,69,14,14 +24836,2,315,74,63,10,10 +24837,2,315,75,14,7,7 +24838,2,315,76,13,8,8 +24839,2,321,67,10,4,4 +24840,2,321,68,11,5,5 +24841,2,321,69,10,3,3 +24842,2,321,70,10,5,5 +24843,2,321,71,11,4,4 +24844,2,321,72,11,6,6 +24845,2,321,73,14,4,4 +24846,2,321,74,13,3,3 +24847,2,321,75,25,3,3 +24848,2,321,76,25,5,5 +24849,2,290,67,41,8,8 +24850,2,290,68,41,7,7 +24851,2,290,69,41,9,9 +24852,2,290,70,74,8,8 +24853,2,290,71,41,6,6 +24854,2,290,72,41,10,10 +24855,2,290,73,74,10,10 +24856,2,290,74,46,8,8 +24857,2,290,75,41,11,11 +24858,2,290,76,35,8,8 +24859,2,326,67,41,8,8 +24860,2,326,68,41,7,7 +24861,2,326,69,74,7,7 +24862,2,326,70,74,8,8 +24863,2,326,71,41,9,9 +24864,2,326,72,46,10,10 +24865,2,326,73,41,10,10 +24866,2,326,74,41,11,11 +24867,2,326,75,35,9,9 +24868,2,326,76,74,9,9 +24869,2,327,67,41,9,9 +24870,2,327,68,74,9,9 +24871,2,327,69,41,10,10 +24872,2,327,70,74,10,10 +24873,2,327,71,41,11,11 +24874,2,327,72,46,10,10 +24875,2,327,73,46,12,12 +24876,2,327,74,35,10,10 +24877,2,327,75,41,12,12 +24878,2,327,76,35,12,12 +24879,2,293,67,41,16,16 +24880,2,293,68,41,17,17 +24881,2,293,69,74,17,17 +24882,2,293,70,66,15,15 +24883,2,293,71,74,16,16 +24884,2,293,72,41,18,18 +24885,2,293,73,41,15,15 +24886,2,293,74,66,17,17 +24887,2,293,75,95,13,13 +24888,2,293,76,95,15,15 +24889,2,330,67,100,21,21 +24890,2,330,68,81,21,21 +24891,2,330,69,25,20,20 +24892,2,330,70,25,24,24 +24893,2,330,71,81,23,23 +24894,2,330,72,100,23,23 +24895,2,330,73,82,32,32 +24896,2,330,74,82,35,35 +24897,2,330,75,26,33,33 +24898,2,330,76,26,36,36 +24899,2,331,67,66,24,24 +24900,2,331,68,74,26,26 +24901,2,331,69,41,22,22 +24902,2,331,70,95,36,36 +24903,2,331,71,95,39,39 +24904,2,331,72,95,42,42 +24905,2,331,73,75,41,41 +24906,2,331,74,42,41,41 +24907,2,331,75,67,42,42 +24908,2,331,76,105,43,43 +24909,2,336,67,92,20,20 +24910,2,336,68,92,21,21 +24911,2,336,69,92,22,22 +24912,2,336,70,92,23,23 +24913,2,336,71,92,19,19 +24914,2,336,72,92,18,18 +24915,2,336,73,92,24,24 +24916,2,336,74,104,20,20 +24917,2,336,75,104,22,22 +24918,2,336,76,93,25,25 +24919,2,337,67,92,20,20 +24920,2,337,68,92,21,21 +24921,2,337,69,92,22,22 +24922,2,337,70,92,23,23 +24923,2,337,71,92,19,19 +24924,2,337,72,92,18,18 +24925,2,337,73,93,25,25 +24926,2,337,74,104,20,20 +24927,2,337,75,104,22,22 +24928,2,337,76,92,24,24 +24929,2,338,67,92,20,20 +24930,2,338,68,92,21,21 +24931,2,338,69,92,22,22 +24932,2,338,70,92,23,23 +24933,2,338,71,92,19,19 +24934,2,338,72,92,18,18 +24935,2,338,73,93,25,25 +24936,2,338,74,104,20,20 +24937,2,338,75,104,22,22 +24938,2,338,76,92,24,24 +24939,2,339,67,92,21,21 +24940,2,339,68,92,22,22 +24941,2,339,69,92,23,23 +24942,2,339,70,92,24,24 +24943,2,339,71,92,20,20 +24944,2,339,72,92,19,19 +24945,2,339,73,93,26,26 +24946,2,339,74,104,22,22 +24947,2,339,75,104,24,24 +24948,2,339,76,93,28,28 +24949,2,340,67,92,21,21 +24950,2,340,68,92,22,22 +24951,2,340,69,92,23,23 +24952,2,340,70,92,24,24 +24953,2,340,71,92,20,20 +24954,2,340,72,93,28,28 +24955,2,340,73,104,22,22 +24956,2,340,74,104,24,24 +24957,2,340,75,93,28,28 +24958,2,340,76,93,30,30 +24959,2,259,67,90,30,30 +24960,2,259,68,98,30,30 +24961,2,259,69,120,32,32 +24962,2,259,70,98,32,32 +24963,2,259,71,54,28,28 +24964,2,259,72,86,30,30 +24965,2,259,73,54,30,30 +24966,2,259,74,86,28,28 +24967,2,259,75,87,38,38 +24968,2,259,76,99,37,37 +24969,2,260,67,86,30,30 +24970,2,260,68,54,30,30 +24971,2,260,69,86,32,32 +24972,2,260,70,54,32,32 +24973,2,260,71,98,28,28 +24974,2,260,72,90,30,30 +24975,2,260,73,98,30,30 +24976,2,260,74,120,28,28 +24977,2,260,75,42,30,30 +24978,2,260,76,55,37,37 +24979,2,261,67,54,31,31 +24980,2,261,68,86,31,31 +24981,2,261,69,54,33,33 +24982,2,261,70,86,33,33 +24983,2,261,71,98,29,29 +24984,2,261,72,120,31,31 +24985,2,261,73,98,31,31 +24986,2,261,74,120,29,29 +24987,2,261,75,99,39,39 +24988,2,261,76,87,37,37 +24989,2,262,67,98,31,31 +24990,2,262,68,120,31,31 +24991,2,262,69,98,33,33 +24992,2,262,70,120,33,33 +24993,2,262,71,54,29,29 +24994,2,262,72,86,31,31 +24995,2,262,73,54,31,31 +24996,2,262,74,86,29,29 +24997,2,262,75,55,39,39 +24998,2,262,76,42,32,32 +24999,2,341,67,88,32,32 +25000,2,341,68,88,30,30 +25001,2,341,69,77,34,34 +25002,2,341,70,77,30,30 +25003,2,341,71,37,34,34 +25004,2,341,72,77,32,32 +25005,2,341,73,109,30,30 +25006,2,341,74,77,28,28 +25007,2,341,75,89,37,37 +25008,2,341,76,110,39,39 +25009,2,258,67,86,30,30 +25010,2,258,68,54,30,30 +25011,2,258,69,120,30,30 +25012,2,258,70,98,30,30 +25013,2,258,71,98,28,28 +25014,2,258,72,41,21,21 +25015,2,258,73,42,29,29 +25016,2,258,74,79,28,28 +25017,2,258,75,120,28,28 +25018,2,258,76,80,38,38 +25019,2,332,67,66,22,22 +25020,2,332,68,74,24,24 +25021,2,332,69,41,26,26 +25022,2,332,70,95,36,36 +25023,2,332,71,95,39,39 +25024,2,332,72,95,42,42 +25025,2,332,73,67,41,41 +25026,2,332,74,42,40,40 +25027,2,332,75,105,40,40 +25028,2,332,76,75,43,43 +25029,2,317,67,50,18,18 +25030,2,317,68,50,19,19 +25031,2,317,69,50,17,17 +25032,2,317,70,50,20,20 +25033,2,317,71,50,16,16 +25034,2,317,72,50,15,15 +25035,2,317,73,50,21,21 +25036,2,317,74,50,22,22 +25037,2,317,75,51,29,29 +25038,2,317,76,51,31,31 +25039,2,333,67,66,24,24 +25040,2,333,68,74,26,26 +25041,2,333,69,41,22,22 +25042,2,333,70,95,42,42 +25043,2,333,71,49,40,40 +25044,2,333,72,95,45,45 +25045,2,333,73,75,43,43 +25046,2,333,74,42,41,41 +25047,2,333,75,67,42,42 +25048,2,333,76,67,45,45 +25049,2,342,67,37,32,32 +25050,2,342,68,88,34,34 +25051,2,342,69,88,34,34 +25052,2,342,70,77,30,30 +25053,2,342,71,88,30,30 +25054,2,342,72,77,32,32 +25055,2,342,73,109,30,30 +25056,2,342,74,77,28,28 +25057,2,342,75,89,39,39 +25058,2,342,76,110,37,37 +25059,2,343,67,88,31,31 +25060,2,343,68,37,33,33 +25061,2,343,69,88,35,35 +25062,2,343,70,77,32,32 +25063,2,343,71,126,34,34 +25064,2,343,72,89,40,40 +25065,2,343,73,109,34,34 +25066,2,343,74,89,38,38 +25067,2,343,75,77,36,36 +25068,2,343,76,110,42,42 +25069,2,344,67,88,33,33 +25070,2,344,68,88,31,31 +25071,2,344,69,37,35,35 +25072,2,344,70,77,32,32 +25073,2,344,71,88,31,31 +25074,2,344,72,89,40,40 +25075,2,344,73,77,34,34 +25076,2,344,74,109,35,35 +25077,2,344,75,126,38,38 +25078,2,344,76,110,42,42 +25079,2,346,67,29,24,24 +25080,2,346,68,84,26,26 +25081,2,346,69,46,22,22 +25082,2,346,70,102,25,25 +25083,2,346,71,30,33,33 +25084,2,346,72,102,23,23 +25085,2,346,73,32,24,24 +25086,2,346,74,47,25,25 +25087,2,346,75,115,25,25 +25088,2,346,76,127,28,28 +25089,2,347,67,29,22,22 +25090,2,347,68,111,26,26 +25091,2,347,69,46,23,23 +25092,2,347,70,102,25,25 +25093,2,347,71,30,30,30 +25094,2,347,72,102,27,27 +25095,2,347,73,33,30,30 +25096,2,347,74,49,32,32 +25097,2,347,75,113,26,26 +25098,2,347,76,128,28,28 +25099,2,348,67,29,25,25 +25100,2,348,68,84,26,26 +25101,2,348,69,48,23,23 +25102,2,348,70,102,24,24 +25103,2,348,71,30,33,33 +25104,2,348,72,102,26,26 +25105,2,348,73,32,25,25 +25106,2,348,74,49,31,31 +25107,2,348,75,128,26,26 +25108,2,348,76,115,28,28 +25109,2,345,67,29,22,22 +25110,2,345,68,111,25,25 +25111,2,345,69,48,22,22 +25112,2,345,70,102,24,24 +25113,2,345,71,30,31,31 +25114,2,345,72,102,25,25 +25115,2,345,73,33,31,31 +25116,2,345,74,47,30,30 +25117,2,345,75,127,23,23 +25118,2,345,76,113,23,23 +25119,2,324,67,85,51,51 +25120,2,324,68,49,51,51 +25121,2,324,69,64,51,51 +25122,2,324,70,112,52,52 +25123,2,324,71,105,52,52 +25124,2,324,72,101,52,52 +25125,2,324,73,113,56,56 +25126,2,324,74,40,54,54 +25127,2,324,75,132,55,55 +25128,2,324,76,132,60,60 +25129,2,325,67,112,55,55 +25130,2,325,68,105,55,55 +25131,2,325,69,101,55,55 +25132,2,325,70,113,64,64 +25133,2,325,71,47,64,64 +25134,2,325,72,26,64,64 +25135,2,325,73,28,57,57 +25136,2,325,74,132,65,65 +25137,2,325,75,132,63,63 +25138,2,325,76,132,67,67 +25139,2,323,67,42,46,46 +25140,2,323,68,97,46,46 +25141,2,323,69,82,46,46 +25142,2,323,70,85,49,49 +25143,2,323,71,49,49,49 +25144,2,323,72,28,52,52 +25145,2,323,73,64,49,49 +25146,2,323,74,47,52,52 +25147,2,323,75,26,53,53 +25148,2,323,76,132,53,53 +25149,2,328,67,41,16,16 +25150,2,328,68,41,17,17 +25151,2,328,69,74,17,17 +25152,2,328,70,66,15,15 +25153,2,328,71,74,16,16 +25154,2,328,72,41,18,18 +25155,2,328,73,66,17,17 +25156,2,328,74,95,17,17 +25157,2,328,75,95,13,13 +25158,2,328,76,74,18,18 +25159,3,295,87,16,3,3 +25160,3,295,88,16,4,4 +25161,3,295,89,19,2,2 +25162,3,295,90,19,3,3 +25163,3,295,91,16,2,2 +25164,3,295,92,16,3,3 +25165,3,295,93,16,5,5 +25166,3,295,94,19,4,4 +25167,3,295,95,16,6,6 +25168,3,295,96,16,7,7 +25169,3,296,87,19,3,3 +25170,3,296,88,16,3,3 +25171,3,296,89,19,4,4 +25172,3,296,90,32,4,4 +25173,3,296,91,29,4,4 +25174,3,296,92,16,5,5 +25175,3,296,93,32,6,6 +25176,3,296,94,29,6,6 +25177,3,296,95,16,7,7 +25178,3,296,96,16,7,7 +25179,3,297,87,21,8,8 +25180,3,297,88,21,9,9 +25181,3,297,89,56,9,9 +25182,3,297,90,21,10,10 +25183,3,297,91,27,8,8 +25184,3,297,92,19,10,10 +25185,3,297,93,27,10,10 +25186,3,297,94,19,12,12 +25187,3,297,95,21,11,11 +25188,3,297,96,21,12,12 +25189,3,298,87,21,8,8 +25190,3,298,88,21,9,9 +25191,3,298,89,56,9,9 +25192,3,298,90,21,10,10 +25193,3,298,91,27,8,8 +25194,3,298,92,19,10,10 +25195,3,298,93,27,10,10 +25196,3,298,94,19,12,12 +25197,3,298,95,21,11,11 +25198,3,298,96,21,12,12 +25199,3,299,87,16,15,15 +25200,3,299,88,19,14,14 +25201,3,299,89,63,7,7 +25202,3,299,90,16,16,16 +25203,3,299,91,19,16,16 +25204,3,299,92,16,17,17 +25205,3,299,93,17,17,17 +25206,3,299,94,39,3,3 +25207,3,299,95,39,5,5 +25208,3,299,96,39,7,7 +25209,3,300,87,16,15,15 +25210,3,300,88,19,14,14 +25211,3,300,89,63,7,7 +25212,3,300,90,16,16,16 +25213,3,300,91,19,16,16 +25214,3,300,92,16,17,17 +25215,3,300,93,17,17,17 +25216,3,300,94,39,3,3 +25217,3,300,95,39,5,5 +25218,3,300,96,39,7,7 +25219,3,300,97,54,15,15 +25220,3,300,98,54,15,15 +25221,3,300,99,54,15,15 +25222,3,300,100,54,15,15 +25223,3,300,101,54,15,15 +25224,3,300,102,54,15,15 +25225,3,300,103,54,15,15 +25226,3,300,104,54,15,15 +25227,3,300,105,55,15,15 +25228,3,300,106,55,20,20 +25229,3,301,87,16,20,20 +25230,3,301,88,16,22,22 +25231,3,301,89,19,20,20 +25232,3,301,90,63,15,15 +25233,3,301,91,63,19,19 +25234,3,301,92,17,24,24 +25235,3,301,93,63,26,26 +25236,3,301,94,39,19,19 +25237,3,301,95,39,24,24 +25238,3,301,96,39,24,24 +25239,3,302,87,16,20,20 +25240,3,302,88,16,22,22 +25241,3,302,89,19,20,20 +25242,3,302,90,63,15,15 +25243,3,302,91,63,19,19 +25244,3,302,92,17,24,24 +25245,3,302,93,39,19,19 +25246,3,302,94,39,24,24 +25247,3,302,95,64,20,20 +25248,3,302,96,64,27,27 +25249,3,303,87,32,16,16 +25250,3,303,88,29,16,16 +25251,3,303,89,19,18,18 +25252,3,303,90,32,18,18 +25253,3,303,91,29,18,18 +25254,3,303,92,21,17,17 +25255,3,303,93,33,18,18 +25256,3,303,94,30,18,18 +25257,3,303,95,20,20,20 +25258,3,303,96,22,19,19 +25259,3,304,87,81,16,16 +25260,3,304,88,19,18,18 +25261,3,304,89,81,18,18 +25262,3,304,90,81,20,20 +25263,3,304,91,32,17,17 +25264,3,304,92,29,17,17 +25265,3,304,93,81,22,22 +25266,3,304,94,20,20,20 +25267,3,304,95,66,16,16 +25268,3,304,96,66,18,18 +25269,3,305,87,16,16,16 +25270,3,305,88,19,15,15 +25271,3,305,89,16,18,18 +25272,3,305,90,96,15,15 +25273,3,305,91,19,17,17 +25274,3,305,92,96,17,17 +25275,3,305,93,17,18,18 +25276,3,305,94,17,20,20 +25277,3,305,95,96,19,19 +25278,3,305,96,20,17,17 +25279,3,276,87,43,25,25 +25280,3,276,88,69,25,25 +25281,3,276,89,16,28,28 +25282,3,276,90,17,28,28 +25283,3,276,91,43,27,27 +25284,3,276,92,69,27,27 +25285,3,276,93,44,29,29 +25286,3,276,94,70,29,29 +25287,3,276,95,83,26,26 +25288,3,276,96,83,31,31 +25289,3,276,97,79,15,15 +25290,3,276,98,79,15,15 +25291,3,276,99,79,15,15 +25292,3,276,100,79,15,15 +25293,3,276,101,79,15,15 +25294,3,276,102,79,15,15 +25295,3,276,103,79,15,15 +25296,3,276,104,79,15,15 +25297,3,276,105,80,15,15 +25298,3,276,106,80,20,20 +25299,3,306,87,43,25,25 +25300,3,306,88,69,25,25 +25301,3,306,89,17,28,28 +25302,3,306,90,16,28,28 +25303,3,306,91,43,27,27 +25304,3,306,92,69,27,27 +25305,3,306,93,44,29,29 +25306,3,306,94,70,29,29 +25307,3,306,95,83,26,26 +25308,3,306,96,83,31,31 +25309,3,306,97,79,15,15 +25310,3,306,98,79,15,15 +25311,3,306,99,79,15,15 +25312,3,306,100,79,15,15 +25313,3,306,101,79,15,15 +25314,3,306,102,79,15,15 +25315,3,306,103,79,15,15 +25316,3,306,104,79,15,15 +25317,3,306,105,80,15,15 +25318,3,306,106,80,20,20 +25319,3,307,87,43,26,26 +25320,3,307,88,69,26,26 +25321,3,307,89,48,24,24 +25322,3,307,90,17,30,30 +25323,3,307,91,43,28,28 +25324,3,307,92,69,28,28 +25325,3,307,93,44,30,30 +25326,3,307,94,70,30,30 +25327,3,307,95,48,27,27 +25328,3,307,96,49,30,30 +25329,3,308,87,43,26,26 +25330,3,308,88,69,26,26 +25331,3,308,89,48,24,24 +25332,3,308,90,17,32,32 +25333,3,308,91,43,28,28 +25334,3,308,92,69,28,28 +25335,3,308,93,44,30,30 +25336,3,308,94,70,30,30 +25337,3,308,95,48,27,27 +25338,3,308,96,49,30,30 +25339,3,309,87,21,22,22 +25340,3,309,88,84,22,22 +25341,3,309,89,19,23,23 +25342,3,309,90,84,24,24 +25343,3,309,91,19,24,24 +25344,3,309,92,84,26,26 +25345,3,309,93,21,23,23 +25346,3,309,94,22,24,24 +25347,3,309,95,20,25,25 +25348,3,309,96,20,26,26 +25349,3,310,87,84,26,26 +25350,3,310,88,22,27,27 +25351,3,310,89,84,27,27 +25352,3,310,90,84,28,28 +25353,3,310,91,77,28,28 +25354,3,310,92,77,30,30 +25355,3,310,93,22,29,29 +25356,3,310,94,84,28,28 +25357,3,310,95,77,32,32 +25358,3,310,96,85,29,29 +25359,3,311,87,21,22,22 +25360,3,311,88,84,22,22 +25361,3,311,89,19,23,23 +25362,3,311,90,84,24,24 +25363,3,311,91,19,24,24 +25364,3,311,92,84,26,26 +25365,3,311,93,21,23,23 +25366,3,311,94,22,24,24 +25367,3,311,95,20,25,25 +25368,3,311,96,20,26,26 +25369,3,277,97,72,5,5 +25370,3,277,98,72,10,10 +25371,3,277,99,72,15,15 +25372,3,277,100,72,5,5 +25373,3,277,101,72,10,10 +25374,3,277,102,72,15,15 +25375,3,277,103,72,20,20 +25376,3,277,104,72,30,30 +25377,3,277,105,72,35,35 +25378,3,277,106,72,40,40 +25379,3,278,97,72,5,5 +25380,3,278,98,72,10,10 +25381,3,278,99,72,15,15 +25382,3,278,100,72,5,5 +25383,3,278,101,72,10,10 +25384,3,278,102,72,15,15 +25385,3,278,103,72,20,20 +25386,3,278,104,72,30,30 +25387,3,278,105,72,35,35 +25388,3,278,106,72,40,40 +25389,3,312,87,16,15,15 +25390,3,312,88,19,13,13 +25391,3,312,89,16,13,13 +25392,3,312,90,16,11,11 +25393,3,312,91,16,17,17 +25394,3,312,92,19,15,15 +25395,3,312,93,20,15,15 +25396,3,312,94,17,17,17 +25397,3,312,95,17,19,19 +25398,3,312,96,17,15,15 +25399,3,312,97,72,5,5 +25400,3,312,98,72,10,10 +25401,3,312,99,72,15,15 +25402,3,312,100,72,5,5 +25403,3,312,101,72,10,10 +25404,3,312,102,72,15,15 +25405,3,312,103,72,20,20 +25406,3,312,104,72,30,30 +25407,3,312,105,72,35,35 +25408,3,312,106,72,40,40 +25409,3,313,87,32,2,2 +25410,3,313,88,29,2,2 +25411,3,313,89,56,3,3 +25412,3,313,90,19,3,3 +25413,3,313,91,32,4,4 +25414,3,313,92,29,4,4 +25415,3,313,93,56,5,5 +25416,3,313,94,21,2,2 +25417,3,313,95,21,4,4 +25418,3,313,96,21,6,6 +25419,3,329,87,33,41,41 +25420,3,329,88,30,41,41 +25421,3,329,89,56,36,36 +25422,3,329,90,33,44,44 +25423,3,329,91,30,44,44 +25424,3,329,92,22,40,40 +25425,3,329,93,56,41,41 +25426,3,329,94,22,45,45 +25427,3,329,95,57,41,41 +25428,3,329,96,57,46,46 +25429,3,314,87,43,12,12 +25430,3,314,88,69,12,12 +25431,3,314,89,16,13,13 +25432,3,314,90,43,14,14 +25433,3,314,91,69,14,14 +25434,3,314,92,16,15,15 +25435,3,314,93,48,13,13 +25436,3,314,94,48,16,16 +25437,3,314,95,16,17,17 +25438,3,314,96,17,17,17 +25439,3,315,87,43,12,12 +25440,3,315,88,69,12,12 +25441,3,315,89,16,13,13 +25442,3,315,90,43,14,14 +25443,3,315,91,69,14,14 +25444,3,315,92,16,15,15 +25445,3,315,93,48,13,13 +25446,3,315,94,48,16,16 +25447,3,315,95,16,17,17 +25448,3,315,96,17,17,17 +25449,3,321,87,10,3,3 +25450,3,321,88,11,4,4 +25451,3,321,89,10,4,4 +25452,3,321,90,10,5,5 +25453,3,321,91,16,4,4 +25454,3,321,92,16,6,6 +25455,3,321,93,10,6,6 +25456,3,321,94,11,6,6 +25457,3,321,95,16,8,8 +25458,3,321,96,17,9,9 +25459,3,290,87,41,8,8 +25460,3,290,88,41,9,9 +25461,3,290,89,74,10,10 +25462,3,290,90,41,6,6 +25463,3,290,91,41,7,7 +25464,3,290,92,41,10,10 +25465,3,290,93,74,10,10 +25466,3,290,94,41,11,11 +25467,3,290,95,27,12,12 +25468,3,290,96,35,11,11 +25469,3,326,87,41,8,8 +25470,3,326,88,41,9,9 +25471,3,326,89,41,10,10 +25472,3,326,90,74,10,10 +25473,3,326,91,74,11,11 +25474,3,326,92,41,11,11 +25475,3,326,93,46,9,9 +25476,3,326,94,46,11,11 +25477,3,326,95,35,10,10 +25478,3,326,96,35,12,12 +25479,3,327,87,41,10,10 +25480,3,327,88,74,11,11 +25481,3,327,89,46,13,13 +25482,3,327,90,41,11,11 +25483,3,327,91,41,11,11 +25484,3,327,92,41,12,12 +25485,3,327,93,41,13,13 +25486,3,327,94,35,9,9 +25487,3,327,95,35,11,11 +25488,3,327,96,35,13,13 +25489,3,293,87,41,15,15 +25490,3,293,88,74,16,16 +25491,3,293,89,41,17,17 +25492,3,293,90,41,19,19 +25493,3,293,91,74,18,18 +25494,3,293,92,74,20,20 +25495,3,293,93,41,21,21 +25496,3,293,94,66,17,17 +25497,3,293,95,66,19,19 +25498,3,293,96,66,21,21 +25499,3,330,87,81,30,30 +25500,3,330,88,81,35,35 +25501,3,330,89,82,33,33 +25502,3,330,90,100,33,33 +25503,3,330,91,100,37,37 +25504,3,330,92,88,33,33 +25505,3,330,93,88,37,37 +25506,3,330,94,82,38,38 +25507,3,330,95,89,33,33 +25508,3,330,96,89,37,37 +25509,3,331,87,74,26,26 +25510,3,331,88,74,31,31 +25511,3,331,89,74,36,36 +25512,3,331,90,41,39,39 +25513,3,331,91,41,44,44 +25514,3,331,92,74,41,41 +25515,3,331,93,95,43,43 +25516,3,331,94,95,45,45 +25517,3,331,95,75,41,41 +25518,3,331,96,75,47,47 +25519,3,336,87,92,20,20 +25520,3,336,88,92,21,21 +25521,3,336,89,92,22,22 +25522,3,336,90,92,23,23 +25523,3,336,91,92,24,24 +25524,3,336,92,92,19,19 +25525,3,336,93,92,18,18 +25526,3,336,94,92,25,25 +25527,3,336,95,93,20,20 +25528,3,336,96,93,25,25 +25529,3,337,87,92,20,20 +25530,3,337,88,92,21,21 +25531,3,337,89,92,22,22 +25532,3,337,90,92,23,23 +25533,3,337,91,92,24,24 +25534,3,337,92,92,19,19 +25535,3,337,93,92,18,18 +25536,3,337,94,92,25,25 +25537,3,337,95,93,20,20 +25538,3,337,96,93,25,25 +25539,3,338,87,92,22,22 +25540,3,338,88,92,23,23 +25541,3,338,89,92,24,24 +25542,3,338,90,92,25,25 +25543,3,338,91,92,26,26 +25544,3,338,92,92,21,21 +25545,3,338,93,104,20,20 +25546,3,338,94,92,27,27 +25547,3,338,95,93,22,22 +25548,3,338,96,93,27,27 +25549,3,339,87,92,22,22 +25550,3,339,88,92,23,23 +25551,3,339,89,92,24,24 +25552,3,339,90,92,25,25 +25553,3,339,91,92,26,26 +25554,3,339,92,92,21,21 +25555,3,339,93,104,22,22 +25556,3,339,94,92,27,27 +25557,3,339,95,93,22,22 +25558,3,339,96,93,27,27 +25559,3,340,87,92,24,24 +25560,3,340,88,92,25,25 +25561,3,340,89,92,26,26 +25562,3,340,90,92,27,27 +25563,3,340,91,92,28,28 +25564,3,340,92,92,23,23 +25565,3,340,93,104,24,24 +25566,3,340,94,92,29,29 +25567,3,340,95,93,24,24 +25568,3,340,96,93,29,29 +25569,3,259,87,41,27,27 +25570,3,259,88,98,26,26 +25571,3,259,89,41,36,36 +25572,3,259,90,98,28,28 +25573,3,259,91,42,27,27 +25574,3,259,92,79,29,29 +25575,3,259,93,41,18,18 +25576,3,259,94,99,28,28 +25577,3,259,95,86,22,22 +25578,3,259,96,86,26,26 +25579,3,260,87,41,27,27 +25580,3,260,88,98,27,27 +25581,3,260,89,41,36,36 +25582,3,260,90,42,27,27 +25583,3,260,91,99,28,28 +25584,3,260,92,86,24,24 +25585,3,260,93,98,29,29 +25586,3,260,94,42,36,36 +25587,3,260,95,79,31,31 +25588,3,260,96,80,31,31 +25589,3,261,87,42,27,27 +25590,3,261,88,41,36,36 +25591,3,261,89,98,29,29 +25592,3,261,90,41,27,27 +25593,3,261,91,99,30,30 +25594,3,261,92,86,26,26 +25595,3,261,93,98,31,31 +25596,3,261,94,86,30,30 +25597,3,261,95,87,28,28 +25598,3,261,96,87,32,32 +25599,3,261,97,72,25,25 +25600,3,261,98,72,30,30 +25601,3,261,99,72,20,20 +25602,3,261,100,120,30,30 +25603,3,261,101,72,35,35 +25604,3,261,102,120,30,30 +25605,3,261,103,72,40,40 +25606,3,261,104,120,30,30 +25607,3,261,105,120,30,30 +25608,3,261,106,120,30,30 +25609,3,262,87,42,36,36 +25610,3,262,88,41,36,36 +25611,3,262,89,98,30,30 +25612,3,262,90,99,32,32 +25613,3,262,91,86,28,28 +25614,3,262,92,86,32,32 +25615,3,262,93,42,27,27 +25616,3,262,94,41,45,45 +25617,3,262,95,87,30,30 +25618,3,262,96,87,34,34 +25619,3,262,97,72,25,25 +25620,3,262,98,72,30,30 +25621,3,262,99,72,20,20 +25622,3,262,100,120,30,30 +25623,3,262,101,72,35,35 +25624,3,262,102,120,30,30 +25625,3,262,103,72,40,40 +25626,3,262,104,120,30,30 +25627,3,262,105,120,30,30 +25628,3,262,106,120,30,30 +25629,3,341,87,19,34,34 +25630,3,341,88,20,34,34 +25631,3,341,89,88,23,23 +25632,3,341,90,58,26,26 +25633,3,341,91,19,37,37 +25634,3,341,92,20,37,37 +25635,3,341,93,58,30,30 +25636,3,341,94,88,26,26 +25637,3,341,95,58,34,34 +25638,3,341,96,58,38,38 +25639,3,258,87,41,18,18 +25640,3,258,88,98,25,25 +25641,3,258,89,98,27,27 +25642,3,258,90,41,27,27 +25643,3,258,91,41,36,36 +25644,3,258,92,79,28,28 +25645,3,258,93,79,30,30 +25646,3,258,94,41,9,9 +25647,3,258,95,42,27,27 +25648,3,258,96,42,36,36 +25649,3,332,87,74,31,31 +25650,3,332,88,74,36,36 +25651,3,332,89,74,41,41 +25652,3,332,90,41,44,44 +25653,3,332,91,42,39,39 +25654,3,332,92,75,44,44 +25655,3,332,93,95,45,45 +25656,3,332,94,95,47,47 +25657,3,332,95,67,39,39 +25658,3,332,96,67,42,42 +25659,3,317,87,50,18,18 +25660,3,317,88,50,19,19 +25661,3,317,89,50,17,17 +25662,3,317,90,50,20,20 +25663,3,317,91,50,16,16 +25664,3,317,92,50,15,15 +25665,3,317,93,50,21,21 +25666,3,317,94,50,22,22 +25667,3,317,95,51,29,29 +25668,3,317,96,51,31,31 +25669,3,333,87,74,36,36 +25670,3,333,88,42,44,44 +25671,3,333,89,74,41,41 +25672,3,333,90,95,49,49 +25673,3,333,91,74,46,46 +25674,3,333,92,75,41,41 +25675,3,333,93,67,42,42 +25676,3,333,94,67,45,45 +25677,3,333,95,75,47,47 +25678,3,333,96,75,47,47 +25679,3,342,87,19,37,37 +25680,3,342,88,20,37,37 +25681,3,342,89,88,26,26 +25682,3,342,90,88,29,29 +25683,3,342,91,19,40,40 +25684,3,342,92,20,40,40 +25685,3,342,93,88,32,32 +25686,3,342,94,88,35,35 +25687,3,342,95,89,35,35 +25688,3,342,96,89,38,38 +25689,3,343,87,19,40,40 +25690,3,343,88,20,40,40 +25691,3,343,89,88,32,32 +25692,3,343,90,88,35,35 +25693,3,343,91,19,43,43 +25694,3,343,92,20,43,43 +25695,3,343,93,88,38,38 +25696,3,343,94,88,38,38 +25697,3,343,95,89,38,38 +25698,3,343,96,89,41,41 +25699,3,344,87,88,35,35 +25700,3,344,88,88,38,38 +25701,3,344,89,20,37,37 +25702,3,344,90,20,40,40 +25703,3,344,91,89,41,41 +25704,3,344,92,20,43,43 +25705,3,344,93,132,24,24 +25706,3,344,94,20,46,46 +25707,3,344,95,132,18,18 +25708,3,344,96,132,12,12 +25709,3,346,87,32,21,21 +25710,3,346,88,29,29,29 +25711,3,346,89,102,22,22 +25712,3,346,90,128,21,21 +25713,3,346,91,30,32,32 +25714,3,346,92,104,19,19 +25715,3,346,93,102,26,26 +25716,3,346,94,105,24,24 +25717,3,346,95,113,21,21 +25718,3,346,96,123,15,15 +25719,3,347,87,32,36,36 +25720,3,347,88,29,14,14 +25721,3,347,89,102,20,20 +25722,3,347,90,111,25,25 +25723,3,347,91,30,23,23 +25724,3,347,92,115,28,28 +25725,3,347,93,104,16,16 +25726,3,347,94,115,33,33 +25727,3,347,95,123,25,25 +25728,3,347,96,127,15,15 +25729,3,348,87,32,29,29 +25730,3,348,88,29,21,21 +25731,3,348,89,102,22,22 +25732,3,348,90,128,21,21 +25733,3,348,91,33,32,32 +25734,3,348,92,104,19,19 +25735,3,348,93,102,26,26 +25736,3,348,94,105,24,24 +25737,3,348,95,127,25,25 +25738,3,348,96,114,27,27 +25739,3,345,87,32,14,14 +25740,3,345,88,29,36,36 +25741,3,345,89,102,24,24 +25742,3,345,90,111,20,20 +25743,3,345,91,33,23,23 +25744,3,345,92,47,27,27 +25745,3,345,93,46,27,27 +25746,3,345,94,47,32,32 +25747,3,345,95,114,22,22 +25748,3,345,96,113,7,7 +25749,3,324,87,42,52,52 +25750,3,324,88,42,57,57 +25751,3,324,89,75,50,50 +25752,3,324,90,28,56,56 +25753,3,324,91,111,50,50 +25754,3,324,92,132,60,60 +25755,3,324,93,44,58,58 +25756,3,324,94,70,58,58 +25757,3,324,95,112,60,60 +25758,3,324,96,112,58,58 +25759,3,325,87,42,54,54 +25760,3,325,88,42,59,59 +25761,3,325,89,75,55,55 +25762,3,325,90,111,52,52 +25763,3,325,91,112,62,62 +25764,3,325,92,132,60,60 +25765,3,325,93,113,56,56 +25766,3,325,94,132,65,65 +25767,3,325,95,108,55,55 +25768,3,325,96,108,50,50 +25769,3,323,87,42,50,50 +25770,3,323,88,42,55,55 +25771,3,323,89,75,45,45 +25772,3,323,90,44,55,55 +25773,3,323,91,70,55,55 +25774,3,323,92,28,52,52 +25775,3,323,93,49,54,54 +25776,3,323,94,47,54,54 +25777,3,323,95,132,55,55 +25778,3,323,96,132,60,60 +25779,3,328,87,41,20,20 +25780,3,328,88,74,17,17 +25781,3,328,89,66,18,18 +25782,3,328,90,41,21,21 +25783,3,328,91,41,22,22 +25784,3,328,92,74,21,21 +25785,3,328,93,66,20,20 +25786,3,328,94,95,14,14 +25787,3,328,95,95,18,18 +25788,3,328,96,95,22,22 +25790,1,285,107,129,5,5 +25791,2,285,107,129,5,5 +25792,1,285,108,118,10,10 +25793,2,285,108,118,10,10 +25794,1,285,109,60,10,10 +25795,2,285,109,60,10,10 +25796,1,280,107,129,5,5 +25797,2,280,107,129,5,5 +25798,1,280,108,118,10,10 +25799,2,280,108,118,10,10 +25800,1,280,109,60,10,10 +25801,2,280,109,60,10,10 +25802,1,313,107,129,5,5 +25803,2,313,107,129,5,5 +25804,1,313,108,118,10,10 +25805,2,313,108,118,10,10 +25806,1,313,109,60,10,10 +25807,2,313,109,60,10,10 +25808,1,281,107,129,5,5 +25809,2,281,107,129,5,5 +25810,1,281,108,118,10,10 +25811,2,281,108,118,10,10 +25812,1,281,109,60,10,10 +25813,2,281,109,60,10,10 +25814,1,314,107,129,5,5 +25815,2,314,107,129,5,5 +25816,1,314,108,118,10,10 +25817,2,314,108,118,10,10 +25818,1,314,109,60,10,10 +25819,2,314,109,60,10,10 +25820,1,315,107,129,5,5 +25821,2,315,107,129,5,5 +25822,1,315,108,118,10,10 +25823,2,315,108,118,10,10 +25824,1,315,109,60,10,10 +25825,2,315,109,60,10,10 +25826,1,305,107,129,5,5 +25827,2,305,107,129,5,5 +25828,1,305,108,118,10,10 +25829,2,305,108,118,10,10 +25830,1,305,109,60,10,10 +25831,2,305,109,60,10,10 +25832,1,300,107,129,5,5 +25833,2,300,107,129,5,5 +25834,1,300,108,118,10,10 +25835,2,300,108,118,10,10 +25836,1,300,109,60,10,10 +25837,2,300,109,60,10,10 +25838,1,282,107,129,5,5 +25839,2,282,107,129,5,5 +25840,1,282,108,118,10,10 +25841,2,282,108,118,10,10 +25842,1,282,109,60,10,10 +25843,2,282,109,60,10,10 +25844,1,304,107,129,5,5 +25845,2,304,107,129,5,5 +25846,1,304,108,118,10,10 +25847,2,304,108,118,10,10 +25848,1,304,109,60,10,10 +25849,2,304,109,60,10,10 +25850,1,283,107,129,5,5 +25851,2,283,107,129,5,5 +25852,1,283,108,118,10,10 +25853,2,283,108,118,10,10 +25854,1,283,109,60,10,10 +25855,2,283,109,60,10,10 +25856,1,345,107,129,5,5 +25857,2,345,107,129,5,5 +25858,1,345,108,118,10,10 +25859,2,345,108,118,10,10 +25860,1,345,109,60,10,10 +25861,2,345,109,60,10,10 +25862,1,346,107,129,5,5 +25863,2,346,107,129,5,5 +25864,1,346,108,118,10,10 +25865,2,346,108,118,10,10 +25866,1,346,109,60,10,10 +25867,2,346,109,60,10,10 +25868,1,347,107,129,5,5 +25869,2,347,107,129,5,5 +25870,1,347,108,118,10,10 +25871,2,347,108,118,10,10 +25872,1,347,109,60,10,10 +25873,2,347,109,60,10,10 +25874,1,348,107,129,5,5 +25875,2,348,107,129,5,5 +25876,1,348,108,118,10,10 +25877,2,348,108,118,10,10 +25878,1,348,109,60,10,10 +25879,2,348,109,60,10,10 +25880,1,276,107,129,5,5 +25881,2,276,107,129,5,5 +25882,1,276,108,118,10,10 +25883,2,276,108,118,10,10 +25884,1,276,109,60,10,10 +25885,2,276,109,60,10,10 +25886,1,306,107,129,5,5 +25887,2,306,107,129,5,5 +25888,1,306,108,118,10,10 +25889,2,306,108,118,10,10 +25890,1,306,109,60,10,10 +25891,2,306,109,60,10,10 +25892,1,310,107,129,5,5 +25893,2,310,107,129,5,5 +25894,1,310,108,118,10,10 +25895,2,310,108,118,10,10 +25896,1,310,109,60,10,10 +25897,2,310,109,60,10,10 +25898,1,311,107,129,5,5 +25899,2,311,107,129,5,5 +25900,1,311,108,118,10,10 +25901,2,311,108,118,10,10 +25902,1,311,109,60,10,10 +25903,2,311,109,60,10,10 +25904,1,277,107,129,5,5 +25905,2,277,107,129,5,5 +25906,1,277,108,118,10,10 +25907,2,277,108,118,10,10 +25908,1,277,109,60,10,10 +25909,2,277,109,60,10,10 +25910,1,278,107,129,5,5 +25911,2,278,107,129,5,5 +25912,1,278,108,118,10,10 +25913,2,278,108,118,10,10 +25914,1,278,109,60,10,10 +25915,2,278,109,60,10,10 +25916,1,312,107,129,5,5 +25917,2,312,107,129,5,5 +25918,1,312,108,118,10,10 +25919,2,312,108,118,10,10 +25920,1,312,109,60,10,10 +25921,2,312,109,60,10,10 +25940,1,261,107,129,5,5 +25941,2,261,107,129,5,5 +25942,1,261,108,118,10,10 +25943,2,261,108,118,10,10 +25944,1,261,109,60,10,10 +25945,2,261,109,60,10,10 +25946,1,262,107,129,5,5 +25947,2,262,107,129,5,5 +25948,1,262,108,118,10,10 +25949,2,262,108,118,10,10 +25950,1,262,109,60,10,10 +25951,2,262,109,60,10,10 +25952,1,279,107,129,5,5 +25953,2,279,107,129,5,5 +25954,1,279,108,118,10,10 +25955,2,279,108,118,10,10 +25956,1,279,109,60,10,10 +25957,2,279,109,60,10,10 +25958,1,329,107,129,5,5 +25959,2,329,107,129,5,5 +25960,1,329,108,118,10,10 +25961,2,329,108,118,10,10 +25962,1,329,109,60,10,10 +25963,2,329,109,60,10,10 +25964,1,323,107,129,5,5 +25965,2,323,107,129,5,5 +25966,1,323,108,118,10,10 +25967,2,323,108,118,10,10 +25968,1,323,109,60,10,10 +25969,2,323,109,60,10,10 +25976,1,325,107,129,5,5 +25977,2,325,107,129,5,5 +25978,1,325,108,118,10,10 +25979,2,325,108,118,10,10 +25980,1,325,109,60,10,10 +25981,2,325,109,60,10,10 +25982,1,284,107,129,5,5 +25983,2,284,107,129,5,5 +25984,1,284,108,118,10,10 +25985,2,284,108,118,10,10 +25986,1,284,109,60,10,10 +25987,2,284,109,60,10,10 +25988,1,277,110,120,15,15 +25989,2,277,110,120,15,15 +25990,1,277,111,116,15,15 +25991,2,277,111,116,15,15 +25992,1,277,112,116,15,15 +25993,2,277,112,116,15,15 +25994,1,277,113,90,15,15 +25995,2,277,113,90,15,15 +25996,1,277,114,90,15,15 +25997,2,277,114,90,15,15 +25998,1,277,115,118,15,15 +25999,2,277,115,118,15,15 +26000,1,278,110,120,15,15 +26001,2,278,110,120,15,15 +26002,1,278,111,116,15,15 +26003,2,278,111,116,15,15 +26004,1,278,112,116,15,15 +26005,2,278,112,116,15,15 +26006,1,278,113,90,15,15 +26007,2,278,113,90,15,15 +26008,1,278,114,90,15,15 +26009,2,278,114,90,15,15 +26010,1,278,115,118,15,15 +26011,2,278,115,118,15,15 +26012,1,312,110,120,15,15 +26013,2,312,110,120,15,15 +26014,1,312,111,116,15,15 +26015,2,312,111,116,15,15 +26016,1,312,112,116,15,15 +26017,2,312,112,116,15,15 +26018,1,312,113,90,15,15 +26019,2,312,113,90,15,15 +26020,1,312,114,90,15,15 +26021,2,312,114,90,15,15 +26022,1,312,115,118,15,15 +26023,2,312,115,118,15,15 +26060,1,261,110,120,15,15 +26061,2,261,110,120,15,15 +26062,1,261,111,116,15,15 +26063,2,261,111,116,15,15 +26064,1,261,112,116,15,15 +26065,2,261,112,116,15,15 +26066,1,261,113,90,15,15 +26067,2,261,113,90,15,15 +26068,1,261,114,90,15,15 +26069,2,261,114,90,15,15 +26070,1,261,115,118,15,15 +26071,2,261,115,118,15,15 +26072,1,262,110,120,15,15 +26073,2,262,110,120,15,15 +26074,1,262,111,116,15,15 +26075,2,262,111,116,15,15 +26076,1,262,112,116,15,15 +26077,2,262,112,116,15,15 +26078,1,262,113,90,15,15 +26079,2,262,113,90,15,15 +26080,1,262,114,90,15,15 +26081,2,262,114,90,15,15 +26082,1,262,115,118,15,15 +26083,2,262,115,118,15,15 +26084,1,279,110,120,15,15 +26085,2,279,110,120,15,15 +26086,1,279,111,116,15,15 +26087,2,279,111,116,15,15 +26088,1,279,112,116,15,15 +26089,2,279,112,116,15,15 +26090,1,279,113,90,15,15 +26091,2,279,113,90,15,15 +26092,1,279,114,90,15,15 +26093,2,279,114,90,15,15 +26094,1,279,115,118,15,15 +26095,2,279,115,118,15,15 +26096,1,304,110,61,23,23 +26097,2,304,110,61,23,23 +26098,1,304,111,61,23,23 +26099,2,304,111,61,23,23 +26100,1,304,112,61,23,23 +26101,2,304,112,61,23,23 +26102,1,304,113,79,15,15 +26103,2,304,113,79,15,15 +26104,1,304,114,79,15,15 +26105,2,304,114,79,15,15 +26106,1,304,115,79,15,15 +26107,2,304,115,79,15,15 +26108,1,283,110,61,23,23 +26109,2,283,110,61,23,23 +26110,1,283,111,61,23,23 +26111,2,283,111,61,23,23 +26112,1,283,112,61,23,23 +26113,2,283,112,61,23,23 +26114,1,283,113,79,15,15 +26115,2,283,113,79,15,15 +26116,1,283,114,79,15,15 +26117,2,283,114,79,15,15 +26118,1,283,115,79,15,15 +26119,2,283,115,79,15,15 +26120,1,305,110,98,15,15 +26121,2,305,110,98,15,15 +26122,1,305,111,98,15,15 +26123,2,305,111,98,15,15 +26124,1,305,112,98,15,15 +26125,2,305,112,98,15,15 +26126,1,305,113,90,15,15 +26127,2,305,113,90,15,15 +26128,1,305,114,90,15,15 +26129,2,305,114,90,15,15 +26130,1,305,115,90,15,15 +26131,2,305,115,90,15,15 +26132,1,300,110,98,15,15 +26133,2,300,110,98,15,15 +26134,1,300,111,98,15,15 +26135,2,300,111,98,15,15 +26136,1,300,112,98,15,15 +26137,2,300,112,98,15,15 +26138,1,300,113,90,15,15 +26139,2,300,113,90,15,15 +26140,1,300,114,90,15,15 +26141,2,300,114,90,15,15 +26142,1,300,115,90,15,15 +26143,2,300,115,90,15,15 +26144,1,282,110,98,15,15 +26145,2,282,110,98,15,15 +26146,1,282,111,98,15,15 +26147,2,282,111,98,15,15 +26148,1,282,112,98,15,15 +26149,2,282,112,98,15,15 +26150,1,282,113,90,15,15 +26151,2,282,113,90,15,15 +26152,1,282,114,90,15,15 +26153,2,282,114,90,15,15 +26154,1,282,115,90,15,15 +26155,2,282,115,90,15,15 +26156,1,285,110,72,15,15 +26157,2,285,110,72,15,15 +26158,1,285,111,72,15,15 +26159,2,285,111,72,15,15 +26160,1,285,112,72,15,15 +26161,2,285,112,72,15,15 +26162,1,285,113,60,15,15 +26163,2,285,113,60,15,15 +26164,1,285,114,60,15,15 +26165,2,285,114,60,15,15 +26166,1,285,115,60,15,15 +26167,2,285,115,60,15,15 +26168,1,280,110,72,15,15 +26169,2,280,110,72,15,15 +26170,1,280,111,72,15,15 +26171,2,280,111,72,15,15 +26172,1,280,112,72,15,15 +26173,2,280,112,72,15,15 +26174,1,280,113,60,15,15 +26175,2,280,113,60,15,15 +26176,1,280,114,60,15,15 +26177,2,280,114,60,15,15 +26178,1,280,115,60,15,15 +26179,2,280,115,60,15,15 +26180,1,281,110,54,15,15 +26181,2,281,110,54,15,15 +26182,1,281,111,54,15,15 +26183,2,281,111,54,15,15 +26184,1,281,112,118,15,15 +26185,2,281,112,118,15,15 +26186,1,281,113,118,15,15 +26187,2,281,113,118,15,15 +26188,1,281,114,98,15,15 +26189,2,281,114,98,15,15 +26190,1,281,115,98,15,15 +26191,2,281,115,98,15,15 +26192,1,314,110,54,15,15 +26193,2,314,110,54,15,15 +26194,1,314,111,54,15,15 +26195,2,314,111,54,15,15 +26196,1,314,112,118,15,15 +26197,2,314,112,118,15,15 +26198,1,314,113,118,15,15 +26199,2,314,113,118,15,15 +26200,1,314,114,98,15,15 +26201,2,314,114,98,15,15 +26202,1,314,115,98,15,15 +26203,2,314,115,98,15,15 +26204,1,315,110,54,15,15 +26205,2,315,110,54,15,15 +26206,1,315,111,54,15,15 +26207,2,315,111,54,15,15 +26208,1,315,112,118,15,15 +26209,2,315,112,118,15,15 +26210,1,315,113,118,15,15 +26211,2,315,113,118,15,15 +26212,1,315,114,98,15,15 +26213,2,315,114,98,15,15 +26214,1,315,115,98,15,15 +26215,2,315,115,98,15,15 +26216,1,284,110,119,23,23 +26217,2,284,110,119,23,23 +26218,1,284,111,98,15,15 +26219,2,284,111,98,15,15 +26220,1,284,112,98,15,15 +26221,2,284,112,98,15,15 +26222,1,284,113,118,15,15 +26223,2,284,113,118,15,15 +26224,1,284,114,118,15,15 +26225,2,284,114,118,15,15 +26226,1,284,115,129,15,15 +26227,2,284,115,129,15,15 +26228,1,276,110,72,5,5 +26229,2,276,110,72,5,5 +26230,1,276,111,98,15,15 +26231,2,276,111,98,15,15 +26232,1,276,112,98,15,15 +26233,2,276,112,98,15,15 +26234,1,276,113,118,15,15 +26235,2,276,113,118,15,15 +26236,1,276,114,118,15,15 +26237,2,276,114,118,15,15 +26238,1,276,115,129,15,15 +26239,2,276,115,129,15,15 +26240,1,306,110,72,5,5 +26241,2,306,110,72,5,5 +26242,1,306,111,98,15,15 +26243,2,306,111,98,15,15 +26244,1,306,112,98,15,15 +26245,2,306,112,98,15,15 +26246,1,306,113,118,15,15 +26247,2,306,113,118,15,15 +26248,1,306,114,118,15,15 +26249,2,306,114,118,15,15 +26250,1,306,115,129,15,15 +26251,2,306,115,129,15,15 +26252,1,310,110,72,5,5 +26253,2,310,110,72,5,5 +26254,1,310,111,98,15,15 +26255,2,310,111,98,15,15 +26256,1,310,112,98,15,15 +26257,2,310,112,98,15,15 +26258,1,310,113,118,15,15 +26259,2,310,113,118,15,15 +26260,1,310,114,118,15,15 +26261,2,310,114,118,15,15 +26262,1,310,115,129,15,15 +26263,2,310,115,129,15,15 +26264,1,311,110,72,5,5 +26265,2,311,110,72,5,5 +26266,1,311,111,98,15,15 +26267,2,311,111,98,15,15 +26268,1,311,112,98,15,15 +26269,2,311,112,98,15,15 +26270,1,311,113,118,15,15 +26271,2,311,113,118,15,15 +26272,1,311,114,118,15,15 +26273,2,311,114,118,15,15 +26274,1,311,115,129,15,15 +26275,2,311,115,129,15,15 +26276,1,329,110,80,23,23 +26277,2,329,110,80,23,23 +26278,1,329,111,119,23,23 +26279,2,329,111,119,23,23 +26280,1,329,112,119,23,23 +26281,2,329,112,119,23,23 +26282,1,329,113,99,23,23 +26283,2,329,113,99,23,23 +26284,1,329,114,99,23,23 +26285,2,329,114,99,23,23 +26286,1,329,115,117,23,23 +26287,2,329,115,117,23,23 +26288,1,323,110,80,23,23 +26289,2,323,110,80,23,23 +26290,1,323,111,119,23,23 +26291,2,323,111,119,23,23 +26292,1,323,112,119,23,23 +26293,2,323,112,119,23,23 +26294,1,323,113,99,23,23 +26295,2,323,113,99,23,23 +26296,1,323,114,99,23,23 +26297,2,323,114,99,23,23 +26298,1,323,115,117,23,23 +26299,2,323,115,117,23,23 +26312,1,325,110,80,23,23 +26313,2,325,110,80,23,23 +26314,1,325,111,119,23,23 +26315,2,325,111,119,23,23 +26316,1,325,112,119,23,23 +26317,2,325,112,119,23,23 +26318,1,325,113,99,23,23 +26319,2,325,113,99,23,23 +26320,1,325,114,99,23,23 +26321,2,325,114,99,23,23 +26322,1,325,115,117,23,23 +26323,2,325,115,117,23,23 +26324,1,313,110,118,15,15 +26325,2,313,110,118,15,15 +26326,1,313,111,118,15,15 +26327,2,313,111,118,15,15 +26328,1,313,112,118,15,15 +26329,2,313,112,118,15,15 +26330,1,313,113,60,15,15 +26331,2,313,113,60,15,15 +26332,1,313,114,60,15,15 +26333,2,313,114,60,15,15 +26334,1,313,115,60,15,15 +26335,2,313,115,60,15,15 +26336,1,345,110,147,15,15 +26337,2,345,110,147,15,15 +26338,1,345,111,98,15,15 +26339,2,345,111,98,15,15 +26340,1,345,112,98,15,15 +26341,2,345,112,98,15,15 +26342,1,345,113,54,15,15 +26343,2,345,113,54,15,15 +26344,1,345,114,54,15,15 +26345,2,345,114,54,15,15 +26346,1,345,115,79,15,15 +26347,2,345,115,79,15,15 +26348,1,346,110,147,15,15 +26349,2,346,110,147,15,15 +26350,1,346,111,98,15,15 +26351,2,346,111,98,15,15 +26352,1,346,112,98,15,15 +26353,2,346,112,98,15,15 +26354,1,346,113,54,15,15 +26355,2,346,113,54,15,15 +26356,1,346,114,54,15,15 +26357,2,346,114,54,15,15 +26358,1,346,115,79,15,15 +26359,2,346,115,79,15,15 +26360,1,347,110,147,15,15 +26361,2,347,110,147,15,15 +26362,1,347,111,98,15,15 +26363,2,347,111,98,15,15 +26364,1,347,112,98,15,15 +26365,2,347,112,98,15,15 +26366,1,347,113,54,15,15 +26367,2,347,113,54,15,15 +26368,1,347,114,54,15,15 +26369,2,347,114,54,15,15 +26370,1,347,115,79,15,15 +26371,2,347,115,79,15,15 +26372,1,348,110,147,15,15 +26373,2,348,110,147,15,15 +26374,1,348,111,98,15,15 +26375,2,348,111,98,15,15 +26376,1,348,112,98,15,15 +26377,2,348,112,98,15,15 +26378,1,348,113,54,15,15 +26379,2,348,113,54,15,15 +26380,1,348,114,54,15,15 +26381,2,348,114,54,15,15 +26382,1,348,115,79,15,15 +26383,2,348,115,79,15,15 +26384,3,285,116,129,5,5 +26385,3,285,117,118,10,10 +26386,3,285,118,60,10,10 +26387,3,280,116,129,5,5 +26388,3,280,117,118,10,10 +26389,3,280,118,60,10,10 +26390,3,313,116,129,5,5 +26391,3,313,117,118,10,10 +26392,3,313,118,60,10,10 +26393,3,281,116,129,5,5 +26394,3,281,117,118,10,10 +26395,3,281,118,60,10,10 +26396,3,314,116,129,5,5 +26397,3,314,117,118,10,10 +26398,3,314,118,60,10,10 +26399,3,315,116,129,5,5 +26400,3,315,117,118,10,10 +26401,3,315,118,60,10,10 +26402,3,305,116,129,5,5 +26403,3,305,117,118,10,10 +26404,3,305,118,60,10,10 +26405,3,300,116,129,5,5 +26406,3,300,117,118,10,10 +26407,3,300,118,60,10,10 +26408,3,282,116,129,5,5 +26409,3,282,117,118,10,10 +26410,3,282,118,60,10,10 +26411,3,304,116,129,5,5 +26412,3,304,117,118,10,10 +26413,3,304,118,60,10,10 +26414,3,283,116,129,5,5 +26415,3,283,117,118,10,10 +26416,3,283,118,60,10,10 +26417,3,345,116,129,5,5 +26418,3,345,117,118,10,10 +26419,3,345,118,60,10,10 +26420,3,346,116,129,5,5 +26421,3,346,117,118,10,10 +26422,3,346,118,60,10,10 +26423,3,347,116,129,5,5 +26424,3,347,117,118,10,10 +26425,3,347,118,60,10,10 +26426,3,348,116,129,5,5 +26427,3,348,117,118,10,10 +26428,3,348,118,60,10,10 +26429,3,276,116,129,5,5 +26430,3,276,117,118,10,10 +26431,3,276,118,60,10,10 +26432,3,306,116,129,5,5 +26433,3,306,117,118,10,10 +26434,3,306,118,60,10,10 +26435,3,310,116,129,5,5 +26436,3,310,117,118,10,10 +26437,3,310,118,60,10,10 +26438,3,311,116,129,5,5 +26439,3,311,117,118,10,10 +26440,3,311,118,60,10,10 +26441,3,277,116,129,5,5 +26442,3,277,117,118,10,10 +26443,3,277,118,60,10,10 +26444,3,278,116,129,5,5 +26445,3,278,117,118,10,10 +26446,3,278,118,60,10,10 +26447,3,312,116,129,5,5 +26448,3,312,117,118,10,10 +26449,3,312,118,60,10,10 +26450,3,261,116,129,5,5 +26451,3,261,117,118,10,10 +26452,3,261,118,60,10,10 +26453,3,262,116,129,5,5 +26454,3,262,117,118,10,10 +26455,3,262,118,60,10,10 +26456,3,279,116,129,5,5 +26457,3,279,117,118,10,10 +26458,3,279,118,60,10,10 +26459,3,329,116,129,5,5 +26460,3,329,117,118,10,10 +26461,3,329,118,60,10,10 +26462,3,323,116,129,5,5 +26463,3,323,117,118,10,10 +26464,3,323,118,60,10,10 +26465,3,325,116,129,5,5 +26466,3,325,117,118,10,10 +26467,3,325,118,60,10,10 +26468,3,284,116,129,5,5 +26469,3,284,117,118,10,10 +26470,3,284,118,60,10,10 +26471,3,261,119,98,25,25 +26472,3,261,120,120,20,20 +26473,3,261,121,99,35,35 +26474,3,261,122,120,40,40 +26475,3,262,119,98,25,25 +26476,3,262,120,120,20,20 +26477,3,262,121,99,35,35 +26478,3,262,122,120,40,40 +26479,3,276,119,116,20,20 +26480,3,276,120,116,25,25 +26481,3,276,121,117,25,25 +26482,3,276,122,117,35,35 +26483,3,277,119,72,15,15 +26484,3,277,120,120,20,20 +26485,3,277,121,72,30,30 +26486,3,277,122,73,30,30 +26487,3,278,119,72,20,20 +26488,3,278,120,73,20,20 +26489,3,278,121,120,30,30 +26490,3,278,122,73,40,40 +26491,3,279,119,120,15,15 +26492,3,279,120,72,15,15 +26493,3,279,121,120,10,10 +26494,3,279,122,72,30,30 +26495,3,280,119,60,5,5 +26496,3,280,120,60,10,10 +26497,3,280,121,60,15,15 +26498,3,280,122,60,10,10 +26499,3,281,119,118,25,25 +26500,3,281,120,118,30,30 +26501,3,281,121,119,30,30 +26502,3,281,122,119,40,40 +26503,3,282,119,72,15,15 +26504,3,282,120,72,20,20 +26505,3,282,121,72,10,10 +26506,3,282,122,116,5,5 +26507,3,283,119,118,5,5 +26508,3,283,120,118,10,10 +26509,3,283,121,118,15,15 +26510,3,283,122,118,20,20 +26511,3,284,119,129,5,5 +26512,3,284,120,129,10,10 +26513,3,284,121,129,15,15 +26514,3,284,122,130,15,15 +26515,3,285,119,120,10,10 +26516,3,285,120,72,10,10 +26517,3,285,121,120,5,5 +26518,3,285,122,72,20,20 +26519,3,300,119,118,5,5 +26520,3,300,120,118,10,10 +26521,3,300,121,118,15,15 +26522,3,300,122,118,20,20 +26523,3,304,119,98,15,15 +26524,3,304,120,98,20,20 +26525,3,304,121,116,10,10 +26526,3,304,122,99,25,25 +26527,3,305,119,72,15,15 +26528,3,305,120,72,20,20 +26529,3,305,121,72,10,10 +26530,3,305,122,116,5,5 +26531,3,306,119,116,15,15 +26532,3,306,120,116,20,20 +26533,3,306,121,72,10,10 +26534,3,306,122,117,20,20 +26535,3,310,119,72,5,5 +26536,3,310,120,72,15,15 +26537,3,310,121,90,25,25 +26538,3,310,122,90,35,35 +26539,3,311,119,72,15,15 +26540,3,311,120,90,20,20 +26541,3,311,121,90,30,30 +26542,3,311,122,90,40,40 +26543,3,312,119,72,15,15 +26544,3,312,120,120,20,20 +26545,3,312,121,72,30,30 +26546,3,312,122,73,30,30 +26547,3,313,119,60,5,5 +26548,3,313,120,60,10,10 +26549,3,313,121,60,15,15 +26550,3,313,122,61,15,15 +26551,3,314,119,118,20,20 +26552,3,314,120,118,25,25 +26553,3,314,121,118,30,30 +26554,3,314,122,119,30,30 +26555,3,315,119,98,10,10 +26556,3,315,120,98,15,15 +26557,3,315,121,99,15,15 +26558,3,315,122,99,25,25 +26559,3,323,119,118,25,25 +26560,3,323,120,119,35,35 +26561,3,323,121,119,45,45 +26562,3,323,122,119,55,55 +26563,3,325,119,118,30,30 +26564,3,325,120,119,40,40 +26565,3,325,121,119,50,50 +26566,3,325,122,119,60,60 +26567,3,329,119,60,25,25 +26568,3,329,120,60,30,30 +26569,3,329,121,61,30,30 +26570,3,329,122,61,40,40 +26571,3,345,119,129,5,5 +26572,3,345,120,129,10,10 +26573,3,345,121,147,10,10 +26574,3,345,122,148,15,15 +26575,3,346,119,129,5,5 +26576,3,346,120,129,10,10 +26577,3,346,121,129,15,15 +26578,3,346,122,147,15,15 +26579,3,347,119,129,5,5 +26580,3,347,120,129,10,10 +26581,3,347,121,129,15,15 +26582,3,347,122,147,15,15 +26583,3,348,119,129,5,5 +26584,3,348,120,129,10,10 +26585,3,348,121,129,15,15 +26586,3,348,122,147,15,15 +26587,3,349,119,72,10,10 +26588,3,349,120,72,15,15 +26589,3,349,121,120,15,15 +26590,3,349,122,90,10,10 +26591,15,349,60,72,35,35 +26592,15,349,60,278,35,35 +26593,15,349,61,72,30,30 +26594,15,349,62,73,35,35 +26595,15,349,63,73,35,35 +26596,15,349,64,73,35,35 +26597,15,349,45,129,10,10 +26598,15,349,46,129,10,10 +26599,15,349,47,129,10,10 +26600,15,349,48,72,10,10 +26601,15,349,49,72,10,10 +26602,15,349,50,129,20,20 +26603,15,349,51,72,20,20 +26604,15,349,52,170,20,20 +26605,15,349,52,129,20,20 +26606,15,349,53,90,20,20 +26607,15,349,53,129,20,20 +26608,15,349,54,170,20,20 +26609,15,349,55,170,40,40 +26610,15,349,55,129,40,40 +26611,15,349,56,90,40,40 +26612,15,349,56,129,40,40 +26613,15,349,57,73,40,40 +26614,15,349,57,129,40,40 +26615,15,349,58,171,40,40 +26616,15,349,58,129,40,40 +26617,15,349,59,73,40,40 +26618,15,349,59,129,40,40 +26619,16,349,60,72,35,35 +26620,16,349,60,278,35,35 +26621,16,349,61,72,30,30 +26622,16,349,62,73,35,35 +26623,16,349,63,73,35,35 +26624,16,349,64,73,35,35 +26625,16,349,45,129,10,10 +26626,16,349,46,129,10,10 +26627,16,349,47,129,10,10 +26628,16,349,48,72,10,10 +26629,16,349,49,72,10,10 +26630,16,349,50,129,20,20 +26631,16,349,51,72,20,20 +26632,16,349,52,170,20,20 +26633,16,349,52,129,20,20 +26634,16,349,53,90,20,20 +26635,16,349,53,129,20,20 +26636,16,349,54,170,20,20 +26637,16,349,55,170,40,40 +26638,16,349,55,129,40,40 +26639,16,349,56,90,40,40 +26640,16,349,56,129,40,40 +26641,16,349,57,73,40,40 +26642,16,349,57,129,40,40 +26643,16,349,58,171,40,40 +26644,16,349,58,129,40,40 +26645,16,349,59,73,40,40 +26646,16,349,59,129,40,40 +26647,1,349,107,129,5,5 +26648,2,349,107,129,5,5 +26649,1,349,108,118,10,10 +26650,2,349,108,118,10,10 +26651,1,349,109,60,10,10 +26652,2,349,109,60,10,10 +26653,1,349,110,98,15,15 +26654,2,349,110,98,15,15 +26655,1,349,111,98,15,15 +26656,2,349,111,98,15,15 +26657,1,349,112,98,15,15 +26658,2,349,112,98,15,15 +26659,1,349,113,90,15,15 +26660,2,349,113,90,15,15 +26661,1,349,114,90,15,15 +26662,2,349,114,90,15,15 +26663,1,349,115,90,15,15 +26664,2,349,115,90,15,15 +26665,7,350,155,129,10,30 +26666,7,350,156,118,10,30 +26667,7,350,157,341,10,30 +26668,7,350,158,129,5,10 +26669,7,350,159,118,5,10 +26670,7,350,160,341,25,30 +26671,7,350,161,341,30,35 +26672,7,350,162,341,20,25 +26673,7,350,163,341,35,40 +26674,7,350,164,341,40,45 +26675,7,350,165,183,20,30 +26676,7,350,166,183,10,20 +26677,7,350,167,183,30,35 +26678,7,350,168,183,5,10 +26679,7,350,169,183,5,10 +26680,7,351,155,129,10,30 +26681,7,351,156,72,10,30 +26682,7,351,157,320,10,30 +26683,7,351,158,129,5,10 +26684,7,351,159,72,5,10 +26685,7,351,160,320,25,30 +26686,7,351,161,320,30,35 +26687,7,351,162,320,20,25 +26688,7,351,163,320,35,40 +26689,7,351,164,320,40,45 +26690,7,351,165,72,5,35 +26691,7,351,166,278,10,30 +26692,7,351,167,278,15,25 +26693,7,351,168,279,25,30 +26694,7,351,169,279,25,30 +26695,7,352,155,129,10,30 +26696,7,352,156,72,10,30 +26697,7,352,157,320,10,30 +26698,7,352,158,129,5,10 +26699,7,352,159,72,5,10 +26700,7,352,160,320,25,30 +26701,7,352,161,320,30,35 +26702,7,352,162,120,25,30 +26703,7,352,163,320,35,40 +26704,7,352,164,320,40,45 +26705,7,352,165,72,5,35 +26706,7,352,166,278,10,30 +26707,7,352,167,278,15,25 +26708,7,352,168,279,25,30 +26709,7,352,169,279,25,30 +26710,7,353,155,129,10,30 +26711,7,353,156,72,10,30 +26712,7,353,157,320,10,30 +26713,7,353,158,129,5,10 +26714,7,353,159,72,5,10 +26715,7,353,160,319,30,35 +26716,7,353,161,320,30,35 +26717,7,353,162,320,25,30 +26718,7,353,163,320,35,40 +26719,7,353,164,320,40,45 +26720,7,353,165,72,5,35 +26721,7,353,166,278,10,30 +26722,7,353,167,278,15,25 +26723,7,353,168,279,25,30 +26724,7,353,169,279,25,30 +26725,7,354,155,129,10,30 +26726,7,354,156,129,10,30 +26727,7,354,157,129,10,30 +26728,7,354,158,129,5,10 +26729,7,354,159,129,10,15 +26730,7,354,160,129,30,35 +26731,7,354,161,129,30,35 +26732,7,354,162,130,35,40 +26733,7,354,163,130,35,45 +26734,7,354,164,130,5,45 +26735,7,354,165,129,5,35 +26736,7,354,166,129,10,30 +26737,7,354,167,129,15,25 +26738,7,354,168,129,25,30 +26739,7,354,169,129,25,30 +26740,7,355,155,129,10,30 +26741,7,355,156,370,10,30 +26742,7,355,157,320,10,30 +26743,7,355,158,129,5,10 +26744,7,355,159,72,5,10 +26745,7,355,160,370,30,35 +26746,7,355,161,320,30,35 +26747,7,355,162,222,30,35 +26748,7,355,163,320,35,40 +26749,7,355,164,320,40,45 +26750,7,355,165,72,5,35 +26751,7,355,166,278,10,30 +26752,7,355,167,278,15,25 +26753,7,355,168,279,25,30 +26754,7,355,169,279,25,30 +26755,7,356,155,129,10,30 +26756,7,356,156,118,10,30 +26757,7,356,157,339,10,30 +26758,7,356,158,129,5,10 +26759,7,356,159,118,5,10 +26760,7,356,160,339,25,30 +26761,7,356,161,339,30,35 +26762,7,356,162,339,20,25 +26763,7,356,163,339,35,40 +26764,7,356,164,339,40,45 +26765,7,356,165,41,5,35 +26766,7,356,166,41,30,35 +26767,7,356,167,338,25,35 +26768,7,356,168,338,15,25 +26769,7,356,169,338,5,15 +26770,7,356,170,41,16,16 +26771,7,356,171,41,17,17 +26772,7,356,172,41,18,18 +26773,7,356,173,41,15,15 +26774,7,356,174,41,14,14 +26775,7,356,175,338,16,16 +26776,7,356,176,338,18,18 +26777,7,356,177,338,14,14 +26778,7,356,178,41,19,19 +26779,7,356,179,41,20,20 +26780,7,356,180,41,19,19 +26781,7,356,181,41,20,20 +26782,7,357,155,129,10,30 +26783,7,357,156,118,10,30 +26784,7,357,157,339,10,30 +26785,7,357,158,129,5,10 +26786,7,357,159,118,5,10 +26787,7,357,160,339,25,30 +26788,7,357,161,339,30,35 +26789,7,357,162,340,30,35 +26790,7,357,163,340,35,40 +26791,7,357,164,340,40,45 +26792,7,357,165,42,30,35 +26793,7,357,166,42,30,35 +26794,7,357,167,338,25,35 +26795,7,357,168,338,15,25 +26796,7,357,169,338,5,15 +26797,7,357,170,42,33,33 +26798,7,357,171,42,35,35 +26799,7,357,172,42,33,33 +26800,7,357,173,338,35,35 +26801,7,357,174,338,33,33 +26802,7,357,175,338,37,37 +26803,7,357,176,42,35,35 +26804,7,357,177,338,39,39 +26805,7,357,178,42,38,38 +26806,7,357,179,42,40,40 +26807,7,357,180,42,38,38 +26808,7,357,181,42,40,40 +26809,7,358,155,129,10,30 +26810,7,358,156,118,10,30 +26811,7,358,157,339,10,30 +26812,7,358,158,129,5,10 +26813,7,358,159,118,5,10 +26814,7,358,160,339,25,30 +26815,7,358,161,339,30,35 +26816,7,358,162,340,30,35 +26817,7,358,163,340,35,40 +26818,7,358,164,340,40,45 +26819,7,358,165,42,30,35 +26820,7,358,166,42,30,35 +26821,7,358,167,338,25,35 +26822,7,358,168,338,15,25 +26823,7,358,169,338,5,15 +26824,7,358,170,42,33,33 +26825,7,358,171,42,35,35 +26826,7,358,172,42,33,33 +26827,7,358,173,338,35,35 +26828,7,358,174,338,33,33 +26829,7,358,175,338,37,37 +26830,7,358,176,42,35,35 +26831,7,358,177,338,39,39 +26832,7,358,178,42,38,38 +26833,7,358,179,42,40,40 +26834,7,358,180,42,38,38 +26835,7,358,181,42,40,40 +26836,7,359,155,129,10,30 +26837,7,359,156,118,10,30 +26838,7,359,157,339,10,30 +26839,7,359,158,129,5,10 +26840,7,359,159,118,5,10 +26841,7,359,160,339,25,30 +26842,7,359,161,339,30,35 +26843,7,359,162,340,30,35 +26844,7,359,163,340,35,40 +26845,7,359,164,340,40,45 +26846,7,359,165,42,30,35 +26847,7,359,166,42,30,35 +26848,7,359,167,338,25,35 +26849,7,359,168,338,15,25 +26850,7,359,169,338,5,15 +26851,7,359,170,42,33,33 +26852,7,359,171,42,35,35 +26853,7,359,172,371,30,30 +26854,7,359,173,338,35,35 +26855,7,359,174,371,35,35 +26856,7,359,175,338,37,37 +26857,7,359,176,371,25,25 +26858,7,359,177,338,39,39 +26859,7,359,178,42,38,38 +26860,7,359,179,42,40,40 +26861,7,359,180,42,38,38 +26862,7,359,181,42,40,40 +26863,7,360,170,293,6,6 +26864,7,360,171,293,7,7 +26865,7,360,172,293,6,6 +26866,7,360,173,293,6,6 +26867,7,360,174,293,7,7 +26868,7,360,175,293,7,7 +26869,7,360,176,293,5,5 +26870,7,360,177,293,8,8 +26871,7,360,178,293,5,5 +26872,7,360,179,293,8,8 +26873,7,360,180,293,5,5 +26874,7,360,181,293,8,8 +26875,7,361,170,41,7,7 +26876,7,361,171,296,8,8 +26877,7,361,172,296,7,7 +26878,7,361,173,41,8,8 +26879,7,361,174,296,9,9 +26880,7,361,175,63,8,8 +26881,7,361,176,296,10,10 +26882,7,361,177,296,6,6 +26883,7,361,178,74,7,7 +26884,7,361,179,74,8,8 +26885,7,361,180,74,6,6 +26886,7,361,181,74,9,9 +26887,7,362,170,41,9,9 +26888,7,362,171,304,10,10 +26889,7,362,172,304,9,9 +26890,7,362,173,304,11,11 +26891,7,362,174,41,10,10 +26892,7,362,175,63,9,9 +26893,7,362,176,296,10,10 +26894,7,362,177,296,11,11 +26895,7,362,178,303,10,10 +26896,7,362,179,303,10,10 +26897,7,362,180,303,9,9 +26898,7,362,181,303,11,11 +26899,7,363,182,74,10,15 +26900,7,363,183,299,10,20 +26901,7,363,184,74,5,10 +26902,7,363,185,74,15,20 +26903,7,363,186,74,15,20 +26904,7,363,170,41,10,10 +26905,7,363,171,304,11,11 +26906,7,363,172,304,10,10 +26907,7,363,173,41,11,11 +26908,7,363,174,304,12,12 +26909,7,363,175,63,10,10 +26910,7,363,176,303,10,10 +26911,7,363,177,303,11,11 +26912,7,363,178,303,12,12 +26913,7,363,179,303,10,10 +26914,7,363,180,303,12,12 +26915,7,363,181,303,10,10 +26916,7,364,170,41,7,7 +26917,7,364,171,296,8,8 +26918,7,364,172,296,7,7 +26919,7,364,173,41,8,8 +26920,7,364,174,296,9,9 +26921,7,364,175,63,8,8 +26922,7,364,176,296,10,10 +26923,7,364,177,296,6,6 +26924,7,364,178,304,7,7 +26925,7,364,179,304,8,8 +26926,7,364,180,304,7,7 +26927,7,364,181,304,8,8 +26928,7,365,170,263,5,5 +26929,7,365,171,265,5,5 +26930,7,365,172,285,5,5 +26931,7,365,173,263,6,6 +26932,7,365,174,266,5,5 +26933,7,365,175,268,5,5 +26934,7,365,176,265,6,6 +26935,7,365,177,285,6,6 +26936,7,365,178,276,5,5 +26937,7,365,179,287,5,5 +26938,7,365,180,276,6,6 +26939,7,365,181,287,6,6 +26940,7,366,170,322,19,19 +26941,7,366,171,322,19,19 +26942,7,366,172,66,19,19 +26943,7,366,173,322,18,18 +26944,7,366,174,325,18,18 +26945,7,366,175,66,18,18 +26946,7,366,176,325,19,19 +26947,7,366,177,66,20,20 +26948,7,366,178,322,20,20 +26949,7,366,179,325,20,20 +26950,7,366,180,322,20,20 +26951,7,366,181,325,20,20 +26952,7,367,170,322,15,15 +26953,7,367,171,109,15,15 +26954,7,367,172,322,16,16 +26955,7,367,173,66,15,15 +26956,7,367,174,324,15,15 +26957,7,367,175,218,15,15 +26958,7,367,176,109,16,16 +26959,7,367,177,66,16,16 +26960,7,367,178,324,14,14 +26961,7,367,179,324,16,16 +26962,7,367,180,88,14,14 +26963,7,367,181,88,14,14 +26964,7,368,170,355,27,27 +26965,7,368,171,355,28,28 +26966,7,368,172,355,26,26 +26967,7,368,173,355,25,25 +26968,7,368,174,355,29,29 +26969,7,368,175,355,24,24 +26970,7,368,176,355,23,23 +26971,7,368,177,355,22,22 +26972,7,368,178,355,29,29 +26973,7,368,179,355,24,24 +26974,7,368,180,355,29,29 +26975,7,368,181,355,24,24 +26976,7,369,170,355,27,27 +26977,7,369,171,355,28,28 +26978,7,369,172,355,26,26 +26979,7,369,173,355,25,25 +26980,7,369,174,355,29,29 +26981,7,369,175,355,24,24 +26982,7,369,176,355,23,23 +26983,7,369,177,355,22,22 +26984,7,369,178,355,29,29 +26985,7,369,179,355,24,24 +26986,7,369,180,355,29,29 +26987,7,369,181,355,24,24 +26988,7,370,170,355,27,27 +26989,7,370,171,355,28,28 +26990,7,370,172,355,26,26 +26991,7,370,173,355,25,25 +26992,7,370,174,355,29,29 +26993,7,370,175,355,24,24 +26994,7,370,176,355,23,23 +26995,7,370,177,355,22,22 +26996,7,370,178,355,29,29 +26997,7,370,179,355,24,24 +26998,7,370,180,355,29,29 +26999,7,370,181,355,24,24 +27000,7,371,170,355,27,27 +27001,7,371,171,355,28,28 +27002,7,371,172,355,26,26 +27003,7,371,173,355,25,25 +27004,7,371,174,355,29,29 +27005,7,371,175,355,24,24 +27006,7,371,176,355,23,23 +27007,7,371,177,355,22,22 +27008,7,371,178,353,27,27 +27009,7,371,179,353,27,27 +27010,7,371,180,353,25,25 +27011,7,371,181,353,29,29 +27012,7,372,170,355,27,27 +27013,7,372,171,355,28,28 +27014,7,372,172,355,26,26 +27015,7,372,173,355,25,25 +27016,7,372,174,355,29,29 +27017,7,372,175,355,24,24 +27018,7,372,176,355,23,23 +27019,7,372,177,355,22,22 +27020,7,372,178,353,27,27 +27021,7,372,179,353,27,27 +27022,7,372,180,353,25,25 +27023,7,372,181,353,29,29 +27024,7,373,170,355,27,27 +27025,7,373,171,355,28,28 +27026,7,373,172,355,26,26 +27027,7,373,173,355,25,25 +27028,7,373,174,355,29,29 +27029,7,373,175,355,24,24 +27030,7,373,176,355,23,23 +27031,7,373,177,355,22,22 +27032,7,373,178,353,27,27 +27033,7,373,179,353,27,27 +27034,7,373,180,353,25,25 +27035,7,373,181,353,29,29 +27036,7,374,170,355,27,27 +27037,7,374,171,307,27,27 +27038,7,374,172,355,28,28 +27039,7,374,173,307,29,29 +27040,7,374,174,355,29,29 +27041,7,374,175,37,27,27 +27042,7,374,176,37,29,29 +27043,7,374,177,37,25,25 +27044,7,374,178,278,27,27 +27045,7,374,179,278,27,27 +27046,7,374,180,278,26,26 +27047,7,374,181,278,28,28 +27048,7,375,170,355,28,28 +27049,7,375,171,355,29,29 +27050,7,375,172,355,27,27 +27051,7,375,173,355,26,26 +27052,7,375,174,355,30,30 +27053,7,375,175,355,25,25 +27054,7,375,176,355,24,24 +27055,7,375,177,353,28,28 +27056,7,375,178,353,26,26 +27057,7,375,179,353,30,30 +27058,7,375,180,358,28,28 +27059,7,375,181,358,28,28 +27060,7,376,155,129,10,30 +27061,7,376,156,72,10,30 +27062,7,376,157,320,10,30 +27063,7,376,158,129,5,10 +27064,7,376,159,72,5,10 +27065,7,376,160,320,25,30 +27066,7,376,161,320,30,35 +27067,7,376,162,320,20,25 +27068,7,376,163,320,35,40 +27069,7,376,164,320,40,45 +27070,7,376,165,72,5,35 +27071,7,376,166,41,5,35 +27072,7,376,167,41,30,35 +27073,7,376,168,42,30,35 +27074,7,376,169,42,30,35 +27075,7,376,170,41,30,30 +27076,7,376,171,41,31,31 +27077,7,376,172,41,32,32 +27078,7,376,173,41,33,33 +27079,7,376,174,41,28,28 +27080,7,376,175,41,29,29 +27081,7,376,176,41,34,34 +27082,7,376,177,41,35,35 +27083,7,376,178,42,34,34 +27084,7,376,179,42,35,35 +27085,7,376,180,42,33,33 +27086,7,376,181,42,36,36 +27087,7,377,170,41,30,30 +27088,7,377,171,41,31,31 +27089,7,377,172,41,32,32 +27090,7,377,173,41,33,33 +27091,7,377,174,41,28,28 +27092,7,377,175,41,29,29 +27093,7,377,176,41,34,34 +27094,7,377,177,41,35,35 +27095,7,377,178,42,34,34 +27096,7,377,179,42,35,35 +27097,7,377,180,42,33,33 +27098,7,377,181,42,36,36 +27099,7,378,170,41,30,30 +27100,7,378,171,41,31,31 +27101,7,378,172,41,32,32 +27102,7,378,173,303,30,30 +27103,7,378,174,303,32,32 +27104,7,378,175,303,34,34 +27105,7,378,176,41,33,33 +27106,7,378,177,41,34,34 +27107,7,378,178,42,34,34 +27108,7,378,179,42,35,35 +27109,7,378,180,42,33,33 +27110,7,378,181,42,36,36 +27111,7,379,170,41,30,30 +27112,7,379,171,41,31,31 +27113,7,379,172,41,32,32 +27114,7,379,173,303,30,30 +27115,7,379,174,303,32,32 +27116,7,379,175,303,34,34 +27117,7,379,176,41,33,33 +27118,7,379,177,41,34,34 +27119,7,379,178,42,34,34 +27120,7,379,179,42,35,35 +27121,7,379,180,42,33,33 +27122,7,379,181,42,36,36 +27123,7,380,170,41,30,30 +27124,7,380,171,41,31,31 +27125,7,380,172,41,32,32 +27126,7,380,173,303,30,30 +27127,7,380,174,303,32,32 +27128,7,380,175,303,34,34 +27129,7,380,176,41,33,33 +27130,7,380,177,41,34,34 +27131,7,380,178,42,34,34 +27132,7,380,179,42,35,35 +27133,7,380,180,42,33,33 +27134,7,380,181,42,36,36 +27135,7,381,170,41,30,30 +27136,7,381,171,41,31,31 +27137,7,381,172,41,32,32 +27138,7,381,173,303,30,30 +27139,7,381,174,303,32,32 +27140,7,381,175,303,34,34 +27141,7,381,176,41,33,33 +27142,7,381,177,41,34,34 +27143,7,381,178,42,34,34 +27144,7,381,179,42,35,35 +27145,7,381,180,42,33,33 +27146,7,381,181,42,36,36 +27147,7,382,170,42,40,40 +27148,7,382,171,297,40,40 +27149,7,382,172,305,40,40 +27150,7,382,173,294,40,40 +27151,7,382,174,41,36,36 +27152,7,382,175,296,36,36 +27153,7,382,176,42,38,38 +27154,7,382,177,297,38,38 +27155,7,382,178,304,36,36 +27156,7,382,179,293,36,36 +27157,7,382,180,304,36,36 +27158,7,382,181,293,36,36 +27159,7,383,182,75,30,40 +27160,7,383,183,74,30,40 +27161,7,383,184,75,35,40 +27162,7,383,185,75,35,40 +27163,7,383,186,75,35,40 +27164,7,383,170,42,40,40 +27165,7,383,171,297,40,40 +27166,7,383,172,305,40,40 +27167,7,383,173,308,40,40 +27168,7,383,174,42,38,38 +27169,7,383,175,297,38,38 +27170,7,383,176,42,42,42 +27171,7,383,177,297,42,42 +27172,7,383,178,305,42,42 +27173,7,383,179,307,38,38 +27174,7,383,180,305,42,42 +27175,7,383,181,307,38,38 +27176,7,384,155,129,10,30 +27177,7,384,156,118,10,30 +27178,7,384,157,339,10,30 +27179,7,384,158,129,5,10 +27180,7,384,159,118,5,10 +27181,7,384,160,339,25,30 +27182,7,384,161,339,30,35 +27183,7,384,162,340,30,35 +27184,7,384,163,340,35,40 +27185,7,384,164,340,40,45 +27186,7,384,165,42,30,35 +27187,7,384,166,42,25,30 +27188,7,384,167,42,35,40 +27189,7,384,168,42,35,40 +27190,7,384,169,42,35,40 +27191,7,384,170,42,40,40 +27192,7,384,171,303,40,40 +27193,7,384,172,305,40,40 +27194,7,384,173,308,40,40 +27195,7,384,174,42,42,42 +27196,7,384,175,303,42,42 +27197,7,384,176,42,44,44 +27198,7,384,177,303,44,44 +27199,7,384,178,305,42,42 +27200,7,384,179,308,42,42 +27201,7,384,180,305,44,44 +27202,7,384,181,308,44,44 +27203,7,385,155,129,10,30 +27204,7,385,156,72,10,30 +27205,7,385,157,320,10,30 +27206,7,385,158,129,5,10 +27207,7,385,159,72,5,10 +27208,7,385,160,320,25,30 +27209,7,385,161,320,30,35 +27210,7,385,162,320,20,25 +27211,7,385,163,320,35,40 +27212,7,385,164,320,40,45 +27213,7,385,165,72,5,35 +27214,7,385,166,41,5,35 +27215,7,385,167,363,25,30 +27216,7,385,168,363,25,30 +27217,7,385,169,363,25,35 +27218,7,385,170,41,26,26 +27219,7,385,171,363,26,26 +27220,7,385,172,41,28,28 +27221,7,385,173,363,28,28 +27222,7,385,174,41,30,30 +27223,7,385,175,363,30,30 +27224,7,385,176,41,32,32 +27225,7,385,177,363,32,32 +27226,7,385,178,42,32,32 +27227,7,385,179,363,32,32 +27228,7,385,180,42,32,32 +27229,7,385,181,363,32,32 +27230,7,386,170,41,26,26 +27231,7,386,171,363,26,26 +27232,7,386,172,41,28,28 +27233,7,386,173,363,28,28 +27234,7,386,174,41,30,30 +27235,7,386,175,363,30,30 +27236,7,386,176,361,26,26 +27237,7,386,177,363,32,32 +27238,7,386,178,42,30,30 +27239,7,386,179,361,28,28 +27240,7,386,180,42,32,32 +27241,7,386,181,361,30,30 +27242,7,387,170,100,24,24 +27243,7,387,171,81,24,24 +27244,7,387,172,100,25,25 +27245,7,387,173,81,25,25 +27246,7,387,174,100,23,23 +27247,7,387,175,81,23,23 +27248,7,387,176,100,26,26 +27249,7,387,177,81,26,26 +27250,7,387,178,100,22,22 +27251,7,387,179,81,22,22 +27252,7,387,180,100,22,22 +27253,7,387,181,81,22,22 +27254,7,388,170,100,24,24 +27255,7,388,171,81,24,24 +27256,7,388,172,100,25,25 +27257,7,388,173,81,25,25 +27258,7,388,174,100,23,23 +27259,7,388,175,81,23,23 +27260,7,388,176,100,26,26 +27261,7,388,177,81,26,26 +27262,7,388,178,100,22,22 +27263,7,388,179,81,22,22 +27264,7,388,180,101,26,26 +27265,7,388,181,82,26,26 +27266,7,389,155,129,10,30 +27267,7,389,156,72,10,30 +27268,7,389,157,72,10,30 +27269,7,389,158,129,5,10 +27270,7,389,159,72,5,10 +27271,7,389,160,72,25,30 +27272,7,389,161,72,30,35 +27273,7,389,162,73,30,35 +27274,7,389,163,73,25,30 +27275,7,389,164,73,20,25 +27276,7,389,165,72,5,35 +27277,7,389,166,72,5,35 +27278,7,389,167,72,5,35 +27279,7,389,168,72,5,35 +27280,7,389,169,73,30,35 +27281,7,390,170,303,48,48 +27282,7,390,171,42,48,48 +27283,7,390,172,42,50,50 +27284,7,390,173,303,50,50 +27285,7,390,174,344,48,48 +27286,7,390,175,356,48,48 +27287,7,390,176,356,50,50 +27288,7,390,177,344,49,49 +27289,7,390,178,344,47,47 +27290,7,390,179,344,50,50 +27291,7,390,180,344,47,47 +27292,7,390,181,344,50,50 +27293,7,391,170,303,51,51 +27294,7,391,171,42,51,51 +27295,7,391,172,42,53,53 +27296,7,391,173,303,53,53 +27297,7,391,174,344,51,51 +27298,7,391,175,356,51,51 +27299,7,391,176,356,53,53 +27300,7,391,177,344,52,52 +27301,7,391,178,344,50,50 +27302,7,391,179,344,53,53 +27303,7,391,180,344,50,50 +27304,7,391,181,344,53,53 +27305,7,392,170,303,54,54 +27306,7,392,171,42,54,54 +27307,7,392,172,42,56,56 +27308,7,392,173,303,56,56 +27309,7,392,174,344,54,54 +27310,7,392,175,356,54,54 +27311,7,392,176,356,56,56 +27312,7,392,177,344,55,55 +27313,7,392,178,344,56,56 +27314,7,392,179,334,57,57 +27315,7,392,180,334,54,54 +27316,7,392,181,334,60,60 +27317,7,393,170,265,2,2 +27318,7,393,171,263,2,2 +27319,7,393,172,265,2,2 +27320,7,393,173,265,3,3 +27321,7,393,174,263,3,3 +27322,7,393,175,263,3,3 +27323,7,393,176,265,3,3 +27324,7,393,177,263,3,3 +27325,7,393,178,261,2,2 +27326,7,393,179,261,2,2 +27327,7,393,180,261,3,3 +27328,7,393,181,261,3,3 +27329,7,394,155,129,10,30 +27330,7,394,156,118,10,30 +27331,7,394,157,341,10,30 +27332,7,394,158,129,5,10 +27333,7,394,159,118,5,10 +27334,7,394,160,341,25,30 +27335,7,394,161,341,30,35 +27336,7,394,162,341,20,25 +27337,7,394,163,341,35,40 +27338,7,394,164,341,40,45 +27339,7,394,165,183,20,30 +27340,7,394,166,183,10,20 +27341,7,394,167,183,30,35 +27342,7,394,168,183,5,10 +27343,7,394,169,283,20,30 +27344,7,394,170,263,3,3 +27345,7,394,171,265,3,3 +27346,7,394,172,263,4,4 +27347,7,394,173,265,4,4 +27348,7,394,174,273,3,3 +27349,7,394,175,273,4,4 +27350,7,394,176,261,3,3 +27351,7,394,177,261,3,3 +27352,7,394,178,261,4,4 +27353,7,394,179,280,4,4 +27354,7,394,180,261,4,4 +27355,7,394,181,283,3,3 +27356,7,395,155,129,10,30 +27357,7,395,156,72,10,30 +27358,7,395,157,320,10,30 +27359,7,395,158,129,5,10 +27360,7,395,159,72,5,10 +27361,7,395,160,319,30,35 +27362,7,395,161,320,30,35 +27363,7,395,162,320,25,30 +27364,7,395,163,320,35,40 +27365,7,395,164,320,40,45 +27366,7,395,165,72,5,35 +27367,7,395,166,278,10,30 +27368,7,395,167,278,15,25 +27369,7,395,168,279,25,30 +27370,7,395,169,279,25,30 +27371,7,395,170,263,2,2 +27372,7,395,171,263,3,3 +27373,7,395,172,263,3,3 +27374,7,395,173,263,4,4 +27375,7,395,174,261,2,2 +27376,7,395,175,261,3,3 +27377,7,395,176,261,3,3 +27378,7,395,177,261,4,4 +27379,7,395,178,278,3,3 +27380,7,395,179,278,3,3 +27381,7,395,180,278,2,2 +27382,7,395,181,278,4,4 +27383,7,396,155,129,10,30 +27384,7,396,156,129,10,30 +27385,7,396,157,129,10,30 +27386,7,396,158,129,5,10 +27387,7,396,159,129,5,10 +27388,7,396,160,129,25,30 +27389,7,396,161,129,30,35 +27390,7,396,162,129,20,25 +27391,7,396,163,129,35,40 +27392,7,396,164,129,40,45 +27393,7,396,165,278,10,30 +27394,7,396,166,278,15,25 +27395,7,396,167,278,15,25 +27396,7,396,168,279,25,30 +27397,7,396,169,279,25,30 +27398,7,396,170,263,4,4 +27399,7,396,171,265,4,4 +27400,7,396,172,263,5,5 +27401,7,396,173,265,5,5 +27402,7,396,174,263,4,4 +27403,7,396,175,263,5,5 +27404,7,396,176,276,4,4 +27405,7,396,177,276,5,5 +27406,7,396,178,278,4,4 +27407,7,396,179,278,4,4 +27408,7,396,180,278,3,3 +27409,7,396,181,278,5,5 +27410,7,397,155,129,10,30 +27411,7,397,156,72,10,30 +27412,7,397,157,320,10,30 +27413,7,397,158,129,5,10 +27414,7,397,159,72,5,10 +27415,7,397,160,320,25,30 +27416,7,397,161,320,30,35 +27417,7,397,162,320,20,25 +27418,7,397,163,320,35,40 +27419,7,397,164,320,40,45 +27420,7,397,165,72,5,35 +27421,7,397,166,278,10,30 +27422,7,397,167,278,15,25 +27423,7,397,168,279,25,30 +27424,7,397,169,279,25,30 +27425,7,398,155,129,10,30 +27426,7,398,156,72,10,30 +27427,7,398,157,320,10,30 +27428,7,398,158,129,5,10 +27429,7,398,159,72,5,10 +27430,7,398,160,320,25,30 +27431,7,398,161,320,30,35 +27432,7,398,162,320,20,25 +27433,7,398,163,320,35,40 +27434,7,398,164,320,40,45 +27435,7,398,165,72,5,35 +27436,7,398,166,278,10,30 +27437,7,398,167,278,15,25 +27438,7,398,168,279,25,30 +27439,7,398,169,279,25,30 +27440,7,399,155,129,10,30 +27441,7,399,156,72,10,30 +27442,7,399,157,320,10,30 +27443,7,399,158,129,5,10 +27444,7,399,159,72,5,10 +27445,7,399,160,320,25,30 +27446,7,399,161,320,30,35 +27447,7,399,162,320,20,25 +27448,7,399,163,320,35,40 +27449,7,399,164,320,40,45 +27450,7,399,165,72,5,35 +27451,7,399,166,278,10,30 +27452,7,399,167,278,15,25 +27453,7,399,168,279,25,30 +27454,7,399,169,279,25,30 +27455,7,400,155,129,10,30 +27456,7,400,156,72,10,30 +27457,7,400,157,320,10,30 +27458,7,400,158,129,5,10 +27459,7,400,159,72,5,10 +27460,7,400,160,320,25,30 +27461,7,400,161,320,30,35 +27462,7,400,162,320,20,25 +27463,7,400,163,320,35,40 +27464,7,400,164,320,40,45 +27465,7,400,165,72,5,35 +27466,7,400,166,278,10,30 +27467,7,400,167,278,15,25 +27468,7,400,168,279,25,30 +27469,7,400,169,279,25,30 +27470,7,401,155,129,10,30 +27471,7,401,156,72,10,30 +27472,7,401,157,320,10,30 +27473,7,401,158,129,5,10 +27474,7,401,159,72,5,10 +27475,7,401,160,320,25,30 +27476,7,401,161,320,30,35 +27477,7,401,162,320,20,25 +27478,7,401,163,320,35,40 +27479,7,401,164,320,40,45 +27480,7,401,165,72,5,35 +27481,7,401,166,278,10,30 +27482,7,401,167,278,15,25 +27483,7,401,168,279,25,30 +27484,7,401,169,279,25,30 +27485,7,402,155,129,10,30 +27486,7,402,156,72,10,30 +27487,7,402,157,320,10,30 +27488,7,402,158,129,5,10 +27489,7,402,159,72,5,10 +27490,7,402,160,320,25,30 +27491,7,402,161,320,30,35 +27492,7,402,162,320,20,25 +27493,7,402,163,320,35,40 +27494,7,402,164,320,40,45 +27495,7,402,165,72,5,35 +27496,7,402,166,278,10,30 +27497,7,402,167,278,15,25 +27498,7,402,168,279,25,30 +27499,7,402,169,279,25,30 +27500,7,402,170,263,12,12 +27501,7,402,171,309,12,12 +27502,7,402,172,316,12,12 +27503,7,402,173,309,13,13 +27504,7,402,174,312,13,13 +27505,7,402,175,43,13,13 +27506,7,402,176,312,13,13 +27507,7,402,177,316,13,13 +27508,7,402,178,278,12,12 +27509,7,402,179,278,12,12 +27510,7,402,180,311,12,12 +27511,7,402,181,311,13,13 +27512,7,403,155,129,10,30 +27513,7,403,156,118,10,30 +27514,7,403,157,339,10,30 +27515,7,403,158,129,5,10 +27516,7,403,159,118,5,10 +27517,7,403,182,74,10,15 +27518,7,403,183,74,5,10 +27519,7,403,184,74,15,20 +27520,7,403,185,74,15,20 +27521,7,403,186,74,15,20 +27522,7,403,160,339,25,30 +27523,7,403,161,339,30,35 +27524,7,403,162,339,20,25 +27525,7,403,163,339,35,40 +27526,7,403,164,339,40,45 +27527,7,403,165,183,20,30 +27528,7,403,166,183,10,20 +27529,7,403,167,183,30,35 +27530,7,403,168,183,5,10 +27531,7,403,169,283,20,30 +27532,7,403,170,27,20,20 +27533,7,403,171,328,20,20 +27534,7,403,172,27,21,21 +27535,7,403,173,328,21,21 +27536,7,403,174,331,19,19 +27537,7,403,175,331,21,21 +27538,7,403,176,27,19,19 +27539,7,403,177,328,19,19 +27540,7,403,178,343,20,20 +27541,7,403,179,343,20,20 +27542,7,403,180,343,22,22 +27543,7,403,181,343,22,22 +27544,7,404,170,322,15,15 +27545,7,404,171,322,15,15 +27546,7,404,172,66,15,15 +27547,7,404,173,322,14,14 +27548,7,404,174,322,14,14 +27549,7,404,175,66,14,14 +27550,7,404,176,322,16,16 +27551,7,404,177,66,16,16 +27552,7,404,178,322,16,16 +27553,7,404,179,322,16,16 +27554,7,404,180,322,16,16 +27555,7,404,181,322,16,16 +27556,7,405,170,327,15,15 +27557,7,405,171,327,15,15 +27558,7,405,172,27,15,15 +27559,7,405,173,327,14,14 +27560,7,405,174,327,14,14 +27561,7,405,175,27,14,14 +27562,7,405,176,327,16,16 +27563,7,405,177,27,16,16 +27564,7,405,178,327,16,16 +27565,7,405,179,227,16,16 +27566,7,405,180,327,16,16 +27567,7,405,181,227,16,16 +27568,7,406,155,129,10,30 +27569,7,406,156,118,10,30 +27570,7,406,157,339,10,30 +27571,7,406,158,129,5,10 +27572,7,406,159,118,5,10 +27573,7,406,182,74,10,15 +27574,7,406,183,74,5,10 +27575,7,406,184,74,15,20 +27576,7,406,185,74,15,20 +27577,7,406,186,74,15,20 +27578,7,406,160,339,25,30 +27579,7,406,161,339,30,35 +27580,7,406,162,339,20,25 +27581,7,406,163,339,35,40 +27582,7,406,164,339,40,45 +27583,7,406,165,183,20,30 +27584,7,406,166,183,10,20 +27585,7,406,167,183,30,35 +27586,7,406,168,183,5,10 +27587,7,406,169,283,20,30 +27588,7,406,170,333,16,16 +27589,7,406,171,273,16,16 +27590,7,406,172,333,17,17 +27591,7,406,173,333,15,15 +27592,7,406,174,273,15,15 +27593,7,406,175,335,16,16 +27594,7,406,176,274,16,16 +27595,7,406,177,274,18,18 +27596,7,406,178,335,17,17 +27597,7,406,179,335,15,15 +27598,7,406,180,335,17,17 +27599,7,406,181,283,15,15 +27600,7,407,155,129,10,30 +27601,7,407,156,72,10,30 +27602,7,407,157,320,10,30 +27603,7,407,158,129,5,10 +27604,7,407,159,72,5,10 +27605,7,407,160,320,25,30 +27606,7,407,161,320,30,35 +27607,7,407,162,320,20,25 +27608,7,407,163,320,35,40 +27609,7,407,164,320,40,45 +27610,7,407,165,72,5,35 +27611,7,407,166,278,10,30 +27612,7,407,167,278,15,25 +27613,7,407,168,279,25,30 +27614,7,407,169,279,25,30 +27615,7,407,170,333,23,23 +27616,7,407,171,276,23,23 +27617,7,407,172,333,25,25 +27618,7,407,173,276,24,24 +27619,7,407,174,276,25,25 +27620,7,407,175,277,25,25 +27621,7,407,176,39,24,24 +27622,7,407,177,39,25,25 +27623,7,407,178,278,24,24 +27624,7,407,179,278,24,24 +27625,7,407,180,278,26,26 +27626,7,407,181,278,25,25 +27627,7,408,170,263,6,6 +27628,7,408,171,293,6,6 +27629,7,408,172,290,6,6 +27630,7,408,173,293,7,7 +27631,7,408,174,290,7,7 +27632,7,408,175,276,6,6 +27633,7,408,176,276,7,7 +27634,7,408,177,276,8,8 +27635,7,408,178,263,7,7 +27636,7,408,179,263,8,8 +27637,7,408,180,300,7,7 +27638,7,408,181,300,8,8 +27639,7,409,155,129,10,30 +27640,7,409,156,118,10,30 +27641,7,409,157,341,10,30 +27642,7,409,158,129,5,10 +27643,7,409,159,118,5,10 +27644,7,409,160,341,25,30 +27645,7,409,161,341,30,35 +27646,7,409,162,341,20,25 +27647,7,409,163,341,35,40 +27648,7,409,164,341,40,45 +27649,7,409,165,183,20,30 +27650,7,409,166,183,10,20 +27651,7,409,167,183,30,35 +27652,7,409,168,183,5,10 +27653,7,409,169,283,20,30 +27654,7,409,170,263,13,13 +27655,7,409,171,315,13,13 +27656,7,409,172,263,14,14 +27657,7,409,173,315,14,14 +27658,7,409,174,183,13,13 +27659,7,409,175,43,13,13 +27660,7,409,176,314,13,13 +27661,7,409,177,314,13,13 +27662,7,409,178,314,14,14 +27663,7,409,179,314,14,14 +27664,7,409,180,313,13,13 +27665,7,409,181,283,13,13 +27666,7,410,155,129,10,30 +27667,7,410,156,72,10,30 +27668,7,410,157,318,10,30 +27669,7,410,158,129,5,10 +27670,7,410,159,72,5,10 +27671,7,410,160,319,30,35 +27672,7,410,161,318,30,35 +27673,7,410,162,318,20,25 +27674,7,410,163,318,35,40 +27675,7,410,164,318,40,45 +27676,7,410,165,72,5,35 +27677,7,410,166,278,10,30 +27678,7,410,167,278,15,25 +27679,7,410,168,279,25,30 +27680,7,410,169,279,25,30 +27681,7,410,170,263,24,24 +27682,7,410,171,309,24,24 +27683,7,410,172,263,26,26 +27684,7,410,173,309,26,26 +27685,7,410,174,264,26,26 +27686,7,410,175,310,26,26 +27687,7,410,176,278,25,25 +27688,7,410,177,278,25,25 +27689,7,410,178,278,26,26 +27690,7,410,179,278,26,26 +27691,7,410,180,278,27,27 +27692,7,410,181,352,25,25 +27693,7,411,155,129,10,30 +27694,7,411,156,72,10,30 +27695,7,411,157,318,10,30 +27696,7,411,158,129,5,10 +27697,7,411,159,72,5,10 +27698,7,411,160,318,25,30 +27699,7,411,161,318,30,35 +27700,7,411,162,318,20,25 +27701,7,411,163,318,35,40 +27702,7,411,164,318,40,45 +27703,7,411,165,72,5,35 +27704,7,411,166,278,10,30 +27705,7,411,167,278,15,25 +27706,7,411,168,279,25,30 +27707,7,411,169,279,25,30 +27708,7,411,170,263,25,25 +27709,7,411,171,264,25,25 +27710,7,411,172,263,27,27 +27711,7,411,173,43,25,25 +27712,7,411,174,264,27,27 +27713,7,411,175,43,26,26 +27714,7,411,176,43,27,27 +27715,7,411,177,43,24,24 +27716,7,411,178,357,25,25 +27717,7,411,179,357,26,26 +27718,7,411,180,357,27,27 +27719,7,411,181,352,25,25 +27720,7,412,155,129,10,30 +27721,7,412,156,118,10,30 +27722,7,412,157,339,10,30 +27723,7,412,158,129,5,10 +27724,7,412,159,118,5,10 +27725,7,412,160,339,25,30 +27726,7,412,161,339,30,35 +27727,7,412,162,339,20,25 +27728,7,412,163,339,35,40 +27729,7,412,164,339,40,45 +27730,7,412,165,183,20,30 +27731,7,412,166,183,10,20 +27732,7,412,167,183,30,35 +27733,7,412,168,183,5,10 +27734,7,412,169,283,20,30 +27735,7,412,170,263,25,25 +27736,7,412,171,264,25,25 +27737,7,412,172,264,27,27 +27738,7,412,173,43,25,25 +27739,7,412,174,183,25,25 +27740,7,412,175,43,26,26 +27741,7,412,176,43,27,27 +27742,7,412,177,183,27,27 +27743,7,412,178,359,25,25 +27744,7,412,179,359,27,27 +27745,7,412,180,352,25,25 +27746,7,412,181,283,25,25 +27747,7,413,155,129,10,30 +27748,7,413,156,72,10,30 +27749,7,413,157,320,10,30 +27750,7,413,158,129,5,10 +27751,7,413,159,72,5,10 +27752,7,413,160,320,25,30 +27753,7,413,161,320,30,35 +27754,7,413,162,320,20,25 +27755,7,413,163,320,35,40 +27756,7,413,164,320,40,45 +27757,7,413,165,72,5,35 +27758,7,413,166,278,10,30 +27759,7,413,167,278,15,25 +27760,7,413,168,279,25,30 +27761,7,413,169,279,25,30 +27762,7,413,170,263,26,26 +27763,7,413,171,355,26,26 +27764,7,413,172,264,26,26 +27765,7,413,173,355,28,28 +27766,7,413,174,264,28,28 +27767,7,413,175,43,26,26 +27768,7,413,176,43,28,28 +27769,7,413,177,44,28,28 +27770,7,413,178,278,26,26 +27771,7,413,179,278,27,27 +27772,7,413,180,278,28,28 +27773,7,413,181,352,25,25 +27774,7,414,155,129,10,30 +27775,7,414,156,72,10,30 +27776,7,414,157,320,10,30 +27777,7,414,158,129,5,10 +27778,7,414,159,72,5,10 +27779,7,414,160,319,30,35 +27780,7,414,161,320,30,35 +27781,7,414,162,320,25,30 +27782,7,414,163,320,35,40 +27783,7,414,164,320,40,45 +27784,7,414,165,72,5,35 +27785,7,414,166,278,10,30 +27786,7,414,167,278,15,25 +27787,7,414,168,279,25,30 +27788,7,414,169,279,25,30 +27789,7,415,155,129,10,30 +27790,7,415,156,72,10,30 +27791,7,415,157,320,10,30 +27792,7,415,158,129,5,10 +27793,7,415,159,72,5,10 +27794,7,415,160,320,25,30 +27795,7,415,161,320,30,35 +27796,7,415,162,320,20,25 +27797,7,415,163,320,35,40 +27798,7,415,164,320,40,45 +27799,7,415,165,72,5,35 +27800,7,415,166,278,10,30 +27801,7,415,167,278,15,25 +27802,7,415,168,279,25,30 +27803,7,415,169,279,25,30 +27804,7,415,170,263,26,26 +27805,7,415,171,355,26,26 +27806,7,415,172,264,26,26 +27807,7,415,173,355,28,28 +27808,7,415,174,264,28,28 +27809,7,415,175,43,26,26 +27810,7,415,176,43,28,28 +27811,7,415,177,44,28,28 +27812,7,415,178,278,26,26 +27813,7,415,179,278,27,27 +27814,7,415,180,278,28,28 +27815,7,415,181,352,25,25 +27816,7,416,155,129,10,30 +27817,7,416,156,72,10,30 +27818,7,416,157,320,10,30 +27819,7,416,158,129,5,10 +27820,7,416,159,72,5,10 +27821,7,416,160,319,30,35 +27822,7,416,161,320,30,35 +27823,7,416,162,320,25,30 +27824,7,416,163,320,35,40 +27825,7,416,164,320,40,45 +27826,7,416,165,72,5,35 +27827,7,416,166,278,10,30 +27828,7,416,167,278,15,25 +27829,7,416,168,279,25,30 +27830,7,416,169,279,25,30 +27831,7,417,165,366,20,30 +27832,7,417,166,170,20,30 +27833,7,417,167,366,30,35 +27834,7,417,168,369,30,35 +27835,7,417,169,369,30,35 +27836,7,418,155,129,10,30 +27837,7,418,156,72,10,30 +27838,7,418,157,320,10,30 +27839,7,418,158,129,5,10 +27840,7,418,159,72,5,10 +27841,7,418,160,319,30,35 +27842,7,418,161,320,30,35 +27843,7,418,162,320,25,30 +27844,7,418,163,320,35,40 +27845,7,418,164,320,40,45 +27846,7,418,165,72,5,35 +27847,7,418,166,278,10,30 +27848,7,418,167,278,15,25 +27849,7,418,168,279,25,30 +27850,7,418,169,279,25,30 +27851,7,419,155,129,10,30 +27852,7,419,156,72,10,30 +27853,7,419,157,320,10,30 +27854,7,419,158,129,5,10 +27855,7,419,159,72,5,10 +27856,7,419,160,319,30,35 +27857,7,419,161,320,30,35 +27858,7,419,162,320,25,30 +27859,7,419,163,320,35,40 +27860,7,419,164,320,40,45 +27861,7,419,165,72,5,35 +27862,7,419,166,278,10,30 +27863,7,419,167,278,15,25 +27864,7,419,168,279,25,30 +27865,7,419,169,279,25,30 +27866,7,420,165,366,20,30 +27867,7,420,166,170,20,30 +27868,7,420,167,366,30,35 +27869,7,420,168,369,30,35 +27870,7,420,169,369,30,35 +27871,7,421,155,129,10,30 +27872,7,421,156,72,10,30 +27873,7,421,157,320,10,30 +27874,7,421,158,129,5,10 +27875,7,421,159,72,5,10 +27876,7,421,160,319,30,35 +27877,7,421,161,320,30,35 +27878,7,421,162,320,25,30 +27879,7,421,163,320,35,40 +27880,7,421,164,320,40,45 +27881,7,421,165,72,5,35 +27882,7,421,166,278,10,30 +27883,7,421,167,278,15,25 +27884,7,421,168,279,25,30 +27885,7,421,169,279,25,30 +27886,7,422,155,129,10,30 +27887,7,422,156,370,10,30 +27888,7,422,157,320,10,30 +27889,7,422,158,129,5,10 +27890,7,422,159,72,5,10 +27891,7,422,160,370,30,35 +27892,7,422,161,320,30,35 +27893,7,422,162,222,30,35 +27894,7,422,163,320,35,40 +27895,7,422,164,320,40,45 +27896,7,422,165,72,5,35 +27897,7,422,166,278,10,30 +27898,7,422,167,278,15,25 +27899,7,422,168,279,25,30 +27900,7,422,169,279,25,30 +27901,7,423,155,129,10,30 +27902,7,423,156,72,10,30 +27903,7,423,157,320,10,30 +27904,7,423,158,129,5,10 +27905,7,423,159,72,5,10 +27906,7,423,160,319,30,35 +27907,7,423,161,320,30,35 +27908,7,423,162,320,25,30 +27909,7,423,163,320,35,40 +27910,7,423,164,320,40,45 +27911,7,423,165,72,5,35 +27912,7,423,166,278,10,30 +27913,7,423,167,278,15,25 +27914,7,423,168,279,25,30 +27915,7,423,169,321,35,40 +27916,7,424,155,129,10,30 +27917,7,424,156,72,10,30 +27918,7,424,157,320,10,30 +27919,7,424,158,129,5,10 +27920,7,424,159,72,5,10 +27921,7,424,160,319,30,35 +27922,7,424,161,320,30,35 +27923,7,424,162,320,25,30 +27924,7,424,163,320,35,40 +27925,7,424,164,320,40,45 +27926,7,424,165,72,5,35 +27927,7,424,166,278,10,30 +27928,7,424,167,278,15,25 +27929,7,424,168,279,25,30 +27930,7,424,169,279,25,30 +27931,7,424,170,360,30,30 +27932,7,424,171,360,35,35 +27933,7,424,172,360,25,25 +27934,7,424,173,360,40,40 +27935,7,424,174,360,20,20 +27936,7,424,175,360,45,45 +27937,7,424,176,360,15,15 +27938,7,424,177,360,50,50 +27939,7,424,178,360,10,10 +27940,7,424,179,360,5,5 +27941,7,424,180,360,10,10 +27942,7,424,181,360,5,5 +27943,7,425,155,129,10,30 +27944,7,425,156,72,10,30 +27945,7,425,157,320,10,30 +27946,7,425,158,129,5,10 +27947,7,425,159,72,5,10 +27948,7,425,160,319,30,35 +27949,7,425,161,320,30,35 +27950,7,425,162,320,25,30 +27951,7,425,163,320,35,40 +27952,7,425,164,320,40,45 +27953,7,425,165,72,5,35 +27954,7,425,166,278,10,30 +27955,7,425,167,278,15,25 +27956,7,425,168,279,25,30 +27957,7,425,169,279,25,30 +27958,7,426,155,129,10,30 +27959,7,426,156,72,10,30 +27960,7,426,157,320,10,30 +27961,7,426,158,129,5,10 +27962,7,426,159,72,5,10 +27963,7,426,160,319,30,35 +27964,7,426,161,320,30,35 +27965,7,426,162,116,25,30 +27966,7,426,163,320,35,40 +27967,7,426,164,320,40,45 +27968,7,426,165,72,5,35 +27969,7,426,166,278,10,30 +27970,7,426,167,278,15,25 +27971,7,426,168,279,25,30 +27972,7,426,169,279,25,30 +27973,7,427,155,129,10,30 +27974,7,427,156,72,10,30 +27975,7,427,157,320,10,30 +27976,7,427,158,129,5,10 +27977,7,427,159,72,5,10 +27978,7,427,160,319,30,35 +27979,7,427,161,320,30,35 +27980,7,427,162,116,25,30 +27981,7,427,163,320,35,40 +27982,7,427,164,320,40,45 +27983,7,427,165,72,5,35 +27984,7,427,166,278,10,30 +27985,7,427,167,278,15,25 +27986,7,427,168,279,25,30 +27987,7,427,169,279,25,30 +27988,7,428,155,129,10,30 +27989,7,428,156,72,10,30 +27990,7,428,157,320,10,30 +27991,7,428,158,129,5,10 +27992,7,428,159,72,5,10 +27993,7,428,160,319,30,35 +27994,7,428,161,320,30,35 +27995,7,428,162,116,25,30 +27996,7,428,163,320,35,40 +27997,7,428,164,320,40,45 +27998,7,428,165,72,5,35 +27999,7,428,166,278,10,30 +28000,7,428,167,278,15,25 +28001,7,428,168,279,25,30 +28002,7,428,169,279,25,30 +28003,7,429,155,129,10,30 +28004,7,429,156,118,10,25 +28005,7,429,157,118,10,30 +28006,7,429,158,129,5,10 +28007,7,429,159,118,5,10 +28008,7,429,160,118,25,30 +28009,7,429,161,118,30,35 +28010,7,429,162,119,30,35 +28011,7,429,163,119,35,40 +28012,7,429,164,119,25,30 +28013,7,429,165,54,20,30 +28014,7,429,166,54,20,30 +28015,7,429,167,54,30,35 +28016,7,429,168,55,30,35 +28017,7,429,169,55,25,40 +28018,7,429,170,111,27,27 +28019,7,429,171,43,27,27 +28020,7,429,172,111,29,29 +28021,7,429,173,43,29,29 +28022,7,429,174,84,27,27 +28023,7,429,175,44,29,29 +28024,7,429,176,44,31,31 +28025,7,429,177,84,29,29 +28026,7,429,178,85,29,29 +28027,7,429,179,127,27,27 +28028,7,429,180,85,31,31 +28029,7,429,181,127,29,29 +28030,7,430,182,74,10,15 +28031,7,430,183,74,5,10 +28032,7,430,184,74,15,20 +28033,7,430,185,74,20,25 +28034,7,430,186,74,25,30 +28035,7,430,170,231,27,27 +28036,7,430,171,43,27,27 +28037,7,430,172,231,29,29 +28038,7,430,173,43,29,29 +28039,7,430,174,177,27,27 +28040,7,430,175,44,29,29 +28041,7,430,176,44,31,31 +28042,7,430,177,177,29,29 +28043,7,430,178,178,29,29 +28044,7,430,179,214,27,27 +28045,7,430,180,178,31,31 +28046,7,430,181,214,29,29 +28047,7,431,155,129,10,30 +28048,7,431,156,118,10,25 +28049,7,431,157,118,10,30 +28050,7,431,158,129,5,10 +28051,7,431,159,118,5,10 +28052,7,431,160,118,25,30 +28053,7,431,161,118,30,35 +28054,7,431,162,119,30,35 +28055,7,431,163,119,35,40 +28056,7,431,164,119,25,30 +28057,7,431,165,54,20,30 +28058,7,431,166,54,20,30 +28059,7,431,167,54,30,35 +28060,7,431,168,54,30,35 +28061,7,431,169,54,30,35 +28062,7,431,170,43,25,25 +28063,7,431,171,43,27,27 +28064,7,431,172,203,25,25 +28065,7,431,173,203,27,27 +28066,7,431,174,177,25,25 +28067,7,431,175,84,25,25 +28068,7,431,176,44,25,25 +28069,7,431,177,202,27,27 +28070,7,431,178,25,25,25 +28071,7,431,179,202,27,27 +28072,7,431,180,25,27,27 +28073,7,431,181,202,29,29 +28074,7,432,170,43,25,25 +28075,7,432,171,43,27,27 +28076,7,432,172,203,25,25 +28077,7,432,173,203,27,27 +28078,7,432,174,177,25,25 +28079,7,432,175,84,25,25 +28080,7,432,176,44,25,25 +28081,7,432,177,202,27,27 +28082,7,432,178,25,25,25 +28083,7,432,179,202,27,27 +28084,7,432,180,25,27,27 +28085,7,432,181,202,29,29 +28086,7,433,155,129,10,30 +28087,7,433,156,72,10,30 +28088,7,433,157,320,10,30 +28089,7,433,158,129,5,10 +28090,7,433,159,72,5,10 +28091,7,433,160,320,25,30 +28092,7,433,161,320,30,35 +28093,7,433,162,320,20,25 +28094,7,433,163,320,35,40 +28095,7,433,164,320,40,45 +28096,7,433,165,72,5,35 +28097,7,433,166,278,10,30 +28098,7,433,167,278,15,25 +28099,7,433,168,279,25,30 +28100,7,433,169,279,25,30 +28101,7,434,155,129,10,30 +28102,7,434,156,72,10,30 +28103,7,434,157,320,10,30 +28104,7,434,158,129,5,10 +28105,7,434,159,72,5,10 +28106,7,434,160,319,30,35 +28107,7,434,161,320,30,35 +28108,7,434,162,320,25,30 +28109,7,434,163,320,35,40 +28110,7,434,164,320,40,45 +28111,7,434,165,72,5,35 +28112,7,434,166,278,10,30 +28113,7,434,167,278,15,25 +28114,7,434,168,279,25,30 +28115,7,434,169,279,25,30 +28116,8,350,155,129,10,30 +28117,8,350,156,118,10,30 +28118,8,350,157,341,10,30 +28119,8,350,158,129,5,10 +28120,8,350,159,118,5,10 +28121,8,350,160,341,25,30 +28122,8,350,161,341,30,35 +28123,8,350,162,341,20,25 +28124,8,350,163,341,35,40 +28125,8,350,164,341,40,45 +28126,8,350,165,183,20,30 +28127,8,350,166,183,10,20 +28128,8,350,167,183,30,35 +28129,8,350,168,183,5,10 +28130,8,350,169,183,5,10 +28131,8,351,155,129,10,30 +28132,8,351,156,72,10,30 +28133,8,351,157,320,10,30 +28134,8,351,158,129,5,10 +28135,8,351,159,72,5,10 +28136,8,351,160,320,25,30 +28137,8,351,161,320,30,35 +28138,8,351,162,320,20,25 +28139,8,351,163,320,35,40 +28140,8,351,164,320,40,45 +28141,8,351,165,72,5,35 +28142,8,351,166,278,10,30 +28143,8,351,167,278,15,25 +28144,8,351,168,279,25,30 +28145,8,351,169,279,25,30 +28146,8,352,155,129,10,30 +28147,8,352,156,72,10,30 +28148,8,352,157,320,10,30 +28149,8,352,158,129,5,10 +28150,8,352,159,72,5,10 +28151,8,352,160,320,25,30 +28152,8,352,161,320,30,35 +28153,8,352,162,120,25,30 +28154,8,352,163,320,35,40 +28155,8,352,164,320,40,45 +28156,8,352,165,72,5,35 +28157,8,352,166,278,10,30 +28158,8,352,167,278,15,25 +28159,8,352,168,279,25,30 +28160,8,352,169,279,25,30 +28161,8,353,155,129,10,30 +28162,8,353,156,72,10,30 +28163,8,353,157,320,10,30 +28164,8,353,158,129,5,10 +28165,8,353,159,72,5,10 +28166,8,353,160,319,30,35 +28167,8,353,161,320,30,35 +28168,8,353,162,320,25,30 +28169,8,353,163,320,35,40 +28170,8,353,164,320,40,45 +28171,8,353,165,72,5,35 +28172,8,353,166,278,10,30 +28173,8,353,167,278,15,25 +28174,8,353,168,279,25,30 +28175,8,353,169,279,25,30 +28176,8,354,155,129,10,30 +28177,8,354,156,129,10,30 +28178,8,354,157,129,10,30 +28179,8,354,158,129,5,10 +28180,8,354,159,72,5,10 +28181,8,354,160,129,30,35 +28182,8,354,161,129,30,35 +28183,8,354,162,130,35,40 +28184,8,354,163,130,35,45 +28185,8,354,164,130,5,45 +28186,8,354,165,129,5,35 +28187,8,354,166,129,10,30 +28188,8,354,167,129,15,25 +28189,8,354,168,129,25,30 +28190,8,354,169,129,25,30 +28191,8,355,155,129,10,30 +28192,8,355,156,370,10,30 +28193,8,355,157,320,10,30 +28194,8,355,158,129,5,10 +28195,8,355,159,72,5,10 +28196,8,355,160,370,30,35 +28197,8,355,161,320,30,35 +28198,8,355,162,222,30,35 +28199,8,355,163,320,35,40 +28200,8,355,164,320,40,45 +28201,8,355,165,72,5,35 +28202,8,355,166,278,10,30 +28203,8,355,167,278,15,25 +28204,8,355,168,279,25,30 +28205,8,355,169,279,25,30 +28206,8,356,155,129,10,30 +28207,8,356,156,118,10,30 +28208,8,356,157,339,10,30 +28209,8,356,158,129,5,10 +28210,8,356,159,118,5,10 +28211,8,356,160,339,25,30 +28212,8,356,161,339,30,35 +28213,8,356,162,339,20,25 +28214,8,356,163,339,35,40 +28215,8,356,164,339,40,45 +28216,8,356,165,41,5,35 +28217,8,356,166,41,30,35 +28218,8,356,167,337,25,35 +28219,8,356,168,337,15,25 +28220,8,356,169,337,5,15 +28221,8,356,170,41,16,16 +28222,8,356,171,41,17,17 +28223,8,356,172,41,18,18 +28224,8,356,173,41,15,15 +28225,8,356,174,41,14,14 +28226,8,356,175,337,16,16 +28227,8,356,176,337,18,18 +28228,8,356,177,337,14,14 +28229,8,356,178,41,19,19 +28230,8,356,179,41,20,20 +28231,8,356,180,41,19,19 +28232,8,356,181,41,20,20 +28233,8,357,155,129,10,30 +28234,8,357,156,118,10,30 +28235,8,357,157,339,10,30 +28236,8,357,158,129,5,10 +28237,8,357,159,118,5,10 +28238,8,357,160,339,25,30 +28239,8,357,161,339,30,35 +28240,8,357,162,340,30,35 +28241,8,357,163,340,35,40 +28242,8,357,164,340,40,45 +28243,8,357,165,42,30,35 +28244,8,357,166,42,30,35 +28245,8,357,167,337,25,35 +28246,8,357,168,337,15,25 +28247,8,357,169,337,5,15 +28248,8,357,170,42,33,33 +28249,8,357,171,42,35,35 +28250,8,357,172,42,33,33 +28251,8,357,173,337,35,35 +28252,8,357,174,337,33,33 +28253,8,357,175,337,37,37 +28254,8,357,176,42,35,35 +28255,8,357,177,337,39,39 +28256,8,357,178,42,38,38 +28257,8,357,179,42,40,40 +28258,8,357,180,42,38,38 +28259,8,357,181,42,40,40 +28260,8,358,155,129,10,30 +28261,8,358,156,118,10,30 +28262,8,358,157,339,10,30 +28263,8,358,158,129,5,10 +28264,8,358,159,118,5,10 +28265,8,358,160,339,25,30 +28266,8,358,161,339,30,35 +28267,8,358,162,340,30,35 +28268,8,358,163,340,35,40 +28269,8,358,164,340,40,45 +28270,8,358,165,42,30,35 +28271,8,358,166,42,30,35 +28272,8,358,167,337,25,35 +28273,8,358,168,337,15,25 +28274,8,358,169,337,5,15 +28275,8,358,170,42,33,33 +28276,8,358,171,42,35,35 +28277,8,358,172,42,33,33 +28278,8,358,173,337,35,35 +28279,8,358,174,337,33,33 +28280,8,358,175,337,37,37 +28281,8,358,176,42,35,35 +28282,8,358,177,337,39,39 +28283,8,358,178,42,38,38 +28284,8,358,179,42,40,40 +28285,8,358,180,42,38,38 +28286,8,358,181,42,40,40 +28287,8,359,155,129,10,30 +28288,8,359,156,118,10,30 +28289,8,359,157,339,10,30 +28290,8,359,158,129,5,10 +28291,8,359,159,118,5,10 +28292,8,359,160,339,25,30 +28293,8,359,161,339,30,35 +28294,8,359,162,340,30,35 +28295,8,359,163,340,35,40 +28296,8,359,164,340,40,45 +28297,8,359,165,42,30,35 +28298,8,359,166,42,30,35 +28299,8,359,167,337,25,35 +28300,8,359,168,337,15,25 +28301,8,359,169,337,5,15 +28302,8,359,170,42,33,33 +28303,8,359,171,42,35,35 +28304,8,359,172,371,30,30 +28305,8,359,173,337,35,35 +28306,8,359,174,371,35,35 +28307,8,359,175,337,37,37 +28308,8,359,176,371,25,25 +28309,8,359,177,337,39,39 +28310,8,359,178,42,38,38 +28311,8,359,179,42,40,40 +28312,8,359,180,42,38,38 +28313,8,359,181,42,40,40 +28314,8,360,170,293,6,6 +28315,8,360,171,293,7,7 +28316,8,360,172,293,6,6 +28317,8,360,173,293,6,6 +28318,8,360,174,293,7,7 +28319,8,360,175,293,7,7 +28320,8,360,176,293,5,5 +28321,8,360,177,293,8,8 +28322,8,360,178,293,5,5 +28323,8,360,179,293,8,8 +28324,8,360,180,293,5,5 +28325,8,360,181,293,8,8 +28326,8,361,170,41,7,7 +28327,8,361,171,296,8,8 +28328,8,361,172,296,7,7 +28329,8,361,173,41,8,8 +28330,8,361,174,296,9,9 +28331,8,361,175,63,8,8 +28332,8,361,176,296,10,10 +28333,8,361,177,296,6,6 +28334,8,361,178,74,7,7 +28335,8,361,179,74,8,8 +28336,8,361,180,74,6,6 +28337,8,361,181,74,9,9 +28338,8,362,170,41,9,9 +28339,8,362,171,304,10,10 +28340,8,362,172,304,9,9 +28341,8,362,173,304,11,11 +28342,8,362,174,41,10,10 +28343,8,362,175,63,9,9 +28344,8,362,176,296,10,10 +28345,8,362,177,296,11,11 +28346,8,362,178,302,10,10 +28347,8,362,179,302,10,10 +28348,8,362,180,302,9,9 +28349,8,362,181,302,11,11 +28350,8,363,182,74,10,15 +28351,8,363,183,299,10,20 +28352,8,363,184,74,5,10 +28353,8,363,185,74,15,20 +28354,8,363,186,74,15,20 +28355,8,363,170,41,10,10 +28356,8,363,171,304,11,11 +28357,8,363,172,304,10,10 +28358,8,363,173,41,11,11 +28359,8,363,174,304,12,12 +28360,8,363,175,63,10,10 +28361,8,363,176,302,10,10 +28362,8,363,177,302,11,11 +28363,8,363,178,302,12,12 +28364,8,363,179,302,10,10 +28365,8,363,180,302,12,12 +28366,8,363,181,302,10,10 +28367,8,364,170,41,7,7 +28368,8,364,171,296,8,8 +28369,8,364,172,296,7,7 +28370,8,364,173,41,8,8 +28371,8,364,174,296,9,9 +28372,8,364,175,63,8,8 +28373,8,364,176,296,10,10 +28374,8,364,177,296,6,6 +28375,8,364,178,304,7,7 +28376,8,364,179,304,8,8 +28377,8,364,180,304,7,7 +28378,8,364,181,304,8,8 +28379,8,365,170,263,5,5 +28380,8,365,171,265,5,5 +28381,8,365,172,285,5,5 +28382,8,365,173,263,6,6 +28383,8,365,174,266,5,5 +28384,8,365,175,268,5,5 +28385,8,365,176,265,6,6 +28386,8,365,177,285,6,6 +28387,8,365,178,276,5,5 +28388,8,365,179,287,5,5 +28389,8,365,180,276,6,6 +28390,8,365,181,287,6,6 +28391,8,366,170,322,21,21 +28392,8,366,171,322,21,21 +28393,8,366,172,66,21,21 +28394,8,366,173,322,20,20 +28395,8,366,174,325,20,20 +28396,8,366,175,66,20,20 +28397,8,366,176,325,21,21 +28398,8,366,177,66,22,22 +28399,8,366,178,322,22,22 +28400,8,366,179,325,22,22 +28401,8,366,180,322,22,22 +28402,8,366,181,325,22,22 +28403,8,367,170,322,15,15 +28404,8,367,171,88,15,15 +28405,8,367,172,322,16,16 +28406,8,367,173,66,15,15 +28407,8,367,174,324,15,15 +28408,8,367,175,218,15,15 +28409,8,367,176,88,16,16 +28410,8,367,177,66,16,16 +28411,8,367,178,324,14,14 +28412,8,367,179,324,16,16 +28413,8,367,180,109,14,14 +28414,8,367,181,109,14,14 +28415,8,368,170,353,27,27 +28416,8,368,171,353,28,28 +28417,8,368,172,353,26,26 +28418,8,368,173,353,25,25 +28419,8,368,174,353,29,29 +28420,8,368,175,353,24,24 +28421,8,368,176,353,23,23 +28422,8,368,177,353,22,22 +28423,8,368,178,353,29,29 +28424,8,368,179,353,24,24 +28425,8,368,180,353,29,29 +28426,8,368,181,353,24,24 +28427,8,369,170,353,27,27 +28428,8,369,171,353,28,28 +28429,8,369,172,353,26,26 +28430,8,369,173,353,25,25 +28431,8,369,174,353,29,29 +28432,8,369,175,353,24,24 +28433,8,369,176,353,23,23 +28434,8,369,177,353,22,22 +28435,8,369,178,353,29,29 +28436,8,369,179,353,24,24 +28437,8,369,180,353,29,29 +28438,8,369,181,353,24,24 +28439,8,370,170,353,27,27 +28440,8,370,171,353,28,28 +28441,8,370,172,353,26,26 +28442,8,370,173,353,25,25 +28443,8,370,174,353,29,29 +28444,8,370,175,353,24,24 +28445,8,370,176,353,23,23 +28446,8,370,177,353,22,22 +28447,8,370,178,353,29,29 +28448,8,370,179,353,24,24 +28449,8,370,180,353,29,29 +28450,8,370,181,353,24,24 +28451,8,371,170,353,27,27 +28452,8,371,171,353,28,28 +28453,8,371,172,353,26,26 +28454,8,371,173,353,25,25 +28455,8,371,174,353,29,29 +28456,8,371,175,353,24,24 +28457,8,371,176,353,23,23 +28458,8,371,177,353,22,22 +28459,8,371,178,355,27,27 +28460,8,371,179,355,27,27 +28461,8,371,180,355,25,25 +28462,8,371,181,355,29,29 +28463,8,372,170,353,27,27 +28464,8,372,171,353,28,28 +28465,8,372,172,353,26,26 +28466,8,372,173,353,25,25 +28467,8,372,174,353,29,29 +28468,8,372,175,353,24,24 +28469,8,372,176,353,23,23 +28470,8,372,177,353,22,22 +28471,8,372,178,355,27,27 +28472,8,372,179,355,27,27 +28473,8,372,180,355,25,25 +28474,8,372,181,355,29,29 +28475,8,373,170,353,27,27 +28476,8,373,171,353,28,28 +28477,8,373,172,353,26,26 +28478,8,373,173,353,25,25 +28479,8,373,174,353,29,29 +28480,8,373,175,353,24,24 +28481,8,373,176,353,23,23 +28482,8,373,177,353,22,22 +28483,8,373,178,355,27,27 +28484,8,373,179,355,27,27 +28485,8,373,180,355,25,25 +28486,8,373,181,355,29,29 +28487,8,374,170,353,27,27 +28488,8,374,171,307,27,27 +28489,8,374,172,353,28,28 +28490,8,374,173,307,29,29 +28491,8,374,174,353,29,29 +28492,8,374,175,37,27,27 +28493,8,374,176,37,29,29 +28494,8,374,177,37,25,25 +28495,8,374,178,278,27,27 +28496,8,374,179,278,27,27 +28497,8,374,180,278,26,26 +28498,8,374,181,278,28,28 +28499,8,375,170,353,28,28 +28500,8,375,171,353,29,29 +28501,8,375,172,353,27,27 +28502,8,375,173,353,26,26 +28503,8,375,174,353,30,30 +28504,8,375,175,353,25,25 +28505,8,375,176,353,24,24 +28506,8,375,177,355,28,28 +28507,8,375,178,355,26,26 +28508,8,375,179,355,30,30 +28509,8,375,180,358,28,28 +28510,8,375,181,358,28,28 +28511,8,376,155,129,10,30 +28512,8,376,156,72,10,30 +28513,8,376,157,320,10,30 +28514,8,376,158,129,5,10 +28515,8,376,159,72,5,10 +28516,8,376,160,320,25,30 +28517,8,376,161,320,30,35 +28518,8,376,162,320,20,25 +28519,8,376,163,320,35,40 +28520,8,376,164,320,40,45 +28521,8,376,165,72,5,35 +28522,8,376,166,41,5,35 +28523,8,376,167,41,30,35 +28524,8,376,168,42,30,35 +28525,8,376,169,42,30,35 +28526,8,376,170,41,30,30 +28527,8,376,171,41,31,31 +28528,8,376,172,41,32,32 +28529,8,376,173,41,33,33 +28530,8,376,174,41,28,28 +28531,8,376,175,41,29,29 +28532,8,376,176,41,34,34 +28533,8,376,177,41,35,35 +28534,8,376,178,42,34,34 +28535,8,376,179,42,35,35 +28536,8,376,180,42,33,33 +28537,8,376,181,42,36,36 +28538,8,377,170,41,30,30 +28539,8,377,171,41,31,31 +28540,8,377,172,41,32,32 +28541,8,377,173,41,33,33 +28542,8,377,174,41,28,28 +28543,8,377,175,41,29,29 +28544,8,377,176,41,34,34 +28545,8,377,177,41,35,35 +28546,8,377,178,42,34,34 +28547,8,377,179,42,35,35 +28548,8,377,180,42,33,33 +28549,8,377,181,42,36,36 +28550,8,378,170,41,30,30 +28551,8,378,171,41,31,31 +28552,8,378,172,41,32,32 +28553,8,378,173,302,30,30 +28554,8,378,174,302,32,32 +28555,8,378,175,302,34,34 +28556,8,378,176,41,33,33 +28557,8,378,177,41,34,34 +28558,8,378,178,42,34,34 +28559,8,378,179,42,35,35 +28560,8,378,180,42,33,33 +28561,8,378,181,42,36,36 +28562,8,379,170,41,30,30 +28563,8,379,171,41,31,31 +28564,8,379,172,41,32,32 +28565,8,379,173,302,30,30 +28566,8,379,174,302,32,32 +28567,8,379,175,302,34,34 +28568,8,379,176,41,33,33 +28569,8,379,177,41,34,34 +28570,8,379,178,42,34,34 +28571,8,379,179,42,35,35 +28572,8,379,180,42,33,33 +28573,8,379,181,42,36,36 +28574,8,380,170,41,30,30 +28575,8,380,171,41,31,31 +28576,8,380,172,41,32,32 +28577,8,380,173,302,30,30 +28578,8,380,174,302,32,32 +28579,8,380,175,302,34,34 +28580,8,380,176,41,33,33 +28581,8,380,177,41,34,34 +28582,8,380,178,42,34,34 +28583,8,380,179,42,35,35 +28584,8,380,180,42,33,33 +28585,8,380,181,42,36,36 +28586,8,381,170,41,30,30 +28587,8,381,171,41,31,31 +28588,8,381,172,41,32,32 +28589,8,381,173,302,30,30 +28590,8,381,174,302,32,32 +28591,8,381,175,302,34,34 +28592,8,381,176,41,33,33 +28593,8,381,177,41,34,34 +28594,8,381,178,42,34,34 +28595,8,381,179,42,35,35 +28596,8,381,180,42,33,33 +28597,8,381,181,42,36,36 +28598,8,382,170,42,40,40 +28599,8,382,171,297,40,40 +28600,8,382,172,305,40,40 +28601,8,382,173,294,40,40 +28602,8,382,174,41,36,36 +28603,8,382,175,296,36,36 +28604,8,382,176,42,38,38 +28605,8,382,177,297,38,38 +28606,8,382,178,304,36,36 +28607,8,382,179,293,36,36 +28608,8,382,180,304,36,36 +28609,8,382,181,293,36,36 +28610,8,383,182,75,30,40 +28611,8,383,183,74,30,40 +28612,8,383,184,75,35,40 +28613,8,383,185,75,35,40 +28614,8,383,186,75,35,40 +28615,8,383,170,42,40,40 +28616,8,383,171,297,40,40 +28617,8,383,172,305,40,40 +28618,8,383,173,308,40,40 +28619,8,383,174,42,38,38 +28620,8,383,175,297,38,38 +28621,8,383,176,42,42,42 +28622,8,383,177,297,42,42 +28623,8,383,178,305,42,42 +28624,8,383,179,307,38,38 +28625,8,383,180,305,42,42 +28626,8,383,181,307,38,38 +28627,8,384,155,129,10,30 +28628,8,384,156,118,10,30 +28629,8,384,157,339,10,30 +28630,8,384,158,129,5,10 +28631,8,384,159,118,5,10 +28632,8,384,160,339,25,30 +28633,8,384,161,339,30,35 +28634,8,384,162,340,30,35 +28635,8,384,163,340,35,40 +28636,8,384,164,340,40,45 +28637,8,384,165,42,30,35 +28638,8,384,166,42,25,30 +28639,8,384,167,42,35,40 +28640,8,384,168,42,35,40 +28641,8,384,169,42,35,40 +28642,8,384,170,42,40,40 +28643,8,384,171,302,40,40 +28644,8,384,172,305,40,40 +28645,8,384,173,308,40,40 +28646,8,384,174,42,42,42 +28647,8,384,175,302,42,42 +28648,8,384,176,42,44,44 +28649,8,384,177,302,44,44 +28650,8,384,178,305,42,42 +28651,8,384,179,308,42,42 +28652,8,384,180,305,44,44 +28653,8,384,181,308,44,44 +28654,8,385,155,129,10,30 +28655,8,385,156,72,10,30 +28656,8,385,157,320,10,30 +28657,8,385,158,129,5,10 +28658,8,385,159,72,5,10 +28659,8,385,160,320,25,30 +28660,8,385,161,320,30,35 +28661,8,385,162,320,20,25 +28662,8,385,163,320,35,40 +28663,8,385,164,320,40,45 +28664,8,385,165,72,5,35 +28665,8,385,166,41,5,35 +28666,8,385,167,363,25,30 +28667,8,385,168,363,25,30 +28668,8,385,169,363,25,35 +28669,8,385,170,41,26,26 +28670,8,385,171,363,26,26 +28671,8,385,172,41,28,28 +28672,8,385,173,363,28,28 +28673,8,385,174,41,30,30 +28674,8,385,175,363,30,30 +28675,8,385,176,41,32,32 +28676,8,385,177,363,32,32 +28677,8,385,178,42,32,32 +28678,8,385,179,363,32,32 +28679,8,385,180,42,32,32 +28680,8,385,181,363,32,32 +28681,8,386,170,41,26,26 +28682,8,386,171,363,26,26 +28683,8,386,172,41,28,28 +28684,8,386,173,363,28,28 +28685,8,386,174,41,30,30 +28686,8,386,175,363,30,30 +28687,8,386,176,361,26,26 +28688,8,386,177,363,32,32 +28689,8,386,178,42,30,30 +28690,8,386,179,361,28,28 +28691,8,386,180,42,32,32 +28692,8,386,181,361,30,30 +28693,8,387,170,100,24,24 +28694,8,387,171,81,24,24 +28695,8,387,172,100,25,25 +28696,8,387,173,81,25,25 +28697,8,387,174,100,23,23 +28698,8,387,175,81,23,23 +28699,8,387,176,100,26,26 +28700,8,387,177,81,26,26 +28701,8,387,178,100,22,22 +28702,8,387,179,81,22,22 +28703,8,387,180,100,22,22 +28704,8,387,181,81,22,22 +28705,8,388,170,100,24,24 +28706,8,388,171,81,24,24 +28707,8,388,172,100,25,25 +28708,8,388,173,81,25,25 +28709,8,388,174,100,23,23 +28710,8,388,175,81,23,23 +28711,8,388,176,100,26,26 +28712,8,388,177,81,26,26 +28713,8,388,178,100,22,22 +28714,8,388,179,81,22,22 +28715,8,388,180,101,26,26 +28716,8,388,181,82,26,26 +28717,8,389,155,129,10,30 +28718,8,389,156,72,10,30 +28719,8,389,157,72,10,30 +28720,8,389,158,129,5,10 +28721,8,389,159,72,5,10 +28722,8,389,160,72,25,30 +28723,8,389,161,72,30,35 +28724,8,389,162,73,30,35 +28725,8,389,163,73,25,30 +28726,8,389,164,73,20,25 +28727,8,389,165,72,5,35 +28728,8,389,166,72,5,35 +28729,8,389,167,72,5,35 +28730,8,389,168,72,5,35 +28731,8,389,169,73,30,35 +28732,8,390,170,302,48,48 +28733,8,390,171,42,48,48 +28734,8,390,172,42,50,50 +28735,8,390,173,302,50,50 +28736,8,390,174,344,48,48 +28737,8,390,175,354,48,48 +28738,8,390,176,354,50,50 +28739,8,390,177,344,49,49 +28740,8,390,178,344,47,47 +28741,8,390,179,344,50,50 +28742,8,390,180,344,47,47 +28743,8,390,181,344,50,50 +28744,8,391,170,302,51,51 +28745,8,391,171,42,51,51 +28746,8,391,172,42,53,53 +28747,8,391,173,302,53,53 +28748,8,391,174,344,51,51 +28749,8,391,175,354,51,51 +28750,8,391,176,354,53,53 +28751,8,391,177,344,52,52 +28752,8,391,178,344,50,50 +28753,8,391,179,344,53,53 +28754,8,391,180,344,50,50 +28755,8,391,181,344,53,53 +28756,8,392,170,302,54,54 +28757,8,392,171,42,54,54 +28758,8,392,172,42,56,56 +28759,8,392,173,302,56,56 +28760,8,392,174,344,54,54 +28761,8,392,175,354,54,54 +28762,8,392,176,354,56,56 +28763,8,392,177,344,55,55 +28764,8,392,178,344,56,56 +28765,8,392,179,334,57,57 +28766,8,392,180,334,54,54 +28767,8,392,181,334,60,60 +28768,8,393,170,265,2,2 +28769,8,393,171,263,2,2 +28770,8,393,172,265,2,2 +28771,8,393,173,265,3,3 +28772,8,393,174,263,3,3 +28773,8,393,175,263,3,3 +28774,8,393,176,265,3,3 +28775,8,393,177,263,3,3 +28776,8,393,178,261,2,2 +28777,8,393,179,261,2,2 +28778,8,393,180,261,3,3 +28779,8,393,181,261,3,3 +28780,8,394,155,129,10,30 +28781,8,394,156,118,10,30 +28782,8,394,157,341,10,30 +28783,8,394,158,129,5,10 +28784,8,394,159,118,5,10 +28785,8,394,160,341,25,30 +28786,8,394,161,341,30,35 +28787,8,394,162,341,20,25 +28788,8,394,163,341,35,40 +28789,8,394,164,341,40,45 +28790,8,394,165,183,20,30 +28791,8,394,166,183,10,20 +28792,8,394,167,183,30,35 +28793,8,394,168,183,5,10 +28794,8,394,169,283,20,30 +28795,8,394,170,263,3,3 +28796,8,394,171,265,3,3 +28797,8,394,172,263,4,4 +28798,8,394,173,265,4,4 +28799,8,394,174,270,3,3 +28800,8,394,175,270,4,4 +28801,8,394,176,261,3,3 +28802,8,394,177,261,3,3 +28803,8,394,178,261,4,4 +28804,8,394,179,280,4,4 +28805,8,394,180,261,4,4 +28806,8,394,181,283,3,3 +28807,8,395,155,129,10,30 +28808,8,395,156,72,10,30 +28809,8,395,157,320,10,30 +28810,8,395,158,129,5,10 +28811,8,395,159,72,5,10 +28812,8,395,160,319,30,35 +28813,8,395,161,320,30,35 +28814,8,395,162,320,25,30 +28815,8,395,163,320,35,40 +28816,8,395,164,320,40,45 +28817,8,395,165,72,5,35 +28818,8,395,166,278,10,30 +28819,8,395,167,278,15,25 +28820,8,395,168,279,25,30 +28821,8,395,169,279,25,30 +28822,8,395,170,263,2,2 +28823,8,395,171,263,3,3 +28824,8,395,172,263,3,3 +28825,8,395,173,263,4,4 +28826,8,395,174,261,2,2 +28827,8,395,175,261,3,3 +28828,8,395,176,261,3,3 +28829,8,395,177,261,4,4 +28830,8,395,178,278,3,3 +28831,8,395,179,278,3,3 +28832,8,395,180,278,2,2 +28833,8,395,181,278,4,4 +28834,8,396,155,129,10,30 +28835,8,396,156,129,10,30 +28836,8,396,157,129,10,30 +28837,8,396,158,129,5,10 +28838,8,396,159,129,5,10 +28839,8,396,160,129,25,30 +28840,8,396,161,129,30,35 +28841,8,396,162,129,20,25 +28842,8,396,163,129,35,40 +28843,8,396,164,129,40,45 +28844,8,396,165,278,10,30 +28845,8,396,166,278,15,25 +28846,8,396,167,278,15,25 +28847,8,396,168,279,25,30 +28848,8,396,169,279,25,30 +28849,8,396,170,263,4,4 +28850,8,396,171,265,4,4 +28851,8,396,172,263,5,5 +28852,8,396,173,265,5,5 +28853,8,396,174,263,4,4 +28854,8,396,175,263,5,5 +28855,8,396,176,276,4,4 +28856,8,396,177,276,5,5 +28857,8,396,178,278,4,4 +28858,8,396,179,278,4,4 +28859,8,396,180,278,3,3 +28860,8,396,181,278,5,5 +28861,8,397,155,129,10,30 +28862,8,397,156,72,10,30 +28863,8,397,157,320,10,30 +28864,8,397,158,129,5,10 +28865,8,397,159,72,5,10 +28866,8,397,160,320,25,30 +28867,8,397,161,320,30,35 +28868,8,397,162,320,20,25 +28869,8,397,163,320,35,40 +28870,8,397,164,320,40,45 +28871,8,397,165,72,5,35 +28872,8,397,166,278,10,30 +28873,8,397,167,278,15,25 +28874,8,397,168,279,25,30 +28875,8,397,169,279,25,30 +28876,8,398,155,129,10,30 +28877,8,398,156,72,10,30 +28878,8,398,157,320,10,30 +28879,8,398,158,129,5,10 +28880,8,398,159,72,5,10 +28881,8,398,160,320,25,30 +28882,8,398,161,320,30,35 +28883,8,398,162,320,20,25 +28884,8,398,163,320,35,40 +28885,8,398,164,320,40,45 +28886,8,398,165,72,5,35 +28887,8,398,166,278,10,30 +28888,8,398,167,278,15,25 +28889,8,398,168,279,25,30 +28890,8,398,169,279,25,30 +28891,8,399,155,129,10,30 +28892,8,399,156,72,10,30 +28893,8,399,157,320,10,30 +28894,8,399,158,129,5,10 +28895,8,399,159,72,5,10 +28896,8,399,160,320,25,30 +28897,8,399,161,320,30,35 +28898,8,399,162,320,20,25 +28899,8,399,163,320,35,40 +28900,8,399,164,320,40,45 +28901,8,399,165,72,5,35 +28902,8,399,166,278,10,30 +28903,8,399,167,278,15,25 +28904,8,399,168,279,25,30 +28905,8,399,169,279,25,30 +28906,8,400,155,129,10,30 +28907,8,400,156,72,10,30 +28908,8,400,157,320,10,30 +28909,8,400,158,129,5,10 +28910,8,400,159,72,5,10 +28911,8,400,160,320,25,30 +28912,8,400,161,320,30,35 +28913,8,400,162,320,20,25 +28914,8,400,163,320,35,40 +28915,8,400,164,320,40,45 +28916,8,400,165,72,5,35 +28917,8,400,166,278,10,30 +28918,8,400,167,278,15,25 +28919,8,400,168,279,25,30 +28920,8,400,169,279,25,30 +28921,8,401,155,129,10,30 +28922,8,401,156,72,10,30 +28923,8,401,157,320,10,30 +28924,8,401,158,129,5,10 +28925,8,401,159,72,5,10 +28926,8,401,160,320,25,30 +28927,8,401,161,320,30,35 +28928,8,401,162,320,20,25 +28929,8,401,163,320,35,40 +28930,8,401,164,320,40,45 +28931,8,401,165,72,5,35 +28932,8,401,166,278,10,30 +28933,8,401,167,278,15,25 +28934,8,401,168,279,25,30 +28935,8,401,169,279,25,30 +28936,8,402,155,129,10,30 +28937,8,402,156,72,10,30 +28938,8,402,157,320,10,30 +28939,8,402,158,129,5,10 +28940,8,402,159,72,5,10 +28941,8,402,160,320,25,30 +28942,8,402,161,320,30,35 +28943,8,402,162,320,20,25 +28944,8,402,163,320,35,40 +28945,8,402,164,320,40,45 +28946,8,402,165,72,5,35 +28947,8,402,166,278,10,30 +28948,8,402,167,278,15,25 +28949,8,402,168,279,25,30 +28950,8,402,169,279,25,30 +28951,8,402,170,263,12,12 +28952,8,402,171,309,12,12 +28953,8,402,172,316,12,12 +28954,8,402,173,309,13,13 +28955,8,402,174,311,13,13 +28956,8,402,175,43,13,13 +28957,8,402,176,311,13,13 +28958,8,402,177,316,13,13 +28959,8,402,178,278,12,12 +28960,8,402,179,278,12,12 +28961,8,402,180,312,12,12 +28962,8,402,181,312,13,13 +28963,8,403,155,129,10,30 +28964,8,403,156,118,10,30 +28965,8,403,157,339,10,30 +28966,8,403,158,129,5,10 +28967,8,403,159,118,5,10 +28968,8,403,182,74,10,15 +28969,8,403,183,74,5,10 +28970,8,403,184,74,15,20 +28971,8,403,185,74,15,20 +28972,8,403,186,74,15,20 +28973,8,403,160,339,25,30 +28974,8,403,161,339,30,35 +28975,8,403,162,339,20,25 +28976,8,403,163,339,35,40 +28977,8,403,164,339,40,45 +28978,8,403,165,183,20,30 +28979,8,403,166,183,10,20 +28980,8,403,167,183,30,35 +28981,8,403,168,183,5,10 +28982,8,403,169,283,20,30 +28983,8,403,170,27,20,20 +28984,8,403,171,328,20,20 +28985,8,403,172,27,21,21 +28986,8,403,173,328,21,21 +28987,8,403,174,331,19,19 +28988,8,403,175,331,21,21 +28989,8,403,176,27,19,19 +28990,8,403,177,328,19,19 +28991,8,403,178,343,20,20 +28992,8,403,179,343,20,20 +28993,8,403,180,343,22,22 +28994,8,403,181,343,22,22 +28995,8,404,170,322,15,15 +28996,8,404,171,322,15,15 +28997,8,404,172,66,15,15 +28998,8,404,173,322,14,14 +28999,8,404,174,322,14,14 +29000,8,404,175,66,14,14 +29001,8,404,176,322,16,16 +29002,8,404,177,66,16,16 +29003,8,404,178,322,16,16 +29004,8,404,179,322,16,16 +29005,8,404,180,322,16,16 +29006,8,404,181,322,16,16 +29007,8,405,170,327,15,15 +29008,8,405,171,327,15,15 +29009,8,405,172,27,15,15 +29010,8,405,173,327,14,14 +29011,8,405,174,327,14,14 +29012,8,405,175,27,14,14 +29013,8,405,176,327,16,16 +29014,8,405,177,27,16,16 +29015,8,405,178,327,16,16 +29016,8,405,179,227,16,16 +29017,8,405,180,327,16,16 +29018,8,405,181,227,16,16 +29019,8,406,155,129,10,30 +29020,8,406,156,118,10,30 +29021,8,406,157,339,10,30 +29022,8,406,158,129,5,10 +29023,8,406,159,118,5,10 +29024,8,406,182,74,10,15 +29025,8,406,183,74,5,10 +29026,8,406,184,74,15,20 +29027,8,406,185,74,15,20 +29028,8,406,186,74,15,20 +29029,8,406,160,339,25,30 +29030,8,406,161,339,30,35 +29031,8,406,162,339,20,25 +29032,8,406,163,339,35,40 +29033,8,406,164,339,40,45 +29034,8,406,165,183,20,30 +29035,8,406,166,183,10,20 +29036,8,406,167,183,30,35 +29037,8,406,168,183,5,10 +29038,8,406,169,283,20,30 +29039,8,406,170,333,16,16 +29040,8,406,171,270,16,16 +29041,8,406,172,333,17,17 +29042,8,406,173,333,15,15 +29043,8,406,174,270,15,15 +29044,8,406,175,336,16,16 +29045,8,406,176,271,16,16 +29046,8,406,177,271,18,18 +29047,8,406,178,336,17,17 +29048,8,406,179,336,15,15 +29049,8,406,180,336,17,17 +29050,8,406,181,283,15,15 +29051,8,407,155,129,10,30 +29052,8,407,156,72,10,30 +29053,8,407,157,320,10,30 +29054,8,407,158,129,5,10 +29055,8,407,159,72,5,10 +29056,8,407,160,320,25,30 +29057,8,407,161,320,30,35 +29058,8,407,162,320,20,25 +29059,8,407,163,320,35,40 +29060,8,407,164,320,40,45 +29061,8,407,165,72,5,35 +29062,8,407,166,278,10,30 +29063,8,407,167,278,15,25 +29064,8,407,168,279,25,30 +29065,8,407,169,279,25,30 +29066,8,407,170,333,23,23 +29067,8,407,171,276,23,23 +29068,8,407,172,333,25,25 +29069,8,407,173,276,24,24 +29070,8,407,174,276,25,25 +29071,8,407,175,277,25,25 +29072,8,407,176,39,24,24 +29073,8,407,177,39,25,25 +29074,8,407,178,278,24,24 +29075,8,407,179,278,24,24 +29076,8,407,180,278,26,26 +29077,8,407,181,278,25,25 +29078,8,408,170,263,6,6 +29079,8,408,171,293,6,6 +29080,8,408,172,290,6,6 +29081,8,408,173,293,7,7 +29082,8,408,174,290,7,7 +29083,8,408,175,276,6,6 +29084,8,408,176,276,7,7 +29085,8,408,177,276,8,8 +29086,8,408,178,263,7,7 +29087,8,408,179,263,8,8 +29088,8,408,180,300,7,7 +29089,8,408,181,300,8,8 +29090,8,409,155,129,10,30 +29091,8,409,156,118,10,30 +29092,8,409,157,341,10,30 +29093,8,409,158,129,5,10 +29094,8,409,159,118,5,10 +29095,8,409,160,341,25,30 +29096,8,409,161,341,30,35 +29097,8,409,162,341,20,25 +29098,8,409,163,341,35,40 +29099,8,409,164,341,40,45 +29100,8,409,165,183,20,30 +29101,8,409,166,183,10,20 +29102,8,409,167,183,30,35 +29103,8,409,168,183,5,10 +29104,8,409,169,283,20,30 +29105,8,409,170,263,13,13 +29106,8,409,171,315,13,13 +29107,8,409,172,263,14,14 +29108,8,409,173,315,14,14 +29109,8,409,174,183,13,13 +29110,8,409,175,43,13,13 +29111,8,409,176,313,13,13 +29112,8,409,177,313,13,13 +29113,8,409,178,313,14,14 +29114,8,409,179,313,14,14 +29115,8,409,180,314,13,13 +29116,8,409,181,283,13,13 +29117,8,410,155,129,10,30 +29118,8,410,156,72,10,30 +29119,8,410,157,318,10,30 +29120,8,410,158,129,5,10 +29121,8,410,159,72,5,10 +29122,8,410,160,319,30,35 +29123,8,410,161,318,30,35 +29124,8,410,162,318,20,25 +29125,8,410,163,318,35,40 +29126,8,410,164,318,40,45 +29127,8,410,165,72,5,35 +29128,8,410,166,278,10,30 +29129,8,410,167,278,15,25 +29130,8,410,168,279,25,30 +29131,8,410,169,279,25,30 +29132,8,410,170,263,24,24 +29133,8,410,171,309,24,24 +29134,8,410,172,263,26,26 +29135,8,410,173,309,26,26 +29136,8,410,174,264,26,26 +29137,8,410,175,310,26,26 +29138,8,410,176,278,25,25 +29139,8,410,177,278,25,25 +29140,8,410,178,278,26,26 +29141,8,410,179,278,26,26 +29142,8,410,180,278,27,27 +29143,8,410,181,352,25,25 +29144,8,411,155,129,10,30 +29145,8,411,156,72,10,30 +29146,8,411,157,318,10,30 +29147,8,411,158,129,5,10 +29148,8,411,159,72,5,10 +29149,8,411,160,318,25,30 +29150,8,411,161,318,30,35 +29151,8,411,162,318,20,25 +29152,8,411,163,318,35,40 +29153,8,411,164,318,40,45 +29154,8,411,165,72,5,35 +29155,8,411,166,278,10,30 +29156,8,411,167,278,15,25 +29157,8,411,168,279,25,30 +29158,8,411,169,279,25,30 +29159,8,411,170,263,25,25 +29160,8,411,171,264,25,25 +29161,8,411,172,263,27,27 +29162,8,411,173,43,25,25 +29163,8,411,174,264,27,27 +29164,8,411,175,43,26,26 +29165,8,411,176,43,27,27 +29166,8,411,177,43,24,24 +29167,8,411,178,357,25,25 +29168,8,411,179,357,26,26 +29169,8,411,180,357,27,27 +29170,8,411,181,352,25,25 +29171,8,412,155,129,10,30 +29172,8,412,156,118,10,30 +29173,8,412,157,339,10,30 +29174,8,412,158,129,5,10 +29175,8,412,159,118,5,10 +29176,8,412,160,339,25,30 +29177,8,412,161,339,30,35 +29178,8,412,162,339,20,25 +29179,8,412,163,339,35,40 +29180,8,412,164,339,40,45 +29181,8,412,165,183,20,30 +29182,8,412,166,183,10,20 +29183,8,412,167,183,30,35 +29184,8,412,168,183,5,10 +29185,8,412,169,283,20,30 +29186,8,412,170,263,25,25 +29187,8,412,171,264,25,25 +29188,8,412,172,264,27,27 +29189,8,412,173,43,25,25 +29190,8,412,174,183,25,25 +29191,8,412,175,43,26,26 +29192,8,412,176,43,27,27 +29193,8,412,177,183,27,27 +29194,8,412,178,359,25,25 +29195,8,412,179,359,27,27 +29196,8,412,180,352,25,25 +29197,8,412,181,283,25,25 +29198,8,413,155,129,10,30 +29199,8,413,156,72,10,30 +29200,8,413,157,320,10,30 +29201,8,413,158,129,5,10 +29202,8,413,159,72,5,10 +29203,8,413,160,320,25,30 +29204,8,413,161,320,30,35 +29205,8,413,162,320,20,25 +29206,8,413,163,320,35,40 +29207,8,413,164,320,40,45 +29208,8,413,165,72,5,35 +29209,8,413,166,278,10,30 +29210,8,413,167,278,15,25 +29211,8,413,168,279,25,30 +29212,8,413,169,279,25,30 +29213,8,413,170,263,26,26 +29214,8,413,171,353,26,26 +29215,8,413,172,264,26,26 +29216,8,413,173,353,28,28 +29217,8,413,174,264,28,28 +29218,8,413,175,43,26,26 +29219,8,413,176,43,28,28 +29220,8,413,177,44,28,28 +29221,8,413,178,278,26,26 +29222,8,413,179,278,27,27 +29223,8,413,180,278,28,28 +29224,8,413,181,352,25,25 +29225,8,414,155,129,10,30 +29226,8,414,156,72,10,30 +29227,8,414,157,320,10,30 +29228,8,414,158,129,5,10 +29229,8,414,159,72,5,10 +29230,8,414,160,319,30,35 +29231,8,414,161,320,30,35 +29232,8,414,162,320,25,30 +29233,8,414,163,320,35,40 +29234,8,414,164,320,40,45 +29235,8,414,165,72,5,35 +29236,8,414,166,278,10,30 +29237,8,414,167,278,15,25 +29238,8,414,168,279,25,30 +29239,8,414,169,279,25,30 +29240,8,415,155,129,10,30 +29241,8,415,156,72,10,30 +29242,8,415,157,320,10,30 +29243,8,415,158,129,5,10 +29244,8,415,159,72,5,10 +29245,8,415,160,320,25,30 +29246,8,415,161,320,30,35 +29247,8,415,162,320,20,25 +29248,8,415,163,320,35,40 +29249,8,415,164,320,40,45 +29250,8,415,165,72,5,35 +29251,8,415,166,278,10,30 +29252,8,415,167,278,15,25 +29253,8,415,168,279,25,30 +29254,8,415,169,279,25,30 +29255,8,415,170,263,26,26 +29256,8,415,171,353,26,26 +29257,8,415,172,264,26,26 +29258,8,415,173,353,28,28 +29259,8,415,174,264,28,28 +29260,8,415,175,43,26,26 +29261,8,415,176,43,28,28 +29262,8,415,177,44,28,28 +29263,8,415,178,278,26,26 +29264,8,415,179,278,27,27 +29265,8,415,180,278,28,28 +29266,8,415,181,352,25,25 +29267,8,416,155,129,10,30 +29268,8,416,156,72,10,30 +29269,8,416,157,320,10,30 +29270,8,416,158,129,5,10 +29271,8,416,159,72,5,10 +29272,8,416,160,319,30,35 +29273,8,416,161,320,30,35 +29274,8,416,162,320,25,30 +29275,8,416,163,320,35,40 +29276,8,416,164,320,40,45 +29277,8,416,165,72,5,35 +29278,8,416,166,278,10,30 +29279,8,416,167,278,15,25 +29280,8,416,168,279,25,30 +29281,8,416,169,279,25,30 +29282,8,417,165,366,20,30 +29283,8,417,166,170,20,30 +29284,8,417,167,366,30,35 +29285,8,417,168,369,30,35 +29286,8,417,169,369,30,35 +29287,8,418,155,129,10,30 +29288,8,418,156,72,10,30 +29289,8,418,157,320,10,30 +29290,8,418,158,129,5,10 +29291,8,418,159,72,5,10 +29292,8,418,160,319,30,35 +29293,8,418,161,320,30,35 +29294,8,418,162,320,25,30 +29295,8,418,163,320,35,40 +29296,8,418,164,320,40,45 +29297,8,418,165,72,5,35 +29298,8,418,166,278,10,30 +29299,8,418,167,278,15,25 +29300,8,418,168,279,25,30 +29301,8,418,169,279,25,30 +29302,8,419,155,129,10,30 +29303,8,419,156,72,10,30 +29304,8,419,157,320,10,30 +29305,8,419,158,129,5,10 +29306,8,419,159,72,5,10 +29307,8,419,160,319,30,35 +29308,8,419,161,320,30,35 +29309,8,419,162,320,25,30 +29310,8,419,163,320,35,40 +29311,8,419,164,320,40,45 +29312,8,419,165,72,5,35 +29313,8,419,166,278,10,30 +29314,8,419,167,278,15,25 +29315,8,419,168,279,25,30 +29316,8,419,169,279,25,30 +29317,8,420,165,366,20,30 +29318,8,420,166,170,20,30 +29319,8,420,167,366,30,35 +29320,8,420,168,369,30,35 +29321,8,420,169,369,30,35 +29322,8,421,155,129,10,30 +29323,8,421,156,72,10,30 +29324,8,421,157,320,10,30 +29325,8,421,158,129,5,10 +29326,8,421,159,72,5,10 +29327,8,421,160,319,30,35 +29328,8,421,161,320,30,35 +29329,8,421,162,320,25,30 +29330,8,421,163,320,35,40 +29331,8,421,164,320,40,45 +29332,8,421,165,72,5,35 +29333,8,421,166,278,10,30 +29334,8,421,167,278,15,25 +29335,8,421,168,279,25,30 +29336,8,421,169,279,25,30 +29337,8,422,155,129,10,30 +29338,8,422,156,370,10,30 +29339,8,422,157,320,10,30 +29340,8,422,158,129,5,10 +29341,8,422,159,72,5,10 +29342,8,422,160,370,30,35 +29343,8,422,161,320,30,35 +29344,8,422,162,222,30,35 +29345,8,422,163,320,35,40 +29346,8,422,164,320,40,45 +29347,8,422,165,72,5,35 +29348,8,422,166,278,10,30 +29349,8,422,167,278,15,25 +29350,8,422,168,279,25,30 +29351,8,422,169,279,25,30 +29352,8,423,155,129,10,30 +29353,8,423,156,72,10,30 +29354,8,423,157,320,10,30 +29355,8,423,158,129,5,10 +29356,8,423,159,72,5,10 +29357,8,423,160,319,30,35 +29358,8,423,161,320,30,35 +29359,8,423,162,320,25,30 +29360,8,423,163,320,35,40 +29361,8,423,164,320,40,45 +29362,8,423,165,72,5,35 +29363,8,423,166,278,10,30 +29364,8,423,167,278,15,25 +29365,8,423,168,279,25,30 +29366,8,423,169,321,25,30 +29367,8,424,155,129,10,30 +29368,8,424,156,72,10,30 +29369,8,424,157,320,10,30 +29370,8,424,158,129,5,10 +29371,8,424,159,72,5,10 +29372,8,424,160,319,30,35 +29373,8,424,161,320,30,35 +29374,8,424,162,320,25,30 +29375,8,424,163,320,35,40 +29376,8,424,164,320,40,45 +29377,8,424,165,72,5,35 +29378,8,424,166,278,10,30 +29379,8,424,167,278,15,25 +29380,8,424,168,279,25,30 +29381,8,424,169,279,25,30 +29382,8,424,170,360,30,30 +29383,8,424,171,360,35,35 +29384,8,424,172,360,25,25 +29385,8,424,173,360,40,40 +29386,8,424,174,360,20,20 +29387,8,424,175,360,45,45 +29388,8,424,176,360,15,15 +29389,8,424,177,360,50,50 +29390,8,424,178,360,10,10 +29391,8,424,179,360,5,5 +29392,8,424,180,360,10,10 +29393,8,424,181,360,5,5 +29394,8,425,155,129,10,30 +29395,8,425,156,72,10,30 +29396,8,425,157,320,10,30 +29397,8,425,158,129,5,10 +29398,8,425,159,72,5,10 +29399,8,425,160,319,30,35 +29400,8,425,161,320,30,35 +29401,8,425,162,320,25,30 +29402,8,425,163,320,35,40 +29403,8,425,164,320,40,45 +29404,8,425,165,72,5,35 +29405,8,425,166,278,10,30 +29406,8,425,167,278,15,25 +29407,8,425,168,279,25,30 +29408,8,425,169,279,25,30 +29409,8,426,155,129,10,30 +29410,8,426,156,72,10,30 +29411,8,426,157,320,10,30 +29412,8,426,158,129,5,10 +29413,8,426,159,72,5,10 +29414,8,426,160,319,30,35 +29415,8,426,161,320,30,35 +29416,8,426,162,116,25,30 +29417,8,426,163,320,35,40 +29418,8,426,164,320,40,45 +29419,8,426,165,72,5,35 +29420,8,426,166,278,10,30 +29421,8,426,167,278,15,25 +29422,8,426,168,279,25,30 +29423,8,426,169,279,25,30 +29424,8,427,155,129,10,30 +29425,8,427,156,72,10,30 +29426,8,427,157,320,10,30 +29427,8,427,158,129,5,10 +29428,8,427,159,72,5,10 +29429,8,427,160,319,30,35 +29430,8,427,161,320,30,35 +29431,8,427,162,116,25,30 +29432,8,427,163,320,35,40 +29433,8,427,164,320,40,45 +29434,8,427,165,72,5,35 +29435,8,427,166,278,10,30 +29436,8,427,167,278,15,25 +29437,8,427,168,279,25,30 +29438,8,427,169,279,25,30 +29439,8,428,155,129,10,30 +29440,8,428,156,72,10,30 +29441,8,428,157,320,10,30 +29442,8,428,158,129,5,10 +29443,8,428,159,72,5,10 +29444,8,428,160,319,30,35 +29445,8,428,161,320,30,35 +29446,8,428,162,116,25,30 +29447,8,428,163,320,35,40 +29448,8,428,164,320,40,45 +29449,8,428,165,72,5,35 +29450,8,428,166,278,10,30 +29451,8,428,167,278,15,25 +29452,8,428,168,279,25,30 +29453,8,428,169,279,25,30 +29454,8,429,155,129,10,30 +29455,8,429,156,118,10,25 +29456,8,429,157,118,10,30 +29457,8,429,158,129,5,10 +29458,8,429,159,118,5,10 +29459,8,429,160,118,25,30 +29460,8,429,161,118,30,35 +29461,8,429,162,119,30,35 +29462,8,429,163,119,35,40 +29463,8,429,164,119,25,30 +29464,8,429,165,54,20,30 +29465,8,429,166,54,20,30 +29466,8,429,167,54,30,35 +29467,8,429,168,55,30,35 +29468,8,429,169,55,25,40 +29469,8,429,170,111,27,27 +29470,8,429,171,43,27,27 +29471,8,429,172,111,29,29 +29472,8,429,173,43,29,29 +29473,8,429,174,84,27,27 +29474,8,429,175,44,29,29 +29475,8,429,176,44,31,31 +29476,8,429,177,84,29,29 +29477,8,429,178,85,29,29 +29478,8,429,179,127,27,27 +29479,8,429,180,85,31,31 +29480,8,429,181,127,29,29 +29481,8,430,182,74,10,15 +29482,8,430,183,74,5,10 +29483,8,430,184,74,15,20 +29484,8,430,185,74,20,25 +29485,8,430,186,74,25,30 +29486,8,430,170,231,27,27 +29487,8,430,171,43,27,27 +29488,8,430,172,231,29,29 +29489,8,430,173,43,29,29 +29490,8,430,174,177,27,27 +29491,8,430,175,44,29,29 +29492,8,430,176,44,31,31 +29493,8,430,177,177,29,29 +29494,8,430,178,178,29,29 +29495,8,430,179,214,27,27 +29496,8,430,180,178,31,31 +29497,8,430,181,214,29,29 +29498,8,431,155,129,10,30 +29499,8,431,156,118,10,25 +29500,8,431,157,118,10,30 +29501,8,431,158,129,5,10 +29502,8,431,159,118,5,10 +29503,8,431,160,118,25,30 +29504,8,431,161,118,30,35 +29505,8,431,162,119,30,35 +29506,8,431,163,119,35,40 +29507,8,431,164,119,25,30 +29508,8,431,165,54,20,30 +29509,8,431,166,54,20,30 +29510,8,431,167,54,30,35 +29511,8,431,168,54,30,35 +29512,8,431,169,54,30,35 +29513,8,431,170,43,25,25 +29514,8,431,171,43,27,27 +29515,8,431,172,203,25,25 +29516,8,431,173,203,27,27 +29517,8,431,174,177,25,25 +29518,8,431,175,84,27,27 +29519,8,431,176,44,25,25 +29520,8,431,177,202,27,27 +29521,8,431,178,25,25,25 +29522,8,431,179,202,27,27 +29523,8,431,180,25,27,27 +29524,8,431,181,202,29,29 +29525,8,432,170,43,25,25 +29526,8,432,171,43,27,27 +29527,8,432,172,203,25,25 +29528,8,432,173,203,27,27 +29529,8,432,174,177,25,25 +29530,8,432,175,84,25,25 +29531,8,432,176,44,25,25 +29532,8,432,177,202,27,27 +29533,8,432,178,25,25,25 +29534,8,432,179,202,27,27 +29535,8,432,180,25,27,27 +29536,8,432,181,202,29,29 +29537,8,433,155,129,10,30 +29538,8,433,156,72,10,30 +29539,8,433,157,320,10,30 +29540,8,433,158,129,5,10 +29541,8,433,159,72,5,10 +29542,8,433,160,320,25,30 +29543,8,433,161,320,30,35 +29544,8,433,162,320,20,25 +29545,8,433,163,320,35,40 +29546,8,433,164,320,40,45 +29547,8,433,165,72,5,35 +29548,8,433,166,278,10,30 +29549,8,433,167,278,15,25 +29550,8,433,168,279,25,30 +29551,8,433,169,279,25,30 +29552,8,434,155,129,10,30 +29553,8,434,156,72,10,30 +29554,8,434,157,320,10,30 +29555,8,434,158,129,5,10 +29556,8,434,159,72,5,10 +29557,8,434,160,319,30,35 +29558,8,434,161,320,30,35 +29559,8,434,162,320,25,30 +29560,8,434,163,320,35,40 +29561,8,434,164,320,40,45 +29562,8,434,165,72,5,35 +29563,8,434,166,278,10,30 +29564,8,434,167,278,15,25 +29565,8,434,168,279,25,30 +29566,8,434,169,279,25,30 +29567,9,393,187,265,2,2 +29568,9,393,188,261,2,2 +29569,9,393,189,265,2,2 +29570,9,393,190,265,3,3 +29571,9,393,191,261,3,3 +29572,9,393,192,261,3,3 +29573,9,393,193,265,3,3 +29574,9,393,194,261,3,3 +29575,9,393,195,263,2,2 +29576,9,393,196,263,2,2 +29577,9,393,197,263,3,3 +29578,9,393,198,263,3,3 +29579,9,394,199,129,10,30 +29580,9,394,200,118,10,30 +29581,9,394,201,341,10,30 +29582,9,394,202,129,5,10 +29583,9,394,203,118,5,10 +29584,9,394,204,341,25,30 +29585,9,394,205,341,30,35 +29586,9,394,206,341,20,25 +29587,9,394,207,341,35,40 +29588,9,394,208,341,40,45 +29589,9,394,209,183,20,30 +29590,9,394,210,183,10,20 +29591,9,394,211,183,30,35 +29592,9,394,212,183,5,10 +29593,9,394,213,118,20,30 +29594,9,394,187,261,3,3 +29595,9,394,188,265,3,3 +29596,9,394,189,261,4,4 +29597,9,394,190,265,4,4 +29598,9,394,191,270,3,3 +29599,9,394,192,270,4,4 +29600,9,394,193,263,3,3 +29601,9,394,194,263,3,3 +29602,9,394,195,263,4,4 +29603,9,394,196,280,4,4 +29604,9,394,197,263,4,4 +29605,9,394,198,273,3,3 +29606,9,395,199,129,10,30 +29607,9,395,200,72,10,30 +29608,9,395,201,320,10,30 +29609,9,395,202,129,5,10 +29610,9,395,203,72,5,10 +29611,9,395,204,319,30,35 +29612,9,395,205,320,30,35 +29613,9,395,206,320,25,30 +29614,9,395,207,320,35,40 +29615,9,395,208,320,40,45 +29616,9,395,209,72,5,35 +29617,9,395,210,278,10,30 +29618,9,395,211,278,15,25 +29619,9,395,212,279,25,30 +29620,9,395,213,279,25,30 +29621,9,395,187,261,2,2 +29622,9,395,188,261,3,3 +29623,9,395,189,261,3,3 +29624,9,395,190,261,4,4 +29625,9,395,191,278,2,2 +29626,9,395,192,263,3,3 +29627,9,395,193,263,3,3 +29628,9,395,194,263,4,4 +29629,9,395,195,278,3,3 +29630,9,395,196,278,3,3 +29631,9,395,197,278,2,2 +29632,9,395,198,278,4,4 +29633,9,396,199,129,10,30 +29634,9,396,200,129,10,30 +29635,9,396,201,129,10,30 +29636,9,396,202,129,5,10 +29637,9,396,203,129,5,10 +29638,9,396,204,129,25,30 +29639,9,396,205,129,30,35 +29640,9,396,206,129,20,25 +29641,9,396,207,129,35,40 +29642,9,396,208,129,40,45 +29643,9,396,209,278,10,30 +29644,9,396,210,278,15,25 +29645,9,396,211,278,15,25 +29646,9,396,212,279,25,30 +29647,9,396,213,279,25,30 +29648,9,396,187,261,4,4 +29649,9,396,188,265,4,4 +29650,9,396,189,261,5,5 +29651,9,396,190,183,5,5 +29652,9,396,191,183,4,4 +29653,9,396,192,261,5,5 +29654,9,396,193,276,4,4 +29655,9,396,194,276,5,5 +29656,9,396,195,278,4,4 +29657,9,396,196,278,4,4 +29658,9,396,197,278,3,3 +29659,9,396,198,278,5,5 +29660,9,397,199,129,10,30 +29661,9,397,200,72,10,30 +29662,9,397,201,320,10,30 +29663,9,397,202,129,5,10 +29664,9,397,203,72,5,10 +29665,9,397,204,320,25,30 +29666,9,397,205,320,30,35 +29667,9,397,206,320,20,25 +29668,9,397,207,320,35,40 +29669,9,397,208,320,40,45 +29670,9,397,209,72,5,35 +29671,9,397,210,278,10,30 +29672,9,397,211,278,15,25 +29673,9,397,212,279,25,30 +29674,9,397,213,279,25,30 +29675,9,402,199,129,10,30 +29676,9,402,200,72,10,30 +29677,9,402,201,320,10,30 +29678,9,402,202,129,5,10 +29679,9,402,203,72,5,10 +29680,9,402,204,320,25,30 +29681,9,402,205,320,30,35 +29682,9,402,206,320,20,25 +29683,9,402,207,320,35,40 +29684,9,402,208,320,40,45 +29685,9,402,209,72,5,35 +29686,9,402,210,278,10,30 +29687,9,402,211,278,15,25 +29688,9,402,212,279,25,30 +29689,9,402,213,279,25,30 +29690,9,402,187,261,12,12 +29691,9,402,188,309,12,12 +29692,9,402,189,316,12,12 +29693,9,402,190,309,13,13 +29694,9,402,191,312,13,13 +29695,9,402,192,43,13,13 +29696,9,402,193,312,13,13 +29697,9,402,194,316,13,13 +29698,9,402,195,278,12,12 +29699,9,402,196,278,12,12 +29700,9,402,197,311,12,12 +29701,9,402,198,311,13,13 +29702,9,403,199,129,10,30 +29703,9,403,200,118,10,30 +29704,9,403,201,339,10,30 +29705,9,403,202,129,5,10 +29706,9,403,203,118,5,10 +29707,9,403,214,74,10,15 +29708,9,403,215,74,5,10 +29709,9,403,216,74,15,20 +29710,9,403,217,74,15,20 +29711,9,403,218,74,15,20 +29712,9,403,204,339,25,30 +29713,9,403,205,339,30,35 +29714,9,403,206,339,20,25 +29715,9,403,207,339,35,40 +29716,9,403,208,339,40,45 +29717,9,403,209,183,20,30 +29718,9,403,210,183,10,20 +29719,9,403,211,183,30,35 +29720,9,403,212,183,5,10 +29721,9,403,213,118,20,30 +29722,9,403,187,27,20,20 +29723,9,403,188,328,20,20 +29724,9,403,189,27,21,21 +29725,9,403,190,328,21,21 +29726,9,403,191,343,19,19 +29727,9,403,192,343,21,21 +29728,9,403,193,27,19,19 +29729,9,403,194,328,19,19 +29730,9,403,195,343,20,20 +29731,9,403,196,331,20,20 +29732,9,403,197,331,22,22 +29733,9,403,198,331,22,22 +29734,9,404,187,322,15,15 +29735,9,404,188,322,15,15 +29736,9,404,189,183,15,15 +29737,9,404,190,322,14,14 +29738,9,404,191,322,14,14 +29739,9,404,192,183,14,14 +29740,9,404,193,322,16,16 +29741,9,404,194,183,16,16 +29742,9,404,195,322,16,16 +29743,9,404,196,322,16,16 +29744,9,404,197,322,16,16 +29745,9,404,198,322,16,16 +29746,9,405,187,327,15,15 +29747,9,405,188,327,15,15 +29748,9,405,189,218,15,15 +29749,9,405,190,327,14,14 +29750,9,405,191,327,14,14 +29751,9,405,192,218,14,14 +29752,9,405,193,327,16,16 +29753,9,405,194,218,16,16 +29754,9,405,195,327,16,16 +29755,9,405,196,227,16,16 +29756,9,405,197,327,16,16 +29757,9,405,198,227,16,16 +29758,9,406,199,129,10,30 +29759,9,406,200,118,10,30 +29760,9,406,201,339,10,30 +29761,9,406,202,129,5,10 +29762,9,406,203,118,5,10 +29763,9,406,214,74,10,15 +29764,9,406,215,74,5,10 +29765,9,406,216,74,15,20 +29766,9,406,217,74,15,20 +29767,9,406,218,74,15,20 +29768,9,406,204,339,25,30 +29769,9,406,205,339,30,35 +29770,9,406,206,339,20,25 +29771,9,406,207,339,35,40 +29772,9,406,208,339,40,45 +29773,9,406,209,183,20,30 +29774,9,406,210,183,10,20 +29775,9,406,211,183,30,35 +29776,9,406,212,183,5,10 +29777,9,406,213,118,20,30 +29778,9,406,187,333,16,16 +29779,9,406,188,270,16,16 +29780,9,406,189,333,17,17 +29781,9,406,190,333,15,15 +29782,9,406,191,270,15,15 +29783,9,406,192,271,16,16 +29784,9,406,193,271,16,16 +29785,9,406,194,271,18,18 +29786,9,406,195,336,17,17 +29787,9,406,196,336,15,15 +29788,9,406,197,336,17,17 +29789,9,406,198,274,15,15 +29790,9,408,187,261,6,6 +29791,9,408,188,293,6,6 +29792,9,408,189,290,6,6 +29793,9,408,190,63,7,7 +29794,9,408,191,290,7,7 +29795,9,408,192,276,6,6 +29796,9,408,193,276,7,7 +29797,9,408,194,276,8,8 +29798,9,408,195,261,7,7 +29799,9,408,196,261,8,8 +29800,9,408,197,300,7,7 +29801,9,408,198,300,8,8 +29802,9,409,199,129,10,30 +29803,9,409,200,118,10,30 +29804,9,409,201,341,10,30 +29805,9,409,202,129,5,10 +29806,9,409,203,118,5,10 +29807,9,409,204,341,25,30 +29808,9,409,205,341,30,35 +29809,9,409,206,341,20,25 +29810,9,409,207,341,35,40 +29811,9,409,208,341,40,45 +29812,9,409,209,183,20,30 +29813,9,409,210,183,10,20 +29814,9,409,211,183,30,35 +29815,9,409,212,183,5,10 +29816,9,409,213,118,20,30 +29817,9,409,187,261,13,13 +29818,9,409,188,43,13,13 +29819,9,409,189,261,14,14 +29820,9,409,190,43,14,14 +29821,9,409,191,183,13,13 +29822,9,409,192,43,13,13 +29823,9,409,193,314,13,13 +29824,9,409,194,314,13,13 +29825,9,409,195,314,14,14 +29826,9,409,196,314,14,14 +29827,9,409,197,313,13,13 +29828,9,409,198,273,13,13 +29829,9,410,199,129,10,30 +29830,9,410,200,72,10,30 +29831,9,410,201,318,10,30 +29832,9,410,202,129,5,10 +29833,9,410,203,72,5,10 +29834,9,410,204,319,30,35 +29835,9,410,205,318,30,35 +29836,9,410,206,318,20,25 +29837,9,410,207,318,35,40 +29838,9,410,208,318,40,45 +29839,9,410,209,72,5,35 +29840,9,410,210,278,10,30 +29841,9,410,211,278,15,25 +29842,9,410,212,279,25,30 +29843,9,410,213,279,25,30 +29844,9,410,187,263,24,24 +29845,9,410,188,309,24,24 +29846,9,410,189,263,26,26 +29847,9,410,190,309,26,26 +29848,9,410,191,264,26,26 +29849,9,410,192,310,26,26 +29850,9,410,193,278,25,25 +29851,9,410,194,278,25,25 +29852,9,410,195,278,26,26 +29853,9,410,196,278,26,26 +29854,9,410,197,278,27,27 +29855,9,410,198,352,25,25 +29856,9,416,199,129,10,30 +29857,9,416,200,72,10,30 +29858,9,416,201,320,10,30 +29859,9,416,202,129,5,10 +29860,9,416,203,72,5,10 +29861,9,416,204,319,30,35 +29862,9,416,205,320,30,35 +29863,9,416,206,320,25,30 +29864,9,416,207,320,35,40 +29865,9,416,208,320,40,45 +29866,9,416,209,72,5,35 +29867,9,416,210,278,10,30 +29868,9,416,211,278,15,25 +29869,9,416,212,279,25,30 +29870,9,416,213,279,25,30 +29871,9,417,209,366,20,30 +29872,9,417,210,170,20,30 +29873,9,417,211,366,30,35 +29874,9,417,212,369,30,35 +29875,9,417,213,369,30,35 +29876,9,365,187,261,5,5 +29877,9,365,188,265,5,5 +29878,9,365,189,285,5,5 +29879,9,365,190,261,6,6 +29880,9,365,191,266,5,5 +29881,9,365,192,268,5,5 +29882,9,365,193,265,6,6 +29883,9,365,194,285,6,6 +29884,9,365,195,276,5,5 +29885,9,365,196,287,5,5 +29886,9,365,197,276,6,6 +29887,9,365,198,287,6,6 +29888,9,360,187,293,6,6 +29889,9,360,188,293,7,7 +29890,9,360,189,293,6,6 +29891,9,360,190,293,6,6 +29892,9,360,191,293,7,7 +29893,9,360,192,293,7,7 +29894,9,360,193,293,5,5 +29895,9,360,194,293,8,8 +29896,9,360,195,293,5,5 +29897,9,360,196,293,8,8 +29898,9,360,197,293,5,5 +29899,9,360,198,293,8,8 +29900,9,361,187,41,7,7 +29901,9,361,188,296,8,8 +29902,9,361,189,296,7,7 +29903,9,361,190,41,8,8 +29904,9,361,191,296,9,9 +29905,9,361,192,63,8,8 +29906,9,361,193,296,10,10 +29907,9,361,194,296,6,6 +29908,9,361,195,74,7,7 +29909,9,361,196,74,8,8 +29910,9,361,197,74,6,6 +29911,9,361,198,74,9,9 +29912,9,362,187,41,9,9 +29913,9,362,188,304,10,10 +29914,9,362,189,304,9,9 +29915,9,362,190,304,11,11 +29916,9,362,191,41,10,10 +29917,9,362,192,63,9,9 +29918,9,362,193,296,10,10 +29919,9,362,194,296,11,11 +29920,9,362,195,302,10,10 +29921,9,362,196,302,10,10 +29922,9,362,197,302,9,9 +29923,9,362,198,302,11,11 +29924,9,363,214,74,10,15 +29925,9,363,215,299,10,20 +29926,9,363,216,74,5,10 +29927,9,363,217,74,15,20 +29928,9,363,218,74,15,20 +29929,9,363,187,41,10,10 +29930,9,363,188,304,11,11 +29931,9,363,189,304,10,10 +29932,9,363,190,41,11,11 +29933,9,363,191,304,12,12 +29934,9,363,192,63,10,10 +29935,9,363,193,302,10,10 +29936,9,363,194,302,11,11 +29937,9,363,195,302,12,12 +29938,9,363,196,302,10,10 +29939,9,363,197,302,12,12 +29940,9,363,198,302,10,10 +29941,9,364,187,41,7,7 +29942,9,364,188,296,8,8 +29943,9,364,189,296,7,7 +29944,9,364,190,41,8,8 +29945,9,364,191,296,9,9 +29946,9,364,192,63,8,8 +29947,9,364,193,296,10,10 +29948,9,364,194,296,6,6 +29949,9,364,195,304,7,7 +29950,9,364,196,304,8,8 +29951,9,364,197,304,7,7 +29952,9,364,198,304,8,8 +29953,9,368,187,353,27,27 +29954,9,368,188,353,28,28 +29955,9,368,189,353,26,26 +29956,9,368,190,353,25,25 +29957,9,368,191,353,29,29 +29958,9,368,192,353,24,24 +29959,9,368,193,353,23,23 +29960,9,368,194,353,22,22 +29961,9,368,195,353,29,29 +29962,9,368,196,353,24,24 +29963,9,368,197,353,29,29 +29964,9,368,198,353,24,24 +29965,9,369,187,353,27,27 +29966,9,369,188,353,28,28 +29967,9,369,189,353,26,26 +29968,9,369,190,353,25,25 +29969,9,369,191,353,29,29 +29970,9,369,192,353,24,24 +29971,9,369,193,353,23,23 +29972,9,369,194,353,22,22 +29973,9,369,195,353,29,29 +29974,9,369,196,353,24,24 +29975,9,369,197,353,29,29 +29976,9,369,198,353,24,24 +29977,9,370,187,353,27,27 +29978,9,370,188,353,28,28 +29979,9,370,189,353,26,26 +29980,9,370,190,353,25,25 +29981,9,370,191,353,29,29 +29982,9,370,192,353,24,24 +29983,9,370,193,353,23,23 +29984,9,370,194,353,22,22 +29985,9,370,195,353,29,29 +29986,9,370,196,353,24,24 +29987,9,370,197,353,29,29 +29988,9,370,198,353,24,24 +29989,9,371,187,353,27,27 +29990,9,371,188,353,28,28 +29991,9,371,189,353,26,26 +29992,9,371,190,353,25,25 +29993,9,371,191,353,29,29 +29994,9,371,192,353,24,24 +29995,9,371,193,353,23,23 +29996,9,371,194,353,22,22 +29997,9,371,195,355,27,27 +29998,9,371,196,355,27,27 +29999,9,371,197,355,25,25 +30000,9,371,198,355,29,29 +30001,9,372,187,353,27,27 +30002,9,372,188,353,28,28 +30003,9,372,189,353,26,26 +30004,9,372,190,353,25,25 +30005,9,372,191,353,29,29 +30006,9,372,192,353,24,24 +30007,9,372,193,353,23,23 +30008,9,372,194,353,22,22 +30009,9,372,195,355,27,27 +30010,9,372,196,355,27,27 +30011,9,372,197,355,25,25 +30012,9,372,198,355,29,29 +30013,9,373,187,353,27,27 +30014,9,373,188,353,28,28 +30015,9,373,189,353,26,26 +30016,9,373,190,353,25,25 +30017,9,373,191,353,29,29 +30018,9,373,192,353,24,24 +30019,9,373,193,353,23,23 +30020,9,373,194,353,22,22 +30021,9,373,195,355,27,27 +30022,9,373,196,355,27,27 +30023,9,373,197,355,25,25 +30024,9,373,198,355,29,29 +30025,9,374,187,353,27,27 +30026,9,374,188,353,27,27 +30027,9,374,189,353,28,28 +30028,9,374,190,353,29,29 +30029,9,374,191,37,29,29 +30030,9,374,192,37,27,27 +30031,9,374,193,37,29,29 +30032,9,374,194,37,25,25 +30033,9,374,195,278,27,27 +30034,9,374,196,278,27,27 +30035,9,374,197,278,26,26 +30036,9,374,198,278,28,28 +30037,9,375,187,353,28,28 +30038,9,375,188,353,29,29 +30039,9,375,189,353,27,27 +30040,9,375,190,353,26,26 +30041,9,375,191,353,30,30 +30042,9,375,192,353,25,25 +30043,9,375,193,353,24,24 +30044,9,375,194,355,28,28 +30045,9,375,195,355,26,26 +30046,9,375,196,355,30,30 +30047,9,375,197,358,28,28 +30048,9,375,198,358,28,28 +30049,9,382,187,42,40,40 +30050,9,382,188,297,40,40 +30051,9,382,189,305,40,40 +30052,9,382,190,294,40,40 +30053,9,382,191,41,36,36 +30054,9,382,192,296,36,36 +30055,9,382,193,42,38,38 +30056,9,382,194,297,38,38 +30057,9,382,195,304,36,36 +30058,9,382,196,293,36,36 +30059,9,382,197,304,36,36 +30060,9,382,198,293,36,36 +30061,9,383,214,75,30,40 +30062,9,383,215,74,30,40 +30063,9,383,216,75,35,40 +30064,9,383,217,75,35,40 +30065,9,383,218,75,35,40 +30066,9,383,187,42,40,40 +30067,9,383,188,297,40,40 +30068,9,383,189,305,40,40 +30069,9,383,190,305,40,40 +30070,9,383,191,42,38,38 +30071,9,383,192,297,38,38 +30072,9,383,193,42,42,42 +30073,9,383,194,297,42,42 +30074,9,383,195,305,42,42 +30075,9,383,196,303,38,38 +30076,9,383,197,305,42,42 +30077,9,383,198,303,38,38 +30078,9,384,199,129,10,30 +30079,9,384,200,118,10,30 +30080,9,384,201,339,10,30 +30081,9,384,202,129,5,10 +30082,9,384,203,118,5,10 +30083,9,384,204,339,25,30 +30084,9,384,205,339,30,35 +30085,9,384,206,340,30,35 +30086,9,384,207,340,35,40 +30087,9,384,208,340,40,45 +30088,9,384,209,42,30,35 +30089,9,384,210,42,25,30 +30090,9,384,211,42,35,40 +30091,9,384,212,42,35,40 +30092,9,384,213,42,35,40 +30093,9,384,187,42,40,40 +30094,9,384,188,302,40,40 +30095,9,384,189,305,40,40 +30096,9,384,190,305,40,40 +30097,9,384,191,42,42,42 +30098,9,384,192,302,42,42 +30099,9,384,193,42,44,44 +30100,9,384,194,302,44,44 +30101,9,384,195,305,42,42 +30102,9,384,196,303,42,42 +30103,9,384,197,305,44,44 +30104,9,384,198,303,44,44 +30105,9,432,187,43,25,25 +30106,9,432,188,43,27,27 +30107,9,432,189,203,25,25 +30108,9,432,190,203,27,27 +30109,9,432,191,177,25,25 +30110,9,432,192,84,25,25 +30111,9,432,193,44,25,25 +30112,9,432,194,202,27,27 +30113,9,432,195,25,25,25 +30114,9,432,196,202,27,27 +30115,9,432,197,25,27,27 +30116,9,432,198,202,29,29 +30117,9,431,199,129,10,30 +30118,9,431,200,118,10,25 +30119,9,431,201,118,10,30 +30120,9,431,202,129,5,10 +30121,9,431,203,118,5,10 +30122,9,431,204,118,25,30 +30123,9,431,205,118,30,35 +30124,9,431,206,119,30,35 +30125,9,431,207,119,35,40 +30126,9,431,208,119,25,30 +30127,9,431,209,54,20,30 +30128,9,431,210,54,20,30 +30129,9,431,211,54,30,35 +30130,9,431,212,54,30,35 +30131,9,431,213,54,30,35 +30132,9,431,187,43,25,25 +30133,9,431,188,43,27,27 +30134,9,431,189,203,25,25 +30135,9,431,190,203,27,27 +30136,9,431,191,177,25,25 +30137,9,431,192,84,27,27 +30138,9,431,193,44,25,25 +30139,9,431,194,202,27,27 +30140,9,431,195,25,25,25 +30141,9,431,196,202,27,27 +30142,9,431,197,25,27,27 +30143,9,431,198,202,29,29 +30144,9,430,214,74,10,15 +30145,9,430,215,74,5,10 +30146,9,430,216,74,15,20 +30147,9,430,217,74,20,25 +30148,9,430,218,74,25,30 +30149,9,430,187,231,27,27 +30150,9,430,188,43,27,27 +30151,9,430,189,231,29,29 +30152,9,430,190,43,29,29 +30153,9,430,191,177,27,27 +30154,9,430,192,44,29,29 +30155,9,430,193,44,31,31 +30156,9,430,194,177,29,29 +30157,9,430,195,178,29,29 +30158,9,430,196,214,27,27 +30159,9,430,197,178,31,31 +30160,9,430,198,214,29,29 +30161,9,429,199,129,10,30 +30162,9,429,200,118,10,25 +30163,9,429,201,118,10,30 +30164,9,429,202,129,5,10 +30165,9,429,203,118,5,10 +30166,9,429,204,118,25,30 +30167,9,429,205,118,30,35 +30168,9,429,206,119,30,35 +30169,9,429,207,119,35,40 +30170,9,429,208,119,25,30 +30171,9,429,209,54,20,30 +30172,9,429,210,54,20,30 +30173,9,429,211,54,30,35 +30174,9,429,212,55,30,35 +30175,9,429,213,55,25,40 +30176,9,429,187,111,27,27 +30177,9,429,188,43,27,27 +30178,9,429,189,111,29,29 +30179,9,429,190,43,29,29 +30180,9,429,191,84,27,27 +30181,9,429,192,44,29,29 +30182,9,429,193,44,31,31 +30183,9,429,194,84,29,29 +30184,9,429,195,85,29,29 +30185,9,429,196,127,27,27 +30186,9,429,197,85,31,31 +30187,9,429,198,127,29,29 +30188,9,435,199,129,25,30 +30189,9,435,200,118,25,30 +30190,9,435,201,223,30,35 +30191,9,435,202,129,25,30 +30192,9,435,203,118,25,30 +30193,9,435,204,118,25,30 +30194,9,435,205,223,25,30 +30195,9,435,206,223,30,35 +30196,9,435,207,223,30,35 +30197,9,435,208,224,35,40 +30198,9,435,209,194,25,30 +30199,9,435,210,183,25,30 +30200,9,435,211,183,25,30 +30201,9,435,212,183,30,35 +30202,9,435,213,195,35,40 +30203,9,435,187,191,33,33 +30204,9,435,188,179,34,34 +30205,9,435,189,191,35,35 +30206,9,435,190,179,36,36 +30207,9,435,191,190,34,34 +30208,9,435,192,167,33,33 +30209,9,435,193,163,35,35 +30210,9,435,194,209,34,34 +30211,9,435,195,234,36,36 +30212,9,435,196,207,37,37 +30213,9,435,197,234,39,39 +30214,9,435,198,207,40,40 +30215,9,436,214,213,25,30 +30216,9,436,215,213,20,25 +30217,9,436,216,213,30,35 +30218,9,436,217,213,30,35 +30219,9,436,218,213,35,40 +30220,9,436,187,190,33,33 +30221,9,436,188,216,34,34 +30222,9,436,189,190,35,35 +30223,9,436,190,216,36,36 +30224,9,436,191,191,34,34 +30225,9,436,192,165,33,33 +30226,9,436,193,163,35,35 +30227,9,436,194,204,34,34 +30228,9,436,195,228,36,36 +30229,9,436,196,241,37,37 +30230,9,436,197,228,39,39 +30231,9,436,198,241,40,40 +30232,9,420,209,366,20,30 +30233,9,420,210,170,20,30 +30234,9,420,211,366,30,35 +30235,9,420,212,369,30,35 +30236,9,420,213,369,30,35 +30237,9,419,199,129,10,30 +30238,9,419,200,72,10,30 +30239,9,419,201,320,10,30 +30240,9,419,202,129,5,10 +30241,9,419,203,72,5,10 +30242,9,419,204,319,30,35 +30243,9,419,205,320,30,35 +30244,9,419,206,320,25,30 +30245,9,419,207,320,35,40 +30246,9,419,208,320,40,45 +30247,9,419,209,72,5,35 +30248,9,419,210,278,10,30 +30249,9,419,211,278,15,25 +30250,9,419,212,279,25,30 +30251,9,419,213,279,25,30 +30252,9,389,199,129,10,30 +30253,9,389,200,72,10,30 +30254,9,389,201,72,10,30 +30255,9,389,202,129,5,10 +30256,9,389,203,72,5,10 +30257,9,389,204,72,25,30 +30258,9,389,205,72,30,35 +30259,9,389,206,73,30,35 +30260,9,389,207,73,25,30 +30261,9,389,208,73,20,25 +30262,9,389,209,72,5,35 +30263,9,389,210,72,5,35 +30264,9,389,211,72,5,35 +30265,9,389,212,72,5,35 +30266,9,389,213,73,30,35 +30267,9,367,187,322,15,15 +30268,9,367,188,109,15,15 +30269,9,367,189,322,16,16 +30270,9,367,190,66,15,15 +30271,9,367,191,324,15,15 +30272,9,367,192,218,15,15 +30273,9,367,193,109,16,16 +30274,9,367,194,66,16,16 +30275,9,367,195,324,14,14 +30276,9,367,196,324,16,16 +30277,9,367,197,88,14,14 +30278,9,367,198,88,14,14 +30279,9,359,199,129,10,30 +30280,9,359,200,118,10,30 +30281,9,359,201,339,10,30 +30282,9,359,202,129,5,10 +30283,9,359,203,118,5,10 +30284,9,359,204,339,25,30 +30285,9,359,205,339,30,35 +30286,9,359,206,340,30,35 +30287,9,359,207,340,35,40 +30288,9,359,208,340,40,45 +30289,9,359,209,42,30,35 +30290,9,359,210,42,30,35 +30291,9,359,211,338,25,35 +30292,9,359,212,338,15,25 +30293,9,359,213,338,5,15 +30294,9,359,187,42,33,33 +30295,9,359,188,42,35,35 +30296,9,359,189,371,30,30 +30297,9,359,190,338,35,35 +30298,9,359,191,371,35,35 +30299,9,359,192,338,37,37 +30300,9,359,193,371,25,25 +30301,9,359,194,338,39,39 +30302,9,359,195,42,38,38 +30303,9,359,196,42,40,40 +30304,9,359,197,42,38,38 +30305,9,359,198,42,40,40 +30306,9,356,199,129,10,30 +30307,9,356,200,118,10,30 +30308,9,356,201,339,10,30 +30309,9,356,202,129,5,10 +30310,9,356,203,118,5,10 +30311,9,356,204,339,25,30 +30312,9,356,205,339,30,35 +30313,9,356,206,339,20,25 +30314,9,356,207,339,35,40 +30315,9,356,208,339,40,45 +30316,9,356,209,41,5,35 +30317,9,356,210,41,30,35 +30318,9,356,211,338,25,35 +30319,9,356,212,338,15,25 +30320,9,356,213,338,5,15 +30321,9,356,187,41,16,16 +30322,9,356,188,41,17,17 +30323,9,356,189,41,18,18 +30324,9,356,190,41,15,15 +30325,9,356,191,41,14,14 +30326,9,356,192,338,16,16 +30327,9,356,193,338,18,18 +30328,9,356,194,338,14,14 +30329,9,356,195,41,19,19 +30330,9,356,196,41,20,20 +30331,9,356,197,41,19,19 +30332,9,356,198,41,20,20 +30333,9,357,199,129,10,30 +30334,9,357,200,118,10,30 +30335,9,357,201,339,10,30 +30336,9,357,202,129,5,10 +30337,9,357,203,118,5,10 +30338,9,357,204,339,25,30 +30339,9,357,205,339,30,35 +30340,9,357,206,340,30,35 +30341,9,357,207,340,35,40 +30342,9,357,208,340,40,45 +30343,9,357,209,42,30,35 +30344,9,357,210,42,30,35 +30345,9,357,211,338,25,35 +30346,9,357,212,338,15,25 +30347,9,357,213,338,5,15 +30348,9,357,187,42,33,33 +30349,9,357,188,42,35,35 +30350,9,357,189,42,33,33 +30351,9,357,190,338,35,35 +30352,9,357,191,338,33,33 +30353,9,357,192,338,37,37 +30354,9,357,193,42,35,35 +30355,9,357,194,338,39,39 +30356,9,357,195,42,38,38 +30357,9,357,196,42,40,40 +30358,9,357,197,42,38,38 +30359,9,357,198,42,40,40 +30360,9,358,199,129,10,30 +30361,9,358,200,118,10,30 +30362,9,358,201,339,10,30 +30363,9,358,202,129,5,10 +30364,9,358,203,118,5,10 +30365,9,358,204,339,25,30 +30366,9,358,205,339,30,35 +30367,9,358,206,340,30,35 +30368,9,358,207,340,35,40 +30369,9,358,208,340,40,45 +30370,9,358,209,42,30,35 +30371,9,358,210,42,30,35 +30372,9,358,211,338,25,35 +30373,9,358,212,338,15,25 +30374,9,358,213,338,5,15 +30375,9,358,187,42,33,33 +30376,9,358,188,42,35,35 +30377,9,358,189,42,33,33 +30378,9,358,190,338,35,35 +30379,9,358,191,338,33,33 +30380,9,358,192,338,37,37 +30381,9,358,193,42,35,35 +30382,9,358,194,338,39,39 +30383,9,358,195,42,38,38 +30384,9,358,196,42,40,40 +30385,9,358,197,42,38,38 +30386,9,358,198,42,40,40 +30387,9,366,187,322,21,21 +30388,9,366,188,322,21,21 +30389,9,366,189,66,21,21 +30390,9,366,190,322,20,20 +30391,9,366,191,325,20,20 +30392,9,366,192,66,20,20 +30393,9,366,193,325,21,21 +30394,9,366,194,66,22,22 +30395,9,366,195,322,22,22 +30396,9,366,196,325,22,22 +30397,9,366,197,322,22,22 +30398,9,366,198,325,22,22 +30399,9,398,199,129,10,30 +30400,9,398,200,72,10,30 +30401,9,398,201,320,10,30 +30402,9,398,202,129,5,10 +30403,9,398,203,72,5,10 +30404,9,398,204,320,25,30 +30405,9,398,205,320,30,35 +30406,9,398,206,320,20,25 +30407,9,398,207,320,35,40 +30408,9,398,208,320,40,45 +30409,9,398,209,72,5,35 +30410,9,398,210,278,10,30 +30411,9,398,211,278,15,25 +30412,9,398,212,279,25,30 +30413,9,398,213,279,25,30 +30414,9,399,199,129,10,30 +30415,9,399,200,72,10,30 +30416,9,399,201,320,10,30 +30417,9,399,202,129,5,10 +30418,9,399,203,72,5,10 +30419,9,399,204,320,25,30 +30420,9,399,205,320,30,35 +30421,9,399,206,320,20,25 +30422,9,399,207,320,35,40 +30423,9,399,208,320,40,45 +30424,9,399,209,72,5,35 +30425,9,399,210,278,10,30 +30426,9,399,211,278,15,25 +30427,9,399,212,279,25,30 +30428,9,399,213,279,25,30 +30429,9,400,199,129,10,30 +30430,9,400,200,72,10,30 +30431,9,400,201,320,10,30 +30432,9,400,202,129,5,10 +30433,9,400,203,72,5,10 +30434,9,400,204,320,25,30 +30435,9,400,205,320,30,35 +30436,9,400,206,320,20,25 +30437,9,400,207,320,35,40 +30438,9,400,208,320,40,45 +30439,9,400,209,72,5,35 +30440,9,400,210,278,10,30 +30441,9,400,211,278,15,25 +30442,9,400,212,279,25,30 +30443,9,400,213,279,25,30 +30444,9,401,199,129,10,30 +30445,9,401,200,72,10,30 +30446,9,401,201,320,10,30 +30447,9,401,202,129,5,10 +30448,9,401,203,72,5,10 +30449,9,401,204,320,25,30 +30450,9,401,205,320,30,35 +30451,9,401,206,320,20,25 +30452,9,401,207,320,35,40 +30453,9,401,208,320,40,45 +30454,9,401,209,72,5,35 +30455,9,401,210,278,10,30 +30456,9,401,211,278,15,25 +30457,9,401,212,279,25,30 +30458,9,401,213,279,25,30 +30459,9,407,199,129,10,30 +30460,9,407,200,72,10,30 +30461,9,407,201,320,10,30 +30462,9,407,202,129,5,10 +30463,9,407,203,72,5,10 +30464,9,407,204,320,25,30 +30465,9,407,205,320,30,35 +30466,9,407,206,320,20,25 +30467,9,407,207,320,35,40 +30468,9,407,208,320,40,45 +30469,9,407,209,72,5,35 +30470,9,407,210,278,10,30 +30471,9,407,211,278,15,25 +30472,9,407,212,279,25,30 +30473,9,407,213,279,25,30 +30474,9,407,187,333,23,23 +30475,9,407,188,276,23,23 +30476,9,407,189,333,25,25 +30477,9,407,190,276,24,24 +30478,9,407,191,276,25,25 +30479,9,407,192,277,25,25 +30480,9,407,193,39,24,24 +30481,9,407,194,39,25,25 +30482,9,407,195,278,24,24 +30483,9,407,196,278,24,24 +30484,9,407,197,278,26,26 +30485,9,407,198,278,25,25 +30486,9,388,187,100,24,24 +30487,9,388,188,81,24,24 +30488,9,388,189,100,25,25 +30489,9,388,190,81,25,25 +30490,9,388,191,100,23,23 +30491,9,388,192,81,23,23 +30492,9,388,193,100,26,26 +30493,9,388,194,81,26,26 +30494,9,388,195,100,22,22 +30495,9,388,196,81,22,22 +30496,9,388,197,101,26,26 +30497,9,388,198,82,26,26 +30498,9,387,187,100,24,24 +30499,9,387,188,81,24,24 +30500,9,387,189,100,25,25 +30501,9,387,190,81,25,25 +30502,9,387,191,100,23,23 +30503,9,387,192,81,23,23 +30504,9,387,193,100,26,26 +30505,9,387,194,81,26,26 +30506,9,387,195,100,22,22 +30507,9,387,196,81,22,22 +30508,9,387,197,100,22,22 +30509,9,387,198,81,22,22 +30510,9,411,199,129,10,30 +30511,9,411,200,72,10,30 +30512,9,411,201,318,10,30 +30513,9,411,202,129,5,10 +30514,9,411,203,72,5,10 +30515,9,411,204,318,25,30 +30516,9,411,205,318,30,35 +30517,9,411,206,318,20,25 +30518,9,411,207,318,35,40 +30519,9,411,208,318,40,45 +30520,9,411,209,72,5,35 +30521,9,411,210,278,10,30 +30522,9,411,211,278,15,25 +30523,9,411,212,279,25,30 +30524,9,411,213,279,25,30 +30525,9,411,187,263,25,25 +30526,9,411,188,264,25,25 +30527,9,411,189,263,27,27 +30528,9,411,190,43,25,25 +30529,9,411,191,264,27,27 +30530,9,411,192,43,26,26 +30531,9,411,193,43,27,27 +30532,9,411,194,43,24,24 +30533,9,411,195,357,25,25 +30534,9,411,196,357,26,26 +30535,9,411,197,357,27,27 +30536,9,411,198,352,25,25 +30537,9,412,199,129,10,30 +30538,9,412,200,118,10,30 +30539,9,412,201,339,10,30 +30540,9,412,202,129,5,10 +30541,9,412,203,118,5,10 +30542,9,412,204,339,25,30 +30543,9,412,205,339,30,35 +30544,9,412,206,339,20,25 +30545,9,412,207,339,35,40 +30546,9,412,208,339,40,45 +30547,9,412,209,183,20,30 +30548,9,412,210,183,10,20 +30549,9,412,211,183,30,35 +30550,9,412,212,183,5,10 +30551,9,412,213,118,20,30 +30552,9,412,187,261,25,25 +30553,9,412,188,262,25,25 +30554,9,412,189,262,27,27 +30555,9,412,190,43,25,25 +30556,9,412,191,183,25,25 +30557,9,412,192,43,26,26 +30558,9,412,193,43,27,27 +30559,9,412,194,183,27,27 +30560,9,412,195,359,25,25 +30561,9,412,196,359,27,27 +30562,9,412,197,352,25,25 +30563,9,412,198,273,25,25 +30564,9,413,199,129,10,30 +30565,9,413,200,72,10,30 +30566,9,413,201,320,10,30 +30567,9,413,202,129,5,10 +30568,9,413,203,72,5,10 +30569,9,413,204,320,25,30 +30570,9,413,205,320,30,35 +30571,9,413,206,320,20,25 +30572,9,413,207,320,35,40 +30573,9,413,208,320,40,45 +30574,9,413,209,72,5,35 +30575,9,413,210,278,10,30 +30576,9,413,211,278,15,25 +30577,9,413,212,279,25,30 +30578,9,413,213,279,25,30 +30579,9,413,187,261,26,26 +30580,9,413,188,353,26,26 +30581,9,413,189,262,26,26 +30582,9,413,190,353,28,28 +30583,9,413,191,262,28,28 +30584,9,413,192,43,26,26 +30585,9,413,193,43,28,28 +30586,9,413,194,44,28,28 +30587,9,413,195,278,26,26 +30588,9,413,196,278,27,27 +30589,9,413,197,278,28,28 +30590,9,413,198,352,25,25 +30591,9,414,199,129,10,30 +30592,9,414,200,72,10,30 +30593,9,414,201,320,10,30 +30594,9,414,202,129,5,10 +30595,9,414,203,72,5,10 +30596,9,414,204,319,30,35 +30597,9,414,205,320,30,35 +30598,9,414,206,320,25,30 +30599,9,414,207,320,35,40 +30600,9,414,208,320,40,45 +30601,9,414,209,72,5,35 +30602,9,414,210,278,10,30 +30603,9,414,211,278,15,25 +30604,9,414,212,279,25,30 +30605,9,414,213,279,25,30 +30606,9,415,199,129,10,30 +30607,9,415,200,72,10,30 +30608,9,415,201,320,10,30 +30609,9,415,202,129,5,10 +30610,9,415,203,72,5,10 +30611,9,415,204,320,25,30 +30612,9,415,205,320,30,35 +30613,9,415,206,320,20,25 +30614,9,415,207,320,35,40 +30615,9,415,208,320,40,45 +30616,9,415,209,72,5,35 +30617,9,415,210,278,10,30 +30618,9,415,211,278,15,25 +30619,9,415,212,279,25,30 +30620,9,415,213,279,25,30 +30621,9,415,187,261,26,26 +30622,9,415,188,353,26,26 +30623,9,415,189,262,26,26 +30624,9,415,190,353,28,28 +30625,9,415,191,262,28,28 +30626,9,415,192,43,26,26 +30627,9,415,193,43,28,28 +30628,9,415,194,44,28,28 +30629,9,415,195,278,26,26 +30630,9,415,196,278,27,27 +30631,9,415,197,278,28,28 +30632,9,415,198,352,25,25 +30633,9,418,199,129,10,30 +30634,9,418,200,72,10,30 +30635,9,418,201,320,10,30 +30636,9,418,202,129,5,10 +30637,9,418,203,72,5,10 +30638,9,418,204,319,30,35 +30639,9,418,205,320,30,35 +30640,9,418,206,320,25,30 +30641,9,418,207,320,35,40 +30642,9,418,208,320,40,45 +30643,9,418,209,72,5,35 +30644,9,418,210,278,10,30 +30645,9,418,211,278,15,25 +30646,9,418,212,279,25,30 +30647,9,418,213,279,25,30 +30648,9,421,199,129,10,30 +30649,9,421,200,72,10,30 +30650,9,421,201,320,10,30 +30651,9,421,202,129,5,10 +30652,9,421,203,72,5,10 +30653,9,421,204,319,30,35 +30654,9,421,205,320,30,35 +30655,9,421,206,320,25,30 +30656,9,421,207,320,35,40 +30657,9,421,208,320,40,45 +30658,9,421,209,72,5,35 +30659,9,421,210,278,10,30 +30660,9,421,211,278,15,25 +30661,9,421,212,279,25,30 +30662,9,421,213,279,25,30 +30663,9,422,199,129,10,30 +30664,9,422,200,370,10,30 +30665,9,422,201,320,10,30 +30666,9,422,202,129,5,10 +30667,9,422,203,72,5,10 +30668,9,422,204,370,30,35 +30669,9,422,205,320,30,35 +30670,9,422,206,222,30,35 +30671,9,422,207,320,35,40 +30672,9,422,208,320,40,45 +30673,9,422,209,72,5,35 +30674,9,422,210,278,10,30 +30675,9,422,211,278,15,25 +30676,9,422,212,279,25,30 +30677,9,422,213,279,25,30 +30678,9,423,199,129,10,30 +30679,9,423,200,72,10,30 +30680,9,423,201,320,10,30 +30681,9,423,202,129,5,10 +30682,9,423,203,72,5,10 +30683,9,423,204,319,30,35 +30684,9,423,205,320,30,35 +30685,9,423,206,320,25,30 +30686,9,423,207,320,35,40 +30687,9,423,208,320,40,45 +30688,9,423,209,72,5,35 +30689,9,423,210,278,10,30 +30690,9,423,211,278,15,25 +30691,9,423,212,279,25,30 +30692,9,423,213,321,25,30 +30693,9,424,199,129,10,30 +30694,9,424,200,72,10,30 +30695,9,424,201,320,10,30 +30696,9,424,202,129,5,10 +30697,9,424,203,72,5,10 +30698,9,424,204,319,30,35 +30699,9,424,205,320,30,35 +30700,9,424,206,320,25,30 +30701,9,424,207,320,35,40 +30702,9,424,208,320,40,45 +30703,9,424,209,72,5,35 +30704,9,424,210,278,10,30 +30705,9,424,211,278,15,25 +30706,9,424,212,279,25,30 +30707,9,424,213,279,25,30 +30708,9,424,187,360,30,30 +30709,9,424,188,360,35,35 +30710,9,424,189,360,25,25 +30711,9,424,190,360,40,40 +30712,9,424,191,360,20,20 +30713,9,424,192,360,45,45 +30714,9,424,193,360,15,15 +30715,9,424,194,360,50,50 +30716,9,424,195,360,10,10 +30717,9,424,196,360,5,5 +30718,9,424,197,360,10,10 +30719,9,424,198,360,5,5 +30720,9,425,199,129,10,30 +30721,9,425,200,72,10,30 +30722,9,425,201,320,10,30 +30723,9,425,202,129,5,10 +30724,9,425,203,72,5,10 +30725,9,425,204,319,30,35 +30726,9,425,205,320,30,35 +30727,9,425,206,320,25,30 +30728,9,425,207,320,35,40 +30729,9,425,208,320,40,45 +30730,9,425,209,72,5,35 +30731,9,425,210,278,10,30 +30732,9,425,211,278,15,25 +30733,9,425,212,279,25,30 +30734,9,425,213,279,25,30 +30735,9,426,199,129,10,30 +30736,9,426,200,72,10,30 +30737,9,426,201,320,10,30 +30738,9,426,202,129,5,10 +30739,9,426,203,72,5,10 +30740,9,426,204,319,30,35 +30741,9,426,205,320,30,35 +30742,9,426,206,116,25,30 +30743,9,426,207,320,35,40 +30744,9,426,208,320,40,45 +30745,9,426,209,72,5,35 +30746,9,426,210,278,10,30 +30747,9,426,211,278,15,25 +30748,9,426,212,279,25,30 +30749,9,426,213,279,25,30 +30750,9,427,199,129,10,30 +30751,9,427,200,72,10,30 +30752,9,427,201,320,10,30 +30753,9,427,202,129,5,10 +30754,9,427,203,72,5,10 +30755,9,427,204,319,30,35 +30756,9,427,205,320,30,35 +30757,9,427,206,116,25,30 +30758,9,427,207,320,35,40 +30759,9,427,208,320,40,45 +30760,9,427,209,72,5,35 +30761,9,427,210,278,10,30 +30762,9,427,211,278,15,25 +30763,9,427,212,279,25,30 +30764,9,427,213,279,25,30 +30765,9,428,199,129,10,30 +30766,9,428,200,72,10,30 +30767,9,428,201,320,10,30 +30768,9,428,202,129,5,10 +30769,9,428,203,72,5,10 +30770,9,428,204,319,30,35 +30771,9,428,205,320,30,35 +30772,9,428,206,116,25,30 +30773,9,428,207,320,35,40 +30774,9,428,208,320,40,45 +30775,9,428,209,72,5,35 +30776,9,428,210,278,10,30 +30777,9,428,211,278,15,25 +30778,9,428,212,279,25,30 +30779,9,428,213,279,25,30 +30780,9,376,199,129,10,30 +30781,9,376,200,72,10,30 +30782,9,376,201,320,10,30 +30783,9,376,202,129,5,10 +30784,9,376,203,72,5,10 +30785,9,376,204,320,25,30 +30786,9,376,205,320,30,35 +30787,9,376,206,320,20,25 +30788,9,376,207,320,35,40 +30789,9,376,208,320,40,45 +30790,9,376,209,72,5,35 +30791,9,376,210,41,5,35 +30792,9,376,211,41,30,35 +30793,9,376,212,42,30,35 +30794,9,376,213,42,30,35 +30795,9,376,187,41,30,30 +30796,9,376,188,41,31,31 +30797,9,376,189,41,32,32 +30798,9,376,190,41,33,33 +30799,9,376,191,41,28,28 +30800,9,376,192,41,29,29 +30801,9,376,193,41,34,34 +30802,9,376,194,41,35,35 +30803,9,376,195,42,34,34 +30804,9,376,196,42,35,35 +30805,9,376,197,42,33,33 +30806,9,376,198,42,36,36 +30807,9,377,187,41,30,30 +30808,9,377,188,41,31,31 +30809,9,377,189,41,32,32 +30810,9,377,190,41,33,33 +30811,9,377,191,41,28,28 +30812,9,377,192,41,29,29 +30813,9,377,193,41,34,34 +30814,9,377,194,41,35,35 +30815,9,377,195,42,34,34 +30816,9,377,196,42,35,35 +30817,9,377,197,42,33,33 +30818,9,377,198,42,36,36 +30819,9,378,187,41,30,30 +30820,9,378,188,41,31,31 +30821,9,378,189,41,32,32 +30822,9,378,190,302,30,30 +30823,9,378,191,302,32,32 +30824,9,378,192,302,34,34 +30825,9,378,193,41,33,33 +30826,9,378,194,41,34,34 +30827,9,378,195,42,34,34 +30828,9,378,196,42,35,35 +30829,9,378,197,42,33,33 +30830,9,378,198,42,36,36 +30831,9,379,187,41,30,30 +30832,9,379,188,41,31,31 +30833,9,379,189,41,32,32 +30834,9,379,190,302,30,30 +30835,9,379,191,302,32,32 +30836,9,379,192,302,34,34 +30837,9,379,193,41,33,33 +30838,9,379,194,41,34,34 +30839,9,379,195,42,34,34 +30840,9,379,196,42,35,35 +30841,9,379,197,42,33,33 +30842,9,379,198,42,36,36 +30843,9,380,187,41,30,30 +30844,9,380,188,41,31,31 +30845,9,380,189,41,32,32 +30846,9,380,190,302,30,30 +30847,9,380,191,302,32,32 +30848,9,380,192,302,34,34 +30849,9,380,193,41,33,33 +30850,9,380,194,41,34,34 +30851,9,380,195,42,34,34 +30852,9,380,196,42,35,35 +30853,9,380,197,42,33,33 +30854,9,380,198,42,36,36 +30855,9,381,187,41,30,30 +30856,9,381,188,41,31,31 +30857,9,381,189,41,32,32 +30858,9,381,190,302,30,30 +30859,9,381,191,302,32,32 +30860,9,381,192,302,34,34 +30861,9,381,193,41,33,33 +30862,9,381,194,41,34,34 +30863,9,381,195,42,34,34 +30864,9,381,196,42,35,35 +30865,9,381,197,42,33,33 +30866,9,381,198,42,36,36 +30867,9,385,199,129,10,30 +30868,9,385,200,72,10,30 +30869,9,385,201,320,10,30 +30870,9,385,202,129,5,10 +30871,9,385,203,72,5,10 +30872,9,385,204,320,25,30 +30873,9,385,205,320,30,35 +30874,9,385,206,320,20,25 +30875,9,385,207,320,35,40 +30876,9,385,208,320,40,45 +30877,9,385,209,72,5,35 +30878,9,385,210,41,5,35 +30879,9,385,211,363,25,30 +30880,9,385,212,363,25,30 +30881,9,385,213,363,25,35 +30882,9,385,187,41,26,26 +30883,9,385,188,363,26,26 +30884,9,385,189,41,28,28 +30885,9,385,190,363,28,28 +30886,9,385,191,41,30,30 +30887,9,385,192,363,30,30 +30888,9,385,193,41,32,32 +30889,9,385,194,363,32,32 +30890,9,385,195,42,32,32 +30891,9,385,196,363,32,32 +30892,9,385,197,42,32,32 +30893,9,385,198,363,32,32 +30894,9,386,187,41,26,26 +30895,9,386,188,363,26,26 +30896,9,386,189,41,28,28 +30897,9,386,190,363,28,28 +30898,9,386,191,41,30,30 +30899,9,386,192,363,30,30 +30900,9,386,193,361,26,26 +30901,9,386,194,363,32,32 +30902,9,386,195,42,30,30 +30903,9,386,196,361,28,28 +30904,9,386,197,42,32,32 +30905,9,386,198,361,30,30 +30906,9,352,199,129,10,30 +30907,9,352,200,72,10,30 +30908,9,352,201,320,10,30 +30909,9,352,202,129,5,10 +30910,9,352,203,72,5,10 +30911,9,352,204,320,25,30 +30912,9,352,205,320,30,35 +30913,9,352,206,120,25,30 +30914,9,352,207,320,35,40 +30915,9,352,208,320,40,45 +30916,9,352,209,72,5,35 +30917,9,352,210,278,10,30 +30918,9,352,211,278,15,25 +30919,9,352,212,279,25,30 +30920,9,352,213,279,25,30 +30921,9,433,199,129,10,30 +30922,9,433,200,72,10,30 +30923,9,433,201,320,10,30 +30924,9,433,202,129,5,10 +30925,9,433,203,72,5,10 +30926,9,433,204,320,25,30 +30927,9,433,205,320,30,35 +30928,9,433,206,320,20,25 +30929,9,433,207,320,35,40 +30930,9,433,208,320,40,45 +30931,9,433,209,72,5,35 +30932,9,433,210,278,10,30 +30933,9,433,211,278,15,25 +30934,9,433,212,279,25,30 +30935,9,433,213,279,25,30 +30936,9,351,199,129,10,30 +30937,9,351,200,72,10,30 +30938,9,351,201,320,10,30 +30939,9,351,202,129,5,10 +30940,9,351,203,72,5,10 +30941,9,351,204,320,25,30 +30942,9,351,205,320,30,35 +30943,9,351,206,320,20,25 +30944,9,351,207,320,35,40 +30945,9,351,208,320,40,45 +30946,9,351,209,72,5,35 +30947,9,351,210,278,10,30 +30948,9,351,211,278,15,25 +30949,9,351,212,279,25,30 +30950,9,351,213,279,25,30 +30951,9,353,199,129,10,30 +30952,9,353,200,72,10,30 +30953,9,353,201,320,10,30 +30954,9,353,202,129,5,10 +30955,9,353,203,72,5,10 +30956,9,353,204,319,30,35 +30957,9,353,205,320,30,35 +30958,9,353,206,320,25,30 +30959,9,353,207,320,35,40 +30960,9,353,208,320,40,45 +30961,9,353,209,72,5,35 +30962,9,353,210,278,10,30 +30963,9,353,211,278,15,25 +30964,9,353,212,279,25,30 +30965,9,353,213,279,25,30 +30966,9,434,199,129,10,30 +30967,9,434,200,72,10,30 +30968,9,434,201,320,10,30 +30969,9,434,202,129,5,10 +30970,9,434,203,72,5,10 +30971,9,434,204,319,30,35 +30972,9,434,205,320,30,35 +30973,9,434,206,320,25,30 +30974,9,434,207,320,35,40 +30975,9,434,208,320,40,45 +30976,9,434,209,72,5,35 +30977,9,434,210,278,10,30 +30978,9,434,211,278,15,25 +30979,9,434,212,279,25,30 +30980,9,434,213,279,25,30 +30981,9,355,199,129,10,30 +30982,9,355,200,370,10,30 +30983,9,355,201,320,10,30 +30984,9,355,202,129,5,10 +30985,9,355,203,72,5,10 +30986,9,355,204,370,30,35 +30987,9,355,205,320,30,35 +30988,9,355,206,222,30,35 +30989,9,355,207,320,35,40 +30990,9,355,208,320,40,45 +30991,9,355,209,72,5,35 +30992,9,355,210,278,10,30 +30993,9,355,211,278,15,25 +30994,9,355,212,279,25,30 +30995,9,355,213,279,25,30 +30996,9,350,199,129,10,30 +30997,9,350,200,118,10,30 +30998,9,350,201,341,10,30 +30999,9,350,202,129,5,10 +31000,9,350,203,118,5,10 +31001,9,350,204,341,25,30 +31002,9,350,205,341,30,35 +31003,9,350,206,341,20,25 +31004,9,350,207,341,35,40 +31005,9,350,208,341,40,45 +31006,9,350,209,183,20,30 +31007,9,350,210,183,10,20 +31008,9,350,211,183,30,35 +31009,9,350,212,183,5,10 +31010,9,350,213,183,5,10 +31011,9,390,187,302,33,33 +31012,9,390,188,42,34,34 +31013,9,390,189,42,35,35 +31014,9,390,190,302,34,34 +31015,9,390,191,344,36,36 +31016,9,390,192,354,37,37 +31017,9,390,193,354,38,38 +31018,9,390,194,344,36,36 +31019,9,390,195,344,37,37 +31020,9,390,196,344,38,38 +31021,9,390,197,344,37,37 +31022,9,390,198,344,38,38 +31023,9,391,187,302,33,33 +31024,9,391,188,42,34,34 +31025,9,391,189,42,35,35 +31026,9,391,190,302,34,34 +31027,9,391,191,344,36,36 +31028,9,391,192,354,37,37 +31029,9,391,193,354,38,38 +31030,9,391,194,344,36,36 +31031,9,391,195,344,37,37 +31032,9,391,196,344,38,38 +31033,9,391,197,344,37,37 +31034,9,391,198,344,38,38 +31035,9,392,187,302,33,33 +31036,9,392,188,42,34,34 +31037,9,392,189,42,35,35 +31038,9,392,190,302,34,34 +31039,9,392,191,344,36,36 +31040,9,392,192,354,37,37 +31041,9,392,193,354,38,38 +31042,9,392,194,344,36,36 +31043,9,392,195,344,37,37 +31044,9,392,196,334,38,38 +31045,9,392,197,334,39,39 +31046,9,392,198,334,39,39 +31047,9,354,199,129,10,30 +31048,9,354,200,129,10,30 +31049,9,354,201,129,10,30 +31050,9,354,202,129,5,10 +31051,9,354,203,72,5,10 +31052,9,354,204,129,30,35 +31053,9,354,205,129,30,35 +31054,9,354,206,130,35,40 +31055,9,354,207,130,35,45 +31056,9,354,208,130,5,45 +31057,9,354,209,129,5,35 +31058,9,354,210,129,10,30 +31059,9,354,211,129,15,25 +31060,9,354,212,129,25,30 +31061,9,354,213,129,25,30 +31062,9,437,187,74,27,27 +31063,9,437,188,324,28,28 +31064,9,437,189,74,28,28 +31065,9,437,190,324,30,30 +31066,9,437,191,74,29,29 +31067,9,437,192,74,30,30 +31068,9,437,193,74,30,30 +31069,9,437,194,75,30,30 +31070,9,437,195,75,30,30 +31071,9,437,196,75,31,31 +31072,9,437,197,75,32,32 +31073,9,437,198,75,33,33 +31074,9,438,187,27,21,21 +31075,9,438,188,328,21,21 +31076,9,438,189,27,20,20 +31077,9,438,190,328,20,20 +31078,9,438,191,27,20,20 +31079,9,438,192,328,20,20 +31080,9,438,193,27,22,22 +31081,9,438,194,328,22,22 +31082,9,438,195,27,23,23 +31083,9,438,196,328,23,23 +31084,9,438,197,27,24,24 +31085,9,438,198,328,24,24 +31086,9,439,187,132,38,38 +31087,9,439,188,293,35,35 +31088,9,439,189,132,40,40 +31089,9,439,190,294,40,40 +31090,9,439,191,132,41,41 +31091,9,439,192,293,36,36 +31092,9,439,193,294,38,38 +31093,9,439,194,132,42,42 +31094,9,439,195,293,38,38 +31095,9,439,196,132,43,43 +31096,9,439,197,294,44,44 +31097,9,439,198,132,45,45 +31098,9,440,187,235,40,40 +31099,9,440,188,235,41,41 +31100,9,440,189,235,42,42 +31101,9,440,190,235,43,43 +31102,9,440,191,235,44,44 +31103,9,440,192,235,45,45 +31104,9,440,193,235,46,46 +31105,9,440,194,235,47,47 +31106,9,440,195,235,48,48 +31107,9,440,196,235,49,49 +31108,9,440,197,235,50,50 +31109,9,440,198,235,50,50 +31110,9,441,187,41,10,10 +31111,9,441,188,41,12,12 +31112,9,441,189,41,8,8 +31113,9,441,190,41,14,14 +31114,9,441,191,41,10,10 +31115,9,441,192,41,12,12 +31116,9,441,193,41,16,16 +31117,9,441,194,41,6,6 +31118,9,441,195,41,8,8 +31119,9,441,196,41,14,14 +31120,9,441,197,41,8,8 +31121,9,441,198,41,14,14 +31122,9,442,187,179,7,7 +31123,9,442,188,179,9,9 +31124,9,442,189,179,5,5 +31125,9,442,190,179,11,11 +31126,9,442,191,179,7,7 +31127,9,442,192,179,9,9 +31128,9,442,193,179,13,13 +31129,9,442,194,179,3,3 +31130,9,442,195,179,5,5 +31131,9,442,196,179,11,11 +31132,9,442,197,179,5,5 +31133,9,442,198,179,11,11 +31134,9,443,187,204,23,23 +31135,9,443,188,204,25,25 +31136,9,443,189,204,22,22 +31137,9,443,190,204,27,27 +31138,9,443,191,204,23,23 +31139,9,443,192,204,25,25 +31140,9,443,193,204,29,29 +31141,9,443,194,204,19,19 +31142,9,443,195,204,21,21 +31143,9,443,196,204,27,27 +31144,9,443,197,204,21,21 +31145,9,443,198,204,27,27 +31146,9,444,187,228,16,16 +31147,9,444,188,228,18,18 +31148,9,444,189,228,14,14 +31149,9,444,190,228,20,20 +31150,9,444,191,228,16,16 +31151,9,444,192,228,18,18 +31152,9,444,193,228,22,22 +31153,9,444,194,228,12,12 +31154,9,444,195,228,14,14 +31155,9,444,196,228,20,20 +31156,9,444,197,228,14,14 +31157,9,444,198,228,20,20 +31158,9,445,187,216,10,10 +31159,9,445,188,216,12,12 +31160,9,445,189,216,8,8 +31161,9,445,190,216,14,14 +31162,9,445,191,216,10,10 +31163,9,445,192,216,12,12 +31164,9,445,193,216,16,16 +31165,9,445,194,216,6,6 +31166,9,445,195,216,8,8 +31167,9,445,196,216,14,14 +31168,9,445,197,216,8,8 +31169,9,445,198,216,14,14 +31170,9,446,187,190,22,22 +31171,9,446,188,190,24,24 +31172,9,446,189,190,20,20 +31173,9,446,190,190,26,26 +31174,9,446,191,190,22,22 +31175,9,446,192,190,24,24 +31176,9,446,193,190,28,28 +31177,9,446,194,190,18,18 +31178,9,446,195,190,20,20 +31179,9,446,196,190,26,26 +31180,9,446,197,190,20,20 +31181,9,446,198,190,26,26 +31182,9,447,187,213,22,22 +31183,9,447,188,213,24,24 +31184,9,447,189,213,20,20 +31185,9,447,190,213,26,26 +31186,9,447,191,213,22,22 +31187,9,447,192,213,24,24 +31188,9,447,193,213,28,28 +31189,9,447,194,213,18,18 +31190,9,447,195,213,20,20 +31191,9,447,196,213,26,26 +31192,9,447,197,213,20,20 +31193,9,447,198,213,26,26 +31194,9,448,187,234,22,22 +31195,9,448,188,234,24,24 +31196,9,448,189,234,20,20 +31197,9,448,190,234,26,26 +31198,9,448,191,234,22,22 +31199,9,448,192,234,24,24 +31200,9,448,193,234,28,28 +31201,9,448,194,234,18,18 +31202,9,448,195,234,20,20 +31203,9,448,196,234,26,26 +31204,9,448,197,234,20,20 +31205,9,448,198,234,26,26 +31206,9,449,187,235,22,22 +31207,9,449,188,235,24,24 +31208,9,449,189,235,20,20 +31209,9,449,190,235,26,26 +31210,9,449,191,235,22,22 +31211,9,449,192,235,24,24 +31212,9,449,193,235,28,28 +31213,9,449,194,235,18,18 +31214,9,449,195,235,20,20 +31215,9,449,196,235,26,26 +31216,9,449,197,235,20,20 +31217,9,449,198,235,26,26 +31218,10,450,219,201,25,25 +31219,10,450,220,201,25,25 +31220,10,450,221,201,25,25 +31221,10,450,222,201,25,25 +31222,10,450,223,201,25,25 +31223,10,450,224,201,25,25 +31224,10,450,225,201,25,25 +31225,10,450,226,201,25,25 +31226,10,450,227,201,25,25 +31227,10,450,228,201,25,25 +31228,10,450,229,201,25,25 +31229,10,450,230,201,25,25 +31230,10,451,219,201,25,25 +31231,10,451,220,201,25,25 +31232,10,451,221,201,25,25 +31233,10,451,222,201,25,25 +31234,10,451,223,201,25,25 +31235,10,451,224,201,25,25 +31236,10,451,225,201,25,25 +31237,10,451,226,201,25,25 +31238,10,451,227,201,25,25 +31239,10,451,228,201,25,25 +31240,10,451,229,201,25,25 +31241,10,451,230,201,25,25 +31242,10,452,219,201,25,25 +31243,10,452,220,201,25,25 +31244,10,452,221,201,25,25 +31245,10,452,222,201,25,25 +31246,10,452,223,201,25,25 +31247,10,452,224,201,25,25 +31248,10,452,225,201,25,25 +31249,10,452,226,201,25,25 +31250,10,452,227,201,25,25 +31251,10,452,228,201,25,25 +31252,10,452,229,201,25,25 +31253,10,452,230,201,25,25 +31254,10,453,219,201,25,25 +31255,10,453,220,201,25,25 +31256,10,453,221,201,25,25 +31257,10,453,222,201,25,25 +31258,10,453,223,201,25,25 +31259,10,453,224,201,25,25 +31260,10,453,225,201,25,25 +31261,10,453,226,201,25,25 +31262,10,453,227,201,25,25 +31263,10,453,228,201,25,25 +31264,10,453,229,201,25,25 +31265,10,453,230,201,25,25 +31266,10,454,219,201,25,25 +31267,10,454,220,201,25,25 +31268,10,454,221,201,25,25 +31269,10,454,222,201,25,25 +31270,10,454,223,201,25,25 +31271,10,454,224,201,25,25 +31272,10,454,225,201,25,25 +31273,10,454,226,201,25,25 +31274,10,454,227,201,25,25 +31275,10,454,228,201,25,25 +31276,10,454,229,201,25,25 +31277,10,454,230,201,25,25 +31278,10,455,219,201,25,25 +31279,10,455,220,201,25,25 +31280,10,455,221,201,25,25 +31281,10,455,222,201,25,25 +31282,10,455,223,201,25,25 +31283,10,455,224,201,25,25 +31284,10,455,225,201,25,25 +31285,10,455,226,201,25,25 +31286,10,455,227,201,25,25 +31287,10,455,228,201,25,25 +31288,10,455,229,201,25,25 +31289,10,455,230,201,25,25 +31290,10,456,219,201,25,25 +31291,10,456,220,201,25,25 +31292,10,456,221,201,25,25 +31293,10,456,222,201,25,25 +31294,10,456,223,201,25,25 +31295,10,456,224,201,25,25 +31296,10,456,225,201,25,25 +31297,10,456,226,201,25,25 +31298,10,456,227,201,25,25 +31299,10,456,228,201,25,25 +31300,10,456,229,201,25,25 +31301,10,456,230,201,25,25 +31302,10,457,219,10,4,4 +31303,10,457,220,13,4,4 +31304,10,457,221,10,5,5 +31305,10,457,222,13,5,5 +31306,10,457,223,10,3,3 +31307,10,457,224,13,3,3 +31308,10,457,225,11,5,5 +31309,10,457,226,14,5,5 +31310,10,457,227,14,4,4 +31311,10,457,228,25,3,3 +31312,10,457,229,14,6,6 +31313,10,457,230,25,5,5 +31314,10,458,219,41,7,7 +31315,10,458,220,41,8,8 +31316,10,458,221,74,7,7 +31317,10,458,222,41,9,9 +31318,10,458,223,41,10,10 +31319,10,458,224,74,8,8 +31320,10,458,225,74,9,9 +31321,10,458,226,46,8,8 +31322,10,458,227,41,7,7 +31323,10,458,228,41,7,7 +31324,10,458,229,41,7,7 +31325,10,458,230,35,8,8 +31326,10,459,219,46,7,7 +31327,10,459,220,46,8,8 +31328,10,459,221,46,5,5 +31329,10,459,222,46,6,6 +31330,10,459,223,46,9,9 +31331,10,459,224,46,10,10 +31332,10,459,225,46,7,7 +31333,10,459,226,46,8,8 +31334,10,459,227,46,5,5 +31335,10,459,228,46,6,6 +31336,10,459,229,46,9,9 +31337,10,459,230,46,10,10 +31338,10,460,219,41,8,8 +31339,10,460,220,74,9,9 +31340,10,460,221,41,9,9 +31341,10,460,222,41,10,10 +31342,10,460,223,74,10,10 +31343,10,460,224,46,10,10 +31344,10,460,225,46,12,12 +31345,10,460,226,35,10,10 +31346,10,460,227,41,11,11 +31347,10,460,228,41,11,11 +31348,10,460,229,41,11,11 +31349,10,460,230,35,12,12 +31350,10,461,231,116,5,15 +31351,10,461,232,129,5,15 +31352,10,461,233,98,5,15 +31353,10,461,234,129,5,5 +31354,10,461,235,129,5,5 +31355,10,461,236,116,15,25 +31356,10,461,237,90,15,25 +31357,10,461,238,130,15,25 +31358,10,461,239,116,25,35 +31359,10,461,240,54,25,35 +31360,10,461,241,72,5,10 +31361,10,461,242,72,10,20 +31362,10,461,243,72,20,30 +31363,10,461,244,72,30,35 +31364,10,461,245,72,35,40 +31365,10,462,219,50,18,18 +31366,10,462,220,50,19,19 +31367,10,462,221,50,17,17 +31368,10,462,222,50,15,15 +31369,10,462,223,50,16,16 +31370,10,462,224,50,20,20 +31371,10,462,225,50,21,21 +31372,10,462,226,50,22,22 +31373,10,462,227,50,17,17 +31374,10,462,228,51,29,29 +31375,10,462,229,50,17,17 +31376,10,462,230,51,31,31 +31377,10,463,219,66,32,32 +31378,10,463,220,74,32,32 +31379,10,463,221,95,40,40 +31380,10,463,222,95,43,43 +31381,10,463,223,95,46,46 +31382,10,463,224,41,32,32 +31383,10,463,225,24,44,44 +31384,10,463,226,42,44,44 +31385,10,463,227,105,44,44 +31386,10,463,228,67,44,44 +31387,10,463,229,67,46,46 +31388,10,463,230,105,46,46 +31389,10,464,219,66,34,34 +31390,10,464,220,74,34,34 +31391,10,464,221,57,42,42 +31392,10,464,222,95,45,45 +31393,10,464,223,95,48,48 +31394,10,464,224,41,34,34 +31395,10,464,225,24,46,46 +31396,10,464,226,42,46,46 +31397,10,464,227,105,46,46 +31398,10,464,228,67,46,46 +31399,10,464,229,67,48,48 +31400,10,464,230,105,48,48 +31401,10,465,219,66,32,32 +31402,10,465,220,74,32,32 +31403,10,465,221,95,40,40 +31404,10,465,222,95,43,43 +31405,10,465,223,95,46,46 +31406,10,465,224,41,32,32 +31407,10,465,225,24,44,44 +31408,10,465,226,42,44,44 +31409,10,465,227,105,44,44 +31410,10,465,228,67,44,44 +31411,10,465,229,67,46,46 +31412,10,465,230,105,46,46 +31413,10,466,219,109,28,28 +31414,10,466,220,20,32,32 +31415,10,466,221,109,30,30 +31416,10,466,222,20,36,36 +31417,10,466,223,58,30,30 +31418,10,466,224,19,28,28 +31419,10,466,225,88,28,28 +31420,10,466,226,110,32,32 +31421,10,466,227,58,32,32 +31422,10,466,228,19,26,26 +31423,10,466,229,58,32,32 +31424,10,466,230,19,26,26 +31425,10,467,219,109,28,28 +31426,10,467,220,20,34,34 +31427,10,467,221,109,30,30 +31428,10,467,222,132,30,30 +31429,10,467,223,58,30,30 +31430,10,467,224,20,38,38 +31431,10,467,225,88,28,28 +31432,10,467,226,110,34,34 +31433,10,467,227,58,32,32 +31434,10,467,228,19,26,26 +31435,10,467,229,58,32,32 +31436,10,467,230,19,26,26 +31437,10,468,231,118,5,15 +31438,10,468,232,129,5,15 +31439,10,468,233,60,5,15 +31440,10,468,234,129,5,5 +31441,10,468,235,129,5,5 +31442,10,468,236,118,15,25 +31443,10,468,237,119,20,30 +31444,10,468,238,147,15,25 +31445,10,468,239,54,15,35 +31446,10,468,240,148,25,35 +31447,10,468,241,54,20,25 +31448,10,468,242,54,20,25 +31449,10,468,243,54,25,30 +31450,10,468,244,54,30,35 +31451,10,468,245,54,35,40 +31452,10,468,219,111,25,25 +31453,10,468,220,32,22,22 +31454,10,468,221,102,24,24 +31455,10,468,222,102,25,25 +31456,10,468,223,48,22,22 +31457,10,468,224,33,31,31 +31458,10,468,225,30,31,31 +31459,10,468,226,47,30,30 +31460,10,468,227,48,22,22 +31461,10,468,228,123,23,23 +31462,10,468,229,48,22,22 +31463,10,468,230,113,23,23 +31464,10,469,231,118,5,15 +31465,10,469,232,129,5,15 +31466,10,469,233,60,5,15 +31467,10,469,234,129,5,5 +31468,10,469,235,129,5,5 +31469,10,469,236,118,15,25 +31470,10,469,237,119,20,30 +31471,10,469,238,147,15,25 +31472,10,469,239,54,15,35 +31473,10,469,240,148,25,35 +31474,10,469,241,54,20,25 +31475,10,469,242,54,20,25 +31476,10,469,243,54,25,30 +31477,10,469,244,54,30,35 +31478,10,469,245,54,35,40 +31479,10,469,219,32,24,24 +31480,10,469,220,84,26,26 +31481,10,469,221,102,23,23 +31482,10,469,222,102,25,25 +31483,10,469,223,46,22,22 +31484,10,469,224,33,33,33 +31485,10,469,225,29,24,24 +31486,10,469,226,47,25,25 +31487,10,469,227,46,22,22 +31488,10,469,228,115,25,25 +31489,10,469,229,46,22,22 +31490,10,469,230,123,28,28 +31491,10,470,231,118,5,15 +31492,10,470,232,129,5,15 +31493,10,470,233,60,5,15 +31494,10,470,234,129,5,5 +31495,10,470,235,129,5,5 +31496,10,470,236,118,15,25 +31497,10,470,237,119,20,30 +31498,10,470,238,147,15,25 +31499,10,470,239,54,15,35 +31500,10,470,240,148,25,35 +31501,10,470,241,54,20,25 +31502,10,470,242,54,20,25 +31503,10,470,243,54,25,30 +31504,10,470,244,54,30,35 +31505,10,470,245,54,35,40 +31506,10,470,219,111,26,26 +31507,10,470,220,32,30,30 +31508,10,470,221,102,25,25 +31509,10,470,222,102,27,27 +31510,10,470,223,46,23,23 +31511,10,470,224,33,30,30 +31512,10,470,225,30,30,30 +31513,10,470,226,49,32,32 +31514,10,470,227,46,23,23 +31515,10,470,228,113,26,26 +31516,10,470,229,46,23,23 +31517,10,470,230,128,28,28 +31518,10,471,231,118,5,15 +31519,10,471,232,129,5,15 +31520,10,471,233,60,5,15 +31521,10,471,234,129,5,5 +31522,10,471,235,129,5,5 +31523,10,471,236,118,15,25 +31524,10,471,237,119,20,30 +31525,10,471,238,147,15,25 +31526,10,471,239,54,15,35 +31527,10,471,240,148,25,35 +31528,10,471,241,54,20,25 +31529,10,471,242,54,20,25 +31530,10,471,243,54,25,30 +31531,10,471,244,54,30,35 +31532,10,471,245,54,35,40 +31533,10,471,219,84,26,26 +31534,10,471,220,32,22,22 +31535,10,471,221,102,25,25 +31536,10,471,222,102,27,27 +31537,10,471,223,48,23,23 +31538,10,471,224,33,30,30 +31539,10,471,225,29,30,30 +31540,10,471,226,49,32,32 +31541,10,471,227,48,23,23 +31542,10,471,228,128,25,25 +31543,10,471,229,48,23,23 +31544,10,471,230,115,28,28 +31545,10,472,231,60,5,15 +31546,10,472,232,129,5,15 +31547,10,472,233,118,5,15 +31548,10,472,234,129,5,5 +31549,10,472,235,129,5,5 +31550,10,472,246,74,30,40 +31551,10,472,247,75,40,50 +31552,10,472,248,75,45,55 +31553,10,472,249,74,40,50 +31554,10,472,250,74,40,50 +31555,10,472,236,60,15,25 +31556,10,472,237,61,20,30 +31557,10,472,238,130,15,25 +31558,10,472,239,54,15,25 +31559,10,472,240,54,25,35 +31560,10,472,241,54,30,40 +31561,10,472,242,55,40,50 +31562,10,472,243,55,45,55 +31563,10,472,244,54,40,50 +31564,10,472,245,54,40,50 +31565,10,472,219,82,49,49 +31566,10,472,220,47,49,49 +31567,10,472,221,42,46,46 +31568,10,472,222,67,46,46 +31569,10,472,223,57,52,52 +31570,10,472,224,132,52,52 +31571,10,472,225,101,58,58 +31572,10,472,226,47,58,58 +31573,10,472,227,42,55,55 +31574,10,472,228,202,55,55 +31575,10,472,229,57,61,61 +31576,10,472,230,132,61,61 +31577,10,473,246,74,35,45 +31578,10,473,247,75,45,55 +31579,10,473,248,75,50,60 +31580,10,473,249,74,45,55 +31581,10,473,250,74,45,55 +31582,10,473,219,42,49,49 +31583,10,473,220,67,49,49 +31584,10,473,221,82,52,52 +31585,10,473,222,47,52,52 +31586,10,473,223,64,55,55 +31587,10,473,224,132,55,55 +31588,10,473,225,42,58,58 +31589,10,473,226,202,58,58 +31590,10,473,227,101,61,61 +31591,10,473,228,47,61,61 +31592,10,473,229,64,64,64 +31593,10,473,230,132,64,64 +31594,10,474,231,60,5,15 +31595,10,474,232,129,5,15 +31596,10,474,233,118,5,15 +31597,10,474,234,129,5,5 +31598,10,474,235,129,5,5 +31599,10,474,246,74,40,50 +31600,10,474,247,75,50,60 +31601,10,474,248,75,55,65 +31602,10,474,249,74,50,60 +31603,10,474,250,74,50,60 +31604,10,474,236,60,15,25 +31605,10,474,237,61,20,30 +31606,10,474,238,130,15,25 +31607,10,474,239,54,15,25 +31608,10,474,240,130,25,35 +31609,10,474,241,54,40,50 +31610,10,474,242,55,50,60 +31611,10,474,243,55,55,65 +31612,10,474,244,54,50,60 +31613,10,474,245,54,50,60 +31614,10,474,219,64,58,58 +31615,10,474,220,132,58,58 +31616,10,474,221,82,55,55 +31617,10,474,222,47,55,55 +31618,10,474,223,42,52,52 +31619,10,474,224,67,52,52 +31620,10,474,225,64,67,67 +31621,10,474,226,132,67,67 +31622,10,474,227,101,64,64 +31623,10,474,228,47,64,64 +31624,10,474,229,42,61,61 +31625,10,474,230,202,61,61 +31626,10,475,219,41,15,15 +31627,10,475,220,74,16,16 +31628,10,475,221,56,16,16 +31629,10,475,222,74,17,17 +31630,10,475,223,41,16,16 +31631,10,475,224,66,16,16 +31632,10,475,225,56,17,17 +31633,10,475,226,66,17,17 +31634,10,475,227,74,15,15 +31635,10,475,228,95,13,13 +31636,10,475,229,74,15,15 +31637,10,475,230,95,15,15 +31638,10,476,246,74,5,20 +31639,10,476,247,74,10,20 +31640,10,476,248,74,15,30 +31641,10,476,249,75,25,40 +31642,10,476,250,75,30,40 +31643,10,476,219,41,16,16 +31644,10,476,220,74,17,17 +31645,10,476,221,56,17,17 +31646,10,476,222,74,16,16 +31647,10,476,223,41,15,15 +31648,10,476,224,66,17,17 +31649,10,476,225,56,16,16 +31650,10,476,226,95,13,13 +31651,10,476,227,74,15,15 +31652,10,476,228,95,15,15 +31653,10,476,229,74,15,15 +31654,10,476,230,95,17,17 +31655,10,477,219,54,27,27 +31656,10,477,220,54,29,29 +31657,10,477,221,54,31,31 +31658,10,477,222,41,22,22 +31659,10,477,223,41,22,22 +31660,10,477,224,41,24,24 +31661,10,477,225,42,26,26 +31662,10,477,226,42,28,28 +31663,10,477,227,54,33,33 +31664,10,477,228,41,26,26 +31665,10,477,229,54,26,26 +31666,10,477,230,42,30,30 +31667,10,478,219,54,29,29 +31668,10,478,220,54,31,31 +31669,10,478,221,86,28,28 +31670,10,478,222,41,22,22 +31671,10,478,223,41,22,22 +31672,10,478,224,41,24,24 +31673,10,478,225,42,26,26 +31674,10,478,226,42,28,28 +31675,10,478,227,55,33,33 +31676,10,478,228,41,26,26 +31677,10,478,229,55,35,35 +31678,10,478,230,42,30,30 +31679,10,479,219,54,30,30 +31680,10,479,220,54,32,32 +31681,10,479,221,86,30,30 +31682,10,479,222,86,32,32 +31683,10,479,223,41,22,22 +31684,10,479,224,41,24,24 +31685,10,479,225,42,26,26 +31686,10,479,226,55,34,34 +31687,10,479,227,55,32,32 +31688,10,479,228,42,28,28 +31689,10,479,229,55,32,32 +31690,10,479,230,42,30,30 +31691,10,480,231,116,5,15 +31692,10,480,232,129,5,15 +31693,10,480,233,98,5,15 +31694,10,480,234,129,5,5 +31695,10,480,235,129,5,5 +31696,10,480,236,116,15,25 +31697,10,480,237,116,20,30 +31698,10,480,238,130,15,25 +31699,10,480,239,54,15,25 +31700,10,480,240,130,25,35 +31701,10,480,241,86,25,35 +31702,10,480,242,116,25,30 +31703,10,480,243,87,35,40 +31704,10,480,244,54,30,40 +31705,10,480,245,55,35,40 +31706,10,480,219,86,30,30 +31707,10,480,220,86,32,32 +31708,10,480,221,54,32,32 +31709,10,480,222,54,30,30 +31710,10,480,223,55,32,32 +31711,10,480,224,41,24,24 +31712,10,480,225,42,26,26 +31713,10,480,226,55,34,34 +31714,10,480,227,87,32,32 +31715,10,480,228,42,28,28 +31716,10,480,229,87,34,34 +31717,10,480,230,42,30,30 +31718,10,481,231,116,5,15 +31719,10,481,232,129,5,15 +31720,10,481,233,98,5,15 +31721,10,481,234,129,5,5 +31722,10,481,235,129,5,5 +31723,10,481,236,116,15,25 +31724,10,481,237,116,20,30 +31725,10,481,238,130,15,25 +31726,10,481,239,54,15,25 +31727,10,481,240,130,25,35 +31728,10,481,241,86,25,35 +31729,10,481,242,116,25,30 +31730,10,481,243,87,35,40 +31731,10,481,244,54,30,40 +31732,10,481,245,55,35,40 +31733,10,481,219,86,30,30 +31734,10,481,220,86,32,32 +31735,10,481,221,54,32,32 +31736,10,481,222,86,34,34 +31737,10,481,223,55,32,32 +31738,10,481,224,42,26,26 +31739,10,481,225,87,34,34 +31740,10,481,226,55,34,34 +31741,10,481,227,87,36,36 +31742,10,481,228,42,28,28 +31743,10,481,229,87,36,36 +31744,10,481,230,42,30,30 +31745,10,482,219,92,15,15 +31746,10,482,220,92,16,16 +31747,10,482,221,92,17,17 +31748,10,482,222,92,13,13 +31749,10,482,223,92,14,14 +31750,10,482,224,92,18,18 +31751,10,482,225,92,19,19 +31752,10,482,226,104,15,15 +31753,10,482,227,92,17,17 +31754,10,482,228,104,17,17 +31755,10,482,229,92,17,17 +31756,10,482,230,93,20,20 +31757,10,483,219,92,15,15 +31758,10,483,220,92,16,16 +31759,10,483,221,92,17,17 +31760,10,483,222,92,13,13 +31761,10,483,223,92,14,14 +31762,10,483,224,92,18,18 +31763,10,483,225,93,20,20 +31764,10,483,226,104,15,15 +31765,10,483,227,92,17,17 +31766,10,483,228,104,17,17 +31767,10,483,229,92,17,17 +31768,10,483,230,92,19,19 +31769,10,484,219,92,15,15 +31770,10,484,220,92,16,16 +31771,10,484,221,92,17,17 +31772,10,484,222,92,13,13 +31773,10,484,223,92,14,14 +31774,10,484,224,92,18,18 +31775,10,484,225,93,20,20 +31776,10,484,226,104,15,15 +31777,10,484,227,92,17,17 +31778,10,484,228,104,17,17 +31779,10,484,229,92,17,17 +31780,10,484,230,92,19,19 +31781,10,485,219,92,16,16 +31782,10,485,220,92,17,17 +31783,10,485,221,92,18,18 +31784,10,485,222,92,14,14 +31785,10,485,223,92,15,15 +31786,10,485,224,92,19,19 +31787,10,485,225,93,21,21 +31788,10,485,226,104,17,17 +31789,10,485,227,92,18,18 +31790,10,485,228,104,19,19 +31791,10,485,229,92,18,18 +31792,10,485,230,93,23,23 +31793,10,486,219,92,16,16 +31794,10,486,220,92,17,17 +31795,10,486,221,92,18,18 +31796,10,486,222,92,15,15 +31797,10,486,223,92,19,19 +31798,10,486,224,93,23,23 +31799,10,486,225,104,17,17 +31800,10,486,226,104,19,19 +31801,10,486,227,92,18,18 +31802,10,486,228,93,23,23 +31803,10,486,229,92,18,18 +31804,10,486,230,93,25,25 +31805,10,487,219,100,22,22 +31806,10,487,220,81,22,22 +31807,10,487,221,100,25,25 +31808,10,487,222,81,25,25 +31809,10,487,223,25,22,22 +31810,10,487,224,25,24,24 +31811,10,487,225,82,31,31 +31812,10,487,226,82,34,34 +31813,10,487,227,25,26,26 +31814,10,487,228,125,32,32 +31815,10,487,229,25,26,26 +31816,10,487,230,125,35,35 +31817,10,488,246,74,5,20 +31818,10,488,247,74,10,20 +31819,10,488,248,74,15,30 +31820,10,488,249,75,25,40 +31821,10,488,250,75,30,40 +31822,10,488,219,77,30,30 +31823,10,488,220,22,38,38 +31824,10,488,221,77,33,33 +31825,10,488,222,21,32,32 +31826,10,488,223,66,35,35 +31827,10,488,224,74,33,33 +31828,10,488,225,77,36,36 +31829,10,488,226,22,40,40 +31830,10,488,227,21,30,30 +31831,10,488,228,78,39,39 +31832,10,488,229,21,30,30 +31833,10,488,230,78,42,42 +31834,10,489,219,74,33,33 +31835,10,489,220,66,35,35 +31836,10,489,221,74,29,29 +31837,10,489,222,74,31,31 +31838,10,489,223,66,31,31 +31839,10,489,224,66,33,33 +31840,10,489,225,74,35,35 +31841,10,489,226,66,37,37 +31842,10,489,227,74,37,37 +31843,10,489,228,66,39,39 +31844,10,489,229,74,37,37 +31845,10,489,230,66,39,39 +31846,10,490,246,74,5,20 +31847,10,490,247,74,10,20 +31848,10,490,248,74,15,30 +31849,10,490,249,75,25,40 +31850,10,490,250,75,30,40 +31851,10,490,219,74,34,34 +31852,10,490,220,66,36,36 +31853,10,490,221,74,30,30 +31854,10,490,222,74,32,32 +31855,10,490,223,66,32,32 +31856,10,490,224,66,34,34 +31857,10,490,225,67,38,38 +31858,10,490,226,67,38,38 +31859,10,490,227,67,40,40 +31860,10,490,228,67,40,40 +31861,10,490,229,67,40,40 +31862,10,490,230,67,40,40 +31863,10,491,246,74,25,35 +31864,10,491,247,75,30,45 +31865,10,491,248,75,35,50 +31866,10,491,249,74,30,40 +31867,10,491,250,74,30,40 +31868,10,491,219,74,36,36 +31869,10,491,220,66,38,38 +31870,10,491,221,74,32,32 +31871,10,491,222,74,34,34 +31872,10,491,223,66,34,34 +31873,10,491,224,66,36,36 +31874,10,491,225,74,38,38 +31875,10,491,226,67,40,40 +31876,10,491,227,74,40,40 +31877,10,491,228,67,42,42 +31878,10,491,229,74,40,40 +31879,10,491,230,67,42,42 +31880,10,492,246,74,25,35 +31881,10,492,247,75,30,45 +31882,10,492,248,75,35,50 +31883,10,492,249,74,30,40 +31884,10,492,250,74,30,40 +31885,10,492,219,74,38,38 +31886,10,492,220,74,36,36 +31887,10,492,221,74,34,34 +31888,10,492,222,74,40,40 +31889,10,492,223,218,24,24 +31890,10,492,224,218,26,26 +31891,10,492,225,74,42,42 +31892,10,492,226,218,28,28 +31893,10,492,227,74,42,42 +31894,10,492,228,218,30,30 +31895,10,492,229,74,42,42 +31896,10,492,230,218,30,30 +31897,10,493,246,74,25,35 +31898,10,493,247,75,30,45 +31899,10,493,248,75,35,50 +31900,10,493,249,74,30,40 +31901,10,493,250,74,30,40 +31902,10,493,219,74,40,40 +31903,10,493,220,218,26,26 +31904,10,493,221,74,42,42 +31905,10,493,222,218,24,24 +31906,10,493,223,218,28,28 +31907,10,493,224,218,30,30 +31908,10,493,225,74,44,44 +31909,10,493,226,218,32,32 +31910,10,493,227,74,44,44 +31911,10,493,228,218,22,22 +31912,10,493,229,74,44,44 +31913,10,493,230,218,22,22 +31914,10,494,246,218,15,25 +31915,10,494,247,218,25,35 +31916,10,494,248,219,40,45 +31917,10,494,249,219,35,45 +31918,10,494,250,219,25,35 +31919,10,494,219,218,26,26 +31920,10,494,220,218,28,28 +31921,10,494,221,218,30,30 +31922,10,494,222,218,32,32 +31923,10,494,223,218,24,24 +31924,10,494,224,218,22,22 +31925,10,494,225,218,20,20 +31926,10,494,226,218,34,34 +31927,10,494,227,218,36,36 +31928,10,494,228,218,18,18 +31929,10,494,229,218,36,36 +31930,10,494,230,218,18,18 +31931,10,495,231,118,5,15 +31932,10,495,232,129,5,15 +31933,10,495,233,60,5,15 +31934,10,495,234,129,5,5 +31935,10,495,235,129,5,5 +31936,10,495,236,118,15,25 +31937,10,495,237,119,20,30 +31938,10,495,238,130,15,25 +31939,10,495,239,54,15,25 +31940,10,495,240,54,25,35 +31941,10,495,241,54,5,20 +31942,10,495,242,54,20,35 +31943,10,495,243,54,35,40 +31944,10,495,244,55,35,40 +31945,10,495,245,55,35,40 +31946,10,495,219,17,37,37 +31947,10,495,220,44,35,35 +31948,10,495,221,16,32,32 +31949,10,495,222,43,30,30 +31950,10,495,223,48,34,34 +31951,10,495,224,96,34,34 +31952,10,495,225,102,35,35 +31953,10,495,226,54,31,31 +31954,10,495,227,49,37,37 +31955,10,495,228,97,37,37 +31956,10,495,229,49,40,40 +31957,10,495,230,97,40,40 +31958,10,496,231,60,5,15 +31959,10,496,232,129,5,15 +31960,10,496,233,118,5,15 +31961,10,496,234,129,5,5 +31962,10,496,235,129,5,5 +31963,10,496,236,60,15,25 +31964,10,496,237,61,20,30 +31965,10,496,238,130,15,25 +31966,10,496,239,54,15,25 +31967,10,496,240,54,25,35 +31968,10,496,241,86,5,35 +31969,10,496,242,54,5,35 +31970,10,496,243,87,35,40 +31971,10,496,244,194,5,15 +31972,10,496,245,194,5,15 +31973,10,496,219,86,43,43 +31974,10,496,220,42,45,45 +31975,10,496,221,86,45,45 +31976,10,496,222,86,47,47 +31977,10,496,223,41,40,40 +31978,10,496,224,87,49,49 +31979,10,496,225,87,51,51 +31980,10,496,226,54,41,41 +31981,10,496,227,42,48,48 +31982,10,496,228,87,53,53 +31983,10,496,229,42,48,48 +31984,10,496,230,87,53,53 +31985,10,497,219,220,25,25 +31986,10,497,220,42,45,45 +31987,10,497,221,86,45,45 +31988,10,497,222,220,27,27 +31989,10,497,223,41,40,40 +31990,10,497,224,220,29,29 +31991,10,497,225,225,30,30 +31992,10,497,226,220,31,31 +31993,10,497,227,42,48,48 +31994,10,497,228,220,23,23 +31995,10,497,229,42,48,48 +31996,10,497,230,220,23,23 +31997,10,498,219,220,25,25 +31998,10,498,220,42,45,45 +31999,10,498,221,86,45,45 +32000,10,498,222,220,27,27 +32001,10,498,223,41,40,40 +32002,10,498,224,220,29,29 +32003,10,498,225,225,30,30 +32004,10,498,226,220,31,31 +32005,10,498,227,42,48,48 +32006,10,498,228,220,23,23 +32007,10,498,229,42,48,48 +32008,10,498,230,220,23,23 +32009,10,499,231,116,5,15 +32010,10,499,232,129,5,15 +32011,10,499,233,116,5,15 +32012,10,499,234,129,5,5 +32013,10,499,235,129,5,5 +32014,10,499,236,116,15,25 +32015,10,499,237,90,15,25 +32016,10,499,238,130,15,25 +32017,10,499,239,117,25,35 +32018,10,499,240,54,25,35 +32019,10,499,241,72,5,20 +32020,10,499,242,72,20,35 +32021,10,499,243,72,35,45 +32022,10,499,244,73,35,45 +32023,10,499,245,131,30,45 +32024,10,499,219,86,43,43 +32025,10,499,220,42,45,45 +32026,10,499,221,86,45,45 +32027,10,499,222,86,47,47 +32028,10,499,223,41,40,40 +32029,10,499,224,87,49,49 +32030,10,499,225,87,51,51 +32031,10,499,226,54,41,41 +32032,10,499,227,42,48,48 +32033,10,499,228,87,53,53 +32034,10,499,229,42,48,48 +32035,10,499,230,87,53,53 +32036,10,500,219,167,9,9 +32037,10,500,220,14,9,9 +32038,10,500,221,167,14,14 +32039,10,500,222,10,6,6 +32040,10,500,223,13,6,6 +32041,10,500,224,214,15,15 +32042,10,500,225,11,9,9 +32043,10,500,226,214,20,20 +32044,10,500,227,165,9,9 +32045,10,500,228,214,25,25 +32046,10,500,229,165,14,14 +32047,10,500,230,214,30,30 +32048,10,501,219,92,40,40 +32049,10,501,220,41,37,37 +32050,10,501,221,93,44,44 +32051,10,501,222,93,46,46 +32052,10,501,223,42,41,41 +32053,10,501,224,42,43,43 +32054,10,501,225,92,38,38 +32055,10,501,226,93,48,48 +32056,10,501,227,93,50,50 +32057,10,501,228,198,22,22 +32058,10,501,229,93,52,52 +32059,10,501,230,198,22,22 +32060,10,502,219,92,40,40 +32061,10,502,220,41,37,37 +32062,10,502,221,93,44,44 +32063,10,502,222,93,46,46 +32064,10,502,223,42,41,41 +32065,10,502,224,42,43,43 +32066,10,502,225,92,38,38 +32067,10,502,226,93,48,48 +32068,10,502,227,93,50,50 +32069,10,502,228,198,22,22 +32070,10,502,229,93,52,52 +32071,10,502,230,198,22,22 +32072,10,503,219,92,40,40 +32073,10,503,220,41,37,37 +32074,10,503,221,93,44,44 +32075,10,503,222,93,46,46 +32076,10,503,223,42,41,41 +32077,10,503,224,42,43,43 +32078,10,503,225,92,38,38 +32079,10,503,226,93,48,48 +32080,10,503,227,93,50,50 +32081,10,503,228,198,22,22 +32082,10,503,229,93,52,52 +32083,10,503,230,198,22,22 +32084,10,504,219,92,40,40 +32085,10,504,220,41,37,37 +32086,10,504,221,93,44,44 +32087,10,504,222,93,46,46 +32088,10,504,223,42,41,41 +32089,10,504,224,42,43,43 +32090,10,504,225,92,38,38 +32091,10,504,226,93,48,48 +32092,10,504,227,93,50,50 +32093,10,504,228,198,22,22 +32094,10,504,229,93,52,52 +32095,10,504,230,198,22,22 +32096,10,505,219,92,40,40 +32097,10,505,220,41,37,37 +32098,10,505,221,93,44,44 +32099,10,505,222,93,46,46 +32100,10,505,223,42,41,41 +32101,10,505,224,42,43,43 +32102,10,505,225,92,38,38 +32103,10,505,226,93,48,48 +32104,10,505,227,93,50,50 +32105,10,505,228,198,22,22 +32106,10,505,229,93,52,52 +32107,10,505,230,198,22,22 +32108,10,506,219,92,40,40 +32109,10,506,220,41,37,37 +32110,10,506,221,93,44,44 +32111,10,506,222,93,46,46 +32112,10,506,223,42,41,41 +32113,10,506,224,42,43,43 +32114,10,506,225,92,38,38 +32115,10,506,226,93,48,48 +32116,10,506,227,93,50,50 +32117,10,506,228,198,22,22 +32118,10,506,229,93,52,52 +32119,10,506,230,198,22,22 +32120,10,507,219,92,40,40 +32121,10,507,220,41,37,37 +32122,10,507,221,93,44,44 +32123,10,507,222,93,46,46 +32124,10,507,223,42,41,41 +32125,10,507,224,42,43,43 +32126,10,507,225,92,38,38 +32127,10,507,226,93,48,48 +32128,10,507,227,93,50,50 +32129,10,507,228,198,22,22 +32130,10,507,229,93,52,52 +32131,10,507,230,198,22,22 +32132,10,508,219,92,40,40 +32133,10,508,220,41,37,37 +32134,10,508,221,93,44,44 +32135,10,508,222,93,46,46 +32136,10,508,223,42,41,41 +32137,10,508,224,42,43,43 +32138,10,508,225,92,38,38 +32139,10,508,226,93,48,48 +32140,10,508,227,93,50,50 +32141,10,508,228,198,22,22 +32142,10,508,229,93,52,52 +32143,10,508,230,198,22,22 +32144,10,509,219,92,40,40 +32145,10,509,220,41,37,37 +32146,10,509,221,93,44,44 +32147,10,509,222,93,46,46 +32148,10,509,223,42,41,41 +32149,10,509,224,42,43,43 +32150,10,509,225,92,38,38 +32151,10,509,226,93,48,48 +32152,10,509,227,93,50,50 +32153,10,509,228,198,22,22 +32154,10,509,229,93,52,52 +32155,10,509,230,198,22,22 +32156,10,510,219,92,40,40 +32157,10,510,220,41,37,37 +32158,10,510,221,93,44,44 +32159,10,510,222,93,46,46 +32160,10,510,223,42,41,41 +32161,10,510,224,42,43,43 +32162,10,510,225,92,38,38 +32163,10,510,226,93,48,48 +32164,10,510,227,93,50,50 +32165,10,510,228,198,22,22 +32166,10,510,229,93,52,52 +32167,10,510,230,198,22,22 +32168,10,511,219,92,40,40 +32169,10,511,220,41,37,37 +32170,10,511,221,93,44,44 +32171,10,511,222,93,46,46 +32172,10,511,223,42,41,41 +32173,10,511,224,198,15,15 +32174,10,511,225,198,20,20 +32175,10,511,226,93,48,48 +32176,10,511,227,93,50,50 +32177,10,511,228,198,22,22 +32178,10,511,229,93,52,52 +32179,10,511,230,198,22,22 +32180,10,512,231,116,5,15 +32181,10,512,232,129,5,15 +32182,10,512,233,116,5,15 +32183,10,512,234,129,5,5 +32184,10,512,235,129,5,5 +32185,10,512,246,74,5,20 +32186,10,512,247,74,10,20 +32187,10,512,248,74,15,30 +32188,10,512,249,75,25,40 +32189,10,512,250,75,30,40 +32190,10,512,236,116,15,25 +32191,10,512,237,116,15,25 +32192,10,512,238,130,15,25 +32193,10,512,239,117,25,35 +32194,10,512,240,54,25,35 +32195,10,512,241,72,5,20 +32196,10,512,242,72,20,35 +32197,10,512,243,72,35,40 +32198,10,512,244,73,35,40 +32199,10,512,245,73,35,40 +32200,10,512,219,21,32,32 +32201,10,512,220,77,34,34 +32202,10,512,221,22,36,36 +32203,10,512,222,77,31,31 +32204,10,512,223,74,31,31 +32205,10,512,224,52,31,31 +32206,10,512,225,21,30,30 +32207,10,512,226,54,34,34 +32208,10,512,227,78,37,37 +32209,10,512,228,53,37,37 +32210,10,512,229,78,40,40 +32211,10,512,230,53,40,40 +32212,10,513,231,116,5,15 +32213,10,513,232,129,5,15 +32214,10,513,233,116,5,15 +32215,10,513,234,129,5,5 +32216,10,513,235,129,5,5 +32217,10,513,236,116,15,25 +32218,10,513,237,116,15,25 +32219,10,513,238,130,15,25 +32220,10,513,239,117,25,35 +32221,10,513,240,54,25,35 +32222,10,513,241,72,5,20 +32223,10,513,242,72,20,35 +32224,10,513,243,72,35,40 +32225,10,513,244,73,35,40 +32226,10,513,245,73,35,40 +32227,10,513,219,21,32,32 +32228,10,513,220,114,33,33 +32229,10,513,221,21,31,31 +32230,10,513,222,114,35,35 +32231,10,513,223,22,36,36 +32232,10,513,224,52,31,31 +32233,10,513,225,22,38,38 +32234,10,513,226,54,31,31 +32235,10,513,227,22,40,40 +32236,10,513,228,53,37,37 +32237,10,513,229,22,40,40 +32238,10,513,230,53,40,40 +32239,10,514,231,60,5,15 +32240,10,514,232,129,5,15 +32241,10,514,233,118,5,15 +32242,10,514,234,129,5,5 +32243,10,514,235,129,5,5 +32244,10,514,236,60,15,25 +32245,10,514,237,61,20,30 +32246,10,514,238,130,15,25 +32247,10,514,239,54,15,25 +32248,10,514,240,54,25,35 +32249,10,514,241,54,5,20 +32250,10,514,242,54,20,35 +32251,10,514,243,54,35,40 +32252,10,514,244,55,35,40 +32253,10,514,245,55,35,40 +32254,10,514,219,21,31,31 +32255,10,514,220,43,30,30 +32256,10,514,221,43,32,32 +32257,10,514,222,44,36,36 +32258,10,514,223,22,36,36 +32259,10,514,224,52,31,31 +32260,10,514,225,44,38,38 +32261,10,514,226,54,31,31 +32262,10,514,227,55,37,37 +32263,10,514,228,53,37,37 +32264,10,514,229,55,40,40 +32265,10,514,230,53,40,40 +32266,10,515,231,116,5,15 +32267,10,515,232,129,5,15 +32268,10,515,233,116,5,15 +32269,10,515,234,129,5,5 +32270,10,515,235,129,5,5 +32271,10,515,236,116,15,25 +32272,10,515,237,116,15,25 +32273,10,515,238,130,15,25 +32274,10,515,239,117,25,35 +32275,10,515,240,54,25,35 +32276,10,515,241,72,5,20 +32277,10,515,242,72,20,35 +32278,10,515,243,72,35,40 +32279,10,515,244,73,35,40 +32280,10,515,245,73,35,40 +32281,10,515,219,16,32,32 +32282,10,515,220,43,31,31 +32283,10,515,221,16,29,29 +32284,10,515,222,44,36,36 +32285,10,515,223,17,34,34 +32286,10,515,224,52,31,31 +32287,10,515,225,48,34,34 +32288,10,515,226,54,31,31 +32289,10,515,227,17,37,37 +32290,10,515,228,53,37,37 +32291,10,515,229,17,40,40 +32292,10,515,230,53,40,40 +32293,10,516,219,206,15,15 +32294,10,516,220,206,15,15 +32295,10,516,221,206,10,10 +32296,10,516,222,206,10,10 +32297,10,516,223,206,20,20 +32298,10,516,224,206,20,20 +32299,10,516,225,206,25,25 +32300,10,516,226,206,30,30 +32301,10,516,227,206,25,25 +32302,10,516,228,206,30,30 +32303,10,516,229,206,5,5 +32304,10,516,230,206,35,35 +32305,10,517,231,116,5,15 +32306,10,517,232,129,5,15 +32307,10,517,233,116,5,15 +32308,10,517,234,129,5,5 +32309,10,517,235,129,5,5 +32310,10,517,236,116,15,25 +32311,10,517,237,211,15,25 +32312,10,517,238,130,15,25 +32313,10,517,239,117,25,35 +32314,10,517,240,54,25,35 +32315,10,517,241,72,5,35 +32316,10,517,242,187,5,15 +32317,10,517,243,72,35,40 +32318,10,517,244,73,35,40 +32319,10,517,245,73,35,40 +32320,10,518,231,116,5,15 +32321,10,518,232,129,5,15 +32322,10,518,233,116,5,15 +32323,10,518,234,129,5,5 +32324,10,518,235,129,5,5 +32325,10,518,236,116,15,25 +32326,10,518,237,211,15,25 +32327,10,518,238,130,15,25 +32328,10,518,239,117,25,35 +32329,10,518,240,54,25,35 +32330,10,518,241,72,5,20 +32331,10,518,242,187,5,15 +32332,10,518,243,72,35,40 +32333,10,518,244,73,35,40 +32334,10,518,245,73,35,40 +32335,10,519,231,116,5,15 +32336,10,519,232,129,5,15 +32337,10,519,233,116,5,15 +32338,10,519,234,129,5,5 +32339,10,519,235,129,5,5 +32340,10,519,236,116,15,25 +32341,10,519,237,211,15,25 +32342,10,519,238,130,15,25 +32343,10,519,239,117,25,35 +32344,10,519,240,54,25,35 +32345,10,519,241,72,5,35 +32346,10,519,242,187,5,15 +32347,10,519,243,72,35,40 +32348,10,519,244,73,35,40 +32349,10,519,245,73,35,40 +32350,10,519,219,16,44,44 +32351,10,519,220,161,10,10 +32352,10,519,221,17,48,48 +32353,10,519,222,187,10,10 +32354,10,519,223,161,15,15 +32355,10,519,224,52,41,41 +32356,10,519,225,187,15,15 +32357,10,519,226,54,41,41 +32358,10,519,227,17,50,50 +32359,10,519,228,53,47,47 +32360,10,519,229,17,50,50 +32361,10,519,230,53,50,50 +32362,10,520,231,116,5,15 +32363,10,520,232,129,5,15 +32364,10,520,233,116,5,15 +32365,10,520,234,129,5,5 +32366,10,520,235,129,5,5 +32367,10,520,236,116,15,25 +32368,10,520,237,211,15,25 +32369,10,520,238,130,15,25 +32370,10,520,239,117,25,35 +32371,10,520,240,54,25,35 +32372,10,520,241,72,5,35 +32373,10,520,242,187,5,15 +32374,10,520,243,72,35,40 +32375,10,520,244,73,35,40 +32376,10,520,245,73,35,40 +32377,10,520,219,187,10,10 +32378,10,520,220,187,12,12 +32379,10,520,221,187,8,8 +32380,10,520,222,187,14,14 +32381,10,520,223,187,10,10 +32382,10,520,224,187,12,12 +32383,10,520,225,187,16,16 +32384,10,520,226,187,6,6 +32385,10,520,227,187,8,8 +32386,10,520,228,187,14,14 +32387,10,520,229,187,8,8 +32388,10,520,230,187,14,14 +32389,10,521,231,116,5,15 +32390,10,521,232,129,5,15 +32391,10,521,233,116,5,15 +32392,10,521,234,129,5,5 +32393,10,521,235,129,5,5 +32394,10,521,236,116,15,25 +32395,10,521,237,211,15,25 +32396,10,521,238,130,15,25 +32397,10,521,239,117,25,35 +32398,10,521,240,54,25,35 +32399,10,521,241,72,5,20 +32400,10,521,242,72,20,35 +32401,10,521,243,72,35,40 +32402,10,521,244,73,35,40 +32403,10,521,245,73,35,40 +32404,10,522,231,116,5,15 +32405,10,522,232,129,5,15 +32406,10,522,233,116,5,15 +32407,10,522,234,129,5,5 +32408,10,522,235,129,5,5 +32409,10,522,236,116,15,25 +32410,10,522,237,211,15,25 +32411,10,522,238,130,15,25 +32412,10,522,239,117,25,35 +32413,10,522,240,54,25,35 +32414,10,522,241,72,5,20 +32415,10,522,242,72,20,35 +32416,10,522,243,72,35,40 +32417,10,522,244,73,35,40 +32418,10,522,245,73,35,40 +32419,10,523,231,116,5,15 +32420,10,523,232,129,5,15 +32421,10,523,233,116,5,15 +32422,10,523,234,129,5,5 +32423,10,523,235,129,5,5 +32424,10,523,236,116,15,25 +32425,10,523,237,211,15,25 +32426,10,523,238,130,15,25 +32427,10,523,239,117,25,35 +32428,10,523,240,54,25,35 +32429,10,523,241,72,5,20 +32430,10,523,242,72,20,35 +32431,10,523,243,72,35,40 +32432,10,523,244,73,35,40 +32433,10,523,245,73,35,40 +32434,10,523,219,21,44,44 +32435,10,523,220,161,10,10 +32436,10,523,221,43,44,44 +32437,10,523,222,22,48,48 +32438,10,523,223,161,15,15 +32439,10,523,224,52,41,41 +32440,10,523,225,44,48,48 +32441,10,523,226,54,41,41 +32442,10,523,227,22,50,50 +32443,10,523,228,53,47,47 +32444,10,523,229,22,50,50 +32445,10,523,230,53,50,50 +32446,10,524,231,60,5,15 +32447,10,524,232,129,5,15 +32448,10,524,233,118,5,15 +32449,10,524,234,129,5,5 +32450,10,524,235,129,5,5 +32451,10,524,236,60,15,25 +32452,10,524,237,61,20,30 +32453,10,524,238,130,15,25 +32454,10,524,239,54,15,25 +32455,10,524,240,54,25,35 +32456,10,524,241,194,5,20 +32457,10,524,242,194,10,20 +32458,10,524,243,194,15,25 +32459,10,524,244,194,20,25 +32460,10,524,245,194,20,25 +32461,10,524,219,177,15,15 +32462,10,524,220,21,44,44 +32463,10,524,221,193,18,18 +32464,10,524,222,194,15,15 +32465,10,524,223,22,49,49 +32466,10,524,224,52,43,43 +32467,10,524,225,202,25,25 +32468,10,524,226,54,41,41 +32469,10,524,227,177,20,20 +32470,10,524,228,53,49,49 +32471,10,524,229,177,20,20 +32472,10,524,230,53,52,52 +32473,10,525,231,116,5,15 +32474,10,525,232,129,5,15 +32475,10,525,233,116,5,15 +32476,10,525,234,129,5,5 +32477,10,525,235,129,5,5 +32478,10,525,236,116,15,25 +32479,10,525,237,211,15,25 +32480,10,525,238,130,15,25 +32481,10,525,239,117,25,35 +32482,10,525,240,54,25,35 +32483,10,525,241,72,5,20 +32484,10,525,242,72,20,35 +32485,10,525,243,72,35,40 +32486,10,525,244,73,35,40 +32487,10,525,245,73,35,40 +32488,10,526,219,21,44,44 +32489,10,526,220,161,10,10 +32490,10,526,221,231,10,10 +32491,10,526,222,22,48,48 +32492,10,526,223,161,15,15 +32493,10,526,224,52,41,41 +32494,10,526,225,22,50,50 +32495,10,526,226,54,41,41 +32496,10,526,227,231,15,15 +32497,10,526,228,53,47,47 +32498,10,526,229,231,15,15 +32499,10,526,230,53,50,50 +32500,10,527,246,74,25,35 +32501,10,527,247,75,30,45 +32502,10,527,248,75,35,50 +32503,10,527,249,74,30,40 +32504,10,527,250,74,30,40 +32505,10,527,219,74,46,46 +32506,10,527,220,231,15,15 +32507,10,527,221,104,46,46 +32508,10,527,222,22,50,50 +32509,10,527,223,105,52,52 +32510,10,527,224,52,43,43 +32511,10,527,225,95,54,54 +32512,10,527,226,227,30,30 +32513,10,527,227,246,15,15 +32514,10,527,228,53,49,49 +32515,10,527,229,246,20,20 +32516,10,527,230,53,52,52 +32517,10,528,231,116,5,15 +32518,10,528,232,129,5,15 +32519,10,528,233,116,5,15 +32520,10,528,234,129,5,5 +32521,10,528,235,129,5,5 +32522,10,528,236,116,15,25 +32523,10,528,237,211,15,25 +32524,10,528,238,130,15,25 +32525,10,528,239,117,25,35 +32526,10,528,240,54,25,35 +32527,10,528,241,72,5,20 +32528,10,528,242,72,20,35 +32529,10,528,243,72,35,40 +32530,10,528,244,73,35,40 +32531,10,528,245,73,35,40 +32532,10,529,219,16,3,3 +32533,10,529,220,19,3,3 +32534,10,529,221,16,3,3 +32535,10,529,222,19,3,3 +32536,10,529,223,16,2,2 +32537,10,529,224,19,2,2 +32538,10,529,225,16,3,3 +32539,10,529,226,19,3,3 +32540,10,529,227,16,4,4 +32541,10,529,228,19,4,4 +32542,10,529,229,16,5,5 +32543,10,529,230,19,4,4 +32544,10,530,219,19,3,3 +32545,10,530,220,16,3,3 +32546,10,530,221,19,4,4 +32547,10,530,222,16,4,4 +32548,10,530,223,19,2,2 +32549,10,530,224,16,2,2 +32550,10,530,225,19,5,5 +32551,10,530,226,16,5,5 +32552,10,530,227,10,4,4 +32553,10,530,228,13,4,4 +32554,10,530,229,10,5,5 +32555,10,530,230,13,5,5 +32556,10,531,219,21,6,6 +32557,10,531,220,16,6,6 +32558,10,531,221,21,7,7 +32559,10,531,222,56,7,7 +32560,10,531,223,32,6,6 +32561,10,531,224,16,7,7 +32562,10,531,225,21,8,8 +32563,10,531,226,39,3,3 +32564,10,531,227,32,7,7 +32565,10,531,228,39,5,5 +32566,10,531,229,29,6,6 +32567,10,531,230,39,7,7 +32568,10,532,231,116,5,15 +32569,10,532,232,129,5,15 +32570,10,532,233,98,5,15 +32571,10,532,234,129,5,5 +32572,10,532,235,129,5,5 +32573,10,532,236,116,15,25 +32574,10,532,237,116,15,25 +32575,10,532,238,130,15,25 +32576,10,532,239,116,25,35 +32577,10,532,240,54,25,35 +32578,10,532,241,72,5,10 +32579,10,532,242,72,10,20 +32580,10,532,243,72,20,30 +32581,10,532,244,72,30,35 +32582,10,532,245,72,35,40 +32583,10,532,219,21,10,10 +32584,10,532,220,19,10,10 +32585,10,532,221,23,6,6 +32586,10,532,222,23,10,10 +32587,10,532,223,21,8,8 +32588,10,532,224,19,8,8 +32589,10,532,225,21,12,12 +32590,10,532,226,19,12,12 +32591,10,532,227,56,10,10 +32592,10,532,228,23,8,8 +32593,10,532,229,56,12,12 +32594,10,532,230,23,12,12 +32595,10,533,219,52,10,10 +32596,10,533,220,16,13,13 +32597,10,533,221,43,13,13 +32598,10,533,222,52,12,12 +32599,10,533,223,43,15,15 +32600,10,533,224,16,15,15 +32601,10,533,225,43,16,16 +32602,10,533,226,16,16,16 +32603,10,533,227,16,15,15 +32604,10,533,228,52,14,14 +32605,10,533,229,16,15,15 +32606,10,533,230,52,16,16 +32607,10,534,231,60,5,15 +32608,10,534,232,129,5,15 +32609,10,534,233,118,5,15 +32610,10,534,234,129,5,5 +32611,10,534,235,129,5,5 +32612,10,534,236,60,15,25 +32613,10,534,237,61,20,30 +32614,10,534,238,130,15,25 +32615,10,534,239,54,15,25 +32616,10,534,240,54,25,35 +32617,10,534,241,54,20,25 +32618,10,534,242,54,20,25 +32619,10,534,243,54,25,30 +32620,10,534,244,54,30,35 +32621,10,534,245,54,35,40 +32622,10,534,219,52,10,10 +32623,10,534,220,16,13,13 +32624,10,534,221,43,13,13 +32625,10,534,222,52,12,12 +32626,10,534,223,43,15,15 +32627,10,534,224,16,15,15 +32628,10,534,225,43,16,16 +32629,10,534,226,16,16,16 +32630,10,534,227,16,15,15 +32631,10,534,228,52,14,14 +32632,10,534,229,16,15,15 +32633,10,534,230,52,16,16 +32634,10,535,219,16,19,19 +32635,10,535,220,52,17,17 +32636,10,535,221,43,19,19 +32637,10,535,222,52,18,18 +32638,10,535,223,16,22,22 +32639,10,535,224,43,22,22 +32640,10,535,225,58,18,18 +32641,10,535,226,58,20,20 +32642,10,535,227,52,17,17 +32643,10,535,228,52,19,19 +32644,10,535,229,52,17,17 +32645,10,535,230,52,20,20 +32646,10,536,219,16,18,18 +32647,10,536,220,52,18,18 +32648,10,536,221,58,16,16 +32649,10,536,222,16,20,20 +32650,10,536,223,52,20,20 +32651,10,536,224,23,17,17 +32652,10,536,225,58,17,17 +32653,10,536,226,23,19,19 +32654,10,536,227,23,17,17 +32655,10,536,228,58,15,15 +32656,10,536,229,23,17,17 +32657,10,536,230,58,18,18 +32658,10,537,219,21,16,16 +32659,10,537,220,19,16,16 +32660,10,537,221,23,11,11 +32661,10,537,222,23,15,15 +32662,10,537,223,21,13,13 +32663,10,537,224,19,14,14 +32664,10,537,225,21,17,17 +32665,10,537,226,19,17,17 +32666,10,537,227,19,14,14 +32667,10,537,228,23,13,13 +32668,10,537,229,19,14,14 +32669,10,537,230,23,17,17 +32670,10,538,231,116,5,15 +32671,10,538,232,129,5,15 +32672,10,538,233,98,5,15 +32673,10,538,234,129,5,5 +32674,10,538,235,129,5,5 +32675,10,538,236,116,15,25 +32676,10,538,237,116,15,25 +32677,10,538,238,130,15,25 +32678,10,538,239,116,25,35 +32679,10,538,240,54,25,35 +32680,10,538,241,72,5,10 +32681,10,538,242,72,10,20 +32682,10,538,243,72,20,30 +32683,10,538,244,72,30,35 +32684,10,538,245,72,35,40 +32685,10,538,219,21,16,16 +32686,10,538,220,100,16,16 +32687,10,538,221,23,11,11 +32688,10,538,222,23,15,15 +32689,10,538,223,21,13,13 +32690,10,538,224,100,14,14 +32691,10,538,225,21,17,17 +32692,10,538,226,100,17,17 +32693,10,538,227,100,14,14 +32694,10,538,228,23,13,13 +32695,10,538,229,100,14,14 +32696,10,538,230,23,17,17 +32697,10,539,231,116,5,15 +32698,10,539,232,129,5,15 +32699,10,539,233,98,5,15 +32700,10,539,234,129,5,5 +32701,10,539,235,129,5,5 +32702,10,539,236,116,15,25 +32703,10,539,237,116,15,25 +32704,10,539,238,130,15,25 +32705,10,539,239,116,25,35 +32706,10,539,240,54,25,35 +32707,10,539,241,72,5,10 +32708,10,539,242,72,10,20 +32709,10,539,243,72,20,30 +32710,10,539,244,72,30,35 +32711,10,539,245,72,35,40 +32712,10,539,219,23,14,14 +32713,10,539,220,21,15,15 +32714,10,539,221,23,12,12 +32715,10,539,222,21,13,13 +32716,10,539,223,96,11,11 +32717,10,539,224,96,13,13 +32718,10,539,225,23,15,15 +32719,10,539,226,21,17,17 +32720,10,539,227,23,12,12 +32721,10,539,228,96,15,15 +32722,10,539,229,23,12,12 +32723,10,539,230,96,15,15 +32724,10,540,231,116,5,15 +32725,10,540,232,129,5,15 +32726,10,540,233,98,5,15 +32727,10,540,234,129,5,5 +32728,10,540,235,129,5,5 +32729,10,540,236,116,15,25 +32730,10,540,237,116,15,25 +32731,10,540,238,130,15,25 +32732,10,540,239,116,25,35 +32733,10,540,240,54,25,35 +32734,10,540,241,72,5,10 +32735,10,540,242,72,10,20 +32736,10,540,243,72,20,30 +32737,10,540,244,72,30,35 +32738,10,540,245,72,35,40 +32739,10,540,219,43,24,24 +32740,10,540,220,48,24,24 +32741,10,540,221,43,22,22 +32742,10,540,222,16,23,23 +32743,10,540,223,16,25,25 +32744,10,540,224,48,26,26 +32745,10,540,225,43,26,26 +32746,10,540,226,16,27,27 +32747,10,540,227,16,23,23 +32748,10,540,228,44,28,28 +32749,10,540,229,16,23,23 +32750,10,540,230,44,30,30 +32751,10,541,231,116,5,15 +32752,10,541,232,129,5,15 +32753,10,541,233,98,5,15 +32754,10,541,234,129,5,5 +32755,10,541,235,129,5,5 +32756,10,541,236,116,15,25 +32757,10,541,237,116,15,25 +32758,10,541,238,130,15,25 +32759,10,541,239,116,25,35 +32760,10,541,240,54,25,35 +32761,10,541,241,72,5,10 +32762,10,541,242,72,10,20 +32763,10,541,243,72,20,30 +32764,10,541,244,72,30,35 +32765,10,541,245,72,35,40 +32766,10,541,219,43,24,24 +32767,10,541,220,48,24,24 +32768,10,541,221,43,22,22 +32769,10,541,222,16,27,27 +32770,10,541,223,16,25,25 +32771,10,541,224,48,26,26 +32772,10,541,225,43,26,26 +32773,10,541,226,132,25,25 +32774,10,541,227,17,29,29 +32775,10,541,228,44,28,28 +32776,10,541,229,17,29,29 +32777,10,541,230,44,30,30 +32778,10,542,219,43,24,24 +32779,10,542,220,48,24,24 +32780,10,542,221,43,22,22 +32781,10,542,222,132,23,23 +32782,10,542,223,16,27,27 +32783,10,542,224,48,26,26 +32784,10,542,225,43,26,26 +32785,10,542,226,44,30,30 +32786,10,542,227,132,23,23 +32787,10,542,228,17,29,29 +32788,10,542,229,132,23,23 +32789,10,542,230,17,29,29 +32790,10,543,219,43,24,24 +32791,10,543,220,48,24,24 +32792,10,543,221,43,22,22 +32793,10,543,222,16,27,27 +32794,10,543,223,16,25,25 +32795,10,543,224,48,26,26 +32796,10,543,225,43,26,26 +32797,10,543,226,132,25,25 +32798,10,543,227,17,29,29 +32799,10,543,228,44,28,28 +32800,10,543,229,17,29,29 +32801,10,543,230,44,30,30 +32802,10,544,219,21,20,20 +32803,10,544,220,84,18,18 +32804,10,544,221,19,18,18 +32805,10,544,222,19,20,20 +32806,10,544,223,21,22,22 +32807,10,544,224,84,20,20 +32808,10,544,225,19,22,22 +32809,10,544,226,84,22,22 +32810,10,544,227,19,18,18 +32811,10,544,228,20,23,23 +32812,10,544,229,19,18,18 +32813,10,544,230,20,25,25 +32814,10,545,219,21,20,20 +32815,10,545,220,84,24,24 +32816,10,545,221,21,22,22 +32817,10,545,222,84,26,26 +32818,10,545,223,20,25,25 +32819,10,545,224,20,27,27 +32820,10,545,225,84,28,28 +32821,10,545,226,20,29,29 +32822,10,545,227,19,22,22 +32823,10,545,228,22,25,25 +32824,10,545,229,19,22,22 +32825,10,545,230,22,27,27 +32826,10,546,219,21,20,20 +32827,10,546,220,84,24,24 +32828,10,546,221,21,22,22 +32829,10,546,222,84,26,26 +32830,10,546,223,20,25,25 +32831,10,546,224,22,25,25 +32832,10,546,225,84,28,28 +32833,10,546,226,20,29,29 +32834,10,546,227,19,22,22 +32835,10,546,228,22,27,27 +32836,10,546,229,19,22,22 +32837,10,546,230,22,29,29 +32838,10,547,231,116,5,15 +32839,10,547,232,129,5,15 +32840,10,547,233,98,5,15 +32841,10,547,234,129,5,5 +32842,10,547,235,129,5,5 +32843,10,547,236,116,15,25 +32844,10,547,237,116,15,25 +32845,10,547,238,130,15,25 +32846,10,547,239,117,25,35 +32847,10,547,240,54,25,35 +32848,10,547,241,72,5,10 +32849,10,547,242,72,10,20 +32850,10,547,243,72,20,30 +32851,10,547,244,72,30,35 +32852,10,547,245,72,35,40 +32853,10,548,231,116,5,15 +32854,10,548,232,129,5,15 +32855,10,548,233,98,5,15 +32856,10,548,234,129,5,5 +32857,10,548,235,129,5,5 +32858,10,548,236,116,15,25 +32859,10,548,237,116,15,25 +32860,10,548,238,130,15,25 +32861,10,548,239,117,25,35 +32862,10,548,240,54,25,35 +32863,10,548,241,72,5,10 +32864,10,548,242,72,10,20 +32865,10,548,243,72,20,30 +32866,10,548,244,72,30,35 +32867,10,548,245,72,35,40 +32868,10,549,231,116,5,15 +32869,10,549,232,129,5,15 +32870,10,549,233,98,5,15 +32871,10,549,234,129,5,5 +32872,10,549,235,129,5,5 +32873,10,549,236,116,15,25 +32874,10,549,237,116,15,25 +32875,10,549,238,130,15,25 +32876,10,549,239,117,25,35 +32877,10,549,240,54,25,35 +32878,10,549,241,72,5,10 +32879,10,549,242,72,10,20 +32880,10,549,243,72,20,30 +32881,10,549,244,72,30,35 +32882,10,549,245,72,35,40 +32883,10,549,219,114,22,22 +32884,10,549,220,114,23,23 +32885,10,549,221,114,24,24 +32886,10,549,222,114,21,21 +32887,10,549,223,114,25,25 +32888,10,549,224,114,20,20 +32889,10,549,225,114,19,19 +32890,10,549,226,114,26,26 +32891,10,549,227,114,18,18 +32892,10,549,228,114,27,27 +32893,10,549,229,114,17,17 +32894,10,549,230,114,28,28 +32895,10,550,231,60,5,15 +32896,10,550,232,129,5,15 +32897,10,550,233,118,5,15 +32898,10,550,234,129,5,5 +32899,10,550,235,129,5,5 +32900,10,550,236,60,15,25 +32901,10,550,237,61,20,30 +32902,10,550,238,130,15,25 +32903,10,550,239,54,15,25 +32904,10,550,240,54,25,35 +32905,10,550,241,54,20,25 +32906,10,550,242,54,20,25 +32907,10,550,243,54,25,30 +32908,10,550,244,54,30,35 +32909,10,550,245,54,35,40 +32910,10,550,219,19,3,3 +32911,10,550,220,56,3,3 +32912,10,550,221,19,4,4 +32913,10,550,222,56,4,4 +32914,10,550,223,19,2,2 +32915,10,550,224,56,2,2 +32916,10,550,225,21,3,3 +32917,10,550,226,21,5,5 +32918,10,550,227,19,5,5 +32919,10,550,228,56,5,5 +32920,10,550,229,19,5,5 +32921,10,550,230,56,5,5 +32922,10,551,231,60,5,15 +32923,10,551,232,129,5,15 +32924,10,551,233,118,5,15 +32925,10,551,234,129,5,5 +32926,10,551,235,129,5,5 +32927,10,551,236,60,15,25 +32928,10,551,237,61,20,30 +32929,10,551,238,130,15,25 +32930,10,551,239,54,15,25 +32931,10,551,240,54,25,35 +32932,10,551,241,54,20,25 +32933,10,551,242,54,20,25 +32934,10,551,243,54,25,30 +32935,10,551,244,54,30,35 +32936,10,551,245,54,35,40 +32937,10,551,219,56,32,32 +32938,10,551,220,22,40,40 +32939,10,551,221,56,34,34 +32940,10,551,222,21,34,34 +32941,10,551,223,23,32,32 +32942,10,551,224,23,34,34 +32943,10,551,225,57,42,42 +32944,10,551,226,24,44,44 +32945,10,551,227,21,32,32 +32946,10,551,228,22,42,42 +32947,10,551,229,21,32,32 +32948,10,551,230,22,44,44 +32949,10,552,231,116,5,15 +32950,10,552,232,129,5,15 +32951,10,552,233,98,5,15 +32952,10,552,234,129,5,5 +32953,10,552,235,129,5,5 +32954,10,552,236,116,15,25 +32955,10,552,237,116,15,25 +32956,10,552,238,130,15,25 +32957,10,552,239,116,25,35 +32958,10,552,240,54,25,35 +32959,10,552,241,72,5,10 +32960,10,552,242,72,10,20 +32961,10,552,243,72,20,30 +32962,10,552,244,72,30,35 +32963,10,552,245,72,35,40 +32964,10,552,219,13,7,7 +32965,10,552,220,10,7,7 +32966,10,552,221,16,11,11 +32967,10,552,222,43,12,12 +32968,10,552,223,43,13,13 +32969,10,552,224,63,10,10 +32970,10,552,225,16,13,13 +32971,10,552,226,43,14,14 +32972,10,552,227,14,8,8 +32973,10,552,228,63,8,8 +32974,10,552,229,11,8,8 +32975,10,552,230,63,12,12 +32976,10,553,231,60,5,15 +32977,10,553,232,129,5,15 +32978,10,553,233,118,5,15 +32979,10,553,234,129,5,5 +32980,10,553,235,129,5,5 +32981,10,553,236,60,15,25 +32982,10,553,237,61,20,30 +32983,10,553,238,130,15,25 +32984,10,553,239,54,15,25 +32985,10,553,240,54,25,35 +32986,10,553,241,54,20,25 +32987,10,553,242,54,20,25 +32988,10,553,243,54,25,30 +32989,10,553,244,54,30,35 +32990,10,553,245,54,35,40 +32991,10,553,219,13,8,8 +32992,10,553,220,10,8,8 +32993,10,553,221,16,13,13 +32994,10,553,222,43,14,14 +32995,10,553,223,43,13,13 +32996,10,553,224,63,11,11 +32997,10,553,225,16,11,11 +32998,10,553,226,43,12,12 +32999,10,553,227,14,9,9 +33000,10,553,228,63,9,9 +33001,10,553,229,11,9,9 +33002,10,553,230,63,13,13 +33003,10,554,231,116,5,15 +33004,10,554,232,129,5,15 +33005,10,554,233,98,5,15 +33006,10,554,234,129,5,10 +33007,10,554,235,129,5,10 +33008,10,554,236,116,15,25 +33009,10,554,237,90,15,25 +33010,10,554,238,130,15,25 +33011,10,554,239,117,25,35 +33012,10,554,240,54,25,35 +33013,10,554,241,72,5,10 +33014,10,554,242,72,10,20 +33015,10,554,243,72,20,30 +33016,10,554,244,72,30,35 +33017,10,554,245,72,35,40 +33018,10,555,231,60,5,15 +33019,10,555,232,129,5,15 +33020,10,555,233,118,5,15 +33021,10,555,234,129,5,5 +33022,10,555,235,129,5,5 +33023,10,555,236,60,15,25 +33024,10,555,237,61,20,30 +33025,10,555,238,130,15,25 +33026,10,555,239,54,15,25 +33027,10,555,240,54,25,35 +33028,10,555,241,54,20,25 +33029,10,555,242,54,20,25 +33030,10,555,243,54,25,30 +33031,10,555,244,54,30,35 +33032,10,555,245,54,35,40 +33033,10,556,231,116,5,15 +33034,10,556,232,129,5,15 +33035,10,556,233,98,5,15 +33036,10,556,234,129,5,5 +33037,10,556,235,129,5,5 +33038,10,556,236,116,15,25 +33039,10,556,237,116,15,25 +33040,10,556,238,130,15,25 +33041,10,556,239,116,25,35 +33042,10,556,240,54,25,35 +33043,10,556,241,72,5,10 +33044,10,556,242,72,10,20 +33045,10,556,243,72,20,30 +33046,10,556,244,72,30,35 +33047,10,556,245,72,35,40 +33048,10,557,231,116,5,15 +33049,10,557,232,129,5,15 +33050,10,557,233,98,5,15 +33051,10,557,234,129,5,5 +33052,10,557,235,129,5,5 +33053,10,557,236,116,15,25 +33054,10,557,237,90,15,25 +33055,10,557,238,130,15,25 +33056,10,557,239,116,25,35 +33057,10,557,240,54,25,35 +33058,10,557,241,72,5,10 +33059,10,557,242,72,10,20 +33060,10,557,243,72,20,30 +33061,10,557,244,72,30,35 +33062,10,557,245,72,35,40 +33063,10,558,231,129,5,15 +33064,10,558,232,129,5,15 +33065,10,558,233,129,5,15 +33066,10,558,234,129,5,5 +33067,10,558,235,129,5,5 +33068,10,558,236,129,15,25 +33069,10,558,237,129,15,25 +33070,10,558,238,129,15,25 +33071,10,558,239,129,25,35 +33072,10,558,240,88,30,40 +33073,10,558,241,54,5,10 +33074,10,558,242,54,10,20 +33075,10,558,243,54,20,30 +33076,10,558,244,54,30,40 +33077,10,558,245,109,30,40 +33078,10,559,231,118,5,15 +33079,10,559,232,129,5,15 +33080,10,559,233,60,5,15 +33081,10,559,234,129,5,5 +33082,10,559,235,129,5,5 +33083,10,559,236,118,15,25 +33084,10,559,237,119,20,30 +33085,10,559,238,130,15,25 +33086,10,559,239,54,15,25 +33087,10,559,240,54,25,35 +33088,10,559,241,54,20,25 +33089,10,559,242,54,20,25 +33090,10,559,243,54,25,30 +33091,10,559,244,54,30,35 +33092,10,559,245,54,35,40 +33093,10,560,231,116,5,15 +33094,10,560,232,129,5,15 +33095,10,560,233,98,5,15 +33096,10,560,234,129,5,5 +33097,10,560,235,129,5,5 +33098,10,560,236,116,15,25 +33099,10,560,237,90,15,25 +33100,10,560,238,130,15,25 +33101,10,560,239,117,25,35 +33102,10,560,240,54,25,35 +33103,10,560,241,72,5,10 +33104,10,560,242,72,10,20 +33105,10,560,243,72,20,30 +33106,10,560,244,72,30,35 +33107,10,560,245,72,35,40 +33108,10,561,231,116,5,15 +33109,10,561,232,129,5,15 +33110,10,561,233,116,5,15 +33111,10,561,234,129,5,5 +33112,10,561,235,129,5,5 +33113,10,561,236,116,15,25 +33114,10,561,237,90,15,25 +33115,10,561,238,130,15,25 +33116,10,561,239,117,25,35 +33117,10,561,240,54,25,35 +33118,10,561,241,72,5,20 +33119,10,561,242,72,20,35 +33120,10,561,243,72,35,40 +33121,10,561,244,73,35,40 +33122,10,561,245,73,35,40 +33123,10,562,231,60,5,15 +33124,10,562,232,129,5,15 +33125,10,562,233,118,5,15 +33126,10,562,234,129,5,5 +33127,10,562,235,129,5,5 +33128,10,562,236,60,15,25 +33129,10,562,237,61,20,30 +33130,10,562,238,130,15,25 +33131,10,562,239,54,15,25 +33132,10,562,240,54,25,35 +33133,10,562,241,194,5,15 +33134,10,562,242,54,5,35 +33135,10,562,243,194,15,25 +33136,10,562,244,194,15,25 +33137,10,562,245,194,15,25 +33138,10,563,231,116,5,15 +33139,10,563,232,129,5,15 +33140,10,563,233,116,5,15 +33141,10,563,234,129,5,5 +33142,10,563,235,129,5,5 +33143,10,563,236,116,15,25 +33144,10,563,237,90,15,25 +33145,10,563,238,130,15,25 +33146,10,563,239,117,25,35 +33147,10,563,240,54,25,35 +33148,10,563,241,72,5,35 +33149,10,563,242,187,5,15 +33150,10,563,243,72,35,40 +33151,10,563,244,73,35,40 +33152,10,563,245,73,35,40 +33153,10,564,219,41,10,10 +33154,10,564,220,41,12,12 +33155,10,564,221,41,8,8 +33156,10,564,222,41,14,14 +33157,10,564,223,41,10,10 +33158,10,564,224,41,12,12 +33159,10,564,225,41,16,16 +33160,10,564,226,41,6,6 +33161,10,564,227,41,8,8 +33162,10,564,228,41,14,14 +33163,10,564,229,41,8,8 +33164,10,564,230,41,14,14 +33165,10,565,219,179,7,7 +33166,10,565,220,179,9,9 +33167,10,565,221,179,5,5 +33168,10,565,222,179,11,11 +33169,10,565,223,179,7,7 +33170,10,565,224,179,9,9 +33171,10,565,225,179,13,13 +33172,10,565,226,179,3,3 +33173,10,565,227,179,5,5 +33174,10,565,228,179,11,11 +33175,10,565,229,179,5,5 +33176,10,565,230,179,11,11 +33177,10,566,219,204,23,23 +33178,10,566,220,204,25,25 +33179,10,566,221,204,22,22 +33180,10,566,222,204,27,27 +33181,10,566,223,204,23,23 +33182,10,566,224,204,25,25 +33183,10,566,225,204,29,29 +33184,10,566,226,204,19,19 +33185,10,566,227,204,21,21 +33186,10,566,228,204,27,27 +33187,10,566,229,204,21,21 +33188,10,566,230,204,27,27 +33189,10,567,219,228,16,16 +33190,10,567,220,228,18,18 +33191,10,567,221,228,14,14 +33192,10,567,222,228,20,20 +33193,10,567,223,228,16,16 +33194,10,567,224,228,18,18 +33195,10,567,225,228,22,22 +33196,10,567,226,228,12,12 +33197,10,567,227,228,14,14 +33198,10,567,228,228,20,20 +33199,10,567,229,228,14,14 +33200,10,567,230,228,20,20 +33201,10,568,219,216,22,22 +33202,10,568,220,216,24,24 +33203,10,568,221,216,20,20 +33204,10,568,222,216,26,26 +33205,10,568,223,216,22,22 +33206,10,568,224,216,24,24 +33207,10,568,225,216,28,28 +33208,10,568,226,216,18,18 +33209,10,568,227,216,20,20 +33210,10,568,228,216,26,26 +33211,10,568,229,216,20,20 +33212,10,568,230,216,26,26 +33213,10,569,219,190,22,22 +33214,10,569,220,190,24,24 +33215,10,569,221,190,20,20 +33216,10,569,222,190,26,26 +33217,10,569,223,190,22,22 +33218,10,569,224,190,24,24 +33219,10,569,225,190,28,28 +33220,10,569,226,190,18,18 +33221,10,569,227,190,20,20 +33222,10,569,228,190,26,26 +33223,10,569,229,190,20,20 +33224,10,569,230,190,26,26 +33225,10,570,219,213,22,22 +33226,10,570,220,213,24,24 +33227,10,570,221,213,20,20 +33228,10,570,222,213,26,26 +33229,10,570,223,213,22,22 +33230,10,570,224,213,24,24 +33231,10,570,225,213,28,28 +33232,10,570,226,213,18,18 +33233,10,570,227,213,20,20 +33234,10,570,228,213,26,26 +33235,10,570,229,213,20,20 +33236,10,570,230,213,26,26 +33237,10,571,219,234,22,22 +33238,10,571,220,234,24,24 +33239,10,571,221,234,20,20 +33240,10,571,222,234,26,26 +33241,10,571,223,234,22,22 +33242,10,571,224,234,24,24 +33243,10,571,225,234,28,28 +33244,10,571,226,234,18,18 +33245,10,571,227,234,20,20 +33246,10,571,228,234,26,26 +33247,10,571,229,234,20,20 +33248,10,571,230,234,26,26 +33249,10,572,219,235,22,22 +33250,10,572,220,235,24,24 +33251,10,572,221,235,20,20 +33252,10,572,222,235,26,26 +33253,10,572,223,235,22,22 +33254,10,572,224,235,24,24 +33255,10,572,225,235,28,28 +33256,10,572,226,235,18,18 +33257,10,572,227,235,20,20 +33258,10,572,228,235,26,26 +33259,10,572,229,235,20,20 +33260,10,572,230,235,26,26 +33261,11,450,219,201,25,25 +33262,11,450,220,201,25,25 +33263,11,450,221,201,25,25 +33264,11,450,222,201,25,25 +33265,11,450,223,201,25,25 +33266,11,450,224,201,25,25 +33267,11,450,225,201,25,25 +33268,11,450,226,201,25,25 +33269,11,450,227,201,25,25 +33270,11,450,228,201,25,25 +33271,11,450,229,201,25,25 +33272,11,450,230,201,25,25 +33273,11,451,219,201,25,25 +33274,11,451,220,201,25,25 +33275,11,451,221,201,25,25 +33276,11,451,222,201,25,25 +33277,11,451,223,201,25,25 +33278,11,451,224,201,25,25 +33279,11,451,225,201,25,25 +33280,11,451,226,201,25,25 +33281,11,451,227,201,25,25 +33282,11,451,228,201,25,25 +33283,11,451,229,201,25,25 +33284,11,451,230,201,25,25 +33285,11,452,219,201,25,25 +33286,11,452,220,201,25,25 +33287,11,452,221,201,25,25 +33288,11,452,222,201,25,25 +33289,11,452,223,201,25,25 +33290,11,452,224,201,25,25 +33291,11,452,225,201,25,25 +33292,11,452,226,201,25,25 +33293,11,452,227,201,25,25 +33294,11,452,228,201,25,25 +33295,11,452,229,201,25,25 +33296,11,452,230,201,25,25 +33297,11,453,219,201,25,25 +33298,11,453,220,201,25,25 +33299,11,453,221,201,25,25 +33300,11,453,222,201,25,25 +33301,11,453,223,201,25,25 +33302,11,453,224,201,25,25 +33303,11,453,225,201,25,25 +33304,11,453,226,201,25,25 +33305,11,453,227,201,25,25 +33306,11,453,228,201,25,25 +33307,11,453,229,201,25,25 +33308,11,453,230,201,25,25 +33309,11,454,219,201,25,25 +33310,11,454,220,201,25,25 +33311,11,454,221,201,25,25 +33312,11,454,222,201,25,25 +33313,11,454,223,201,25,25 +33314,11,454,224,201,25,25 +33315,11,454,225,201,25,25 +33316,11,454,226,201,25,25 +33317,11,454,227,201,25,25 +33318,11,454,228,201,25,25 +33319,11,454,229,201,25,25 +33320,11,454,230,201,25,25 +33321,11,455,219,201,25,25 +33322,11,455,220,201,25,25 +33323,11,455,221,201,25,25 +33324,11,455,222,201,25,25 +33325,11,455,223,201,25,25 +33326,11,455,224,201,25,25 +33327,11,455,225,201,25,25 +33328,11,455,226,201,25,25 +33329,11,455,227,201,25,25 +33330,11,455,228,201,25,25 +33331,11,455,229,201,25,25 +33332,11,455,230,201,25,25 +33333,11,456,219,201,25,25 +33334,11,456,220,201,25,25 +33335,11,456,221,201,25,25 +33336,11,456,222,201,25,25 +33337,11,456,223,201,25,25 +33338,11,456,224,201,25,25 +33339,11,456,225,201,25,25 +33340,11,456,226,201,25,25 +33341,11,456,227,201,25,25 +33342,11,456,228,201,25,25 +33343,11,456,229,201,25,25 +33344,11,456,230,201,25,25 +33345,11,457,219,10,4,4 +33346,11,457,220,13,4,4 +33347,11,457,221,10,5,5 +33348,11,457,222,13,5,5 +33349,11,457,223,10,3,3 +33350,11,457,224,13,3,3 +33351,11,457,225,14,5,5 +33352,11,457,226,11,5,5 +33353,11,457,227,11,4,4 +33354,11,457,228,25,3,3 +33355,11,457,229,11,6,6 +33356,11,457,230,25,5,5 +33357,11,458,219,41,7,7 +33358,11,458,220,41,8,8 +33359,11,458,221,74,7,7 +33360,11,458,222,41,9,9 +33361,11,458,223,41,10,10 +33362,11,458,224,74,8,8 +33363,11,458,225,74,9,9 +33364,11,458,226,46,8,8 +33365,11,458,227,41,7,7 +33366,11,458,228,41,7,7 +33367,11,458,229,41,7,7 +33368,11,458,230,35,8,8 +33369,11,459,219,46,7,7 +33370,11,459,220,46,8,8 +33371,11,459,221,46,5,5 +33372,11,459,222,46,6,6 +33373,11,459,223,46,9,9 +33374,11,459,224,46,10,10 +33375,11,459,225,46,7,7 +33376,11,459,226,46,8,8 +33377,11,459,227,46,5,5 +33378,11,459,228,46,6,6 +33379,11,459,229,46,9,9 +33380,11,459,230,46,10,10 +33381,11,460,219,41,8,8 +33382,11,460,220,74,9,9 +33383,11,460,221,41,9,9 +33384,11,460,222,41,10,10 +33385,11,460,223,74,10,10 +33386,11,460,224,46,10,10 +33387,11,460,225,46,12,12 +33388,11,460,226,35,10,10 +33389,11,460,227,41,11,11 +33390,11,460,228,41,11,11 +33391,11,460,229,41,11,11 +33392,11,460,230,35,12,12 +33393,11,461,231,98,5,15 +33394,11,461,232,129,5,15 +33395,11,461,233,116,5,15 +33396,11,461,234,129,5,5 +33397,11,461,235,129,5,5 +33398,11,461,236,98,15,25 +33399,11,461,237,120,15,25 +33400,11,461,238,130,15,25 +33401,11,461,239,98,25,35 +33402,11,461,240,79,25,35 +33403,11,461,241,72,5,10 +33404,11,461,242,72,10,20 +33405,11,461,243,72,20,30 +33406,11,461,244,72,30,35 +33407,11,461,245,72,35,40 +33408,11,462,219,50,18,18 +33409,11,462,220,50,19,19 +33410,11,462,221,50,17,17 +33411,11,462,222,50,15,15 +33412,11,462,223,50,16,16 +33413,11,462,224,50,20,20 +33414,11,462,225,50,21,21 +33415,11,462,226,50,22,22 +33416,11,462,227,50,17,17 +33417,11,462,228,51,29,29 +33418,11,462,229,50,17,17 +33419,11,462,230,51,31,31 +33420,11,573,219,66,32,32 +33421,11,573,220,74,32,32 +33422,11,573,221,95,40,40 +33423,11,573,222,95,43,43 +33424,11,573,223,95,46,46 +33425,11,573,224,41,32,32 +33426,11,573,225,28,44,44 +33427,11,573,226,42,44,44 +33428,11,573,227,105,44,44 +33429,11,573,228,67,44,44 +33430,11,573,229,67,46,46 +33431,11,573,230,105,46,46 +33432,11,574,219,66,34,34 +33433,11,574,220,74,34,34 +33434,11,574,221,57,42,42 +33435,11,574,222,95,45,45 +33436,11,574,223,95,48,48 +33437,11,574,224,41,34,34 +33438,11,574,225,28,46,46 +33439,11,574,226,42,46,46 +33440,11,574,227,105,46,46 +33441,11,574,228,67,46,46 +33442,11,574,229,67,48,48 +33443,11,574,230,105,48,48 +33444,11,575,219,66,32,32 +33445,11,575,220,74,32,32 +33446,11,575,221,95,40,40 +33447,11,575,222,95,43,43 +33448,11,575,223,95,46,46 +33449,11,575,224,41,32,32 +33450,11,575,225,28,44,44 +33451,11,575,226,42,44,44 +33452,11,575,227,105,44,44 +33453,11,575,228,67,44,44 +33454,11,575,229,67,46,46 +33455,11,575,230,105,46,46 +33456,11,466,219,88,28,28 +33457,11,466,220,20,32,32 +33458,11,466,221,88,30,30 +33459,11,466,222,20,36,36 +33460,11,466,223,37,30,30 +33461,11,466,224,19,28,28 +33462,11,466,225,109,28,28 +33463,11,466,226,89,32,32 +33464,11,466,227,37,32,32 +33465,11,466,228,19,26,26 +33466,11,466,229,37,32,32 +33467,11,466,230,19,26,26 +33468,11,467,219,88,28,28 +33469,11,467,220,20,34,34 +33470,11,467,221,88,30,30 +33471,11,467,222,132,30,30 +33472,11,467,223,37,30,30 +33473,11,467,224,20,38,38 +33474,11,467,225,109,28,28 +33475,11,467,226,89,34,34 +33476,11,467,227,37,32,32 +33477,11,467,228,19,26,26 +33478,11,467,229,37,32,32 +33479,11,467,230,19,26,26 +33480,11,468,231,118,5,15 +33481,11,468,232,129,5,15 +33482,11,468,233,60,5,15 +33483,11,468,234,129,5,5 +33484,11,468,235,129,5,5 +33485,11,468,236,118,15,25 +33486,11,468,237,119,20,30 +33487,11,468,238,147,15,25 +33488,11,468,239,79,15,35 +33489,11,468,240,148,25,35 +33490,11,468,241,79,20,25 +33491,11,468,242,79,20,25 +33492,11,468,243,79,25,30 +33493,11,468,244,79,30,35 +33494,11,468,245,79,35,40 +33495,11,468,219,111,25,25 +33496,11,468,220,29,22,22 +33497,11,468,221,102,24,24 +33498,11,468,222,102,25,25 +33499,11,468,223,48,22,22 +33500,11,468,224,30,31,31 +33501,11,468,225,33,31,31 +33502,11,468,226,47,30,30 +33503,11,468,227,48,22,22 +33504,11,468,228,127,23,23 +33505,11,468,229,48,22,22 +33506,11,468,230,113,23,23 +33507,11,469,231,118,5,15 +33508,11,469,232,129,5,15 +33509,11,469,233,60,5,15 +33510,11,469,234,129,5,5 +33511,11,469,235,129,5,5 +33512,11,469,236,118,15,25 +33513,11,469,237,119,20,30 +33514,11,469,238,147,15,25 +33515,11,469,239,79,15,35 +33516,11,469,240,148,25,35 +33517,11,469,241,79,20,25 +33518,11,469,242,79,20,25 +33519,11,469,243,79,25,30 +33520,11,469,244,79,30,35 +33521,11,469,245,79,35,40 +33522,11,469,219,29,24,24 +33523,11,469,220,84,26,26 +33524,11,469,221,102,23,23 +33525,11,469,222,102,25,25 +33526,11,469,223,46,22,22 +33527,11,469,224,30,33,33 +33528,11,469,225,32,24,24 +33529,11,469,226,47,25,25 +33530,11,469,227,46,22,22 +33531,11,469,228,115,25,25 +33532,11,469,229,46,22,22 +33533,11,469,230,127,28,28 +33534,11,470,231,118,5,15 +33535,11,470,232,129,5,15 +33536,11,470,233,60,5,15 +33537,11,470,234,129,5,5 +33538,11,470,235,129,5,5 +33539,11,470,236,118,15,25 +33540,11,470,237,119,20,30 +33541,11,470,238,147,15,25 +33542,11,470,239,79,15,35 +33543,11,470,240,148,25,35 +33544,11,470,241,79,20,25 +33545,11,470,242,79,20,25 +33546,11,470,243,79,25,30 +33547,11,470,244,79,30,35 +33548,11,470,245,79,35,40 +33549,11,470,219,111,26,26 +33550,11,470,220,29,30,30 +33551,11,470,221,102,25,25 +33552,11,470,222,102,27,27 +33553,11,470,223,46,23,23 +33554,11,470,224,30,30,30 +33555,11,470,225,33,30,30 +33556,11,470,226,49,32,32 +33557,11,470,227,46,23,23 +33558,11,470,228,113,26,26 +33559,11,470,229,46,23,23 +33560,11,470,230,128,28,28 +33561,11,471,231,118,5,15 +33562,11,471,232,129,5,15 +33563,11,471,233,60,5,15 +33564,11,471,234,129,5,5 +33565,11,471,235,129,5,5 +33566,11,471,236,118,15,25 +33567,11,471,237,119,20,30 +33568,11,471,238,147,15,25 +33569,11,471,239,79,15,35 +33570,11,471,240,148,25,35 +33571,11,471,241,79,20,25 +33572,11,471,242,79,20,25 +33573,11,471,243,79,25,30 +33574,11,471,244,79,30,35 +33575,11,471,245,79,35,40 +33576,11,471,219,84,26,26 +33577,11,471,220,29,22,22 +33578,11,471,221,102,25,25 +33579,11,471,222,102,27,27 +33580,11,471,223,48,23,23 +33581,11,471,224,30,30,30 +33582,11,471,225,32,30,30 +33583,11,471,226,49,32,32 +33584,11,471,227,48,23,23 +33585,11,471,228,128,25,25 +33586,11,471,229,48,23,23 +33587,11,471,230,115,28,28 +33588,11,472,231,60,5,15 +33589,11,472,232,129,5,15 +33590,11,472,233,118,5,15 +33591,11,472,234,129,5,5 +33592,11,472,235,129,5,5 +33593,11,472,246,74,30,40 +33594,11,472,247,75,40,50 +33595,11,472,248,75,45,55 +33596,11,472,249,74,40,50 +33597,11,472,250,74,40,50 +33598,11,472,236,60,15,25 +33599,11,472,237,61,20,30 +33600,11,472,238,130,15,25 +33601,11,472,239,79,15,25 +33602,11,472,240,79,25,35 +33603,11,472,241,79,30,40 +33604,11,472,242,80,40,50 +33605,11,472,243,80,45,55 +33606,11,472,244,79,40,50 +33607,11,472,245,79,40,50 +33608,11,472,219,82,49,49 +33609,11,472,220,47,49,49 +33610,11,472,221,42,46,46 +33611,11,472,222,67,46,46 +33612,11,472,223,57,52,52 +33613,11,472,224,132,52,52 +33614,11,472,225,101,58,58 +33615,11,472,226,47,58,58 +33616,11,472,227,42,55,55 +33617,11,472,228,202,55,55 +33618,11,472,229,57,61,61 +33619,11,472,230,132,61,61 +33620,11,473,246,74,35,45 +33621,11,473,247,75,45,55 +33622,11,473,248,75,50,60 +33623,11,473,249,74,45,55 +33624,11,473,250,74,45,55 +33625,11,473,219,42,49,49 +33626,11,473,220,67,49,49 +33627,11,473,221,82,52,52 +33628,11,473,222,47,52,52 +33629,11,473,223,64,55,55 +33630,11,473,224,132,55,55 +33631,11,473,225,42,58,58 +33632,11,473,226,202,58,58 +33633,11,473,227,101,61,61 +33634,11,473,228,47,61,61 +33635,11,473,229,64,64,64 +33636,11,473,230,132,64,64 +33637,11,474,231,60,5,15 +33638,11,474,232,129,5,15 +33639,11,474,233,118,5,15 +33640,11,474,234,129,5,5 +33641,11,474,235,129,5,5 +33642,11,474,246,74,40,50 +33643,11,474,247,75,50,60 +33644,11,474,248,75,55,65 +33645,11,474,249,74,50,60 +33646,11,474,250,74,50,60 +33647,11,474,236,60,15,25 +33648,11,474,237,61,20,30 +33649,11,474,238,130,15,25 +33650,11,474,239,79,15,25 +33651,11,474,240,130,25,35 +33652,11,474,241,79,40,50 +33653,11,474,242,80,50,60 +33654,11,474,243,80,55,65 +33655,11,474,244,79,50,60 +33656,11,474,245,79,50,60 +33657,11,474,219,64,58,58 +33658,11,474,220,132,58,58 +33659,11,474,221,82,55,55 +33660,11,474,222,47,55,55 +33661,11,474,223,42,52,52 +33662,11,474,224,67,52,52 +33663,11,474,225,64,67,67 +33664,11,474,226,132,67,67 +33665,11,474,227,101,64,64 +33666,11,474,228,47,64,64 +33667,11,474,229,42,61,61 +33668,11,474,230,202,61,61 +33669,11,475,219,41,15,15 +33670,11,475,220,74,16,16 +33671,11,475,221,56,16,16 +33672,11,475,222,74,17,17 +33673,11,475,223,41,16,16 +33674,11,475,224,66,16,16 +33675,11,475,225,56,17,17 +33676,11,475,226,66,17,17 +33677,11,475,227,74,15,15 +33678,11,475,228,95,13,13 +33679,11,475,229,74,15,15 +33680,11,475,230,95,15,15 +33681,11,476,246,74,5,20 +33682,11,476,247,74,10,20 +33683,11,476,248,74,15,30 +33684,11,476,249,75,25,40 +33685,11,476,250,75,30,40 +33686,11,476,219,41,16,16 +33687,11,476,220,74,17,17 +33688,11,476,221,56,17,17 +33689,11,476,222,74,16,16 +33690,11,476,223,41,15,15 +33691,11,476,224,66,17,17 +33692,11,476,225,56,16,16 +33693,11,476,226,95,13,13 +33694,11,476,227,74,15,15 +33695,11,476,228,95,15,15 +33696,11,476,229,74,15,15 +33697,11,476,230,95,17,17 +33698,11,477,219,79,27,27 +33699,11,477,220,79,29,29 +33700,11,477,221,79,31,31 +33701,11,477,222,41,22,22 +33702,11,477,223,41,22,22 +33703,11,477,224,41,24,24 +33704,11,477,225,42,26,26 +33705,11,477,226,42,28,28 +33706,11,477,227,79,33,33 +33707,11,477,228,41,26,26 +33708,11,477,229,79,26,26 +33709,11,477,230,42,30,30 +33710,11,478,219,79,29,29 +33711,11,478,220,79,31,31 +33712,11,478,221,86,28,28 +33713,11,478,222,41,22,22 +33714,11,478,223,41,22,22 +33715,11,478,224,41,24,24 +33716,11,478,225,42,26,26 +33717,11,478,226,42,28,28 +33718,11,478,227,80,33,33 +33719,11,478,228,41,26,26 +33720,11,478,229,80,35,35 +33721,11,478,230,42,30,30 +33722,11,479,219,79,30,30 +33723,11,479,220,79,32,32 +33724,11,479,221,86,30,30 +33725,11,479,222,86,32,32 +33726,11,479,223,41,22,22 +33727,11,479,224,41,24,24 +33728,11,479,225,42,26,26 +33729,11,479,226,80,34,34 +33730,11,479,227,80,32,32 +33731,11,479,228,42,28,28 +33732,11,479,229,80,32,32 +33733,11,479,230,42,30,30 +33734,11,480,231,98,5,15 +33735,11,480,232,129,5,15 +33736,11,480,233,116,5,15 +33737,11,480,234,129,5,5 +33738,11,480,235,129,5,5 +33739,11,480,236,98,15,25 +33740,11,480,237,98,20,30 +33741,11,480,238,130,15,25 +33742,11,480,239,79,15,25 +33743,11,480,240,130,25,35 +33744,11,480,241,86,25,35 +33745,11,480,242,98,25,30 +33746,11,480,243,87,35,40 +33747,11,480,244,79,30,40 +33748,11,480,245,80,35,40 +33749,11,480,219,86,30,30 +33750,11,480,220,86,32,32 +33751,11,480,221,79,32,32 +33752,11,480,222,79,30,30 +33753,11,480,223,80,32,32 +33754,11,480,224,41,24,24 +33755,11,480,225,42,26,26 +33756,11,480,226,80,34,34 +33757,11,480,227,87,32,32 +33758,11,480,228,42,28,28 +33759,11,480,229,87,34,34 +33760,11,480,230,42,30,30 +33761,11,481,231,98,5,15 +33762,11,481,232,129,5,15 +33763,11,481,233,116,5,15 +33764,11,481,234,129,5,5 +33765,11,481,235,129,5,5 +33766,11,481,236,98,15,25 +33767,11,481,237,98,20,30 +33768,11,481,238,130,15,25 +33769,11,481,239,79,15,25 +33770,11,481,240,130,25,35 +33771,11,481,241,86,25,35 +33772,11,481,242,98,25,30 +33773,11,481,243,87,35,40 +33774,11,481,244,79,30,40 +33775,11,481,245,80,35,40 +33776,11,481,219,86,30,30 +33777,11,481,220,86,32,32 +33778,11,481,221,79,32,32 +33779,11,481,222,86,34,34 +33780,11,481,223,80,32,32 +33781,11,481,224,42,26,26 +33782,11,481,225,87,34,34 +33783,11,481,226,80,34,34 +33784,11,481,227,87,36,36 +33785,11,481,228,42,28,28 +33786,11,481,229,87,36,36 +33787,11,481,230,42,30,30 +33788,11,482,219,92,15,15 +33789,11,482,220,92,16,16 +33790,11,482,221,92,17,17 +33791,11,482,222,92,13,13 +33792,11,482,223,92,14,14 +33793,11,482,224,92,18,18 +33794,11,482,225,92,19,19 +33795,11,482,226,104,15,15 +33796,11,482,227,92,17,17 +33797,11,482,228,104,17,17 +33798,11,482,229,92,17,17 +33799,11,482,230,93,20,20 +33800,11,483,219,92,15,15 +33801,11,483,220,92,16,16 +33802,11,483,221,92,17,17 +33803,11,483,222,92,13,13 +33804,11,483,223,92,14,14 +33805,11,483,224,92,18,18 +33806,11,483,225,93,20,20 +33807,11,483,226,104,15,15 +33808,11,483,227,92,17,17 +33809,11,483,228,104,17,17 +33810,11,483,229,92,17,17 +33811,11,483,230,92,19,19 +33812,11,484,219,92,15,15 +33813,11,484,220,92,16,16 +33814,11,484,221,92,17,17 +33815,11,484,222,92,13,13 +33816,11,484,223,92,14,14 +33817,11,484,224,92,18,18 +33818,11,484,225,93,20,20 +33819,11,484,226,104,15,15 +33820,11,484,227,92,17,17 +33821,11,484,228,104,17,17 +33822,11,484,229,92,17,17 +33823,11,484,230,92,19,19 +33824,11,485,219,92,16,16 +33825,11,485,220,92,17,17 +33826,11,485,221,92,18,18 +33827,11,485,222,92,14,14 +33828,11,485,223,92,15,15 +33829,11,485,224,92,19,19 +33830,11,485,225,93,21,21 +33831,11,485,226,104,17,17 +33832,11,485,227,92,18,18 +33833,11,485,228,104,19,19 +33834,11,485,229,92,18,18 +33835,11,485,230,93,23,23 +33836,11,486,219,92,16,16 +33837,11,486,220,92,17,17 +33838,11,486,221,92,18,18 +33839,11,486,222,92,15,15 +33840,11,486,223,92,19,19 +33841,11,486,224,93,23,23 +33842,11,486,225,104,17,17 +33843,11,486,226,104,19,19 +33844,11,486,227,92,18,18 +33845,11,486,228,93,23,23 +33846,11,486,229,92,18,18 +33847,11,486,230,93,25,25 +33848,11,487,219,100,22,22 +33849,11,487,220,81,22,22 +33850,11,487,221,100,25,25 +33851,11,487,222,81,25,25 +33852,11,487,223,25,22,22 +33853,11,487,224,25,24,24 +33854,11,487,225,82,31,31 +33855,11,487,226,82,34,34 +33856,11,487,227,25,26,26 +33857,11,487,228,82,31,31 +33858,11,487,229,25,26,26 +33859,11,487,230,82,34,34 +33860,11,488,246,74,5,20 +33861,11,488,247,74,10,20 +33862,11,488,248,74,15,30 +33863,11,488,249,75,25,40 +33864,11,488,250,75,30,40 +33865,11,488,219,77,30,30 +33866,11,488,220,22,38,38 +33867,11,488,221,77,33,33 +33868,11,488,222,21,32,32 +33869,11,488,223,66,35,35 +33870,11,488,224,74,33,33 +33871,11,488,225,77,36,36 +33872,11,488,226,22,40,40 +33873,11,488,227,126,38,38 +33874,11,488,228,78,39,39 +33875,11,488,229,126,40,40 +33876,11,488,230,78,42,42 +33877,11,489,219,74,33,33 +33878,11,489,220,66,35,35 +33879,11,489,221,74,29,29 +33880,11,489,222,74,31,31 +33881,11,489,223,66,31,31 +33882,11,489,224,66,33,33 +33883,11,489,225,74,35,35 +33884,11,489,226,66,37,37 +33885,11,489,227,74,37,37 +33886,11,489,228,66,39,39 +33887,11,489,229,74,37,37 +33888,11,489,230,66,39,39 +33889,11,490,246,74,5,20 +33890,11,490,247,74,10,20 +33891,11,490,248,74,15,30 +33892,11,490,249,75,25,40 +33893,11,490,250,75,30,40 +33894,11,490,219,74,34,34 +33895,11,490,220,66,36,36 +33896,11,490,221,74,30,30 +33897,11,490,222,74,32,32 +33898,11,490,223,66,32,32 +33899,11,490,224,66,34,34 +33900,11,490,225,67,38,38 +33901,11,490,226,67,38,38 +33902,11,490,227,67,40,40 +33903,11,490,228,67,40,40 +33904,11,490,229,67,40,40 +33905,11,490,230,67,40,40 +33906,11,491,246,74,25,35 +33907,11,491,247,75,30,45 +33908,11,491,248,75,35,50 +33909,11,491,249,74,30,40 +33910,11,491,250,74,30,40 +33911,11,491,219,74,36,36 +33912,11,491,220,66,38,38 +33913,11,491,221,74,32,32 +33914,11,491,222,74,34,34 +33915,11,491,223,66,34,34 +33916,11,491,224,66,36,36 +33917,11,491,225,74,38,38 +33918,11,491,226,67,40,40 +33919,11,491,227,74,40,40 +33920,11,491,228,67,42,42 +33921,11,491,229,74,40,40 +33922,11,491,230,67,42,42 +33923,11,492,246,74,25,35 +33924,11,492,247,75,30,45 +33925,11,492,248,75,35,50 +33926,11,492,249,74,30,40 +33927,11,492,250,74,30,40 +33928,11,492,219,74,38,38 +33929,11,492,220,74,36,36 +33930,11,492,221,74,34,34 +33931,11,492,222,74,40,40 +33932,11,492,223,218,24,24 +33933,11,492,224,218,26,26 +33934,11,492,225,74,42,42 +33935,11,492,226,218,28,28 +33936,11,492,227,74,42,42 +33937,11,492,228,218,30,30 +33938,11,492,229,74,42,42 +33939,11,492,230,218,30,30 +33940,11,493,246,74,25,35 +33941,11,493,247,75,30,45 +33942,11,493,248,75,35,50 +33943,11,493,249,74,30,40 +33944,11,493,250,74,30,40 +33945,11,493,219,74,40,40 +33946,11,493,220,218,26,26 +33947,11,493,221,74,42,42 +33948,11,493,222,218,24,24 +33949,11,493,223,218,28,28 +33950,11,493,224,218,30,30 +33951,11,493,225,74,44,44 +33952,11,493,226,218,32,32 +33953,11,493,227,74,44,44 +33954,11,493,228,218,22,22 +33955,11,493,229,74,44,44 +33956,11,493,230,218,22,22 +33957,11,494,246,218,15,25 +33958,11,494,247,218,25,35 +33959,11,494,248,219,40,45 +33960,11,494,249,219,35,45 +33961,11,494,250,219,25,35 +33962,11,494,219,218,26,26 +33963,11,494,220,218,28,28 +33964,11,494,221,218,30,30 +33965,11,494,222,218,32,32 +33966,11,494,223,218,24,24 +33967,11,494,224,218,22,22 +33968,11,494,225,218,20,20 +33969,11,494,226,218,34,34 +33970,11,494,227,218,36,36 +33971,11,494,228,218,18,18 +33972,11,494,229,218,36,36 +33973,11,494,230,218,18,18 +33974,11,495,231,118,5,15 +33975,11,495,232,129,5,15 +33976,11,495,233,60,5,15 +33977,11,495,234,129,5,5 +33978,11,495,235,129,5,5 +33979,11,495,236,118,15,25 +33980,11,495,237,119,20,30 +33981,11,495,238,130,15,25 +33982,11,495,239,79,15,25 +33983,11,495,240,79,25,35 +33984,11,495,241,79,5,20 +33985,11,495,242,79,20,35 +33986,11,495,243,79,35,40 +33987,11,495,244,80,35,40 +33988,11,495,245,80,35,40 +33989,11,495,219,17,37,37 +33990,11,495,220,70,35,35 +33991,11,495,221,16,32,32 +33992,11,495,222,69,30,30 +33993,11,495,223,48,34,34 +33994,11,495,224,96,34,34 +33995,11,495,225,102,35,35 +33996,11,495,226,79,31,31 +33997,11,495,227,49,37,37 +33998,11,495,228,97,37,37 +33999,11,495,229,49,40,40 +34000,11,495,230,97,40,40 +34001,11,496,231,60,5,15 +34002,11,496,232,129,5,15 +34003,11,496,233,118,5,15 +34004,11,496,234,129,5,5 +34005,11,496,235,129,5,5 +34006,11,496,236,60,15,25 +34007,11,496,237,61,20,30 +34008,11,496,238,130,15,25 +34009,11,496,239,79,15,25 +34010,11,496,240,79,25,35 +34011,11,496,241,86,5,35 +34012,11,496,242,79,5,35 +34013,11,496,243,87,35,40 +34014,11,496,244,183,5,15 +34015,11,496,245,183,5,15 +34016,11,496,219,86,43,43 +34017,11,496,220,42,45,45 +34018,11,496,221,86,45,45 +34019,11,496,222,86,47,47 +34020,11,496,223,41,40,40 +34021,11,496,224,87,49,49 +34022,11,496,225,87,51,51 +34023,11,496,226,79,41,41 +34024,11,496,227,42,48,48 +34025,11,496,228,87,53,53 +34026,11,496,229,42,48,48 +34027,11,496,230,87,53,53 +34028,11,497,219,220,25,25 +34029,11,497,220,42,45,45 +34030,11,497,221,86,45,45 +34031,11,497,222,220,27,27 +34032,11,497,223,41,40,40 +34033,11,497,224,220,29,29 +34034,11,497,225,215,30,30 +34035,11,497,226,220,31,31 +34036,11,497,227,42,48,48 +34037,11,497,228,220,23,23 +34038,11,497,229,42,48,48 +34039,11,497,230,220,23,23 +34040,11,498,219,220,25,25 +34041,11,498,220,42,45,45 +34042,11,498,221,86,45,45 +34043,11,498,222,220,27,27 +34044,11,498,223,41,40,40 +34045,11,498,224,220,29,29 +34046,11,498,225,215,30,30 +34047,11,498,226,220,31,31 +34048,11,498,227,42,48,48 +34049,11,498,228,220,23,23 +34050,11,498,229,42,48,48 +34051,11,498,230,220,23,23 +34052,11,499,231,98,5,15 +34053,11,499,232,129,5,15 +34054,11,499,233,98,5,15 +34055,11,499,234,129,5,5 +34056,11,499,235,129,5,5 +34057,11,499,236,98,15,25 +34058,11,499,237,120,15,25 +34059,11,499,238,130,15,25 +34060,11,499,239,99,25,35 +34061,11,499,240,79,25,35 +34062,11,499,241,72,5,20 +34063,11,499,242,72,20,35 +34064,11,499,243,72,35,45 +34065,11,499,244,73,35,45 +34066,11,499,245,131,30,45 +34067,11,499,219,86,43,43 +34068,11,499,220,42,45,45 +34069,11,499,221,86,45,45 +34070,11,499,222,86,47,47 +34071,11,499,223,41,40,40 +34072,11,499,224,87,49,49 +34073,11,499,225,87,51,51 +34074,11,499,226,79,41,41 +34075,11,499,227,42,48,48 +34076,11,499,228,87,53,53 +34077,11,499,229,42,48,48 +34078,11,499,230,87,53,53 +34079,11,500,219,165,9,9 +34080,11,500,220,14,9,9 +34081,11,500,221,165,14,14 +34082,11,500,222,10,6,6 +34083,11,500,223,13,6,6 +34084,11,500,224,214,15,15 +34085,11,500,225,11,9,9 +34086,11,500,226,214,20,20 +34087,11,500,227,167,9,9 +34088,11,500,228,214,25,25 +34089,11,500,229,167,14,14 +34090,11,500,230,214,30,30 +34091,11,501,219,92,40,40 +34092,11,501,220,41,37,37 +34093,11,501,221,93,44,44 +34094,11,501,222,93,46,46 +34095,11,501,223,42,41,41 +34096,11,501,224,42,43,43 +34097,11,501,225,92,38,38 +34098,11,501,226,93,48,48 +34099,11,501,227,93,50,50 +34100,11,501,228,200,22,22 +34101,11,501,229,93,52,52 +34102,11,501,230,200,22,22 +34103,11,502,219,92,40,40 +34104,11,502,220,41,37,37 +34105,11,502,221,93,44,44 +34106,11,502,222,93,46,46 +34107,11,502,223,42,41,41 +34108,11,502,224,42,43,43 +34109,11,502,225,92,38,38 +34110,11,502,226,93,48,48 +34111,11,502,227,93,50,50 +34112,11,502,228,200,22,22 +34113,11,502,229,93,52,52 +34114,11,502,230,200,22,22 +34115,11,503,219,92,40,40 +34116,11,503,220,41,37,37 +34117,11,503,221,93,44,44 +34118,11,503,222,93,46,46 +34119,11,503,223,42,41,41 +34120,11,503,224,42,43,43 +34121,11,503,225,92,38,38 +34122,11,503,226,93,48,48 +34123,11,503,227,93,50,50 +34124,11,503,228,200,22,22 +34125,11,503,229,93,52,52 +34126,11,503,230,200,22,22 +34127,11,504,219,92,40,40 +34128,11,504,220,41,37,37 +34129,11,504,221,93,44,44 +34130,11,504,222,93,46,46 +34131,11,504,223,42,41,41 +34132,11,504,224,42,43,43 +34133,11,504,225,92,38,38 +34134,11,504,226,93,48,48 +34135,11,504,227,93,50,50 +34136,11,504,228,200,22,22 +34137,11,504,229,93,52,52 +34138,11,504,230,200,22,22 +34139,11,505,219,92,40,40 +34140,11,505,220,41,37,37 +34141,11,505,221,93,44,44 +34142,11,505,222,93,46,46 +34143,11,505,223,42,41,41 +34144,11,505,224,42,43,43 +34145,11,505,225,92,38,38 +34146,11,505,226,93,48,48 +34147,11,505,227,93,50,50 +34148,11,505,228,200,22,22 +34149,11,505,229,93,52,52 +34150,11,505,230,200,22,22 +34151,11,506,219,92,40,40 +34152,11,506,220,41,37,37 +34153,11,506,221,93,44,44 +34154,11,506,222,93,46,46 +34155,11,506,223,42,41,41 +34156,11,506,224,42,43,43 +34157,11,506,225,92,38,38 +34158,11,506,226,93,48,48 +34159,11,506,227,93,50,50 +34160,11,506,228,200,22,22 +34161,11,506,229,93,52,52 +34162,11,506,230,200,22,22 +34163,11,507,219,92,40,40 +34164,11,507,220,41,37,37 +34165,11,507,221,93,44,44 +34166,11,507,222,93,46,46 +34167,11,507,223,42,41,41 +34168,11,507,224,42,43,43 +34169,11,507,225,92,38,38 +34170,11,507,226,93,48,48 +34171,11,507,227,93,50,50 +34172,11,507,228,200,22,22 +34173,11,507,229,93,52,52 +34174,11,507,230,200,22,22 +34175,11,508,219,92,40,40 +34176,11,508,220,41,37,37 +34177,11,508,221,93,44,44 +34178,11,508,222,93,46,46 +34179,11,508,223,42,41,41 +34180,11,508,224,42,43,43 +34181,11,508,225,92,38,38 +34182,11,508,226,93,48,48 +34183,11,508,227,93,50,50 +34184,11,508,228,200,22,22 +34185,11,508,229,93,52,52 +34186,11,508,230,200,22,22 +34187,11,509,219,92,40,40 +34188,11,509,220,41,37,37 +34189,11,509,221,93,44,44 +34190,11,509,222,93,46,46 +34191,11,509,223,42,41,41 +34192,11,509,224,42,43,43 +34193,11,509,225,92,38,38 +34194,11,509,226,93,48,48 +34195,11,509,227,93,50,50 +34196,11,509,228,200,22,22 +34197,11,509,229,93,52,52 +34198,11,509,230,200,22,22 +34199,11,510,219,92,40,40 +34200,11,510,220,41,37,37 +34201,11,510,221,93,44,44 +34202,11,510,222,93,46,46 +34203,11,510,223,42,41,41 +34204,11,510,224,42,43,43 +34205,11,510,225,92,38,38 +34206,11,510,226,93,48,48 +34207,11,510,227,93,50,50 +34208,11,510,228,200,22,22 +34209,11,510,229,93,52,52 +34210,11,510,230,200,22,22 +34211,11,511,219,92,40,40 +34212,11,511,220,41,37,37 +34213,11,511,221,93,44,44 +34214,11,511,222,93,46,46 +34215,11,511,223,42,41,41 +34216,11,511,224,200,15,15 +34217,11,511,225,200,20,20 +34218,11,511,226,93,48,48 +34219,11,511,227,93,50,50 +34220,11,511,228,200,22,22 +34221,11,511,229,93,52,52 +34222,11,511,230,200,22,22 +34223,11,512,231,98,5,15 +34224,11,512,232,129,5,15 +34225,11,512,233,98,5,15 +34226,11,512,234,129,5,5 +34227,11,512,235,129,5,5 +34228,11,512,246,74,5,20 +34229,11,512,247,74,10,20 +34230,11,512,248,74,15,30 +34231,11,512,249,75,25,40 +34232,11,512,250,75,30,40 +34233,11,512,236,98,15,25 +34234,11,512,237,98,15,25 +34235,11,512,238,130,15,25 +34236,11,512,239,99,25,35 +34237,11,512,240,79,25,35 +34238,11,512,241,72,5,20 +34239,11,512,242,72,20,35 +34240,11,512,243,72,35,40 +34241,11,512,244,73,35,40 +34242,11,512,245,73,35,40 +34243,11,512,219,21,32,32 +34244,11,512,220,77,34,34 +34245,11,512,221,22,36,36 +34246,11,512,222,77,31,31 +34247,11,512,223,74,31,31 +34248,11,512,224,52,31,31 +34249,11,512,225,21,30,30 +34250,11,512,226,79,34,34 +34251,11,512,227,78,37,37 +34252,11,512,228,53,37,37 +34253,11,512,229,78,40,40 +34254,11,512,230,53,40,40 +34255,11,513,231,98,5,15 +34256,11,513,232,129,5,15 +34257,11,513,233,98,5,15 +34258,11,513,234,129,5,5 +34259,11,513,235,129,5,5 +34260,11,513,236,98,15,25 +34261,11,513,237,98,15,25 +34262,11,513,238,130,15,25 +34263,11,513,239,99,25,35 +34264,11,513,240,79,25,35 +34265,11,513,241,72,5,20 +34266,11,513,242,72,20,35 +34267,11,513,243,72,35,40 +34268,11,513,244,73,35,40 +34269,11,513,245,73,35,40 +34270,11,513,219,21,32,32 +34271,11,513,220,114,33,33 +34272,11,513,221,21,31,31 +34273,11,513,222,114,35,35 +34274,11,513,223,22,36,36 +34275,11,513,224,52,31,31 +34276,11,513,225,22,38,38 +34277,11,513,226,79,31,31 +34278,11,513,227,22,40,40 +34279,11,513,228,53,37,37 +34280,11,513,229,22,40,40 +34281,11,513,230,53,40,40 +34282,11,514,231,60,5,15 +34283,11,514,232,129,5,15 +34284,11,514,233,118,5,15 +34285,11,514,234,129,5,5 +34286,11,514,235,129,5,5 +34287,11,514,236,60,15,25 +34288,11,514,237,61,20,30 +34289,11,514,238,130,15,25 +34290,11,514,239,79,15,25 +34291,11,514,240,79,25,35 +34292,11,514,241,79,5,20 +34293,11,514,242,79,20,35 +34294,11,514,243,79,35,40 +34295,11,514,244,80,35,40 +34296,11,514,245,80,35,40 +34297,11,514,219,21,31,31 +34298,11,514,220,69,30,30 +34299,11,514,221,69,32,32 +34300,11,514,222,70,36,36 +34301,11,514,223,22,36,36 +34302,11,514,224,52,31,31 +34303,11,514,225,70,38,38 +34304,11,514,226,79,31,31 +34305,11,514,227,80,37,37 +34306,11,514,228,53,37,37 +34307,11,514,229,80,40,40 +34308,11,514,230,53,40,40 +34309,11,515,231,98,5,15 +34310,11,515,232,129,5,15 +34311,11,515,233,98,5,15 +34312,11,515,234,129,5,5 +34313,11,515,235,129,5,5 +34314,11,515,236,98,15,25 +34315,11,515,237,98,15,25 +34316,11,515,238,130,15,25 +34317,11,515,239,99,25,35 +34318,11,515,240,79,25,35 +34319,11,515,241,72,5,20 +34320,11,515,242,72,20,35 +34321,11,515,243,72,35,40 +34322,11,515,244,73,35,40 +34323,11,515,245,73,35,40 +34324,11,515,219,16,32,32 +34325,11,515,220,69,31,31 +34326,11,515,221,16,29,29 +34327,11,515,222,70,36,36 +34328,11,515,223,17,34,34 +34329,11,515,224,52,31,31 +34330,11,515,225,48,34,34 +34331,11,515,226,79,31,31 +34332,11,515,227,17,37,37 +34333,11,515,228,53,37,37 +34334,11,515,229,17,40,40 +34335,11,515,230,53,40,40 +34336,11,516,219,206,15,15 +34337,11,516,220,206,15,15 +34338,11,516,221,206,10,10 +34339,11,516,222,206,10,10 +34340,11,516,223,206,20,20 +34341,11,516,224,206,20,20 +34342,11,516,225,206,25,25 +34343,11,516,226,206,30,30 +34344,11,516,227,206,25,25 +34345,11,516,228,206,30,30 +34346,11,516,229,206,5,5 +34347,11,516,230,206,35,35 +34348,11,517,231,98,5,15 +34349,11,517,232,129,5,15 +34350,11,517,233,98,5,15 +34351,11,517,234,129,5,5 +34352,11,517,235,129,5,5 +34353,11,517,236,98,15,25 +34354,11,517,237,223,15,25 +34355,11,517,238,130,15,25 +34356,11,517,239,99,25,35 +34357,11,517,240,79,25,35 +34358,11,517,241,72,5,35 +34359,11,517,242,187,5,15 +34360,11,517,243,72,35,40 +34361,11,517,244,73,35,40 +34362,11,517,245,73,35,40 +34363,11,518,231,98,5,15 +34364,11,518,232,129,5,15 +34365,11,518,233,98,5,15 +34366,11,518,234,129,5,5 +34367,11,518,235,129,5,5 +34368,11,518,236,98,15,25 +34369,11,518,237,223,15,25 +34370,11,518,238,130,15,25 +34371,11,518,239,99,25,35 +34372,11,518,240,79,25,35 +34373,11,518,241,72,5,35 +34374,11,518,242,187,5,15 +34375,11,518,243,72,35,40 +34376,11,518,244,73,35,40 +34377,11,518,245,73,35,40 +34378,11,519,231,98,5,15 +34379,11,519,232,129,5,15 +34380,11,519,233,98,5,15 +34381,11,519,234,129,5,5 +34382,11,519,235,129,5,5 +34383,11,519,236,98,15,25 +34384,11,519,237,223,15,25 +34385,11,519,238,130,15,25 +34386,11,519,239,99,25,35 +34387,11,519,240,79,25,35 +34388,11,519,241,72,5,35 +34389,11,519,242,187,5,15 +34390,11,519,243,72,35,40 +34391,11,519,244,73,35,40 +34392,11,519,245,73,35,40 +34393,11,519,219,16,44,44 +34394,11,519,220,161,10,10 +34395,11,519,221,17,48,48 +34396,11,519,222,187,10,10 +34397,11,519,223,161,15,15 +34398,11,519,224,52,41,41 +34399,11,519,225,187,15,15 +34400,11,519,226,79,41,41 +34401,11,519,227,17,50,50 +34402,11,519,228,53,47,47 +34403,11,519,229,17,50,50 +34404,11,519,230,53,50,50 +34405,11,520,231,98,5,15 +34406,11,520,232,129,5,15 +34407,11,520,233,98,5,15 +34408,11,520,234,129,5,5 +34409,11,520,235,129,5,5 +34410,11,520,236,98,15,25 +34411,11,520,237,223,15,25 +34412,11,520,238,130,15,25 +34413,11,520,239,99,25,35 +34414,11,520,240,79,25,35 +34415,11,520,241,72,5,35 +34416,11,520,242,187,5,15 +34417,11,520,243,72,35,40 +34418,11,520,244,73,35,40 +34419,11,520,245,73,35,40 +34420,11,520,219,187,10,10 +34421,11,520,220,187,12,12 +34422,11,520,221,187,8,8 +34423,11,520,222,187,14,14 +34424,11,520,223,187,10,10 +34425,11,520,224,187,12,12 +34426,11,520,225,187,16,16 +34427,11,520,226,187,6,6 +34428,11,520,227,187,8,8 +34429,11,520,228,187,14,14 +34430,11,520,229,187,8,8 +34431,11,520,230,187,14,14 +34432,11,521,231,98,5,15 +34433,11,521,232,129,5,15 +34434,11,521,233,98,5,15 +34435,11,521,234,129,5,5 +34436,11,521,235,129,5,5 +34437,11,521,236,98,15,25 +34438,11,521,237,223,15,25 +34439,11,521,238,130,15,25 +34440,11,521,239,99,25,35 +34441,11,521,240,79,25,35 +34442,11,521,241,72,5,20 +34443,11,521,242,72,20,35 +34444,11,521,243,72,35,40 +34445,11,521,244,73,35,40 +34446,11,521,245,73,35,40 +34447,11,522,231,98,5,15 +34448,11,522,232,129,5,15 +34449,11,522,233,98,5,15 +34450,11,522,234,129,5,5 +34451,11,522,235,129,5,5 +34452,11,522,236,98,15,25 +34453,11,522,237,223,15,25 +34454,11,522,238,130,15,25 +34455,11,522,239,99,25,35 +34456,11,522,240,79,25,35 +34457,11,522,241,72,5,20 +34458,11,522,242,72,20,35 +34459,11,522,243,72,35,40 +34460,11,522,244,73,35,40 +34461,11,522,245,73,35,40 +34462,11,523,231,98,5,15 +34463,11,523,232,129,5,15 +34464,11,523,233,98,5,15 +34465,11,523,234,129,5,5 +34466,11,523,235,129,5,5 +34467,11,523,236,98,15,25 +34468,11,523,237,223,15,25 +34469,11,523,238,130,15,25 +34470,11,523,239,99,25,35 +34471,11,523,240,79,25,35 +34472,11,523,241,72,5,20 +34473,11,523,242,72,20,35 +34474,11,523,243,72,35,40 +34475,11,523,244,73,35,40 +34476,11,523,245,73,35,40 +34477,11,523,219,21,44,44 +34478,11,523,220,161,10,10 +34479,11,523,221,69,44,44 +34480,11,523,222,22,48,48 +34481,11,523,223,161,15,15 +34482,11,523,224,52,41,41 +34483,11,523,225,70,48,48 +34484,11,523,226,79,41,41 +34485,11,523,227,22,50,50 +34486,11,523,228,53,47,47 +34487,11,523,229,22,50,50 +34488,11,523,230,53,50,50 +34489,11,524,231,60,5,15 +34490,11,524,232,129,5,15 +34491,11,524,233,118,5,15 +34492,11,524,234,129,5,5 +34493,11,524,235,129,5,5 +34494,11,524,236,60,15,25 +34495,11,524,237,61,20,30 +34496,11,524,238,130,15,25 +34497,11,524,239,79,15,25 +34498,11,524,240,79,25,35 +34499,11,524,241,183,5,20 +34500,11,524,242,183,10,20 +34501,11,524,243,183,15,25 +34502,11,524,244,183,20,25 +34503,11,524,245,183,20,25 +34504,11,524,219,177,15,15 +34505,11,524,220,21,44,44 +34506,11,524,221,193,18,18 +34507,11,524,222,183,15,15 +34508,11,524,223,22,49,49 +34509,11,524,224,52,43,43 +34510,11,524,225,202,25,25 +34511,11,524,226,79,41,41 +34512,11,524,227,177,20,20 +34513,11,524,228,53,49,49 +34514,11,524,229,177,20,20 +34515,11,524,230,53,52,52 +34516,11,525,231,98,5,15 +34517,11,525,232,129,5,15 +34518,11,525,233,98,5,15 +34519,11,525,234,129,5,5 +34520,11,525,235,129,5,5 +34521,11,525,236,98,15,25 +34522,11,525,237,223,15,25 +34523,11,525,238,130,15,25 +34524,11,525,239,99,25,35 +34525,11,525,240,79,25,35 +34526,11,525,241,72,5,20 +34527,11,525,242,72,20,35 +34528,11,525,243,226,35,40 +34529,11,525,244,73,35,40 +34530,11,525,245,73,35,40 +34531,11,526,219,21,44,44 +34532,11,526,220,161,10,10 +34533,11,526,221,231,10,10 +34534,11,526,222,22,48,48 +34535,11,526,223,161,15,15 +34536,11,526,224,52,41,41 +34537,11,526,225,22,50,50 +34538,11,526,226,79,41,41 +34539,11,526,227,231,15,15 +34540,11,526,228,53,47,47 +34541,11,526,229,231,15,15 +34542,11,526,230,53,50,50 +34543,11,527,246,74,25,35 +34544,11,527,247,75,30,45 +34545,11,527,248,75,35,50 +34546,11,527,249,74,30,40 +34547,11,527,250,74,30,40 +34548,11,527,219,74,46,46 +34549,11,527,220,231,15,15 +34550,11,527,221,104,46,46 +34551,11,527,222,22,50,50 +34552,11,527,223,105,52,52 +34553,11,527,224,52,43,43 +34554,11,527,225,95,54,54 +34555,11,527,226,22,50,50 +34556,11,527,227,246,15,15 +34557,11,527,228,53,49,49 +34558,11,527,229,246,20,20 +34559,11,527,230,53,52,52 +34560,11,528,231,98,5,15 +34561,11,528,232,129,5,15 +34562,11,528,233,98,5,15 +34563,11,528,234,129,5,5 +34564,11,528,235,129,5,5 +34565,11,528,236,98,15,25 +34566,11,528,237,223,15,25 +34567,11,528,238,130,15,25 +34568,11,528,239,99,25,35 +34569,11,528,240,79,25,35 +34570,11,528,241,72,5,20 +34571,11,528,242,72,20,35 +34572,11,528,243,226,35,40 +34573,11,528,244,73,35,40 +34574,11,528,245,73,35,40 +34575,11,529,219,16,3,3 +34576,11,529,220,19,3,3 +34577,11,529,221,16,3,3 +34578,11,529,222,19,3,3 +34579,11,529,223,16,2,2 +34580,11,529,224,19,2,2 +34581,11,529,225,16,3,3 +34582,11,529,226,19,3,3 +34583,11,529,227,16,4,4 +34584,11,529,228,19,4,4 +34585,11,529,229,16,5,5 +34586,11,529,230,19,4,4 +34587,11,530,219,19,3,3 +34588,11,530,220,16,3,3 +34589,11,530,221,19,4,4 +34590,11,530,222,16,4,4 +34591,11,530,223,19,2,2 +34592,11,530,224,16,2,2 +34593,11,530,225,19,5,5 +34594,11,530,226,16,5,5 +34595,11,530,227,10,4,4 +34596,11,530,228,13,4,4 +34597,11,530,229,10,5,5 +34598,11,530,230,13,5,5 +34599,11,531,219,21,6,6 +34600,11,531,220,16,6,6 +34601,11,531,221,21,7,7 +34602,11,531,222,56,7,7 +34603,11,531,223,29,6,6 +34604,11,531,224,16,7,7 +34605,11,531,225,21,8,8 +34606,11,531,226,39,3,3 +34607,11,531,227,29,7,7 +34608,11,531,228,39,5,5 +34609,11,531,229,32,6,6 +34610,11,531,230,39,7,7 +34611,11,532,231,98,5,15 +34612,11,532,232,129,5,15 +34613,11,532,233,116,5,15 +34614,11,532,234,129,5,5 +34615,11,532,235,129,5,5 +34616,11,532,236,98,15,25 +34617,11,532,237,98,15,25 +34618,11,532,238,130,15,25 +34619,11,532,239,98,25,35 +34620,11,532,240,79,25,35 +34621,11,532,241,72,5,10 +34622,11,532,242,72,10,20 +34623,11,532,243,72,20,30 +34624,11,532,244,72,30,35 +34625,11,532,245,72,35,40 +34626,11,532,219,21,10,10 +34627,11,532,220,19,10,10 +34628,11,532,221,27,6,6 +34629,11,532,222,27,10,10 +34630,11,532,223,21,8,8 +34631,11,532,224,19,8,8 +34632,11,532,225,21,12,12 +34633,11,532,226,19,12,12 +34634,11,532,227,56,10,10 +34635,11,532,228,27,8,8 +34636,11,532,229,56,12,12 +34637,11,532,230,27,12,12 +34638,11,533,219,52,10,10 +34639,11,533,220,16,13,13 +34640,11,533,221,69,13,13 +34641,11,533,222,52,12,12 +34642,11,533,223,69,15,15 +34643,11,533,224,16,15,15 +34644,11,533,225,69,16,16 +34645,11,533,226,16,16,16 +34646,11,533,227,16,15,15 +34647,11,533,228,52,14,14 +34648,11,533,229,16,15,15 +34649,11,533,230,52,16,16 +34650,11,534,231,60,5,15 +34651,11,534,232,129,5,15 +34652,11,534,233,118,5,15 +34653,11,534,234,129,5,5 +34654,11,534,235,129,5,5 +34655,11,534,236,60,15,25 +34656,11,534,237,61,20,30 +34657,11,534,238,130,15,25 +34658,11,534,239,79,15,25 +34659,11,534,240,79,25,35 +34660,11,534,241,79,20,25 +34661,11,534,242,79,20,25 +34662,11,534,243,79,25,30 +34663,11,534,244,79,30,35 +34664,11,534,245,79,35,40 +34665,11,534,219,52,10,10 +34666,11,534,220,16,13,13 +34667,11,534,221,69,13,13 +34668,11,534,222,52,12,12 +34669,11,534,223,69,15,15 +34670,11,534,224,16,15,15 +34671,11,534,225,69,16,16 +34672,11,534,226,16,16,16 +34673,11,534,227,16,15,15 +34674,11,534,228,52,14,14 +34675,11,534,229,16,15,15 +34676,11,534,230,52,16,16 +34677,11,535,219,16,19,19 +34678,11,535,220,52,17,17 +34679,11,535,221,69,19,19 +34680,11,535,222,52,18,18 +34681,11,535,223,16,22,22 +34682,11,535,224,69,22,22 +34683,11,535,225,37,18,18 +34684,11,535,226,37,20,20 +34685,11,535,227,52,17,17 +34686,11,535,228,52,19,19 +34687,11,535,229,52,17,17 +34688,11,535,230,52,20,20 +34689,11,536,219,16,18,18 +34690,11,536,220,52,18,18 +34691,11,536,221,37,16,16 +34692,11,536,222,16,20,20 +34693,11,536,223,52,20,20 +34694,11,536,224,27,17,17 +34695,11,536,225,37,17,17 +34696,11,536,226,27,19,19 +34697,11,536,227,27,17,17 +34698,11,536,228,37,15,15 +34699,11,536,229,27,17,17 +34700,11,536,230,37,18,18 +34701,11,537,219,21,16,16 +34702,11,537,220,19,16,16 +34703,11,537,221,27,11,11 +34704,11,537,222,27,15,15 +34705,11,537,223,21,13,13 +34706,11,537,224,19,14,14 +34707,11,537,225,21,17,17 +34708,11,537,226,19,17,17 +34709,11,537,227,19,14,14 +34710,11,537,228,27,13,13 +34711,11,537,229,19,14,14 +34712,11,537,230,27,17,17 +34713,11,538,231,98,5,15 +34714,11,538,232,129,5,15 +34715,11,538,233,116,5,15 +34716,11,538,234,129,5,5 +34717,11,538,235,129,5,5 +34718,11,538,236,98,15,25 +34719,11,538,237,98,15,25 +34720,11,538,238,130,15,25 +34721,11,538,239,98,25,35 +34722,11,538,240,79,25,35 +34723,11,538,241,72,5,10 +34724,11,538,242,72,10,20 +34725,11,538,243,72,20,30 +34726,11,538,244,72,30,35 +34727,11,538,245,72,35,40 +34728,11,538,219,21,16,16 +34729,11,538,220,100,16,16 +34730,11,538,221,27,11,11 +34731,11,538,222,27,15,15 +34732,11,538,223,21,13,13 +34733,11,538,224,100,14,14 +34734,11,538,225,21,17,17 +34735,11,538,226,100,17,17 +34736,11,538,227,100,14,14 +34737,11,538,228,27,13,13 +34738,11,538,229,100,14,14 +34739,11,538,230,27,17,17 +34740,11,539,231,98,5,15 +34741,11,539,232,129,5,15 +34742,11,539,233,116,5,15 +34743,11,539,234,129,5,5 +34744,11,539,235,129,5,5 +34745,11,539,236,98,15,25 +34746,11,539,237,98,15,25 +34747,11,539,238,130,15,25 +34748,11,539,239,98,25,35 +34749,11,539,240,79,25,35 +34750,11,539,241,72,5,10 +34751,11,539,242,72,10,20 +34752,11,539,243,72,20,30 +34753,11,539,244,72,30,35 +34754,11,539,245,72,35,40 +34755,11,539,219,27,14,14 +34756,11,539,220,21,15,15 +34757,11,539,221,27,12,12 +34758,11,539,222,21,13,13 +34759,11,539,223,96,11,11 +34760,11,539,224,96,13,13 +34761,11,539,225,27,15,15 +34762,11,539,226,21,17,17 +34763,11,539,227,27,12,12 +34764,11,539,228,96,15,15 +34765,11,539,229,27,12,12 +34766,11,539,230,96,15,15 +34767,11,540,231,98,5,15 +34768,11,540,232,129,5,15 +34769,11,540,233,116,5,15 +34770,11,540,234,129,5,5 +34771,11,540,235,129,5,5 +34772,11,540,236,98,15,25 +34773,11,540,237,98,15,25 +34774,11,540,238,130,15,25 +34775,11,540,239,98,25,35 +34776,11,540,240,79,25,35 +34777,11,540,241,72,5,10 +34778,11,540,242,72,10,20 +34779,11,540,243,72,20,30 +34780,11,540,244,72,30,35 +34781,11,540,245,72,35,40 +34782,11,540,219,69,24,24 +34783,11,540,220,48,24,24 +34784,11,540,221,69,22,22 +34785,11,540,222,16,23,23 +34786,11,540,223,16,25,25 +34787,11,540,224,48,26,26 +34788,11,540,225,69,26,26 +34789,11,540,226,16,27,27 +34790,11,540,227,16,23,23 +34791,11,540,228,70,28,28 +34792,11,540,229,16,23,23 +34793,11,540,230,70,30,30 +34794,11,541,231,98,5,15 +34795,11,541,232,129,5,15 +34796,11,541,233,116,5,15 +34797,11,541,234,129,5,5 +34798,11,541,235,129,5,5 +34799,11,541,236,98,15,25 +34800,11,541,237,98,15,25 +34801,11,541,238,130,15,25 +34802,11,541,239,98,25,35 +34803,11,541,240,79,25,35 +34804,11,541,241,72,5,10 +34805,11,541,242,72,10,20 +34806,11,541,243,72,20,30 +34807,11,541,244,72,30,35 +34808,11,541,245,72,35,40 +34809,11,541,219,69,24,24 +34810,11,541,220,48,24,24 +34811,11,541,221,69,22,22 +34812,11,541,222,16,27,27 +34813,11,541,223,16,25,25 +34814,11,541,224,48,26,26 +34815,11,541,225,69,26,26 +34816,11,541,226,132,25,25 +34817,11,541,227,17,29,29 +34818,11,541,228,70,28,28 +34819,11,541,229,17,29,29 +34820,11,541,230,70,30,30 +34821,11,542,219,69,24,24 +34822,11,542,220,48,24,24 +34823,11,542,221,69,22,22 +34824,11,542,222,132,23,23 +34825,11,542,223,16,27,27 +34826,11,542,224,48,26,26 +34827,11,542,225,69,26,26 +34828,11,542,226,70,30,30 +34829,11,542,227,132,23,23 +34830,11,542,228,17,29,29 +34831,11,542,229,132,23,23 +34832,11,542,230,17,29,29 +34833,11,543,219,69,24,24 +34834,11,543,220,48,24,24 +34835,11,543,221,69,22,22 +34836,11,543,222,16,27,27 +34837,11,543,223,16,25,25 +34838,11,543,224,48,26,26 +34839,11,543,225,69,26,26 +34840,11,543,226,132,25,25 +34841,11,543,227,17,29,29 +34842,11,543,228,70,28,28 +34843,11,543,229,17,29,29 +34844,11,543,230,70,30,30 +34845,11,544,219,21,20,20 +34846,11,544,220,84,18,18 +34847,11,544,221,19,18,18 +34848,11,544,222,19,20,20 +34849,11,544,223,21,22,22 +34850,11,544,224,84,20,20 +34851,11,544,225,19,22,22 +34852,11,544,226,84,22,22 +34853,11,544,227,19,18,18 +34854,11,544,228,20,23,23 +34855,11,544,229,19,18,18 +34856,11,544,230,20,25,25 +34857,11,545,219,21,20,20 +34858,11,545,220,84,24,24 +34859,11,545,221,21,22,22 +34860,11,545,222,84,26,26 +34861,11,545,223,20,25,25 +34862,11,545,224,20,27,27 +34863,11,545,225,84,28,28 +34864,11,545,226,20,29,29 +34865,11,545,227,19,22,22 +34866,11,545,228,22,25,25 +34867,11,545,229,19,22,22 +34868,11,545,230,22,27,27 +34869,11,546,219,21,20,20 +34870,11,546,220,84,24,24 +34871,11,546,221,21,22,22 +34872,11,546,222,84,26,26 +34873,11,546,223,20,25,25 +34874,11,546,224,22,25,25 +34875,11,546,225,84,28,28 +34876,11,546,226,20,29,29 +34877,11,546,227,19,22,22 +34878,11,546,228,22,27,27 +34879,11,546,229,19,22,22 +34880,11,546,230,22,29,29 +34881,11,547,231,98,5,15 +34882,11,547,232,129,5,15 +34883,11,547,233,116,5,15 +34884,11,547,234,129,5,5 +34885,11,547,235,129,5,5 +34886,11,547,236,98,15,25 +34887,11,547,237,98,15,25 +34888,11,547,238,130,15,25 +34889,11,547,239,99,25,35 +34890,11,547,240,79,25,35 +34891,11,547,241,72,5,10 +34892,11,547,242,72,10,20 +34893,11,547,243,72,20,30 +34894,11,547,244,72,30,35 +34895,11,547,245,72,35,40 +34896,11,548,231,98,5,15 +34897,11,548,232,129,5,15 +34898,11,548,233,116,5,15 +34899,11,548,234,129,5,5 +34900,11,548,235,129,5,5 +34901,11,548,236,98,15,25 +34902,11,548,237,98,15,25 +34903,11,548,238,130,15,25 +34904,11,548,239,99,25,35 +34905,11,548,240,79,25,35 +34906,11,548,241,72,5,10 +34907,11,548,242,72,10,20 +34908,11,548,243,72,20,30 +34909,11,548,244,72,30,35 +34910,11,548,245,72,35,40 +34911,11,549,231,98,5,15 +34912,11,549,232,129,5,15 +34913,11,549,233,116,5,15 +34914,11,549,234,129,5,5 +34915,11,549,235,129,5,5 +34916,11,549,236,98,15,25 +34917,11,549,237,98,15,25 +34918,11,549,238,130,15,25 +34919,11,549,239,99,25,35 +34920,11,549,240,79,25,35 +34921,11,549,241,72,5,10 +34922,11,549,242,72,10,20 +34923,11,549,243,72,20,30 +34924,11,549,244,72,30,35 +34925,11,549,245,72,35,40 +34926,11,549,219,114,22,22 +34927,11,549,220,114,23,23 +34928,11,549,221,114,24,24 +34929,11,549,222,114,21,21 +34930,11,549,223,114,25,25 +34931,11,549,224,114,20,20 +34932,11,549,225,114,19,19 +34933,11,549,226,114,26,26 +34934,11,549,227,114,18,18 +34935,11,549,228,114,27,27 +34936,11,549,229,114,17,17 +34937,11,549,230,114,28,28 +34938,11,550,231,60,5,15 +34939,11,550,232,129,5,15 +34940,11,550,233,118,5,15 +34941,11,550,234,129,5,5 +34942,11,550,235,129,5,5 +34943,11,550,236,60,15,25 +34944,11,550,237,61,20,30 +34945,11,550,238,130,15,25 +34946,11,550,239,79,15,25 +34947,11,550,240,79,25,35 +34948,11,550,241,79,20,25 +34949,11,550,242,79,20,25 +34950,11,550,243,79,25,30 +34951,11,550,244,79,30,35 +34952,11,550,245,79,35,40 +34953,11,550,219,19,3,3 +34954,11,550,220,56,3,3 +34955,11,550,221,19,4,4 +34956,11,550,222,56,4,4 +34957,11,550,223,19,2,2 +34958,11,550,224,56,2,2 +34959,11,550,225,21,3,3 +34960,11,550,226,21,5,5 +34961,11,550,227,19,5,5 +34962,11,550,228,56,5,5 +34963,11,550,229,19,5,5 +34964,11,550,230,56,5,5 +34965,11,551,231,60,5,15 +34966,11,551,232,129,5,15 +34967,11,551,233,118,5,15 +34968,11,551,234,129,5,5 +34969,11,551,235,129,5,5 +34970,11,551,236,60,15,25 +34971,11,551,237,61,20,30 +34972,11,551,238,130,15,25 +34973,11,551,239,79,15,25 +34974,11,551,240,79,25,35 +34975,11,551,241,79,20,25 +34976,11,551,242,79,20,25 +34977,11,551,243,79,25,30 +34978,11,551,244,79,30,35 +34979,11,551,245,79,35,40 +34980,11,551,219,56,32,32 +34981,11,551,220,22,40,40 +34982,11,551,221,56,34,34 +34983,11,551,222,21,34,34 +34984,11,551,223,27,32,32 +34985,11,551,224,27,34,34 +34986,11,551,225,57,42,42 +34987,11,551,226,28,44,44 +34988,11,551,227,21,32,32 +34989,11,551,228,22,42,42 +34990,11,551,229,21,32,32 +34991,11,551,230,22,44,44 +34992,11,552,231,98,5,15 +34993,11,552,232,129,5,15 +34994,11,552,233,116,5,15 +34995,11,552,234,129,5,5 +34996,11,552,235,129,5,5 +34997,11,552,236,98,15,25 +34998,11,552,237,98,15,25 +34999,11,552,238,130,15,25 +35000,11,552,239,98,25,35 +35001,11,552,240,79,25,35 +35002,11,552,241,72,5,10 +35003,11,552,242,72,10,20 +35004,11,552,243,72,20,30 +35005,11,552,244,72,30,35 +35006,11,552,245,72,35,40 +35007,11,552,219,13,7,7 +35008,11,552,220,10,7,7 +35009,11,552,221,16,11,11 +35010,11,552,222,69,12,12 +35011,11,552,223,69,13,13 +35012,11,552,224,63,10,10 +35013,11,552,225,16,13,13 +35014,11,552,226,69,14,14 +35015,11,552,227,11,8,8 +35016,11,552,228,63,8,8 +35017,11,552,229,14,8,8 +35018,11,552,230,63,12,12 +35019,11,553,231,60,5,15 +35020,11,553,232,129,5,15 +35021,11,553,233,118,5,15 +35022,11,553,234,129,5,5 +35023,11,553,235,129,5,5 +35024,11,553,236,60,15,25 +35025,11,553,237,61,20,30 +35026,11,553,238,130,15,25 +35027,11,553,239,79,15,25 +35028,11,553,240,79,25,35 +35029,11,553,241,79,20,25 +35030,11,553,242,79,20,25 +35031,11,553,243,79,25,30 +35032,11,553,244,79,30,35 +35033,11,553,245,79,35,40 +35034,11,553,219,13,8,8 +35035,11,553,220,10,8,8 +35036,11,553,221,16,13,13 +35037,11,553,222,69,14,14 +35038,11,553,223,69,13,13 +35039,11,553,224,63,11,11 +35040,11,553,225,16,11,11 +35041,11,553,226,69,12,12 +35042,11,553,227,11,9,9 +35043,11,553,228,63,9,9 +35044,11,553,229,14,9,9 +35045,11,553,230,63,13,13 +35046,11,554,231,98,5,15 +35047,11,554,232,129,5,15 +35048,11,554,233,116,5,15 +35049,11,554,234,129,5,10 +35050,11,554,235,129,5,10 +35051,11,554,236,98,15,25 +35052,11,554,237,120,15,25 +35053,11,554,238,130,15,25 +35054,11,554,239,99,25,35 +35055,11,554,240,79,25,35 +35056,11,554,241,72,5,10 +35057,11,554,242,72,10,20 +35058,11,554,243,72,20,30 +35059,11,554,244,72,30,35 +35060,11,554,245,72,35,40 +35061,11,555,231,60,5,15 +35062,11,555,232,129,5,15 +35063,11,555,233,118,5,15 +35064,11,555,234,129,5,5 +35065,11,555,235,129,5,5 +35066,11,555,236,60,15,25 +35067,11,555,237,61,20,30 +35068,11,555,238,130,15,25 +35069,11,555,239,79,15,25 +35070,11,555,240,79,25,35 +35071,11,555,241,79,20,25 +35072,11,555,242,79,20,25 +35073,11,555,243,79,25,30 +35074,11,555,244,79,30,35 +35075,11,555,245,79,35,40 +35076,11,556,231,98,5,15 +35077,11,556,232,129,5,15 +35078,11,556,233,116,5,15 +35079,11,556,234,129,5,5 +35080,11,556,235,129,5,5 +35081,11,556,236,98,15,25 +35082,11,556,237,98,15,25 +35083,11,556,238,130,15,25 +35084,11,556,239,98,25,35 +35085,11,556,240,79,25,35 +35086,11,556,241,72,5,10 +35087,11,556,242,72,10,20 +35088,11,556,243,72,20,30 +35089,11,556,244,72,30,35 +35090,11,556,245,72,35,40 +35091,11,557,231,98,5,15 +35092,11,557,232,129,5,15 +35093,11,557,233,116,5,15 +35094,11,557,234,129,5,5 +35095,11,557,235,129,5,5 +35096,11,557,236,98,15,25 +35097,11,557,237,120,15,25 +35098,11,557,238,130,15,25 +35099,11,557,239,116,25,35 +35100,11,557,240,79,25,35 +35101,11,557,241,72,5,10 +35102,11,557,242,72,10,20 +35103,11,557,243,72,20,30 +35104,11,557,244,72,30,35 +35105,11,557,245,72,35,40 +35106,11,558,231,129,5,15 +35107,11,558,232,129,5,15 +35108,11,558,233,129,5,15 +35109,11,558,234,129,5,5 +35110,11,558,235,129,5,5 +35111,11,558,236,129,15,25 +35112,11,558,237,129,15,25 +35113,11,558,238,129,15,25 +35114,11,558,239,129,25,35 +35115,11,558,240,88,30,40 +35116,11,558,241,79,5,10 +35117,11,558,242,79,10,20 +35118,11,558,243,79,20,30 +35119,11,558,244,79,30,40 +35120,11,558,245,109,30,40 +35121,11,559,231,118,5,15 +35122,11,559,232,129,5,15 +35123,11,559,233,60,5,15 +35124,11,559,234,129,5,5 +35125,11,559,235,129,5,5 +35126,11,559,236,118,15,25 +35127,11,559,237,119,20,30 +35128,11,559,238,130,15,25 +35129,11,559,239,79,15,25 +35130,11,559,240,79,25,35 +35131,11,559,241,79,20,25 +35132,11,559,242,79,20,25 +35133,11,559,243,79,25,30 +35134,11,559,244,79,30,35 +35135,11,559,245,79,35,40 +35136,11,560,231,98,5,15 +35137,11,560,232,129,5,15 +35138,11,560,233,116,5,15 +35139,11,560,234,129,5,5 +35140,11,560,235,129,5,5 +35141,11,560,236,98,15,25 +35142,11,560,237,120,15,25 +35143,11,560,238,130,15,25 +35144,11,560,239,80,25,35 +35145,11,560,240,79,25,35 +35146,11,560,241,72,5,10 +35147,11,560,242,72,10,20 +35148,11,560,243,72,20,30 +35149,11,560,244,72,30,35 +35150,11,560,245,72,35,40 +35151,11,561,231,98,5,15 +35152,11,561,232,129,5,15 +35153,11,561,233,98,5,15 +35154,11,561,234,129,5,5 +35155,11,561,235,129,5,5 +35156,11,561,236,98,15,25 +35157,11,561,237,120,15,25 +35158,11,561,238,130,15,25 +35159,11,561,239,99,25,35 +35160,11,561,240,79,25,35 +35161,11,561,241,72,5,20 +35162,11,561,242,72,20,35 +35163,11,561,243,72,35,40 +35164,11,561,244,73,35,40 +35165,11,561,245,73,35,40 +35166,11,562,231,60,5,15 +35167,11,562,232,129,5,15 +35168,11,562,233,118,5,15 +35169,11,562,234,129,5,5 +35170,11,562,235,129,5,5 +35171,11,562,236,60,15,25 +35172,11,562,237,61,20,30 +35173,11,562,238,130,15,25 +35174,11,562,239,79,15,25 +35175,11,562,240,79,25,35 +35176,11,562,241,183,5,15 +35177,11,562,242,79,5,35 +35178,11,562,243,183,15,25 +35179,11,562,244,183,15,25 +35180,11,562,245,183,15,25 +35181,11,563,231,98,5,15 +35182,11,563,232,129,5,15 +35183,11,563,233,98,5,15 +35184,11,563,234,129,5,5 +35185,11,563,235,129,5,5 +35186,11,563,236,98,15,25 +35187,11,563,237,120,15,25 +35188,11,563,238,130,15,25 +35189,11,563,239,99,25,35 +35190,11,563,240,79,25,35 +35191,11,563,241,72,5,35 +35192,11,563,242,187,5,15 +35193,11,563,243,72,35,40 +35194,11,563,244,73,35,40 +35195,11,563,245,73,35,40 +35196,11,564,219,41,10,10 +35197,11,564,220,41,12,12 +35198,11,564,221,41,8,8 +35199,11,564,222,41,14,14 +35200,11,564,223,41,10,10 +35201,11,564,224,41,12,12 +35202,11,564,225,41,16,16 +35203,11,564,226,41,6,6 +35204,11,564,227,41,8,8 +35205,11,564,228,41,14,14 +35206,11,564,229,41,8,8 +35207,11,564,230,41,14,14 +35208,11,565,219,179,7,7 +35209,11,565,220,179,9,9 +35210,11,565,221,179,5,5 +35211,11,565,222,179,11,11 +35212,11,565,223,179,7,7 +35213,11,565,224,179,9,9 +35214,11,565,225,179,13,13 +35215,11,565,226,179,3,3 +35216,11,565,227,179,5,5 +35217,11,565,228,179,11,11 +35218,11,565,229,179,5,5 +35219,11,565,230,179,11,11 +35220,11,566,219,204,23,23 +35221,11,566,220,204,25,25 +35222,11,566,221,204,22,22 +35223,11,566,222,204,27,27 +35224,11,566,223,204,23,23 +35225,11,566,224,204,25,25 +35226,11,566,225,204,29,29 +35227,11,566,226,204,19,19 +35228,11,566,227,204,21,21 +35229,11,566,228,204,27,27 +35230,11,566,229,204,21,21 +35231,11,566,230,204,27,27 +35232,11,567,219,228,16,16 +35233,11,567,220,228,18,18 +35234,11,567,221,228,14,14 +35235,11,567,222,228,20,20 +35236,11,567,223,228,16,16 +35237,11,567,224,228,18,18 +35238,11,567,225,228,22,22 +35239,11,567,226,228,12,12 +35240,11,567,227,228,14,14 +35241,11,567,228,228,20,20 +35242,11,567,229,228,14,14 +35243,11,567,230,228,20,20 +35244,11,568,219,216,22,22 +35245,11,568,220,216,24,24 +35246,11,568,221,216,20,20 +35247,11,568,222,216,26,26 +35248,11,568,223,216,22,22 +35249,11,568,224,216,24,24 +35250,11,568,225,216,28,28 +35251,11,568,226,216,18,18 +35252,11,568,227,216,20,20 +35253,11,568,228,216,26,26 +35254,11,568,229,216,20,20 +35255,11,568,230,216,26,26 +35256,11,569,219,190,22,22 +35257,11,569,220,190,24,24 +35258,11,569,221,190,20,20 +35259,11,569,222,190,26,26 +35260,11,569,223,190,22,22 +35261,11,569,224,190,24,24 +35262,11,569,225,190,28,28 +35263,11,569,226,190,18,18 +35264,11,569,227,190,20,20 +35265,11,569,228,190,26,26 +35266,11,569,229,190,20,20 +35267,11,569,230,190,26,26 +35268,11,570,219,213,22,22 +35269,11,570,220,213,24,24 +35270,11,570,221,213,20,20 +35271,11,570,222,213,26,26 +35272,11,570,223,213,22,22 +35273,11,570,224,213,24,24 +35274,11,570,225,213,28,28 +35275,11,570,226,213,18,18 +35276,11,570,227,213,20,20 +35277,11,570,228,213,26,26 +35278,11,570,229,213,20,20 +35279,11,570,230,213,26,26 +35280,11,571,219,234,22,22 +35281,11,571,220,234,24,24 +35282,11,571,221,234,20,20 +35283,11,571,222,234,26,26 +35284,11,571,223,234,22,22 +35285,11,571,224,234,24,24 +35286,11,571,225,234,28,28 +35287,11,571,226,234,18,18 +35288,11,571,227,234,20,20 +35289,11,571,228,234,26,26 +35290,11,571,229,234,20,20 +35291,11,571,230,234,26,26 +35292,11,572,219,235,22,22 +35293,11,572,220,235,24,24 +35294,11,572,221,235,20,20 +35295,11,572,222,235,26,26 +35296,11,572,223,235,22,22 +35297,11,572,224,235,24,24 +35298,11,572,225,235,28,28 +35299,11,572,226,235,18,18 +35300,11,572,227,235,20,20 +35301,11,572,228,235,26,26 +35302,11,572,229,235,20,20 +35303,11,572,230,235,26,26 +35304,17,576,251,118,35,55 +35305,17,576,252,550,35,55 +35306,17,576,253,118,35,55 +35307,17,576,254,118,35,55 +35308,17,576,255,118,35,55 +35309,17,576,256,118,35,60 +35310,17,576,257,10016,35,60 +35311,17,576,258,119,35,70 +35312,17,576,259,119,45,70 +35313,17,576,260,119,45,70 +35314,17,576,261,550,5,15 +35315,17,576,262,550,5,15 +35316,17,576,263,550,5,15 +35317,17,576,264,550,5,15 +35318,17,576,265,550,5,15 +35319,17,576,266,10016,5,20 +35320,17,576,267,10016,5,20 +35321,17,576,268,10016,5,20 +35322,17,576,269,10016,5,20 +35323,17,576,270,10016,5,20 +35324,17,577,251,98,35,55 +35325,17,577,252,170,35,55 +35326,17,577,253,98,35,55 +35327,17,577,254,370,35,55 +35328,17,577,255,370,35,55 +35329,17,577,256,170,35,60 +35330,17,577,257,370,35,60 +35331,17,577,258,99,35,70 +35332,17,577,259,171,45,70 +35333,17,577,260,171,45,70 +35334,17,577,261,592,10,25 +35335,17,577,262,592,10,25 +35336,17,577,263,592,10,25 +35337,17,577,264,592,10,25 +35338,17,577,265,592,10,25 +35339,17,577,266,594,10,30 +35340,17,577,267,594,10,30 +35341,17,577,268,594,10,30 +35342,17,577,269,593,10,30 +35343,17,577,270,593,10,30 +35344,17,578,251,339,35,55 +35345,17,578,252,618,35,55 +35346,17,578,253,339,35,55 +35347,17,578,254,339,35,55 +35348,17,578,255,339,35,55 +35349,17,578,256,339,35,60 +35350,17,578,257,618,35,60 +35351,17,578,258,340,35,70 +35352,17,578,259,340,45,70 +35353,17,578,260,340,45,70 +35354,17,578,261,618,15,35 +35355,17,578,262,618,15,35 +35356,17,578,263,618,15,35 +35357,17,578,264,618,15,35 +35358,17,578,265,618,15,35 +35359,17,578,266,618,15,40 +35360,17,578,267,618,15,40 +35361,17,578,268,618,15,40 +35362,17,578,269,537,15,40 +35363,17,578,270,537,15,40 +35364,17,578,271,536,30,30 +35365,17,578,271,536,30,30 +35366,17,578,271,536,30,30 +35367,17,578,272,616,30,30 +35368,17,578,272,616,30,30 +35369,17,578,272,616,30,30 +35370,17,578,273,536,31,31 +35371,17,578,273,536,31,31 +35372,17,578,273,536,31,31 +35373,17,578,274,616,31,31 +35374,17,578,274,616,31,31 +35375,17,578,274,616,31,31 +35376,17,578,275,618,31,31 +35377,17,578,275,618,31,31 +35378,17,578,275,618,31,31 +35379,17,578,276,618,32,32 +35380,17,578,276,618,32,32 +35381,17,578,276,618,32,32 +35382,17,578,277,536,32,32 +35383,17,578,277,536,32,32 +35384,17,578,277,536,32,32 +35385,17,578,278,616,32,32 +35386,17,578,278,616,32,32 +35387,17,578,278,616,32,32 +35388,17,578,279,536,33,33 +35389,17,578,279,536,33,33 +35390,17,578,279,536,33,33 +35391,17,578,280,616,33,33 +35392,17,578,280,616,33,33 +35393,17,578,280,616,33,33 +35394,17,578,281,536,33,33 +35395,17,578,281,536,33,33 +35396,17,578,281,536,33,33 +35397,17,578,282,616,33,33 +35398,17,578,282,616,33,33 +35399,17,578,282,616,33,33 +35400,17,579,283,505,47,47 +35401,17,579,284,510,47,47 +35402,17,579,285,20,48,48 +35403,17,579,286,517,48,48 +35404,17,579,287,166,49,49 +35405,17,579,288,168,49,49 +35406,17,579,289,402,48,48 +35407,17,579,290,49,48,48 +35408,17,579,291,402,50,50 +35409,17,579,292,49,50,50 +35410,17,579,293,402,50,50 +35411,17,579,294,49,50,50 +35412,17,579,295,531,8,8 +35413,17,579,296,531,8,8 +35414,17,579,297,531,9,9 +35415,17,579,298,531,9,9 +35416,17,579,299,531,10,10 +35417,17,579,300,531,11,11 +35418,17,579,301,531,11,11 +35419,17,579,302,531,11,11 +35420,17,579,303,531,11,11 +35421,17,579,304,518,11,11 +35422,17,579,305,531,11,11 +35423,17,579,306,518,11,11 +35424,17,579,271,504,8,8 +35425,17,579,272,509,8,8 +35426,17,579,273,504,9,9 +35427,17,579,274,509,9,9 +35428,17,579,275,517,8,8 +35429,17,579,276,517,10,10 +35430,17,579,277,504,10,10 +35431,17,579,278,509,10,10 +35432,17,579,279,504,11,11 +35433,17,579,280,509,11,11 +35434,17,579,281,504,11,11 +35435,17,579,282,509,11,11 +35436,17,580,283,20,47,47 +35437,17,580,284,402,47,47 +35438,17,580,285,517,48,48 +35439,17,580,286,20,48,48 +35440,17,580,287,402,48,48 +35441,17,580,288,517,49,49 +35442,17,580,289,168,49,49 +35443,17,580,290,166,49,49 +35444,17,580,291,20,50,50 +35445,17,580,292,402,50,50 +35446,17,580,293,20,50,50 +35447,17,580,294,402,50,50 +35448,17,581,283,535,14,14 +35449,17,581,284,519,14,14 +35450,17,581,285,535,15,15 +35451,17,581,286,519,15,15 +35452,17,581,287,532,15,15 +35453,17,581,288,532,16,16 +35454,17,581,289,535,16,16 +35455,17,581,290,539,14,14 +35456,17,581,291,535,17,17 +35457,17,581,292,539,17,17 +35458,17,581,293,535,17,17 +35459,17,581,294,539,17,17 +35460,17,581,295,531,12,12 +35461,17,581,296,531,12,12 +35462,17,581,297,531,13,13 +35463,17,581,298,531,13,13 +35464,17,581,299,531,14,14 +35465,17,581,300,531,15,15 +35466,17,581,301,531,15,15 +35467,17,581,302,531,15,15 +35468,17,581,303,531,15,15 +35469,17,581,304,538,15,15 +35470,17,581,305,531,15,15 +35471,17,581,306,538,15,15 +35472,17,581,271,535,12,12 +35473,17,581,272,519,12,12 +35474,17,581,273,535,13,13 +35475,17,581,274,519,13,13 +35476,17,581,275,532,13,13 +35477,17,581,276,532,14,14 +35478,17,581,277,535,14,14 +35479,17,581,278,539,12,12 +35480,17,581,279,535,15,15 +35481,17,581,280,539,15,15 +35482,17,581,281,535,15,15 +35483,17,581,282,539,15,15 +35484,17,582,283,546,22,22 +35485,17,582,284,541,22,22 +35486,17,582,285,546,23,23 +35487,17,582,286,541,23,23 +35488,17,582,287,520,23,23 +35489,17,582,288,544,23,23 +35490,17,582,289,520,24,24 +35491,17,582,290,544,24,24 +35492,17,582,291,546,24,24 +35493,17,582,292,541,24,24 +35494,17,582,293,546,25,25 +35495,17,582,294,541,25,25 +35496,17,582,295,531,14,14 +35497,17,582,296,531,15,15 +35498,17,582,297,511,15,15 +35499,17,582,298,513,15,15 +35500,17,582,299,515,15,15 +35501,17,582,300,531,17,17 +35502,17,582,301,531,17,17 +35503,17,582,302,531,17,17 +35504,17,582,303,531,17,17 +35505,17,582,304,547,17,17 +35506,17,582,305,531,17,17 +35507,17,582,306,547,17,17 +35508,17,582,251,118,35,55 +35509,17,582,252,550,35,55 +35510,17,582,253,118,35,55 +35511,17,582,254,118,35,55 +35512,17,582,255,118,35,55 +35513,17,582,256,118,35,60 +35514,17,582,257,10016,35,60 +35515,17,582,258,119,35,70 +35516,17,582,259,119,45,70 +35517,17,582,260,119,45,70 +35518,17,582,261,550,5,20 +35519,17,582,262,550,5,20 +35520,17,582,263,550,5,20 +35521,17,582,264,550,5,20 +35522,17,582,265,550,5,20 +35523,17,582,266,10016,5,20 +35524,17,582,267,10016,5,20 +35525,17,582,268,10016,5,20 +35526,17,582,269,10016,5,20 +35527,17,582,270,10016,5,20 +35528,17,582,271,546,14,14 +35529,17,582,272,540,14,14 +35530,17,582,273,546,15,15 +35531,17,582,274,540,15,15 +35532,17,582,275,519,15,15 +35533,17,582,276,543,15,15 +35534,17,582,277,519,16,16 +35535,17,582,278,543,16,16 +35536,17,582,279,546,16,16 +35537,17,582,280,540,16,16 +35538,17,582,281,546,17,17 +35539,17,582,282,540,17,17 +35540,17,583,271,551,19,19 +35541,17,583,272,554,19,19 +35542,17,583,273,551,20,20 +35543,17,583,274,554,20,20 +35544,17,583,275,556,20,20 +35545,17,583,276,559,20,20 +35546,17,583,277,551,21,21 +35547,17,583,278,557,20,20 +35548,17,583,279,551,22,22 +35549,17,583,280,557,22,22 +35550,17,583,281,551,22,22 +35551,17,583,282,557,22,22 +35552,17,584,271,551,19,19 +35553,17,584,272,554,19,19 +35554,17,584,273,551,20,20 +35555,17,584,274,554,20,20 +35556,17,584,275,556,20,20 +35557,17,584,276,561,20,20 +35558,17,584,277,551,21,21 +35559,17,584,278,557,20,20 +35560,17,584,279,551,22,22 +35561,17,584,280,557,22,22 +35562,17,584,281,551,22,22 +35563,17,584,282,557,22,22 +35564,17,585,271,551,19,19 +35565,17,585,272,562,19,19 +35566,17,585,273,551,20,20 +35567,17,585,274,562,20,20 +35568,17,585,275,551,21,21 +35569,17,585,276,562,21,21 +35570,17,585,277,551,21,21 +35571,17,585,278,562,21,21 +35572,17,585,279,551,22,22 +35573,17,585,280,562,22,22 +35574,17,585,281,551,22,22 +35575,17,585,282,562,22,22 +35576,17,586,271,552,34,34 +35577,17,586,272,563,34,34 +35578,17,586,273,552,35,35 +35579,17,586,274,563,35,35 +35580,17,586,275,552,36,36 +35581,17,586,276,563,36,36 +35582,17,586,277,552,36,36 +35583,17,586,278,563,36,36 +35584,17,586,279,552,37,37 +35585,17,586,280,563,37,37 +35586,17,586,281,552,37,37 +35587,17,586,282,563,37,37 +35588,17,587,271,552,47,47 +35589,17,587,272,28,47,47 +35590,17,587,273,563,48,48 +35591,17,587,274,95,48,48 +35592,17,587,275,552,48,48 +35593,17,587,276,28,49,49 +35594,17,587,277,563,49,49 +35595,17,587,278,95,49,49 +35596,17,587,279,552,49,49 +35597,17,587,280,563,50,50 +35598,17,587,281,552,50,50 +35599,17,587,282,563,50,50 +35600,17,588,271,344,47,47 +35601,17,588,272,344,47,47 +35602,17,588,273,344,48,48 +35603,17,588,274,344,48,48 +35604,17,588,275,344,49,49 +35605,17,588,276,344,49,49 +35606,17,588,277,344,50,50 +35607,17,588,278,344,50,50 +35608,17,588,279,344,50,50 +35609,17,588,280,344,50,50 +35610,17,588,281,344,50,50 +35611,17,588,282,344,50,50 +35612,17,589,283,507,25,25 +35613,17,589,284,572,24,24 +35614,17,589,285,507,26,26 +35615,17,589,286,532,25,25 +35616,17,589,287,582,24,24 +35617,17,589,288,582,25,25 +35618,17,589,289,532,26,26 +35619,17,589,290,582,26,26 +35620,17,589,291,507,27,27 +35621,17,589,292,582,27,27 +35622,17,589,293,507,27,27 +35623,17,589,294,582,27,27 +35624,17,589,295,531,20,20 +35625,17,589,296,531,20,20 +35626,17,589,297,531,21,21 +35627,17,589,298,531,21,21 +35628,17,589,299,531,22,22 +35629,17,589,300,531,23,23 +35630,17,589,301,531,23,23 +35631,17,589,302,531,23,23 +35632,17,589,303,573,23,23 +35633,17,589,304,508,23,23 +35634,17,589,305,573,23,23 +35635,17,589,306,508,23,23 +35636,17,589,271,507,21,21 +35637,17,589,272,572,20,20 +35638,17,589,273,507,22,22 +35639,17,589,274,532,21,21 +35640,17,589,275,582,20,20 +35641,17,589,276,582,21,21 +35642,17,589,277,532,22,22 +35643,17,589,278,582,22,22 +35644,17,589,279,507,23,23 +35645,17,589,280,582,23,23 +35646,17,589,281,507,23,23 +35647,17,589,282,582,23,23 +35648,17,590,307,529,24,24 +35649,17,590,308,529,24,24 +35650,17,590,309,529,25,25 +35651,17,590,310,529,25,25 +35652,17,590,311,529,26,26 +35653,17,590,312,529,26,26 +35654,17,590,313,529,27,27 +35655,17,590,314,529,27,27 +35656,17,590,315,529,27,27 +35657,17,590,316,529,27,27 +35658,17,590,317,529,27,27 +35659,17,590,318,529,27,27 +35660,17,590,271,595,24,24 +35661,17,590,272,599,25,25 +35662,17,590,273,595,25,25 +35663,17,590,274,525,24,24 +35664,17,590,275,597,24,24 +35665,17,590,276,597,25,25 +35666,17,590,277,595,26,26 +35667,17,590,278,599,26,26 +35668,17,590,279,595,27,27 +35669,17,590,280,599,27,27 +35670,17,590,281,602,27,27 +35671,17,590,282,602,27,27 +35672,17,591,307,529,24,24 +35673,17,591,308,529,24,24 +35674,17,591,309,529,25,25 +35675,17,591,310,529,25,25 +35676,17,591,311,529,26,26 +35677,17,591,312,529,26,26 +35678,17,591,313,529,27,27 +35679,17,591,314,529,27,27 +35680,17,591,315,529,27,27 +35681,17,591,316,529,27,27 +35682,17,591,317,529,27,27 +35683,17,591,318,529,27,27 +35684,17,591,271,595,24,24 +35685,17,591,272,599,25,25 +35686,17,591,273,595,25,25 +35687,17,591,274,525,24,24 +35688,17,591,275,597,25,25 +35689,17,591,276,597,26,26 +35690,17,591,277,595,26,26 +35691,17,591,278,599,26,26 +35692,17,591,279,595,27,27 +35693,17,591,280,599,27,27 +35694,17,591,281,602,27,27 +35695,17,591,282,602,27,27 +35696,17,592,307,529,24,24 +35697,17,592,308,529,24,24 +35698,17,592,309,529,25,25 +35699,17,592,310,529,25,25 +35700,17,592,311,529,26,26 +35701,17,592,312,529,26,26 +35702,17,592,313,529,27,27 +35703,17,592,314,529,27,27 +35704,17,592,315,529,27,27 +35705,17,592,316,529,27,27 +35706,17,592,317,529,27,27 +35707,17,592,318,529,27,27 +35708,17,592,271,595,24,24 +35709,17,592,272,599,25,25 +35710,17,592,273,595,25,25 +35711,17,592,274,525,24,24 +35712,17,592,275,597,26,26 +35713,17,592,276,597,27,27 +35714,17,592,277,595,26,26 +35715,17,592,278,599,26,26 +35716,17,592,279,602,27,27 +35717,17,592,280,602,27,27 +35718,17,592,281,595,27,27 +35719,17,592,282,599,27,27 +35720,17,593,307,529,28,28 +35721,17,593,308,529,28,28 +35722,17,593,309,529,29,29 +35723,17,593,310,529,29,29 +35724,17,593,311,529,30,30 +35725,17,593,312,529,30,30 +35726,17,593,313,529,31,31 +35727,17,593,314,529,31,31 +35728,17,593,315,529,31,31 +35729,17,593,316,529,31,31 +35730,17,593,317,529,31,31 +35731,17,593,318,529,31,31 +35732,17,593,271,525,28,28 +35733,17,593,271,525,28,28 +35734,17,593,271,525,28,28 +35735,17,593,271,613,28,28 +35736,17,593,272,533,28,28 +35737,17,593,272,533,28,28 +35738,17,593,272,533,28,28 +35739,17,593,272,525,29,29 +35740,17,593,273,525,29,29 +35741,17,593,273,525,29,29 +35742,17,593,273,525,29,29 +35743,17,593,273,533,29,29 +35744,17,593,274,533,30,30 +35745,17,593,274,533,30,30 +35746,17,593,274,533,30,30 +35747,17,593,274,613,29,29 +35748,17,593,275,525,30,30 +35749,17,593,276,613,28,28 +35750,17,593,276,527,28,28 +35751,17,593,276,613,28,28 +35752,17,593,276,613,30,30 +35753,17,593,277,525,30,30 +35754,17,593,277,525,31,31 +35755,17,593,277,525,30,30 +35756,17,593,277,613,31,31 +35757,17,593,278,527,29,29 +35758,17,593,278,527,29,29 +35759,17,593,278,527,29,29 +35760,17,593,278,527,28,28 +35761,17,593,279,525,31,31 +35762,17,593,279,613,28,28 +35763,17,593,279,525,31,31 +35764,17,593,279,615,31,31 +35765,17,593,280,527,30,30 +35766,17,593,280,527,30,30 +35767,17,593,280,527,30,30 +35768,17,593,280,527,29,29 +35769,17,593,281,615,31,31 +35770,17,593,281,615,28,28 +35771,17,593,281,615,31,31 +35772,17,593,281,615,31,31 +35773,17,593,282,527,31,31 +35774,17,593,282,527,31,31 +35775,17,593,282,527,31,31 +35776,17,593,282,527,30,30 +35777,17,594,283,583,35,35 +35778,17,594,284,586,34,34 +35779,17,594,285,619,34,34 +35780,17,594,286,586,36,36 +35781,17,594,287,619,35,35 +35782,17,594,288,614,37,37 +35783,17,594,289,619,36,36 +35784,17,594,290,583,35,35 +35785,17,594,291,619,37,37 +35786,17,594,292,583,36,36 +35787,17,594,293,619,37,37 +35788,17,594,294,583,37,37 +35789,17,594,295,531,30,30 +35790,17,594,296,531,30,30 +35791,17,594,297,587,31,31 +35792,17,594,298,531,31,31 +35793,17,594,299,531,32,32 +35794,17,594,300,531,33,33 +35795,17,594,301,531,33,33 +35796,17,594,302,531,33,33 +35797,17,594,303,531,33,33 +35798,17,594,304,521,33,33 +35799,17,594,304,521,33,33 +35800,17,594,304,521,33,33 +35801,17,594,304,531,33,33 +35802,17,594,305,531,33,33 +35803,17,594,306,521,33,33 +35804,17,594,306,521,33,33 +35805,17,594,306,521,33,33 +35806,17,594,306,531,33,33 +35807,17,594,271,520,30,30 +35808,17,594,271,520,30,30 +35809,17,594,271,520,30,30 +35810,17,594,271,582,31,31 +35811,17,594,272,585,31,31 +35812,17,594,272,585,31,31 +35813,17,594,272,585,31,31 +35814,17,594,272,585,30,30 +35815,17,594,273,619,30,30 +35816,17,594,274,585,32,32 +35817,17,594,275,619,31,31 +35818,17,594,276,520,32,32 +35819,17,594,276,520,32,32 +35820,17,594,276,520,32,32 +35821,17,594,276,613,33,33 +35822,17,594,277,619,32,32 +35823,17,594,278,621,31,31 +35824,17,594,278,621,31,31 +35825,17,594,278,621,31,31 +35826,17,594,278,582,31,31 +35827,17,594,279,619,33,33 +35828,17,594,280,621,32,32 +35829,17,594,280,621,32,32 +35830,17,594,280,621,32,32 +35831,17,594,280,582,32,32 +35832,17,594,281,619,33,33 +35833,17,594,282,621,33,33 +35834,17,594,282,621,33,33 +35835,17,594,282,621,33,33 +35836,17,594,282,582,33,33 +35837,17,595,283,520,35,35 +35838,17,595,283,520,35,35 +35839,17,595,283,520,35,35 +35840,17,595,283,583,35,35 +35841,17,595,284,586,34,34 +35842,17,595,285,619,34,34 +35843,17,595,286,586,36,36 +35844,17,595,287,619,35,35 +35845,17,595,288,520,36,36 +35846,17,595,288,520,36,36 +35847,17,595,288,520,36,36 +35848,17,595,288,614,37,37 +35849,17,595,289,619,36,36 +35850,17,595,290,621,35,35 +35851,17,595,290,621,35,35 +35852,17,595,290,621,35,35 +35853,17,595,290,583,36,36 +35854,17,595,291,619,37,37 +35855,17,595,292,621,36,36 +35856,17,595,292,621,36,36 +35857,17,595,292,621,36,36 +35858,17,595,292,583,36,36 +35859,17,595,293,619,37,37 +35860,17,595,294,621,37,37 +35861,17,595,294,621,37,37 +35862,17,595,294,621,37,37 +35863,17,595,294,583,37,37 +35864,17,595,295,531,30,30 +35865,17,595,296,531,30,30 +35866,17,595,297,587,31,31 +35867,17,595,298,531,31,31 +35868,17,595,299,531,32,32 +35869,17,595,300,531,33,33 +35870,17,595,301,531,33,33 +35871,17,595,302,531,33,33 +35872,17,595,303,531,33,33 +35873,17,595,304,521,33,33 +35874,17,595,304,521,33,33 +35875,17,595,304,521,33,33 +35876,17,595,304,531,33,33 +35877,17,595,305,531,33,33 +35878,17,595,306,521,33,33 +35879,17,595,306,521,33,33 +35880,17,595,306,521,33,33 +35881,17,595,306,531,33,33 +35882,17,595,251,147,35,55 +35883,17,595,252,550,35,55 +35884,17,595,253,147,35,55 +35885,17,595,254,148,35,55 +35886,17,595,255,148,35,55 +35887,17,595,256,147,35,60 +35888,17,595,257,10016,35,60 +35889,17,595,258,148,35,70 +35890,17,595,259,148,45,70 +35891,17,595,260,149,50,70 +35892,17,595,261,550,15,35 +35893,17,595,262,550,15,35 +35894,17,595,263,550,15,35 +35895,17,595,264,550,15,35 +35896,17,595,265,550,15,35 +35897,17,595,266,10016,15,40 +35898,17,595,267,10016,15,40 +35899,17,595,268,10016,15,40 +35900,17,595,269,10016,15,40 +35901,17,595,270,10016,15,40 +35902,17,595,271,520,31,31 +35903,17,595,271,520,31,31 +35904,17,595,271,520,31,31 +35905,17,595,271,582,31,31 +35906,17,595,272,585,30,30 +35907,17,595,273,619,30,30 +35908,17,595,274,585,32,32 +35909,17,595,275,619,31,31 +35910,17,595,276,520,32,32 +35911,17,595,276,520,32,32 +35912,17,595,276,520,32,32 +35913,17,595,276,613,33,33 +35914,17,595,277,619,32,32 +35915,17,595,278,621,31,31 +35916,17,595,278,621,31,31 +35917,17,595,278,621,31,31 +35918,17,595,278,582,32,32 +35919,17,595,279,619,33,33 +35920,17,595,280,621,32,32 +35921,17,595,280,621,32,32 +35922,17,595,280,621,32,32 +35923,17,595,280,582,32,32 +35924,17,595,281,619,33,33 +35925,17,595,282,621,33,33 +35926,17,595,282,621,33,33 +35927,17,595,282,621,33,33 +35928,17,595,282,582,33,33 +35929,17,596,271,622,30,30 +35930,17,596,272,619,33,33 +35931,17,596,273,622,31,31 +35932,17,596,274,621,30,30 +35933,17,596,275,622,32,32 +35934,17,596,276,621,31,31 +35935,17,596,277,622,32,32 +35936,17,596,278,621,32,32 +35937,17,596,279,622,33,33 +35938,17,596,280,621,33,33 +35939,17,596,281,622,33,33 +35940,17,596,282,621,33,33 +35941,17,597,271,622,30,30 +35942,17,597,272,622,30,30 +35943,17,597,273,622,31,31 +35944,17,597,274,622,31,31 +35945,17,597,275,622,32,32 +35946,17,597,276,622,32,32 +35947,17,597,277,622,32,32 +35948,17,597,278,622,32,32 +35949,17,597,279,622,33,33 +35950,17,597,280,622,33,33 +35951,17,597,281,622,33,33 +35952,17,597,282,622,33,33 +35953,17,598,271,629,38,38 +35954,17,598,272,631,37,37 +35955,17,598,273,629,40,40 +35956,17,598,274,631,38,38 +35957,17,598,275,619,38,38 +35958,17,598,276,631,39,39 +35959,17,598,277,619,40,40 +35960,17,598,278,611,40,40 +35961,17,598,279,629,37,37 +35962,17,598,280,631,40,40 +35963,17,598,281,629,39,39 +35964,17,598,282,631,40,40 +35965,17,599,307,530,37,37 +35966,17,599,308,530,37,37 +35967,17,599,309,530,38,38 +35968,17,599,310,530,38,38 +35969,17,599,311,530,39,39 +35970,17,599,312,530,39,39 +35971,17,599,313,530,40,40 +35972,17,599,314,530,40,40 +35973,17,599,315,530,40,40 +35974,17,599,316,530,40,40 +35975,17,599,317,530,40,40 +35976,17,599,318,530,40,40 +35977,17,599,251,60,35,55 +35978,17,599,252,550,35,55 +35979,17,599,253,61,35,55 +35980,17,599,254,60,35,55 +35981,17,599,255,60,35,55 +35982,17,599,256,61,35,60 +35983,17,599,257,10016,35,60 +35984,17,599,258,61,35,70 +35985,17,599,259,62,45,70 +35986,17,599,260,62,45,70 +35987,17,599,261,550,20,45 +35988,17,599,262,550,20,45 +35989,17,599,263,550,20,45 +35990,17,599,264,550,20,45 +35991,17,599,265,550,20,45 +35992,17,599,266,10016,20,50 +35993,17,599,267,10016,20,50 +35994,17,599,268,10016,20,50 +35995,17,599,269,10016,20,50 +35996,17,599,270,10016,20,50 +35997,17,599,271,632,37,37 +35998,17,599,272,525,39,39 +35999,17,599,273,632,38,38 +36000,17,599,274,633,38,38 +36001,17,599,275,527,37,37 +36002,17,599,276,619,39,39 +36003,17,599,277,632,39,39 +36004,17,599,278,633,38,38 +36005,17,599,279,632,40,40 +36006,17,599,280,633,39,39 +36007,17,599,281,632,40,40 +36008,17,599,282,633,40,40 +36009,17,600,295,530,37,37 +36010,17,600,296,530,37,37 +36011,17,600,297,530,38,38 +36012,17,600,298,530,38,38 +36013,17,600,299,530,39,39 +36014,17,600,300,530,39,39 +36015,17,600,301,530,40,40 +36016,17,600,302,530,40,40 +36017,17,600,303,530,40,40 +36018,17,600,304,530,40,40 +36019,17,600,305,530,40,40 +36020,17,600,306,530,40,40 +36021,17,600,271,632,37,37 +36022,17,600,272,525,37,37 +36023,17,600,273,632,38,38 +36024,17,600,274,525,39,39 +36025,17,600,275,527,37,37 +36026,17,600,276,619,39,39 +36027,17,600,277,632,39,39 +36028,17,600,278,527,38,38 +36029,17,600,279,632,40,40 +36030,17,600,280,527,39,39 +36031,17,600,281,632,40,40 +36032,17,600,282,527,40,40 +36033,17,601,295,530,37,37 +36034,17,601,296,530,37,37 +36035,17,601,297,530,38,38 +36036,17,601,298,530,38,38 +36037,17,601,299,530,39,39 +36038,17,601,300,530,39,39 +36039,17,601,301,530,40,40 +36040,17,601,302,530,40,40 +36041,17,601,303,530,40,40 +36042,17,601,304,530,40,40 +36043,17,601,305,530,40,40 +36044,17,601,306,530,40,40 +36045,17,601,271,632,37,37 +36046,17,601,272,525,37,37 +36047,17,601,273,632,38,38 +36048,17,601,274,525,39,39 +36049,17,601,275,527,37,37 +36050,17,601,276,619,39,39 +36051,17,601,277,632,39,39 +36052,17,601,278,527,38,38 +36053,17,601,279,632,40,40 +36054,17,601,280,527,39,39 +36055,17,601,281,632,40,40 +36056,17,601,282,527,40,40 +36057,17,602,295,530,39,39 +36058,17,602,296,530,39,39 +36059,17,602,297,530,40,40 +36060,17,602,298,530,40,40 +36061,17,602,299,530,41,41 +36062,17,602,300,530,41,41 +36063,17,602,301,530,42,42 +36064,17,602,302,530,42,42 +36065,17,602,303,530,42,42 +36066,17,602,304,530,42,42 +36067,17,602,305,530,42,42 +36068,17,602,306,530,42,42 +36069,17,602,271,632,39,39 +36070,17,602,272,525,39,39 +36071,17,602,273,632,40,40 +36072,17,602,274,525,41,41 +36073,17,602,275,527,39,39 +36074,17,602,276,619,41,41 +36075,17,602,277,632,41,41 +36076,17,602,278,527,40,40 +36077,17,602,279,632,42,42 +36078,17,602,280,527,42,42 +36079,17,602,281,632,42,42 +36080,17,602,282,527,42,42 +36081,17,603,295,530,37,37 +36082,17,603,296,530,37,37 +36083,17,603,297,530,38,38 +36084,17,603,298,530,38,38 +36085,17,603,299,530,39,39 +36086,17,603,300,530,39,39 +36087,17,603,301,530,40,40 +36088,17,603,302,530,40,40 +36089,17,603,303,530,40,40 +36090,17,603,304,530,40,40 +36091,17,603,305,530,40,40 +36092,17,603,306,530,40,40 +36093,17,603,271,632,37,37 +36094,17,603,272,525,37,37 +36095,17,603,273,632,38,38 +36096,17,603,274,525,39,39 +36097,17,603,275,527,37,37 +36098,17,603,276,619,39,39 +36099,17,603,277,632,39,39 +36100,17,603,278,527,38,38 +36101,17,603,279,632,40,40 +36102,17,603,280,527,39,39 +36103,17,603,281,632,40,40 +36104,17,603,282,527,40,40 +36105,17,604,307,530,37,37 +36106,17,604,308,530,37,37 +36107,17,604,309,530,38,38 +36108,17,604,310,530,38,38 +36109,17,604,311,530,39,39 +36110,17,604,312,530,39,39 +36111,17,604,313,530,40,40 +36112,17,604,314,530,40,40 +36113,17,604,315,530,40,40 +36114,17,604,316,530,40,40 +36115,17,604,317,530,40,40 +36116,17,604,318,530,40,40 +36117,17,604,251,60,35,55 +36118,17,604,252,550,35,55 +36119,17,604,253,61,35,55 +36120,17,604,254,60,35,55 +36121,17,604,255,60,35,55 +36122,17,604,256,61,35,60 +36123,17,604,257,10016,35,60 +36124,17,604,258,61,35,70 +36125,17,604,259,62,45,70 +36126,17,604,260,62,45,70 +36127,17,604,261,550,20,45 +36128,17,604,262,550,20,45 +36129,17,604,263,550,20,45 +36130,17,604,264,550,20,45 +36131,17,604,265,550,20,45 +36132,17,604,266,10016,20,50 +36133,17,604,267,10016,20,50 +36134,17,604,268,10016,20,50 +36135,17,604,269,10016,20,50 +36136,17,604,270,10016,20,50 +36137,17,604,271,632,37,37 +36138,17,604,272,525,39,39 +36139,17,604,273,632,38,38 +36140,17,604,274,633,38,38 +36141,17,604,275,527,37,37 +36142,17,604,276,619,39,39 +36143,17,604,277,632,39,39 +36144,17,604,278,633,38,38 +36145,17,604,279,632,40,40 +36146,17,604,280,633,39,39 +36147,17,604,281,632,40,40 +36148,17,604,282,633,40,40 +36149,17,605,295,530,37,37 +36150,17,605,296,530,37,37 +36151,17,605,297,530,38,38 +36152,17,605,298,530,38,38 +36153,17,605,299,530,39,39 +36154,17,605,300,530,39,39 +36155,17,605,301,530,40,40 +36156,17,605,302,530,40,40 +36157,17,605,303,530,40,40 +36158,17,605,304,530,40,40 +36159,17,605,305,530,40,40 +36160,17,605,306,530,40,40 +36161,17,605,271,632,37,37 +36162,17,605,272,525,37,37 +36163,17,605,273,632,38,38 +36164,17,605,274,525,39,39 +36165,17,605,275,527,37,37 +36166,17,605,276,619,39,39 +36167,17,605,277,632,39,39 +36168,17,605,278,527,38,38 +36169,17,605,279,632,40,40 +36170,17,605,280,527,39,39 +36171,17,605,281,632,40,40 +36172,17,605,282,527,40,40 +36173,17,606,295,530,37,37 +36174,17,606,296,530,37,37 +36175,17,606,297,530,38,38 +36176,17,606,298,530,38,38 +36177,17,606,299,530,39,39 +36178,17,606,300,530,39,39 +36179,17,606,301,530,40,40 +36180,17,606,302,530,40,40 +36181,17,606,303,530,40,40 +36182,17,606,304,530,40,40 +36183,17,606,305,530,40,40 +36184,17,606,306,530,40,40 +36185,17,606,271,632,37,37 +36186,17,606,272,525,37,37 +36187,17,606,273,632,38,38 +36188,17,606,274,525,39,39 +36189,17,606,275,527,37,37 +36190,17,606,276,619,39,39 +36191,17,606,277,632,39,39 +36192,17,606,278,527,38,38 +36193,17,606,279,632,40,40 +36194,17,606,280,527,39,39 +36195,17,606,281,632,40,40 +36196,17,606,282,527,40,40 +36197,17,607,295,530,37,37 +36198,17,607,296,530,37,37 +36199,17,607,297,530,38,38 +36200,17,607,298,530,38,38 +36201,17,607,299,530,39,39 +36202,17,607,300,530,39,39 +36203,17,607,301,530,40,40 +36204,17,607,302,530,40,40 +36205,17,607,303,530,40,40 +36206,17,607,304,530,40,40 +36207,17,607,305,530,40,40 +36208,17,607,306,530,40,40 +36209,17,607,271,632,37,37 +36210,17,607,272,525,37,37 +36211,17,607,273,632,38,38 +36212,17,607,274,525,39,39 +36213,17,607,275,527,37,37 +36214,17,607,276,619,39,39 +36215,17,607,277,632,39,39 +36216,17,607,278,527,38,38 +36217,17,607,279,632,40,40 +36218,17,607,280,527,39,39 +36219,17,607,281,632,40,40 +36220,17,607,282,527,40,40 +36221,17,608,295,530,39,39 +36222,17,608,296,530,39,39 +36223,17,608,297,530,40,40 +36224,17,608,298,530,40,40 +36225,17,608,299,530,41,41 +36226,17,608,300,530,41,41 +36227,17,608,301,530,42,42 +36228,17,608,302,530,42,42 +36229,17,608,303,530,42,42 +36230,17,608,304,530,42,42 +36231,17,608,305,530,42,42 +36232,17,608,306,530,42,42 +36233,17,608,271,632,39,39 +36234,17,608,272,525,39,39 +36235,17,608,273,632,40,40 +36236,17,608,274,525,41,41 +36237,17,608,275,527,39,39 +36238,17,608,276,619,41,41 +36239,17,608,277,632,41,41 +36240,17,608,278,527,40,40 +36241,17,608,279,632,42,42 +36242,17,608,280,527,41,41 +36243,17,608,281,632,42,42 +36244,17,608,282,527,42,42 +36245,17,609,295,530,39,39 +36246,17,609,296,530,39,39 +36247,17,609,297,530,40,40 +36248,17,609,298,530,40,40 +36249,17,609,299,530,41,41 +36250,17,609,300,530,41,41 +36251,17,609,301,530,42,42 +36252,17,609,302,530,42,42 +36253,17,609,303,530,42,42 +36254,17,609,304,530,42,42 +36255,17,609,305,530,42,42 +36256,17,609,306,530,42,42 +36257,17,609,271,632,39,39 +36258,17,609,272,525,39,39 +36259,17,609,273,632,40,40 +36260,17,609,274,525,41,41 +36261,17,609,275,527,39,39 +36262,17,609,276,619,41,41 +36263,17,609,277,632,41,41 +36264,17,609,278,527,40,40 +36265,17,609,279,632,42,42 +36266,17,609,280,527,41,41 +36267,17,609,281,632,42,42 +36268,17,609,282,527,42,42 +36269,17,610,295,530,39,39 +36270,17,610,296,530,39,39 +36271,17,610,297,530,40,40 +36272,17,610,298,530,40,40 +36273,17,610,299,530,41,41 +36274,17,610,300,530,41,41 +36275,17,610,301,530,42,42 +36276,17,610,302,530,42,42 +36277,17,610,303,530,42,42 +36278,17,610,304,530,42,42 +36279,17,610,305,530,42,42 +36280,17,610,306,530,42,42 +36281,17,610,271,632,39,39 +36282,17,610,272,525,39,39 +36283,17,610,273,632,40,40 +36284,17,610,274,525,41,41 +36285,17,610,275,527,39,39 +36286,17,610,276,619,41,41 +36287,17,610,277,632,41,41 +36288,17,610,278,527,40,40 +36289,17,610,279,632,42,42 +36290,17,610,280,527,41,41 +36291,17,610,281,632,42,42 +36292,17,610,282,527,42,42 +36293,17,611,295,530,39,39 +36294,17,611,296,530,39,39 +36295,17,611,297,530,40,40 +36296,17,611,298,530,40,40 +36297,17,611,299,530,41,41 +36298,17,611,300,530,41,41 +36299,17,611,301,530,42,42 +36300,17,611,302,530,42,42 +36301,17,611,303,530,42,42 +36302,17,611,304,530,42,42 +36303,17,611,305,530,42,42 +36304,17,611,306,530,42,42 +36305,17,611,271,632,39,39 +36306,17,611,272,525,39,39 +36307,17,611,273,632,40,40 +36308,17,611,274,525,41,41 +36309,17,611,275,527,39,39 +36310,17,611,276,619,41,41 +36311,17,611,277,632,41,41 +36312,17,611,278,527,40,40 +36313,17,611,279,632,42,42 +36314,17,611,280,527,41,41 +36315,17,611,281,632,42,42 +36316,17,611,282,527,42,42 +36317,17,612,295,530,39,39 +36318,17,612,296,530,39,39 +36319,17,612,297,530,40,40 +36320,17,612,298,530,40,40 +36321,17,612,299,530,41,41 +36322,17,612,300,530,41,41 +36323,17,612,301,530,42,42 +36324,17,612,302,530,42,42 +36325,17,612,303,530,42,42 +36326,17,612,304,530,42,42 +36327,17,612,305,530,42,42 +36328,17,612,306,530,42,42 +36329,17,612,271,632,39,39 +36330,17,612,272,525,39,39 +36331,17,612,273,632,40,40 +36332,17,612,274,525,41,41 +36333,17,612,275,527,39,39 +36334,17,612,276,619,41,41 +36335,17,612,277,632,41,41 +36336,17,612,278,527,40,40 +36337,17,612,279,632,42,42 +36338,17,612,280,527,41,41 +36339,17,612,281,632,42,42 +36340,17,612,282,527,42,42 +36341,17,613,295,530,39,39 +36342,17,613,296,530,39,39 +36343,17,613,297,530,40,40 +36344,17,613,298,530,40,40 +36345,17,613,299,530,41,41 +36346,17,613,300,530,41,41 +36347,17,613,301,530,42,42 +36348,17,613,302,530,42,42 +36349,17,613,303,530,42,42 +36350,17,613,304,530,42,42 +36351,17,613,305,530,42,42 +36352,17,613,306,530,42,42 +36353,17,613,271,632,39,39 +36354,17,613,272,525,39,39 +36355,17,613,273,632,40,40 +36356,17,613,274,525,41,41 +36357,17,613,275,527,39,39 +36358,17,613,276,619,41,41 +36359,17,613,277,632,41,41 +36360,17,613,278,527,40,40 +36361,17,613,279,632,42,42 +36362,17,613,280,527,41,41 +36363,17,613,281,632,42,42 +36364,17,613,282,527,42,42 +36365,17,614,283,114,57,57 +36366,17,614,284,277,57,57 +36367,17,614,285,42,58,58 +36368,17,614,286,337,58,58 +36369,17,614,287,338,58,58 +36370,17,614,288,426,59,59 +36371,17,614,289,359,58,58 +36372,17,614,290,359,60,60 +36373,17,614,291,114,59,59 +36374,17,614,292,42,60,60 +36375,17,614,293,114,59,59 +36376,17,614,294,42,60,60 +36377,17,614,295,531,47,47 +36378,17,614,296,531,47,47 +36379,17,614,297,587,48,48 +36380,17,614,298,531,48,48 +36381,17,614,299,531,49,49 +36382,17,614,300,531,50,50 +36383,17,614,301,531,50,50 +36384,17,614,302,531,50,50 +36385,17,614,303,169,50,50 +36386,17,614,304,465,50,50 +36387,17,614,305,169,50,50 +36388,17,614,306,465,50,50 +36389,17,614,271,114,47,47 +36390,17,614,272,277,47,47 +36391,17,614,273,42,48,48 +36392,17,614,274,337,48,48 +36393,17,614,275,338,48,48 +36394,17,614,276,426,49,49 +36395,17,614,277,359,48,48 +36396,17,614,278,359,50,50 +36397,17,614,279,114,49,49 +36398,17,614,280,42,50,50 +36399,17,614,281,114,49,49 +36400,17,614,282,42,50,50 +36401,17,615,307,530,47,47 +36402,17,615,308,530,47,47 +36403,17,615,309,530,48,48 +36404,17,615,310,530,48,48 +36405,17,615,311,530,49,49 +36406,17,615,312,530,49,49 +36407,17,615,313,530,50,50 +36408,17,615,314,530,50,50 +36409,17,615,315,530,50,50 +36410,17,615,316,530,50,50 +36411,17,615,317,530,50,50 +36412,17,615,318,530,50,50 +36413,17,615,251,60,35,55 +36414,17,615,252,550,35,55 +36415,17,615,253,61,35,55 +36416,17,615,254,60,35,55 +36417,17,615,255,60,35,55 +36418,17,615,256,61,35,60 +36419,17,615,257,10016,35,60 +36420,17,615,258,61,35,70 +36421,17,615,259,62,45,70 +36422,17,615,260,62,45,70 +36423,17,615,261,550,25,55 +36424,17,615,262,86,25,55 +36425,17,615,263,550,25,55 +36426,17,615,264,550,25,55 +36427,17,615,265,550,25,55 +36428,17,615,266,86,25,60 +36429,17,615,267,10016,25,60 +36430,17,615,268,87,35,70 +36431,17,615,269,87,35,70 +36432,17,615,270,87,35,70 +36433,17,615,271,42,47,47 +36434,17,615,272,221,47,47 +36435,17,615,273,215,48,48 +36436,17,615,274,225,48,48 +36437,17,615,275,337,50,50 +36438,17,615,276,338,50,50 +36439,17,615,277,525,49,49 +36440,17,615,278,124,48,48 +36441,17,615,279,221,49,49 +36442,17,615,280,124,50,50 +36443,17,615,281,221,49,49 +36444,17,615,282,124,50,50 +36445,17,616,283,35,62,62 +36446,17,616,284,221,62,62 +36447,17,616,285,35,64,64 +36448,17,616,286,132,63,63 +36449,17,616,287,337,65,65 +36450,17,616,288,338,65,65 +36451,17,616,289,132,65,65 +36452,17,616,290,375,63,63 +36453,17,616,291,221,64,64 +36454,17,616,292,375,65,65 +36455,17,616,293,221,64,64 +36456,17,616,294,375,65,65 +36457,17,616,295,531,52,52 +36458,17,616,296,531,52,52 +36459,17,616,297,531,53,53 +36460,17,616,298,531,53,53 +36461,17,616,299,531,54,54 +36462,17,616,300,531,55,55 +36463,17,616,301,531,55,55 +36464,17,616,302,473,55,55 +36465,17,616,303,36,55,55 +36466,17,616,304,376,55,55 +36467,17,616,305,36,55,55 +36468,17,616,306,376,55,55 +36469,17,616,271,35,52,52 +36470,17,616,272,221,52,52 +36471,17,616,273,35,54,54 +36472,17,616,274,132,53,53 +36473,17,616,275,337,55,55 +36474,17,616,276,338,55,55 +36475,17,616,277,132,55,55 +36476,17,616,278,375,53,53 +36477,17,616,279,221,54,54 +36478,17,616,280,375,55,55 +36479,17,616,281,221,54,54 +36480,17,616,282,375,55,55 +36481,17,617,307,530,57,57 +36482,17,617,308,530,57,57 +36483,17,617,309,530,58,58 +36484,17,617,310,530,58,58 +36485,17,617,311,530,59,59 +36486,17,617,312,530,59,59 +36487,17,617,313,530,60,60 +36488,17,617,314,530,60,60 +36489,17,617,315,530,60,60 +36490,17,617,316,530,60,60 +36491,17,617,317,530,60,60 +36492,17,617,318,530,60,60 +36493,17,617,251,60,35,55 +36494,17,617,252,550,35,55 +36495,17,617,253,61,35,55 +36496,17,617,254,60,35,55 +36497,17,617,255,60,35,55 +36498,17,617,256,61,35,60 +36499,17,617,257,10016,35,60 +36500,17,617,258,61,45,70 +36501,17,617,259,62,45,70 +36502,17,617,260,62,45,70 +36503,17,617,261,550,25,55 +36504,17,617,262,86,25,55 +36505,17,617,263,550,25,55 +36506,17,617,264,550,25,55 +36507,17,617,265,550,25,55 +36508,17,617,266,86,25,60 +36509,17,617,267,10016,25,60 +36510,17,617,268,87,35,70 +36511,17,617,269,87,35,70 +36512,17,617,270,87,35,70 +36513,17,617,271,42,57,57 +36514,17,617,272,221,57,57 +36515,17,617,273,215,58,58 +36516,17,617,274,225,58,58 +36517,17,617,275,337,60,60 +36518,17,617,276,338,60,60 +36519,17,617,277,525,59,59 +36520,17,617,278,124,58,58 +36521,17,617,279,221,59,59 +36522,17,617,280,124,60,60 +36523,17,617,281,221,59,59 +36524,17,617,282,124,60,60 +36525,17,618,295,531,28,28 +36526,17,618,296,531,28,28 +36527,17,618,297,531,29,29 +36528,17,618,298,531,29,29 +36529,17,618,299,531,30,30 +36530,17,618,300,531,30,30 +36531,17,618,301,531,31,31 +36532,17,618,302,531,31,31 +36533,17,618,303,531,31,31 +36534,17,618,304,508,31,31 +36535,17,618,305,531,31,31 +36536,17,618,306,508,31,31 +36537,17,618,251,456,35,55 +36538,17,618,252,116,35,55 +36539,17,618,253,116,35,55 +36540,17,618,254,456,35,55 +36541,17,618,255,456,35,55 +36542,17,618,256,117,35,60 +36543,17,618,257,211,35,60 +36544,17,618,258,457,35,70 +36545,17,618,259,230,45,70 +36546,17,618,260,230,45,70 +36547,17,618,261,592,5,15 +36548,17,618,262,592,5,15 +36549,17,618,263,592,5,15 +36550,17,618,264,592,5,15 +36551,17,618,265,592,5,15 +36552,17,618,266,594,5,20 +36553,17,618,267,594,5,20 +36554,17,618,268,594,5,20 +36555,17,618,269,593,5,20 +36556,17,618,270,593,5,20 +36557,17,618,271,505,28,28 +36558,17,618,272,507,28,28 +36559,17,618,273,505,29,29 +36560,17,618,274,507,29,29 +36561,17,618,275,599,29,29 +36562,17,618,276,559,29,29 +36563,17,618,277,505,30,30 +36564,17,618,278,507,30,30 +36565,17,618,279,599,31,31 +36566,17,618,280,559,31,31 +36567,17,618,281,505,31,31 +36568,17,618,282,507,31,31 +36569,17,619,251,223,35,55 +36570,17,619,252,90,35,55 +36571,17,619,253,223,35,55 +36572,17,619,254,370,35,55 +36573,17,619,255,370,35,55 +36574,17,619,256,90,35,60 +36575,17,619,257,370,35,60 +36576,17,619,258,224,35,70 +36577,17,619,259,91,45,70 +36578,17,619,260,91,45,70 +36579,17,619,261,278,25,55 +36580,17,619,262,458,25,55 +36581,17,619,262,458,25,55 +36582,17,619,262,458,25,55 +36583,17,619,262,363,25,55 +36584,17,619,263,279,25,55 +36585,17,619,264,279,25,55 +36586,17,619,265,279,25,55 +36587,17,619,266,320,25,60 +36588,17,619,267,320,25,60 +36589,17,619,267,320,25,60 +36590,17,619,267,320,25,60 +36591,17,619,267,364,25,60 +36592,17,619,268,226,35,70 +36593,17,619,268,226,35,70 +36594,17,619,268,226,35,70 +36595,17,619,268,321,35,70 +36596,17,619,269,321,35,70 +36597,17,619,269,321,35,70 +36598,17,619,269,321,35,70 +36599,17,619,269,365,35,70 +36600,17,619,270,321,35,70 +36601,17,619,270,321,35,70 +36602,17,619,270,321,35,70 +36603,17,619,270,365,35,70 +36604,17,620,319,580,22,22 +36605,17,620,320,580,22,22 +36606,17,620,321,580,23,23 +36607,17,620,322,580,23,23 +36608,17,620,323,580,24,24 +36609,17,620,324,580,24,24 +36610,17,620,325,580,25,25 +36611,17,620,326,580,25,25 +36612,17,620,327,580,25,25 +36613,17,620,328,580,25,25 +36614,17,620,329,580,25,25 +36615,17,620,330,580,25,25 +36616,17,621,283,55,57,57 +36617,17,621,284,400,57,57 +36618,17,621,285,335,58,58 +36619,17,621,286,336,58,58 +36620,17,621,287,630,58,58 +36621,17,621,288,630,60,60 +36622,17,621,289,55,59,59 +36623,17,621,290,400,59,59 +36624,17,621,291,335,60,60 +36625,17,621,292,336,60,60 +36626,17,621,293,335,60,60 +36627,17,621,294,336,60,60 +36628,17,621,295,531,47,47 +36629,17,621,296,531,47,47 +36630,17,621,297,587,48,48 +36631,17,621,298,531,48,48 +36632,17,621,299,531,49,49 +36633,17,621,300,531,50,50 +36634,17,621,301,531,50,50 +36635,17,621,302,531,50,50 +36636,17,621,303,531,50,50 +36637,17,621,304,531,50,50 +36638,17,621,305,531,50,50 +36639,17,621,306,531,50,50 +36640,17,621,251,318,35,55 +36641,17,621,252,550,35,55 +36642,17,621,253,318,35,55 +36643,17,621,254,318,35,55 +36644,17,621,255,318,35,55 +36645,17,621,256,318,35,60 +36646,17,621,257,10016,35,60 +36647,17,621,258,319,35,70 +36648,17,621,259,319,45,70 +36649,17,621,260,319,45,70 +36650,17,621,261,550,25,55 +36651,17,621,262,550,25,55 +36652,17,621,263,550,25,55 +36653,17,621,264,550,25,55 +36654,17,621,265,550,25,55 +36655,17,621,266,10016,25,60 +36656,17,621,267,10016,25,60 +36657,17,621,268,10016,35,70 +36658,17,621,269,131,35,70 +36659,17,621,270,131,35,70 +36660,17,621,271,55,47,47 +36661,17,621,272,400,47,47 +36662,17,621,273,335,48,48 +36663,17,621,274,336,48,48 +36664,17,621,275,629,48,48 +36665,17,621,276,629,50,50 +36666,17,621,277,55,49,49 +36667,17,621,278,400,49,49 +36668,17,621,279,335,50,50 +36669,17,621,280,336,50,50 +36670,17,621,281,335,50,50 +36671,17,621,282,336,50,50 +36672,17,622,319,581,47,47 +36673,17,622,320,581,47,47 +36674,17,622,321,581,48,48 +36675,17,622,322,581,48,48 +36676,17,622,323,581,49,49 +36677,17,622,324,581,49,49 +36678,17,622,325,581,50,50 +36679,17,622,326,581,50,50 +36680,17,622,327,581,50,50 +36681,17,622,328,581,50,50 +36682,17,622,329,581,50,50 +36683,17,622,330,581,50,50 +36684,17,623,283,505,32,32 +36685,17,623,284,507,32,32 +36686,17,623,285,505,33,33 +36687,17,623,286,507,33,33 +36688,17,623,287,559,32,32 +36689,17,623,288,559,33,33 +36690,17,623,289,505,34,34 +36691,17,623,290,507,34,34 +36692,17,623,291,559,34,34 +36693,17,623,292,507,34,34 +36694,17,623,293,505,35,35 +36695,17,623,294,559,35,35 +36696,17,623,295,531,2,2 +36697,17,623,296,531,2,2 +36698,17,623,297,531,3,3 +36699,17,623,298,531,3,3 +36700,17,623,299,531,4,4 +36701,17,623,300,531,4,4 +36702,17,623,301,531,4,4 +36703,17,623,302,531,4,4 +36704,17,623,303,531,4,4 +36705,17,623,304,531,4,4 +36706,17,623,305,531,4,4 +36707,17,623,306,531,4,4 +36708,17,623,251,550,35,55 +36709,17,623,252,550,35,55 +36710,17,623,253,550,35,55 +36711,17,623,254,349,35,55 +36712,17,623,255,349,35,55 +36713,17,623,256,349,35,60 +36714,17,623,257,10016,35,60 +36715,17,623,258,10016,35,70 +36716,17,623,259,350,45,70 +36717,17,623,260,350,45,70 +36718,17,623,261,550,5,15 +36719,17,623,262,550,5,15 +36720,17,623,263,550,5,15 +36721,17,623,264,550,5,15 +36722,17,623,265,550,5,15 +36723,17,623,266,10016,5,20 +36724,17,623,267,10016,5,20 +36725,17,623,268,10016,5,20 +36726,17,623,269,10016,5,20 +36727,17,623,270,10016,5,20 +36728,17,623,271,504,2,2 +36729,17,623,272,506,2,2 +36730,17,623,273,504,3,3 +36731,17,623,274,506,3,3 +36732,17,623,275,504,4,4 +36733,17,623,276,506,4,4 +36734,17,623,277,504,4,4 +36735,17,623,278,506,4,4 +36736,17,623,279,504,4,4 +36737,17,623,280,506,4,4 +36738,17,623,281,504,4,4 +36739,17,623,282,506,4,4 +36740,17,624,295,531,4,4 +36741,17,624,296,531,4,4 +36742,17,624,297,531,5,5 +36743,17,624,298,531,5,5 +36744,17,624,299,531,6,6 +36745,17,624,300,531,7,7 +36746,17,624,301,531,7,7 +36747,17,624,302,531,7,7 +36748,17,624,303,531,7,7 +36749,17,624,304,531,7,7 +36750,17,624,305,531,7,7 +36751,17,624,306,531,7,7 +36752,17,624,271,504,4,4 +36753,17,624,272,506,4,4 +36754,17,624,273,504,5,5 +36755,17,624,274,506,5,5 +36756,17,624,275,509,4,4 +36757,17,624,276,509,5,5 +36758,17,624,277,504,6,6 +36759,17,624,278,506,6,6 +36760,17,624,279,504,7,7 +36761,17,624,280,506,7,7 +36762,17,624,281,504,7,7 +36763,17,624,282,506,7,7 +36764,17,625,283,504,10,10 +36765,17,625,284,519,10,10 +36766,17,625,285,522,10,10 +36767,17,625,286,519,11,11 +36768,17,625,287,506,11,11 +36769,17,625,288,509,11,11 +36770,17,625,289,522,11,11 +36771,17,625,290,519,12,12 +36772,17,625,291,522,12,12 +36773,17,625,292,519,13,13 +36774,17,625,293,522,13,13 +36775,17,625,294,519,13,13 +36776,17,625,295,531,8,8 +36777,17,625,296,531,8,8 +36778,17,625,297,531,9,9 +36779,17,625,298,531,9,9 +36780,17,625,299,531,10,10 +36781,17,625,300,531,11,11 +36782,17,625,301,531,11,11 +36783,17,625,302,531,11,11 +36784,17,625,303,531,11,11 +36785,17,625,304,531,11,11 +36786,17,625,305,531,11,11 +36787,17,625,306,531,11,11 +36788,17,625,251,118,35,55 +36789,17,625,252,550,35,55 +36790,17,625,253,118,35,55 +36791,17,625,254,118,35,55 +36792,17,625,255,118,35,55 +36793,17,625,256,118,35,60 +36794,17,625,257,10016,35,60 +36795,17,625,258,119,35,70 +36796,17,625,259,119,45,70 +36797,17,625,260,119,45,70 +36798,17,625,261,550,5,15 +36799,17,625,262,550,5,15 +36800,17,625,263,550,5,15 +36801,17,625,264,550,5,15 +36802,17,625,265,550,5,15 +36803,17,625,266,10016,5,20 +36804,17,625,267,10016,5,20 +36805,17,625,268,10016,5,20 +36806,17,625,269,10016,5,20 +36807,17,625,270,10016,5,20 +36808,17,625,271,504,8,8 +36809,17,625,272,519,8,8 +36810,17,625,273,522,8,8 +36811,17,625,274,519,9,9 +36812,17,625,275,506,9,9 +36813,17,625,276,509,9,9 +36814,17,625,277,522,9,9 +36815,17,625,278,519,10,10 +36816,17,625,279,522,10,10 +36817,17,625,280,519,11,11 +36818,17,625,281,522,11,11 +36819,17,625,282,519,11,11 +36820,17,626,307,529,10,10 +36821,17,626,308,529,10,10 +36822,17,626,309,529,11,11 +36823,17,626,310,529,11,11 +36824,17,626,311,529,12,12 +36825,17,626,312,529,12,12 +36826,17,626,313,529,13,13 +36827,17,626,314,529,13,13 +36828,17,626,315,529,13,13 +36829,17,626,316,529,13,13 +36830,17,626,317,529,13,13 +36831,17,626,318,529,13,13 +36832,17,626,251,60,35,55 +36833,17,626,252,550,35,55 +36834,17,626,253,61,35,55 +36835,17,626,254,60,35,55 +36836,17,626,255,60,35,55 +36837,17,626,256,61,35,60 +36838,17,626,257,10016,35,60 +36839,17,626,258,61,35,60 +36840,17,626,259,62,35,60 +36841,17,626,260,62,35,60 +36842,17,626,261,550,5,15 +36843,17,626,262,550,5,15 +36844,17,626,263,550,5,15 +36845,17,626,264,550,5,15 +36846,17,626,265,550,5,15 +36847,17,626,266,10016,5,20 +36848,17,626,267,10016,5,20 +36849,17,626,268,10016,5,20 +36850,17,626,269,10016,5,20 +36851,17,626,270,10016,5,20 +36852,17,626,271,524,10,10 +36853,17,626,272,527,10,10 +36854,17,626,273,524,11,11 +36855,17,626,274,527,11,11 +36856,17,626,275,524,11,11 +36857,17,626,276,527,11,11 +36858,17,626,277,524,12,12 +36859,17,626,278,527,12,12 +36860,17,626,279,524,13,13 +36861,17,626,280,527,13,13 +36862,17,626,281,524,13,13 +36863,17,626,282,527,13,13 +36864,17,627,251,98,35,55 +36865,17,627,252,366,35,55 +36866,17,627,253,98,35,55 +36867,17,627,254,370,35,55 +36868,17,627,255,370,35,55 +36869,17,627,256,369,35,60 +36870,17,627,257,370,35,60 +36871,17,627,258,99,35,70 +36872,17,627,259,367,45,70 +36873,17,627,260,367,45,70 +36874,17,627,261,592,5,15 +36875,17,627,262,592,5,15 +36876,17,627,263,592,5,15 +36877,17,627,264,592,5,15 +36878,17,627,265,592,5,15 +36879,17,627,266,594,5,20 +36880,17,627,267,594,5,20 +36881,17,627,268,594,5,20 +36882,17,627,269,593,5,20 +36883,17,627,270,593,5,20 +36884,17,627,271,551,15,15 +36885,17,627,272,554,15,15 +36886,17,627,273,551,16,16 +36887,17,627,274,554,16,16 +36888,17,627,275,559,16,16 +36889,17,627,276,559,17,17 +36890,17,627,277,551,17,17 +36891,17,627,278,554,17,17 +36892,17,627,279,551,18,18 +36893,17,627,280,554,18,18 +36894,17,627,281,551,18,18 +36895,17,627,282,554,18,18 +36896,17,628,283,574,22,22 +36897,17,628,284,572,22,22 +36898,17,628,285,568,22,22 +36899,17,628,286,568,24,24 +36900,17,628,287,510,23,23 +36901,17,628,288,510,25,25 +36902,17,628,289,572,23,23 +36903,17,628,290,574,23,23 +36904,17,628,291,572,24,24 +36905,17,628,292,574,24,24 +36906,17,628,293,572,25,25 +36907,17,628,294,574,25,25 +36908,17,628,295,531,19,19 +36909,17,628,296,531,19,19 +36910,17,628,297,587,20,20 +36911,17,628,298,531,20,20 +36912,17,628,299,531,21,21 +36913,17,628,300,531,22,22 +36914,17,628,301,531,22,22 +36915,17,628,302,531,22,22 +36916,17,628,303,573,22,22 +36917,17,628,304,531,22,22 +36918,17,628,305,573,22,22 +36919,17,628,306,531,22,22 +36920,17,628,271,574,19,19 +36921,17,628,272,572,19,19 +36922,17,628,273,568,19,19 +36923,17,628,274,568,21,21 +36924,17,628,275,510,20,20 +36925,17,628,276,510,22,22 +36926,17,628,277,572,20,20 +36927,17,628,278,574,20,20 +36928,17,628,279,572,21,21 +36929,17,628,280,574,21,21 +36930,17,628,281,572,22,22 +36931,17,628,282,574,22,22 +36932,17,629,283,585,26,26 +36933,17,629,284,588,26,26 +36934,17,629,285,520,27,27 +36935,17,629,285,520,27,27 +36936,17,629,285,520,27,27 +36937,17,629,285,582,27,27 +36938,17,629,286,590,27,27 +36939,17,629,287,585,27,27 +36940,17,629,288,541,27,27 +36941,17,629,289,585,28,28 +36942,17,629,290,588,28,28 +36943,17,629,291,520,29,29 +36944,17,629,291,520,29,29 +36945,17,629,291,520,29,29 +36946,17,629,291,582,29,29 +36947,17,629,292,590,29,29 +36948,17,629,293,520,29,29 +36949,17,629,293,520,29,29 +36950,17,629,293,520,29,29 +36951,17,629,293,582,29,29 +36952,17,629,294,590,29,29 +36953,17,629,295,531,22,22 +36954,17,629,296,531,23,23 +36955,17,629,297,587,23,23 +36956,17,629,298,587,25,25 +36957,17,629,299,531,24,24 +36958,17,629,300,531,25,25 +36959,17,629,301,531,25,25 +36960,17,629,302,531,25,25 +36961,17,629,303,521,25,25 +36962,17,629,303,521,25,25 +36963,17,629,303,521,25,25 +36964,17,629,303,531,25,25 +36965,17,629,304,542,25,25 +36966,17,629,305,521,25,25 +36967,17,629,305,521,25,25 +36968,17,629,305,521,25,25 +36969,17,629,305,531,25,25 +36970,17,629,306,542,25,25 +36971,17,629,251,60,35,55 +36972,17,629,252,550,35,55 +36973,17,629,253,61,35,55 +36974,17,629,254,60,35,55 +36975,17,629,255,60,35,55 +36976,17,629,256,61,35,60 +36977,17,629,257,10016,35,60 +36978,17,629,258,61,35,70 +36979,17,629,259,186,45,70 +36980,17,629,260,186,45,70 +36981,17,629,261,550,10,25 +36982,17,629,262,550,10,25 +36983,17,629,263,550,10,25 +36984,17,629,264,550,10,25 +36985,17,629,265,550,10,25 +36986,17,629,266,10016,10,30 +36987,17,629,267,10016,10,30 +36988,17,629,268,10016,10,30 +36989,17,629,269,10016,10,30 +36990,17,629,270,10016,10,30 +36991,17,629,271,585,22,22 +36992,17,629,272,588,22,22 +36993,17,629,273,520,23,23 +36994,17,629,273,520,23,23 +36995,17,629,273,520,23,23 +36996,17,629,273,582,23,23 +36997,17,629,274,590,23,23 +36998,17,629,275,585,23,23 +36999,17,629,276,541,23,23 +37000,17,629,277,585,24,24 +37001,17,629,278,588,24,24 +37002,17,629,279,520,25,25 +37003,17,629,279,520,25,25 +37004,17,629,279,520,25,25 +37005,17,629,279,582,25,25 +37006,17,629,280,590,25,25 +37007,17,629,281,520,25,25 +37008,17,629,281,520,25,25 +37009,17,629,281,520,25,25 +37010,17,629,281,582,25,25 +37011,17,629,282,590,25,25 +37012,17,630,307,529,28,28 +37013,17,630,308,529,28,28 +37014,17,630,309,529,29,29 +37015,17,630,310,529,29,29 +37016,17,630,311,529,30,30 +37017,17,630,312,529,30,30 +37018,17,630,313,529,31,31 +37019,17,630,314,529,31,31 +37020,17,630,315,529,31,31 +37021,17,630,316,529,31,31 +37022,17,630,317,529,31,31 +37023,17,630,318,529,31,31 +37024,17,630,271,525,28,28 +37025,17,630,272,527,28,28 +37026,17,630,273,525,29,29 +37027,17,630,274,527,30,30 +37028,17,630,275,525,30,30 +37029,17,630,276,610,30,30 +37030,17,630,277,525,30,30 +37031,17,630,278,610,31,31 +37032,17,630,279,525,31,31 +37033,17,630,280,610,31,31 +37034,17,630,281,525,31,31 +37035,17,630,282,610,31,31 +37036,17,631,307,529,28,28 +37037,17,631,308,529,28,28 +37038,17,631,309,529,29,29 +37039,17,631,310,529,29,29 +37040,17,631,311,529,30,30 +37041,17,631,312,529,30,30 +37042,17,631,313,529,31,31 +37043,17,631,314,529,31,31 +37044,17,631,315,529,31,31 +37045,17,631,316,529,31,31 +37046,17,631,317,529,31,31 +37047,17,631,318,529,31,31 +37048,17,631,271,525,28,28 +37049,17,631,272,527,28,28 +37050,17,631,273,525,29,29 +37051,17,631,274,527,30,30 +37052,17,631,275,525,30,30 +37053,17,631,276,610,30,30 +37054,17,631,277,525,30,30 +37055,17,631,278,610,31,31 +37056,17,631,279,525,31,31 +37057,17,631,280,610,31,31 +37058,17,631,281,525,31,31 +37059,17,631,282,610,31,31 +37060,17,632,283,520,30,30 +37061,17,632,283,520,30,30 +37062,17,632,283,520,30,30 +37063,17,632,283,613,30,30 +37064,17,632,284,585,30,30 +37065,17,632,285,505,31,31 +37066,17,632,286,523,31,31 +37067,17,632,287,520,32,32 +37068,17,632,287,520,32,32 +37069,17,632,287,520,32,32 +37070,17,632,287,613,32,32 +37071,17,632,288,523,33,33 +37072,17,632,289,505,32,32 +37073,17,632,290,590,31,31 +37074,17,632,291,505,33,33 +37075,17,632,292,590,33,33 +37076,17,632,293,505,33,33 +37077,17,632,294,590,33,33 +37078,17,632,295,531,26,26 +37079,17,632,296,531,26,26 +37080,17,632,297,587,27,27 +37081,17,632,298,531,27,27 +37082,17,632,299,531,28,28 +37083,17,632,300,531,29,29 +37084,17,632,301,531,29,29 +37085,17,632,302,531,29,29 +37086,17,632,303,531,29,29 +37087,17,632,304,521,29,29 +37088,17,632,304,521,29,29 +37089,17,632,304,521,29,29 +37090,17,632,304,531,29,29 +37091,17,632,305,531,29,29 +37092,17,632,306,521,29,29 +37093,17,632,306,521,29,29 +37094,17,632,306,521,29,29 +37095,17,632,306,531,29,29 +37096,17,632,271,520,26,26 +37097,17,632,271,520,26,26 +37098,17,632,271,520,26,26 +37099,17,632,271,613,26,26 +37100,17,632,272,585,26,26 +37101,17,632,273,505,27,27 +37102,17,632,274,523,27,27 +37103,17,632,275,520,28,28 +37104,17,632,275,520,28,28 +37105,17,632,275,520,28,28 +37106,17,632,275,613,28,28 +37107,17,632,276,523,29,29 +37108,17,632,277,505,28,28 +37109,17,632,278,590,27,27 +37110,17,632,279,505,29,29 +37111,17,632,280,590,29,29 +37112,17,632,281,505,29,29 +37113,17,632,282,590,29,29 +37114,17,633,271,607,26,26 +37115,17,633,272,607,26,26 +37116,17,633,273,607,27,27 +37117,17,633,274,607,27,27 +37118,17,633,275,607,28,28 +37119,17,633,276,607,28,28 +37120,17,633,277,607,28,28 +37121,17,633,278,607,28,28 +37122,17,633,279,607,29,29 +37123,17,633,280,607,29,29 +37124,17,633,281,607,29,29 +37125,17,633,282,607,29,29 +37126,17,634,271,607,26,26 +37127,17,634,272,607,26,26 +37128,17,634,273,607,27,27 +37129,17,634,274,607,27,27 +37130,17,634,275,607,28,28 +37131,17,634,276,605,26,26 +37132,17,634,277,607,28,28 +37133,17,634,278,607,28,28 +37134,17,634,279,607,29,29 +37135,17,634,280,605,27,27 +37136,17,634,281,607,29,29 +37137,17,634,282,605,28,28 +37138,17,635,271,607,26,26 +37139,17,635,272,607,27,27 +37140,17,635,273,607,26,26 +37141,17,635,274,605,26,26 +37142,17,635,275,607,28,28 +37143,17,635,276,605,27,27 +37144,17,635,277,607,28,28 +37145,17,635,278,605,28,28 +37146,17,635,279,607,29,29 +37147,17,635,280,605,29,29 +37148,17,635,281,607,29,29 +37149,17,635,282,605,29,29 +37150,17,636,271,607,26,26 +37151,17,636,272,605,26,26 +37152,17,636,273,607,27,27 +37153,17,636,274,605,27,27 +37154,17,636,275,607,28,28 +37155,17,636,276,605,28,28 +37156,17,636,277,607,28,28 +37157,17,636,278,605,28,28 +37158,17,636,279,607,29,29 +37159,17,636,280,605,29,29 +37160,17,636,281,607,29,29 +37161,17,636,282,605,29,29 +37162,17,637,251,339,35,55 +37163,17,637,252,618,35,55 +37164,17,637,253,339,35,55 +37165,17,637,254,339,35,55 +37166,17,637,255,339,35,55 +37167,17,637,256,339,35,60 +37168,17,637,257,618,35,60 +37169,17,637,258,340,35,70 +37170,17,637,259,340,45,70 +37171,17,637,260,340,45,70 +37172,17,637,261,618,15,35 +37173,17,637,262,618,15,35 +37174,17,637,263,618,15,35 +37175,17,637,264,618,15,35 +37176,17,637,265,618,15,35 +37177,17,637,266,618,15,40 +37178,17,637,267,618,15,40 +37179,17,637,268,618,15,40 +37180,17,637,269,537,15,40 +37181,17,637,270,537,15,40 +37182,17,637,271,536,30,30 +37183,17,637,271,536,30,30 +37184,17,637,271,536,30,30 +37185,17,637,272,616,30,30 +37186,17,637,272,616,30,30 +37187,17,637,272,616,30,30 +37188,17,637,273,536,31,31 +37189,17,637,273,536,31,31 +37190,17,637,273,536,31,31 +37191,17,637,274,616,31,31 +37192,17,637,274,616,31,31 +37193,17,637,274,616,31,31 +37194,17,637,275,618,31,31 +37195,17,637,275,618,31,31 +37196,17,637,275,618,31,31 +37197,17,637,276,618,32,32 +37198,17,637,276,618,32,32 +37199,17,637,276,618,32,32 +37200,17,637,277,536,32,32 +37201,17,637,277,536,32,32 +37202,17,637,277,536,32,32 +37203,17,637,278,616,32,32 +37204,17,637,278,616,32,32 +37205,17,637,278,616,32,32 +37206,17,637,279,536,33,33 +37207,17,637,279,536,33,33 +37208,17,637,279,536,33,33 +37209,17,637,280,616,33,33 +37210,17,637,280,616,33,33 +37211,17,637,280,616,33,33 +37212,17,637,281,536,33,33 +37213,17,637,281,536,33,33 +37214,17,637,281,536,33,33 +37215,17,637,282,616,33,33 +37216,17,637,282,616,33,33 +37217,17,637,282,616,33,33 +37218,17,638,251,339,35,55 +37219,17,638,252,618,35,55 +37220,17,638,253,339,35,55 +37221,17,638,254,339,35,55 +37222,17,638,255,339,35,55 +37223,17,638,256,339,35,60 +37224,17,638,257,618,35,60 +37225,17,638,258,340,35,70 +37226,17,638,259,340,45,70 +37227,17,638,260,340,45,70 +37228,17,638,261,618,15,35 +37229,17,638,262,618,15,35 +37230,17,638,263,618,15,35 +37231,17,638,264,618,15,35 +37232,17,638,265,618,15,35 +37233,17,638,266,618,15,40 +37234,17,638,267,618,15,40 +37235,17,638,268,618,15,40 +37236,17,638,269,537,15,40 +37237,17,638,270,537,15,40 +37238,17,638,271,536,30,30 +37239,17,638,271,536,30,30 +37240,17,638,271,536,30,30 +37241,17,638,272,616,30,30 +37242,17,638,272,616,30,30 +37243,17,638,272,616,30,30 +37244,17,638,273,536,31,31 +37245,17,638,273,536,31,31 +37246,17,638,273,536,31,31 +37247,17,638,274,616,31,31 +37248,17,638,274,616,31,31 +37249,17,638,274,616,31,31 +37250,17,638,275,618,31,31 +37251,17,638,275,618,31,31 +37252,17,638,275,618,31,31 +37253,17,638,276,618,32,32 +37254,17,638,276,618,32,32 +37255,17,638,276,618,32,32 +37256,17,638,277,536,32,32 +37257,17,638,277,536,32,32 +37258,17,638,277,536,32,32 +37259,17,638,278,616,32,32 +37260,17,638,278,616,32,32 +37261,17,638,278,616,32,32 +37262,17,638,279,536,33,33 +37263,17,638,279,536,33,33 +37264,17,638,279,536,33,33 +37265,17,638,280,616,33,33 +37266,17,638,280,616,33,33 +37267,17,638,280,616,33,33 +37268,17,638,281,536,33,33 +37269,17,638,281,536,33,33 +37270,17,638,281,536,33,33 +37271,17,638,282,616,33,33 +37272,17,638,282,616,33,33 +37273,17,638,282,616,33,33 +37274,17,639,283,575,36,36 +37275,17,639,284,572,37,37 +37276,17,639,285,569,36,36 +37277,17,639,286,569,38,38 +37278,17,639,287,624,31,31 +37279,17,639,288,510,38,38 +37280,17,639,289,624,37,37 +37281,17,639,290,575,37,37 +37282,17,639,291,624,38,38 +37283,17,639,292,575,38,38 +37284,17,639,293,624,39,39 +37285,17,639,294,575,39,39 +37286,17,639,295,531,31,31 +37287,17,639,296,531,31,31 +37288,17,639,297,587,32,32 +37289,17,639,298,531,32,32 +37290,17,639,299,531,33,33 +37291,17,639,300,531,34,34 +37292,17,639,301,531,34,34 +37293,17,639,302,531,34,34 +37294,17,639,303,573,34,34 +37295,17,639,304,576,34,34 +37296,17,639,305,573,34,34 +37297,17,639,306,576,34,34 +37298,17,639,271,575,31,31 +37299,17,639,272,572,32,32 +37300,17,639,273,569,31,31 +37301,17,639,274,569,33,33 +37302,17,639,275,624,31,31 +37303,17,639,276,510,33,33 +37304,17,639,277,624,32,32 +37305,17,639,278,575,32,32 +37306,17,639,279,624,33,33 +37307,17,639,280,575,33,33 +37308,17,639,281,624,34,34 +37309,17,639,282,575,34,34 +37310,17,640,307,530,47,47 +37311,17,640,308,530,47,47 +37312,17,640,309,530,48,48 +37313,17,640,310,530,48,48 +37314,17,640,311,530,49,49 +37315,17,640,312,530,49,49 +37316,17,640,313,530,50,50 +37317,17,640,314,530,50,50 +37318,17,640,315,530,50,50 +37319,17,640,316,530,50,50 +37320,17,640,317,530,50,50 +37321,17,640,318,530,50,50 +37322,17,640,271,525,48,48 +37323,17,640,272,527,47,47 +37324,17,640,273,75,47,47 +37325,17,640,274,75,49,49 +37326,17,640,275,302,49,49 +37327,17,640,276,108,49,49 +37328,17,640,277,303,49,49 +37329,17,640,278,108,50,50 +37330,17,640,279,303,49,49 +37331,17,640,280,108,50,50 +37332,17,640,281,303,49,49 +37333,17,640,282,108,49,49 +37334,17,641,307,530,47,47 +37335,17,641,308,530,47,47 +37336,17,641,309,530,48,48 +37337,17,641,310,530,48,48 +37338,17,641,311,530,49,49 +37339,17,641,312,530,49,49 +37340,17,641,313,530,50,50 +37341,17,641,314,530,50,50 +37342,17,641,315,530,50,50 +37343,17,641,316,530,50,50 +37344,17,641,317,530,50,50 +37345,17,641,318,530,50,50 +37346,17,641,271,525,48,48 +37347,17,641,272,527,47,47 +37348,17,641,273,75,47,47 +37349,17,641,274,75,49,49 +37350,17,641,275,302,49,49 +37351,17,641,276,108,49,49 +37352,17,641,277,303,49,49 +37353,17,641,278,108,50,50 +37354,17,641,279,303,49,49 +37355,17,641,280,447,50,50 +37356,17,641,281,303,49,49 +37357,17,641,282,447,49,49 +37358,17,642,307,530,47,47 +37359,17,642,308,530,47,47 +37360,17,642,309,530,48,48 +37361,17,642,310,530,48,48 +37362,17,642,311,530,49,49 +37363,17,642,312,530,49,49 +37364,17,642,313,530,50,50 +37365,17,642,314,530,50,50 +37366,17,642,315,530,50,50 +37367,17,642,316,530,50,50 +37368,17,642,317,530,50,50 +37369,17,642,318,530,50,50 +37370,17,642,251,60,35,55 +37371,17,642,252,550,35,55 +37372,17,642,253,61,35,55 +37373,17,642,254,60,35,55 +37374,17,642,255,60,35,55 +37375,17,642,256,61,35,60 +37376,17,642,257,10016,35,60 +37377,17,642,258,61,35,70 +37378,17,642,259,62,45,70 +37379,17,642,260,62,45,70 +37380,17,642,261,550,25,55 +37381,17,642,262,550,25,55 +37382,17,642,263,550,25,55 +37383,17,642,264,550,25,55 +37384,17,642,265,550,25,55 +37385,17,642,266,10016,25,70 +37386,17,642,267,10016,25,70 +37387,17,642,268,10016,25,70 +37388,17,642,269,10016,25,70 +37389,17,642,270,10016,25,70 +37390,17,642,271,525,48,48 +37391,17,642,272,527,47,47 +37392,17,642,273,75,47,47 +37393,17,642,274,75,49,49 +37394,17,642,275,302,49,49 +37395,17,642,276,108,49,49 +37396,17,642,277,303,49,49 +37397,17,642,278,447,50,50 +37398,17,642,279,303,49,49 +37399,17,642,280,447,50,50 +37400,17,642,281,303,49,49 +37401,17,642,282,447,49,49 +37402,17,643,283,507,38,38 +37403,17,643,284,629,39,39 +37404,17,643,285,507,39,39 +37405,17,643,286,629,41,41 +37406,17,643,287,626,39,39 +37407,17,643,288,626,40,40 +37408,17,643,289,591,39,39 +37409,17,643,290,539,38,38 +37410,17,643,291,591,39,39 +37411,17,643,292,539,41,41 +37412,17,643,293,591,40,40 +37413,17,643,294,539,41,41 +37414,17,643,295,531,33,33 +37415,17,643,296,531,33,33 +37416,17,643,297,587,34,34 +37417,17,643,298,531,34,34 +37418,17,643,299,531,35,35 +37419,17,643,300,531,36,36 +37420,17,643,301,531,36,36 +37421,17,643,302,531,36,36 +37422,17,643,303,508,36,36 +37423,17,643,304,538,36,36 +37424,17,643,305,508,36,36 +37425,17,643,306,538,36,36 +37426,17,643,271,507,33,33 +37427,17,643,272,629,34,34 +37428,17,643,273,507,34,34 +37429,17,643,274,629,36,36 +37430,17,643,275,626,34,34 +37431,17,643,276,626,35,35 +37432,17,643,277,590,34,34 +37433,17,643,278,539,33,33 +37434,17,643,279,590,34,34 +37435,17,643,280,539,36,36 +37436,17,643,281,590,35,35 +37437,17,643,282,539,36,36 +37438,17,644,283,507,38,38 +37439,17,644,284,629,39,39 +37440,17,644,285,507,39,39 +37441,17,644,286,629,41,41 +37442,17,644,287,626,39,39 +37443,17,644,288,626,40,40 +37444,17,644,289,591,38,38 +37445,17,644,290,539,38,38 +37446,17,644,291,591,39,39 +37447,17,644,292,539,41,41 +37448,17,644,293,591,40,40 +37449,17,644,294,539,41,41 +37450,17,644,295,531,33,33 +37451,17,644,296,531,33,33 +37452,17,644,297,587,34,34 +37453,17,644,298,531,34,34 +37454,17,644,299,531,35,35 +37455,17,644,300,531,36,36 +37456,17,644,301,531,36,36 +37457,17,644,302,531,36,36 +37458,17,644,303,508,36,36 +37459,17,644,304,538,36,36 +37460,17,644,305,508,36,36 +37461,17,644,306,538,36,36 +37462,17,644,271,507,33,33 +37463,17,644,272,629,34,34 +37464,17,644,273,507,34,34 +37465,17,644,274,629,36,36 +37466,17,644,275,626,34,34 +37467,17,644,276,626,35,35 +37468,17,644,277,590,33,33 +37469,17,644,278,539,33,33 +37470,17,644,279,590,34,34 +37471,17,644,280,539,36,36 +37472,17,644,281,590,35,35 +37473,17,644,282,539,36,36 +37474,17,645,283,630,58,58 +37475,17,645,284,55,57,57 +37476,17,645,285,207,57,57 +37477,17,645,286,591,58,58 +37478,17,645,287,335,58,58 +37479,17,645,288,336,58,58 +37480,17,645,289,588,59,59 +37481,17,645,290,625,60,60 +37482,17,645,291,207,60,60 +37483,17,645,292,630,60,60 +37484,17,645,293,207,60,60 +37485,17,645,294,630,60,60 +37486,17,645,295,531,47,47 +37487,17,645,296,531,47,47 +37488,17,645,297,587,48,48 +37489,17,645,298,531,48,48 +37490,17,645,299,531,49,49 +37491,17,645,300,531,50,50 +37492,17,645,301,531,50,50 +37493,17,645,302,531,50,50 +37494,17,645,303,472,50,50 +37495,17,645,304,531,50,50 +37496,17,645,305,472,50,50 +37497,17,645,306,531,50,50 +37498,17,645,251,118,35,55 +37499,17,645,252,550,35,55 +37500,17,645,253,118,35,55 +37501,17,645,254,118,35,55 +37502,17,645,255,118,35,55 +37503,17,645,256,118,35,60 +37504,17,645,257,10016,35,60 +37505,17,645,258,119,35,70 +37506,17,645,259,119,45,70 +37507,17,645,260,119,45,70 +37508,17,645,261,550,25,55 +37509,17,645,262,418,25,55 +37510,17,645,263,550,25,55 +37511,17,645,264,550,25,55 +37512,17,645,265,550,25,55 +37513,17,645,266,418,25,60 +37514,17,645,267,10016,25,60 +37515,17,645,268,419,35,70 +37516,17,645,269,419,35,70 +37517,17,645,270,419,35,70 +37518,17,645,271,629,48,48 +37519,17,645,272,55,47,47 +37520,17,645,273,207,47,47 +37521,17,645,274,591,48,48 +37522,17,645,275,335,48,48 +37523,17,645,276,336,48,48 +37524,17,645,277,588,49,49 +37525,17,645,278,624,50,50 +37526,17,645,279,207,50,50 +37527,17,645,280,629,50,50 +37528,17,645,281,207,50,50 +37529,17,645,282,629,50,50 +37530,17,646,283,415,57,57 +37531,17,646,284,191,57,57 +37532,17,646,285,78,59,59 +37533,17,646,286,520,58,58 +37534,17,646,287,421,58,58 +37535,17,646,288,14,59,59 +37536,17,646,289,214,60,60 +37537,17,646,290,127,60,60 +37538,17,646,291,206,59,59 +37539,17,646,292,520,60,60 +37540,17,646,293,206,59,59 +37541,17,646,294,520,60,60 +37542,17,646,295,531,47,47 +37543,17,646,296,531,47,47 +37544,17,646,297,587,48,48 +37545,17,646,298,531,48,48 +37546,17,646,299,531,49,49 +37547,17,646,300,531,50,50 +37548,17,646,301,521,50,50 +37549,17,646,302,15,50,50 +37550,17,646,303,416,50,50 +37551,17,646,304,192,50,50 +37552,17,646,305,416,50,50 +37553,17,646,306,192,50,50 +37554,17,646,271,415,47,47 +37555,17,646,272,191,47,47 +37556,17,646,273,78,49,49 +37557,17,646,274,520,48,48 +37558,17,646,275,421,48,48 +37559,17,646,276,14,48,48 +37560,17,646,277,214,50,50 +37561,17,646,278,127,50,50 +37562,17,646,279,206,48,48 +37563,17,646,280,520,50,50 +37564,17,646,281,206,48,48 +37565,17,646,282,520,50,50 +37566,17,647,283,114,57,57 +37567,17,647,284,277,57,57 +37568,17,647,285,42,58,58 +37569,17,647,286,337,58,58 +37570,17,647,287,338,58,58 +37571,17,647,288,426,59,59 +37572,17,647,289,359,58,58 +37573,17,647,290,359,60,60 +37574,17,647,291,114,59,59 +37575,17,647,292,42,60,60 +37576,17,647,293,114,59,59 +37577,17,647,294,42,60,60 +37578,17,647,295,531,47,47 +37579,17,647,296,531,47,47 +37580,17,647,297,587,48,48 +37581,17,647,298,531,48,48 +37582,17,647,299,531,49,49 +37583,17,647,300,531,50,50 +37584,17,647,301,531,50,50 +37585,17,647,302,531,50,50 +37586,17,647,303,169,50,50 +37587,17,647,304,465,50,50 +37588,17,647,305,169,50,50 +37589,17,647,306,465,50,50 +37590,17,647,251,98,35,55 +37591,17,647,252,90,35,55 +37592,17,647,253,98,35,55 +37593,17,647,254,370,35,55 +37594,17,647,255,370,35,55 +37595,17,647,256,90,35,60 +37596,17,647,257,370,35,60 +37597,17,647,258,99,35,70 +37598,17,647,259,91,45,70 +37599,17,647,260,91,45,70 +37600,17,647,261,278,25,55 +37601,17,647,262,120,25,55 +37602,17,647,263,279,25,55 +37603,17,647,264,279,25,55 +37604,17,647,265,279,25,55 +37605,17,647,266,120,25,60 +37606,17,647,267,222,25,60 +37607,17,647,268,121,35,70 +37608,17,647,269,121,35,70 +37609,17,647,270,121,35,70 +37610,17,647,271,114,47,47 +37611,17,647,272,277,47,47 +37612,17,647,273,42,48,48 +37613,17,647,274,337,48,48 +37614,17,647,275,338,48,48 +37615,17,647,276,426,49,49 +37616,17,647,277,359,48,48 +37617,17,647,278,359,50,50 +37618,17,647,279,114,49,49 +37619,17,647,280,42,50,50 +37620,17,647,281,114,49,49 +37621,17,647,282,42,50,50 +37622,17,648,283,55,57,57 +37623,17,648,284,39,58,58 +37624,17,648,285,357,58,58 +37625,17,648,286,620,59,59 +37626,17,648,287,334,59,59 +37627,17,648,288,426,59,59 +37628,17,648,289,213,59,59 +37629,17,648,290,606,58,58 +37630,17,648,291,357,60,60 +37631,17,648,292,606,60,60 +37632,17,648,293,357,60,60 +37633,17,648,294,606,60,60 +37634,17,648,295,531,47,47 +37635,17,648,296,531,47,47 +37636,17,648,297,587,48,48 +37637,17,648,298,531,48,48 +37638,17,648,299,531,49,49 +37639,17,648,300,531,50,50 +37640,17,648,301,531,50,50 +37641,17,648,302,531,50,50 +37642,17,648,303,40,50,50 +37643,17,648,304,531,50,50 +37644,17,648,305,40,50,50 +37645,17,648,306,531,50,50 +37646,17,648,251,118,35,55 +37647,17,648,252,550,35,55 +37648,17,648,253,118,35,55 +37649,17,648,254,118,35,55 +37650,17,648,255,118,35,55 +37651,17,648,256,118,35,60 +37652,17,648,257,10016,35,60 +37653,17,648,258,119,35,70 +37654,17,648,259,119,45,70 +37655,17,648,260,119,45,70 +37656,17,648,261,550,25,55 +37657,17,648,262,418,25,55 +37658,17,648,263,550,25,55 +37659,17,648,264,550,25,55 +37660,17,648,265,550,25,55 +37661,17,648,266,418,25,60 +37662,17,648,267,10016,25,60 +37663,17,648,268,419,35,70 +37664,17,648,269,419,35,70 +37665,17,648,270,419,35,70 +37666,17,648,271,55,47,47 +37667,17,648,272,39,48,48 +37668,17,648,273,357,48,48 +37669,17,648,274,619,49,49 +37670,17,648,275,334,49,49 +37671,17,648,276,426,49,49 +37672,17,648,277,213,49,49 +37673,17,648,278,606,48,48 +37674,17,648,279,357,50,50 +37675,17,648,280,606,50,50 +37676,17,648,281,357,50,50 +37677,17,648,282,606,50,50 +37678,17,649,283,37,57,57 +37679,17,649,284,358,57,57 +37680,17,649,285,546,58,58 +37681,17,649,286,358,59,59 +37682,17,649,287,234,58,58 +37683,17,649,288,164,58,58 +37684,17,649,289,198,58,58 +37685,17,649,290,437,58,58 +37686,17,649,291,164,60,60 +37687,17,649,292,437,60,60 +37688,17,649,293,164,60,60 +37689,17,649,294,437,60,60 +37690,17,649,295,531,47,47 +37691,17,649,296,531,47,47 +37692,17,649,297,587,48,48 +37693,17,649,298,531,48,48 +37694,17,649,299,531,49,49 +37695,17,649,300,531,50,50 +37696,17,649,301,430,50,50 +37697,17,649,302,547,50,50 +37698,17,649,303,531,50,50 +37699,17,649,304,38,50,50 +37700,17,649,305,531,50,50 +37701,17,649,306,38,50,50 +37702,17,649,251,118,35,55 +37703,17,649,252,550,35,55 +37704,17,649,253,118,35,55 +37705,17,649,254,118,35,55 +37706,17,649,255,118,35,55 +37707,17,649,256,118,35,60 +37708,17,649,257,10016,35,60 +37709,17,649,258,119,35,70 +37710,17,649,259,119,45,70 +37711,17,649,260,119,45,70 +37712,17,649,261,550,25,55 +37713,17,649,262,79,25,55 +37714,17,649,263,550,25,55 +37715,17,649,264,550,25,55 +37716,17,649,265,550,25,55 +37717,17,649,266,79,25,60 +37718,17,649,267,10016,25,60 +37719,17,649,268,80,35,70 +37720,17,649,269,199,35,70 +37721,17,649,270,199,35,70 +37722,17,649,271,37,47,47 +37723,17,649,272,358,47,47 +37724,17,649,273,546,48,48 +37725,17,649,274,358,49,49 +37726,17,649,275,234,48,48 +37727,17,649,276,164,48,48 +37728,17,649,277,198,48,48 +37729,17,649,278,437,48,48 +37730,17,649,279,164,50,50 +37731,17,649,280,437,50,50 +37732,17,649,281,164,50,50 +37733,17,649,282,437,50,50 +37734,17,650,283,105,57,57 +37735,17,650,284,22,58,58 +37736,17,650,285,207,57,57 +37737,17,650,286,115,59,59 +37738,17,650,287,22,60,60 +37739,17,650,288,539,58,58 +37740,17,650,289,247,58,58 +37741,17,650,290,539,59,59 +37742,17,650,291,505,60,60 +37743,17,650,292,247,59,59 +37744,17,650,293,505,60,60 +37745,17,650,294,247,59,59 +37746,17,650,295,531,47,47 +37747,17,650,296,531,47,47 +37748,17,650,297,587,48,48 +37749,17,650,298,531,48,48 +37750,17,650,299,531,49,49 +37751,17,650,300,531,50,50 +37752,17,650,301,531,50,50 +37753,17,650,302,538,50,50 +37754,17,650,303,472,50,50 +37755,17,650,304,248,50,50 +37756,17,650,305,472,50,50 +37757,17,650,306,248,50,50 +37758,17,650,271,105,47,47 +37759,17,650,272,22,48,48 +37760,17,650,273,207,47,47 +37761,17,650,274,115,49,49 +37762,17,650,275,22,50,50 +37763,17,650,276,539,48,48 +37764,17,650,277,247,48,48 +37765,17,650,278,539,49,49 +37766,17,650,279,247,50,50 +37767,17,650,280,207,49,49 +37768,17,650,281,247,50,50 +37769,17,650,282,207,49,49 +37770,17,651,283,574,22,22 +37771,17,651,284,572,22,22 +37772,17,651,285,568,22,22 +37773,17,651,286,568,24,24 +37774,17,651,287,510,23,23 +37775,17,651,288,510,25,25 +37776,17,651,289,572,23,23 +37777,17,651,290,574,23,23 +37778,17,651,291,572,24,24 +37779,17,651,292,574,24,24 +37780,17,651,293,572,25,25 +37781,17,651,294,574,25,25 +37782,17,651,295,531,19,19 +37783,17,651,296,531,19,19 +37784,17,651,297,587,20,20 +37785,17,651,298,531,20,20 +37786,17,651,299,531,21,21 +37787,17,651,300,531,22,22 +37788,17,651,301,531,22,22 +37789,17,651,302,531,22,22 +37790,17,651,303,573,22,22 +37791,17,651,304,531,22,22 +37792,17,651,305,573,22,22 +37793,17,651,306,531,22,22 +37794,17,651,271,574,19,19 +37795,17,651,272,572,19,19 +37796,17,651,273,568,19,19 +37797,17,651,274,568,21,21 +37798,17,651,275,510,20,20 +37799,17,651,276,510,22,22 +37800,17,651,277,572,20,20 +37801,17,651,278,574,20,20 +37802,17,651,279,572,21,21 +37803,17,651,280,574,21,21 +37804,17,651,281,572,22,22 +37805,17,651,282,574,22,22 +37806,17,652,283,546,22,22 +37807,17,652,284,541,23,23 +37808,17,652,285,546,23,23 +37809,17,652,286,541,24,24 +37810,17,652,287,520,24,24 +37811,17,652,288,543,23,23 +37812,17,652,289,520,25,25 +37813,17,652,290,543,24,24 +37814,17,652,291,546,24,24 +37815,17,652,292,541,25,25 +37816,17,652,293,546,25,25 +37817,17,652,294,541,25,25 +37818,17,652,295,531,19,19 +37819,17,652,296,531,20,20 +37820,17,652,297,587,20,20 +37821,17,652,298,511,20,20 +37822,17,652,299,513,20,20 +37823,17,652,300,515,20,20 +37824,17,652,301,531,21,21 +37825,17,652,302,521,22,22 +37826,17,652,303,542,22,22 +37827,17,652,304,547,22,22 +37828,17,652,305,542,22,22 +37829,17,652,306,547,22,22 +37830,17,652,251,118,35,55 +37831,17,652,252,550,35,55 +37832,17,652,253,118,35,55 +37833,17,652,254,118,35,55 +37834,17,652,255,118,35,55 +37835,17,652,256,118,35,60 +37836,17,652,257,10016,35,60 +37837,17,652,258,118,35,70 +37838,17,652,259,118,35,70 +37839,17,652,260,118,35,70 +37840,17,652,261,550,5,20 +37841,17,652,262,550,5,20 +37842,17,652,263,550,5,20 +37843,17,652,264,550,5,20 +37844,17,652,265,550,5,20 +37845,17,652,266,10016,5,20 +37846,17,652,267,10016,5,20 +37847,17,652,268,10016,5,20 +37848,17,652,269,10016,5,20 +37849,17,652,270,10016,5,20 +37850,17,652,271,546,19,19 +37851,17,652,272,541,20,20 +37852,17,652,273,546,20,20 +37853,17,652,274,541,21,21 +37854,17,652,275,520,21,21 +37855,17,652,276,543,20,20 +37856,17,652,277,520,22,22 +37857,17,652,278,543,21,21 +37858,17,652,279,546,21,21 +37859,17,652,280,541,22,22 +37860,17,652,281,546,22,22 +37861,17,652,282,541,22,22 +37862,17,653,283,559,32,32 +37863,17,653,284,558,34,34 +37864,17,653,285,505,32,32 +37865,17,653,286,558,35,35 +37866,17,653,287,559,33,33 +37867,17,653,288,505,34,34 +37868,17,653,289,559,34,34 +37869,17,653,290,539,33,33 +37870,17,653,291,559,35,35 +37871,17,653,292,539,35,35 +37872,17,653,293,559,35,35 +37873,17,653,294,539,35,35 +37874,17,653,295,531,28,28 +37875,17,653,296,531,28,28 +37876,17,653,297,531,29,29 +37877,17,653,298,531,29,29 +37878,17,653,299,531,30,30 +37879,17,653,300,531,31,31 +37880,17,653,301,531,31,31 +37881,17,653,302,531,31,31 +37882,17,653,303,531,31,31 +37883,17,653,304,538,31,31 +37884,17,653,305,531,31,31 +37885,17,653,306,538,31,31 +37886,17,653,251,456,35,55 +37887,17,653,252,116,35,55 +37888,17,653,253,116,35,55 +37889,17,653,254,456,35,55 +37890,17,653,255,170,35,55 +37891,17,653,256,117,35,60 +37892,17,653,257,211,35,60 +37893,17,653,258,457,35,70 +37894,17,653,259,230,45,70 +37895,17,653,260,230,45,70 +37896,17,653,261,592,5,15 +37897,17,653,262,592,5,15 +37898,17,653,263,592,5,15 +37899,17,653,264,592,5,15 +37900,17,653,265,592,5,15 +37901,17,653,266,594,5,20 +37902,17,653,267,594,5,20 +37903,17,653,268,594,5,20 +37904,17,653,269,593,5,20 +37905,17,653,270,593,5,20 +37906,17,653,271,559,28,28 +37907,17,653,272,557,30,30 +37908,17,653,273,505,28,28 +37909,17,653,274,557,31,31 +37910,17,653,275,559,29,29 +37911,17,653,276,505,30,30 +37912,17,653,277,559,30,30 +37913,17,653,278,539,29,29 +37914,17,653,279,559,31,31 +37915,17,653,280,539,31,31 +37916,17,653,281,559,31,31 +37917,17,653,282,539,31,31 +37918,17,654,251,223,35,55 +37919,17,654,252,90,35,55 +37920,17,654,253,223,35,55 +37921,17,654,254,370,35,55 +37922,17,654,255,370,35,55 +37923,17,654,256,90,35,60 +37924,17,654,257,370,35,60 +37925,17,654,258,224,35,70 +37926,17,654,259,91,45,70 +37927,17,654,260,91,45,70 +37928,17,654,261,278,25,55 +37929,17,654,262,458,25,55 +37930,17,654,263,279,25,55 +37931,17,654,264,279,25,55 +37932,17,654,265,279,25,55 +37933,17,654,266,320,25,60 +37934,17,654,267,222,25,60 +37935,17,654,268,226,35,70 +37936,17,654,269,226,35,70 +37937,17,654,270,226,35,70 +37938,17,655,251,456,35,55 +37939,17,655,252,116,35,55 +37940,17,655,253,116,35,55 +37941,17,655,254,456,35,55 +37942,17,655,255,456,35,55 +37943,17,655,256,117,35,60 +37944,17,655,257,211,35,60 +37945,17,655,258,457,35,70 +37946,17,655,259,230,45,70 +37947,17,655,260,230,45,70 +37948,17,655,261,592,5,15 +37949,17,655,262,592,5,15 +37950,17,655,263,592,5,15 +37951,17,655,264,592,5,15 +37952,17,655,265,592,5,15 +37953,17,655,266,594,5,20 +37954,17,655,267,594,5,20 +37955,17,655,268,594,5,20 +37956,17,655,269,593,5,20 +37957,17,655,270,593,5,20 +37958,18,576,251,118,35,55 +37959,18,576,252,10016,35,55 +37960,18,576,253,118,35,55 +37961,18,576,254,118,35,55 +37962,18,576,255,118,35,55 +37963,18,576,256,118,35,60 +37964,18,576,257,550,35,60 +37965,18,576,258,119,35,70 +37966,18,576,259,119,45,70 +37967,18,576,260,119,45,70 +37968,18,576,261,10016,5,15 +37969,18,576,262,10016,5,15 +37970,18,576,263,10016,5,15 +37971,18,576,264,10016,5,15 +37972,18,576,265,10016,5,15 +37973,18,576,266,550,5,20 +37974,18,576,267,550,5,20 +37975,18,576,268,550,5,20 +37976,18,576,269,550,5,20 +37977,18,576,270,550,5,20 +37978,18,577,251,98,35,55 +37979,18,577,252,170,35,55 +37980,18,577,253,98,35,55 +37981,18,577,254,370,35,55 +37982,18,577,255,370,35,55 +37983,18,577,256,170,35,60 +37984,18,577,257,370,35,60 +37985,18,577,258,99,35,70 +37986,18,577,259,171,45,70 +37987,18,577,260,171,45,70 +37988,18,577,261,592,10,25 +37989,18,577,262,592,10,25 +37990,18,577,263,592,10,25 +37991,18,577,264,592,10,25 +37992,18,577,265,592,10,25 +37993,18,577,266,594,10,30 +37994,18,577,267,594,10,30 +37995,18,577,268,594,10,30 +37996,18,577,269,593,10,30 +37997,18,577,270,593,10,30 +37998,18,578,251,339,35,55 +37999,18,578,252,618,35,55 +38000,18,578,253,339,35,55 +38001,18,578,254,339,35,55 +38002,18,578,255,339,35,55 +38003,18,578,256,339,35,60 +38004,18,578,257,618,35,60 +38005,18,578,258,340,35,70 +38006,18,578,259,340,45,70 +38007,18,578,260,340,45,70 +38008,18,578,261,618,15,35 +38009,18,578,262,618,15,35 +38010,18,578,263,618,15,35 +38011,18,578,264,618,15,35 +38012,18,578,265,618,15,35 +38013,18,578,266,618,15,40 +38014,18,578,267,618,15,40 +38015,18,578,268,618,15,40 +38016,18,578,269,537,15,40 +38017,18,578,270,537,15,40 +38018,18,578,271,536,30,30 +38019,18,578,271,536,30,30 +38020,18,578,271,536,30,30 +38021,18,578,272,616,30,30 +38022,18,578,272,616,30,30 +38023,18,578,272,616,30,30 +38024,18,578,273,536,31,31 +38025,18,578,273,536,31,31 +38026,18,578,273,536,31,31 +38027,18,578,274,616,31,31 +38028,18,578,274,616,31,31 +38029,18,578,274,616,31,31 +38030,18,578,275,618,31,31 +38031,18,578,275,618,31,31 +38032,18,578,275,618,31,31 +38033,18,578,276,618,32,32 +38034,18,578,276,618,32,32 +38035,18,578,276,618,32,32 +38036,18,578,277,536,32,32 +38037,18,578,277,536,32,32 +38038,18,578,277,536,32,32 +38039,18,578,278,616,32,32 +38040,18,578,278,616,32,32 +38041,18,578,278,616,32,32 +38042,18,578,279,536,33,33 +38043,18,578,279,536,33,33 +38044,18,578,279,536,33,33 +38045,18,578,280,616,33,33 +38046,18,578,280,616,33,33 +38047,18,578,280,616,33,33 +38048,18,578,281,536,33,33 +38049,18,578,281,536,33,33 +38050,18,578,281,536,33,33 +38051,18,578,282,616,33,33 +38052,18,578,282,616,33,33 +38053,18,578,282,616,33,33 +38054,18,579,283,505,47,47 +38055,18,579,284,510,47,47 +38056,18,579,285,20,48,48 +38057,18,579,286,517,48,48 +38058,18,579,287,166,49,49 +38059,18,579,288,168,49,49 +38060,18,579,289,402,48,48 +38061,18,579,290,49,48,48 +38062,18,579,291,402,50,50 +38063,18,579,292,49,50,50 +38064,18,579,293,402,50,50 +38065,18,579,294,49,50,50 +38066,18,579,295,531,8,8 +38067,18,579,296,531,8,8 +38068,18,579,297,531,9,9 +38069,18,579,298,531,9,9 +38070,18,579,299,531,10,10 +38071,18,579,300,531,11,11 +38072,18,579,301,531,11,11 +38073,18,579,302,531,11,11 +38074,18,579,303,531,11,11 +38075,18,579,304,518,11,11 +38076,18,579,305,531,11,11 +38077,18,579,306,518,11,11 +38078,18,579,271,504,8,8 +38079,18,579,272,509,8,8 +38080,18,579,273,504,9,9 +38081,18,579,274,509,9,9 +38082,18,579,275,517,8,8 +38083,18,579,276,517,10,10 +38084,18,579,277,504,10,10 +38085,18,579,278,509,10,10 +38086,18,579,279,504,11,11 +38087,18,579,280,509,11,11 +38088,18,579,281,504,11,11 +38089,18,579,282,509,11,11 +38090,18,580,283,20,47,47 +38091,18,580,284,402,47,47 +38092,18,580,285,517,48,48 +38093,18,580,286,20,48,48 +38094,18,580,287,402,48,48 +38095,18,580,288,517,49,49 +38096,18,580,289,168,49,49 +38097,18,580,290,166,49,49 +38098,18,580,291,20,50,50 +38099,18,580,292,402,50,50 +38100,18,580,293,20,50,50 +38101,18,580,294,402,50,50 +38102,18,581,283,535,14,14 +38103,18,581,284,519,14,14 +38104,18,581,285,535,15,15 +38105,18,581,286,519,15,15 +38106,18,581,287,532,15,15 +38107,18,581,288,532,16,16 +38108,18,581,289,535,16,16 +38109,18,581,290,538,14,14 +38110,18,581,291,535,17,17 +38111,18,581,292,538,17,17 +38112,18,581,293,535,17,17 +38113,18,581,294,538,17,17 +38114,18,581,295,531,12,12 +38115,18,581,296,531,12,12 +38116,18,581,297,531,13,13 +38117,18,581,298,531,13,13 +38118,18,581,299,531,14,14 +38119,18,581,300,531,15,15 +38120,18,581,301,531,15,15 +38121,18,581,302,531,15,15 +38122,18,581,303,531,15,15 +38123,18,581,304,539,15,15 +38124,18,581,305,531,15,15 +38125,18,581,306,539,15,15 +38126,18,581,271,535,12,12 +38127,18,581,272,519,12,12 +38128,18,581,273,535,13,13 +38129,18,581,274,519,13,13 +38130,18,581,275,532,13,13 +38131,18,581,276,532,14,14 +38132,18,581,277,535,14,14 +38133,18,581,278,538,12,12 +38134,18,581,279,535,15,15 +38135,18,581,280,538,15,15 +38136,18,581,281,535,15,15 +38137,18,581,282,538,15,15 +38138,18,582,283,548,22,22 +38139,18,582,284,541,22,22 +38140,18,582,285,548,23,23 +38141,18,582,286,541,23,23 +38142,18,582,287,520,23,23 +38143,18,582,288,544,23,23 +38144,18,582,289,520,24,24 +38145,18,582,290,544,24,24 +38146,18,582,291,548,24,24 +38147,18,582,292,541,24,24 +38148,18,582,293,548,25,25 +38149,18,582,294,541,25,25 +38150,18,582,295,531,14,14 +38151,18,582,296,531,15,15 +38152,18,582,297,511,15,15 +38153,18,582,298,513,15,15 +38154,18,582,299,515,15,15 +38155,18,582,300,531,17,17 +38156,18,582,301,531,17,17 +38157,18,582,302,531,17,17 +38158,18,582,303,531,17,17 +38159,18,582,304,549,17,17 +38160,18,582,305,531,17,17 +38161,18,582,306,549,17,17 +38162,18,582,251,118,35,55 +38163,18,582,252,10016,35,55 +38164,18,582,253,118,35,55 +38165,18,582,254,118,35,55 +38166,18,582,255,118,35,55 +38167,18,582,256,118,35,60 +38168,18,582,257,550,35,60 +38169,18,582,258,119,35,70 +38170,18,582,259,119,45,70 +38171,18,582,260,119,45,70 +38172,18,582,261,10016,5,20 +38173,18,582,262,10016,5,20 +38174,18,582,263,10016,5,20 +38175,18,582,264,10016,5,20 +38176,18,582,265,10016,5,20 +38177,18,582,266,550,5,20 +38178,18,582,267,550,5,20 +38179,18,582,268,550,5,20 +38180,18,582,269,550,5,20 +38181,18,582,270,550,5,20 +38182,18,582,271,548,14,14 +38183,18,582,272,540,14,14 +38184,18,582,273,548,15,15 +38185,18,582,274,540,15,15 +38186,18,582,275,519,15,15 +38187,18,582,276,543,15,15 +38188,18,582,277,519,16,16 +38189,18,582,278,543,16,16 +38190,18,582,279,548,16,16 +38191,18,582,280,540,16,16 +38192,18,582,281,548,17,17 +38193,18,582,282,540,17,17 +38194,18,583,271,551,19,19 +38195,18,583,272,554,19,19 +38196,18,583,273,551,20,20 +38197,18,583,274,554,20,20 +38198,18,583,275,556,20,20 +38199,18,583,276,559,20,20 +38200,18,583,277,551,21,21 +38201,18,583,278,557,20,20 +38202,18,583,279,551,22,22 +38203,18,583,280,557,22,22 +38204,18,583,281,551,22,22 +38205,18,583,282,557,22,22 +38206,18,584,271,551,19,19 +38207,18,584,272,554,19,19 +38208,18,584,273,551,20,20 +38209,18,584,274,554,20,20 +38210,18,584,275,556,20,20 +38211,18,584,276,561,20,20 +38212,18,584,277,551,21,21 +38213,18,584,278,557,20,20 +38214,18,584,279,551,22,22 +38215,18,584,280,557,22,22 +38216,18,584,281,551,22,22 +38217,18,584,282,557,22,22 +38218,18,585,271,551,19,19 +38219,18,585,272,562,19,19 +38220,18,585,273,551,20,20 +38221,18,585,274,562,20,20 +38222,18,585,275,551,21,21 +38223,18,585,276,562,21,21 +38224,18,585,277,551,21,21 +38225,18,585,278,562,21,21 +38226,18,585,279,551,22,22 +38227,18,585,280,562,22,22 +38228,18,585,281,551,22,22 +38229,18,585,282,562,22,22 +38230,18,586,271,552,34,34 +38231,18,586,272,563,34,34 +38232,18,586,273,552,35,35 +38233,18,586,274,563,35,35 +38234,18,586,275,552,36,36 +38235,18,586,276,563,36,36 +38236,18,586,277,552,36,36 +38237,18,586,278,563,36,36 +38238,18,586,279,552,37,37 +38239,18,586,280,563,37,37 +38240,18,586,281,552,37,37 +38241,18,586,282,563,37,37 +38242,18,587,271,552,47,47 +38243,18,587,272,28,47,47 +38244,18,587,273,563,48,48 +38245,18,587,274,95,48,48 +38246,18,587,275,552,48,48 +38247,18,587,276,28,49,49 +38248,18,587,277,563,49,49 +38249,18,587,278,95,49,49 +38250,18,587,279,552,49,49 +38251,18,587,280,563,50,50 +38252,18,587,281,552,50,50 +38253,18,587,282,563,50,50 +38254,18,588,271,344,47,47 +38255,18,588,272,344,47,47 +38256,18,588,273,344,48,48 +38257,18,588,274,344,48,48 +38258,18,588,275,344,49,49 +38259,18,588,276,344,49,49 +38260,18,588,277,344,50,50 +38261,18,588,278,344,50,50 +38262,18,588,279,344,50,50 +38263,18,588,280,344,50,50 +38264,18,588,281,344,50,50 +38265,18,588,282,344,50,50 +38266,18,589,283,507,25,25 +38267,18,589,284,572,24,24 +38268,18,589,285,507,26,26 +38269,18,589,286,532,25,25 +38270,18,589,287,582,24,24 +38271,18,589,288,582,25,25 +38272,18,589,289,532,26,26 +38273,18,589,290,582,26,26 +38274,18,589,291,507,27,27 +38275,18,589,292,582,27,27 +38276,18,589,293,507,27,27 +38277,18,589,294,582,27,27 +38278,18,589,295,531,20,20 +38279,18,589,296,531,20,20 +38280,18,589,297,531,21,21 +38281,18,589,298,531,21,21 +38282,18,589,299,531,22,22 +38283,18,589,300,531,23,23 +38284,18,589,301,531,23,23 +38285,18,589,302,531,23,23 +38286,18,589,303,573,23,23 +38287,18,589,304,508,23,23 +38288,18,589,305,573,23,23 +38289,18,589,306,508,23,23 +38290,18,589,271,507,21,21 +38291,18,589,272,572,20,20 +38292,18,589,273,507,22,22 +38293,18,589,274,532,21,21 +38294,18,589,275,582,20,20 +38295,18,589,276,582,21,21 +38296,18,589,277,532,22,22 +38297,18,589,278,582,22,22 +38298,18,589,279,507,23,23 +38299,18,589,280,582,23,23 +38300,18,589,281,507,23,23 +38301,18,589,282,582,23,23 +38302,18,590,307,529,24,24 +38303,18,590,308,529,24,24 +38304,18,590,309,529,25,25 +38305,18,590,310,529,25,25 +38306,18,590,311,529,26,26 +38307,18,590,312,529,26,26 +38308,18,590,313,529,27,27 +38309,18,590,314,529,27,27 +38310,18,590,315,529,27,27 +38311,18,590,316,529,27,27 +38312,18,590,317,529,27,27 +38313,18,590,318,529,27,27 +38314,18,590,271,595,24,24 +38315,18,590,272,599,25,25 +38316,18,590,273,595,25,25 +38317,18,590,274,525,24,24 +38318,18,590,275,597,24,24 +38319,18,590,276,597,25,25 +38320,18,590,277,595,26,26 +38321,18,590,278,599,26,26 +38322,18,590,279,595,27,27 +38323,18,590,280,599,27,27 +38324,18,590,281,602,27,27 +38325,18,590,282,602,27,27 +38326,18,591,307,529,24,24 +38327,18,591,308,529,24,24 +38328,18,591,309,529,25,25 +38329,18,591,310,529,25,25 +38330,18,591,311,529,26,26 +38331,18,591,312,529,26,26 +38332,18,591,313,529,27,27 +38333,18,591,314,529,27,27 +38334,18,591,315,529,27,27 +38335,18,591,316,529,27,27 +38336,18,591,317,529,27,27 +38337,18,591,318,529,27,27 +38338,18,591,271,595,24,24 +38339,18,591,272,599,25,25 +38340,18,591,273,595,25,25 +38341,18,591,274,525,24,24 +38342,18,591,275,597,25,25 +38343,18,591,276,597,26,26 +38344,18,591,277,595,26,26 +38345,18,591,278,599,26,26 +38346,18,591,279,595,27,27 +38347,18,591,280,599,27,27 +38348,18,591,281,602,27,27 +38349,18,591,282,602,27,27 +38350,18,592,307,529,24,24 +38351,18,592,308,529,24,24 +38352,18,592,309,529,25,25 +38353,18,592,310,529,25,25 +38354,18,592,311,529,26,26 +38355,18,592,312,529,26,26 +38356,18,592,313,529,27,27 +38357,18,592,314,529,27,27 +38358,18,592,315,529,27,27 +38359,18,592,316,529,27,27 +38360,18,592,317,529,27,27 +38361,18,592,318,529,27,27 +38362,18,592,271,595,24,24 +38363,18,592,272,599,25,25 +38364,18,592,273,595,25,25 +38365,18,592,274,525,24,24 +38366,18,592,275,597,26,26 +38367,18,592,276,597,27,27 +38368,18,592,277,595,26,26 +38369,18,592,278,599,26,26 +38370,18,592,279,602,27,27 +38371,18,592,280,602,27,27 +38372,18,592,281,595,27,27 +38373,18,592,282,599,27,27 +38374,18,593,307,529,28,28 +38375,18,593,308,529,28,28 +38376,18,593,309,529,29,29 +38377,18,593,310,529,29,29 +38378,18,593,311,529,30,30 +38379,18,593,312,529,30,30 +38380,18,593,313,529,31,31 +38381,18,593,314,529,31,31 +38382,18,593,315,529,31,31 +38383,18,593,316,529,31,31 +38384,18,593,317,529,31,31 +38385,18,593,318,529,31,31 +38386,18,593,271,525,28,28 +38387,18,593,271,525,28,28 +38388,18,593,271,525,28,28 +38389,18,593,271,613,28,28 +38390,18,593,272,533,28,28 +38391,18,593,272,533,28,28 +38392,18,593,272,533,28,28 +38393,18,593,272,525,29,29 +38394,18,593,273,525,29,29 +38395,18,593,273,525,29,29 +38396,18,593,273,525,29,29 +38397,18,593,273,533,29,29 +38398,18,593,274,533,30,30 +38399,18,593,274,533,30,30 +38400,18,593,274,533,30,30 +38401,18,593,274,613,29,29 +38402,18,593,275,525,30,30 +38403,18,593,276,613,28,28 +38404,18,593,276,527,28,28 +38405,18,593,276,613,28,28 +38406,18,593,276,613,30,30 +38407,18,593,277,525,30,30 +38408,18,593,277,525,31,31 +38409,18,593,277,525,30,30 +38410,18,593,277,613,31,31 +38411,18,593,278,527,29,29 +38412,18,593,278,527,29,29 +38413,18,593,278,527,29,29 +38414,18,593,278,527,28,28 +38415,18,593,279,525,31,31 +38416,18,593,279,613,28,28 +38417,18,593,279,525,31,31 +38418,18,593,279,615,31,31 +38419,18,593,280,527,30,30 +38420,18,593,280,527,30,30 +38421,18,593,280,527,30,30 +38422,18,593,280,527,29,29 +38423,18,593,281,615,31,31 +38424,18,593,281,615,28,28 +38425,18,593,281,615,31,31 +38426,18,593,281,615,31,31 +38427,18,593,282,527,31,31 +38428,18,593,282,527,31,31 +38429,18,593,282,527,31,31 +38430,18,593,282,527,30,30 +38431,18,594,283,583,35,35 +38432,18,594,284,586,34,34 +38433,18,594,285,619,34,34 +38434,18,594,286,586,36,36 +38435,18,594,287,619,35,35 +38436,18,594,288,614,37,37 +38437,18,594,289,619,36,36 +38438,18,594,290,583,35,35 +38439,18,594,291,619,37,37 +38440,18,594,292,583,36,36 +38441,18,594,293,619,37,37 +38442,18,594,294,583,37,37 +38443,18,594,295,531,30,30 +38444,18,594,296,531,30,30 +38445,18,594,297,587,31,31 +38446,18,594,298,531,31,31 +38447,18,594,299,531,32,32 +38448,18,594,300,531,33,33 +38449,18,594,301,531,33,33 +38450,18,594,302,531,33,33 +38451,18,594,303,531,33,33 +38452,18,594,304,521,33,33 +38453,18,594,304,521,33,33 +38454,18,594,304,521,33,33 +38455,18,594,304,531,33,33 +38456,18,594,305,531,33,33 +38457,18,594,306,521,33,33 +38458,18,594,306,521,33,33 +38459,18,594,306,521,33,33 +38460,18,594,306,531,33,33 +38461,18,594,271,520,30,30 +38462,18,594,271,520,30,30 +38463,18,594,271,520,30,30 +38464,18,594,271,582,31,31 +38465,18,594,272,585,31,31 +38466,18,594,272,585,31,31 +38467,18,594,272,585,31,31 +38468,18,594,272,585,30,30 +38469,18,594,273,619,30,30 +38470,18,594,274,585,32,32 +38471,18,594,275,619,31,31 +38472,18,594,276,520,32,32 +38473,18,594,276,520,32,32 +38474,18,594,276,520,32,32 +38475,18,594,276,613,33,33 +38476,18,594,277,619,32,32 +38477,18,594,278,621,31,31 +38478,18,594,278,621,31,31 +38479,18,594,278,621,31,31 +38480,18,594,278,582,31,31 +38481,18,594,279,619,33,33 +38482,18,594,280,621,32,32 +38483,18,594,280,621,32,32 +38484,18,594,280,621,32,32 +38485,18,594,280,582,32,32 +38486,18,594,281,619,33,33 +38487,18,594,282,621,33,33 +38488,18,594,282,621,33,33 +38489,18,594,282,621,33,33 +38490,18,594,282,582,33,33 +38491,18,595,283,520,35,35 +38492,18,595,283,520,35,35 +38493,18,595,283,520,35,35 +38494,18,595,283,583,35,35 +38495,18,595,284,586,34,34 +38496,18,595,285,619,34,34 +38497,18,595,286,586,36,36 +38498,18,595,287,619,35,35 +38499,18,595,288,520,36,36 +38500,18,595,288,520,36,36 +38501,18,595,288,520,36,36 +38502,18,595,288,614,37,37 +38503,18,595,289,619,36,36 +38504,18,595,290,621,35,35 +38505,18,595,290,621,35,35 +38506,18,595,290,621,35,35 +38507,18,595,290,583,36,36 +38508,18,595,291,619,37,37 +38509,18,595,292,621,36,36 +38510,18,595,292,621,36,36 +38511,18,595,292,621,36,36 +38512,18,595,292,583,36,36 +38513,18,595,293,619,37,37 +38514,18,595,294,621,37,37 +38515,18,595,294,621,37,37 +38516,18,595,294,621,37,37 +38517,18,595,294,583,37,37 +38518,18,595,295,531,30,30 +38519,18,595,296,531,30,30 +38520,18,595,297,587,31,31 +38521,18,595,298,531,31,31 +38522,18,595,299,531,32,32 +38523,18,595,300,531,33,33 +38524,18,595,301,531,33,33 +38525,18,595,302,531,33,33 +38526,18,595,303,531,33,33 +38527,18,595,304,521,33,33 +38528,18,595,304,521,33,33 +38529,18,595,304,521,33,33 +38530,18,595,304,531,33,33 +38531,18,595,305,531,33,33 +38532,18,595,306,521,33,33 +38533,18,595,306,521,33,33 +38534,18,595,306,521,33,33 +38535,18,595,306,531,33,33 +38536,18,595,251,147,35,55 +38537,18,595,252,10016,35,55 +38538,18,595,253,147,35,55 +38539,18,595,254,148,35,55 +38540,18,595,255,148,35,55 +38541,18,595,256,147,35,60 +38542,18,595,257,550,35,60 +38543,18,595,258,148,35,70 +38544,18,595,259,148,45,70 +38545,18,595,260,149,50,70 +38546,18,595,261,10016,15,35 +38547,18,595,262,10016,15,35 +38548,18,595,263,10016,15,35 +38549,18,595,264,10016,15,35 +38550,18,595,265,10016,15,35 +38551,18,595,266,550,15,40 +38552,18,595,267,550,15,40 +38553,18,595,268,550,15,40 +38554,18,595,269,550,15,40 +38555,18,595,270,550,15,40 +38556,18,595,271,520,31,31 +38557,18,595,271,520,31,31 +38558,18,595,271,520,31,31 +38559,18,595,271,582,31,31 +38560,18,595,272,585,30,30 +38561,18,595,273,619,30,30 +38562,18,595,274,585,32,32 +38563,18,595,275,619,31,31 +38564,18,595,276,520,32,32 +38565,18,595,276,520,32,32 +38566,18,595,276,520,32,32 +38567,18,595,276,613,33,33 +38568,18,595,277,619,32,32 +38569,18,595,278,621,31,31 +38570,18,595,278,621,31,31 +38571,18,595,278,621,31,31 +38572,18,595,278,582,32,32 +38573,18,595,279,619,33,33 +38574,18,595,280,621,32,32 +38575,18,595,280,621,32,32 +38576,18,595,280,621,32,32 +38577,18,595,280,582,32,32 +38578,18,595,281,619,33,33 +38579,18,595,282,621,33,33 +38580,18,595,282,621,33,33 +38581,18,595,282,621,33,33 +38582,18,595,282,582,33,33 +38583,18,596,271,622,30,30 +38584,18,596,272,619,33,33 +38585,18,596,273,622,31,31 +38586,18,596,274,621,30,30 +38587,18,596,275,622,32,32 +38588,18,596,276,621,31,31 +38589,18,596,277,622,32,32 +38590,18,596,278,621,32,32 +38591,18,596,279,622,33,33 +38592,18,596,280,621,33,33 +38593,18,596,281,622,33,33 +38594,18,596,282,621,33,33 +38595,18,597,271,622,30,30 +38596,18,597,272,622,30,30 +38597,18,597,273,622,31,31 +38598,18,597,274,622,31,31 +38599,18,597,275,622,32,32 +38600,18,597,276,622,32,32 +38601,18,597,277,622,32,32 +38602,18,597,278,622,32,32 +38603,18,597,279,622,33,33 +38604,18,597,280,622,33,33 +38605,18,597,281,622,33,33 +38606,18,597,282,622,33,33 +38607,18,598,271,627,38,38 +38608,18,598,272,631,37,37 +38609,18,598,273,627,40,40 +38610,18,598,274,631,38,38 +38611,18,598,275,619,38,38 +38612,18,598,276,631,39,39 +38613,18,598,277,619,40,40 +38614,18,598,278,611,40,40 +38615,18,598,279,627,37,37 +38616,18,598,280,631,40,40 +38617,18,598,281,627,39,39 +38618,18,598,282,631,40,40 +38619,18,599,307,530,37,37 +38620,18,599,308,530,37,37 +38621,18,599,309,530,38,38 +38622,18,599,310,530,38,38 +38623,18,599,311,530,39,39 +38624,18,599,312,530,39,39 +38625,18,599,313,530,40,40 +38626,18,599,314,530,40,40 +38627,18,599,315,530,40,40 +38628,18,599,316,530,40,40 +38629,18,599,317,530,40,40 +38630,18,599,318,530,40,40 +38631,18,599,251,60,35,55 +38632,18,599,252,10016,35,55 +38633,18,599,253,61,35,55 +38634,18,599,254,60,35,55 +38635,18,599,255,60,35,55 +38636,18,599,256,61,35,60 +38637,18,599,257,550,35,60 +38638,18,599,258,61,35,70 +38639,18,599,259,62,45,70 +38640,18,599,260,62,45,70 +38641,18,599,261,10016,20,45 +38642,18,599,262,10016,20,45 +38643,18,599,263,10016,20,45 +38644,18,599,264,10016,20,45 +38645,18,599,265,10016,20,45 +38646,18,599,266,550,20,50 +38647,18,599,267,550,20,50 +38648,18,599,268,550,20,50 +38649,18,599,269,550,20,50 +38650,18,599,270,550,20,50 +38651,18,599,271,632,37,37 +38652,18,599,272,525,39,39 +38653,18,599,273,632,38,38 +38654,18,599,274,633,38,38 +38655,18,599,275,527,37,37 +38656,18,599,276,619,39,39 +38657,18,599,277,632,39,39 +38658,18,599,278,633,38,38 +38659,18,599,279,632,40,40 +38660,18,599,280,633,39,39 +38661,18,599,281,632,40,40 +38662,18,599,282,633,40,40 +38663,18,600,295,530,37,37 +38664,18,600,296,530,37,37 +38665,18,600,297,530,38,38 +38666,18,600,298,530,38,38 +38667,18,600,299,530,39,39 +38668,18,600,300,530,39,39 +38669,18,600,301,530,40,40 +38670,18,600,302,530,40,40 +38671,18,600,303,530,40,40 +38672,18,600,304,530,40,40 +38673,18,600,305,530,40,40 +38674,18,600,306,530,40,40 +38675,18,600,271,632,37,37 +38676,18,600,272,525,37,37 +38677,18,600,273,632,38,38 +38678,18,600,274,525,39,39 +38679,18,600,275,527,37,37 +38680,18,600,276,619,39,39 +38681,18,600,277,632,39,39 +38682,18,600,278,527,38,38 +38683,18,600,279,632,40,40 +38684,18,600,280,527,39,39 +38685,18,600,281,632,40,40 +38686,18,600,282,527,40,40 +38687,18,601,295,530,37,37 +38688,18,601,296,530,37,37 +38689,18,601,297,530,38,38 +38690,18,601,298,530,38,38 +38691,18,601,299,530,39,39 +38692,18,601,300,530,39,39 +38693,18,601,301,530,40,40 +38694,18,601,302,530,40,40 +38695,18,601,303,530,40,40 +38696,18,601,304,530,40,40 +38697,18,601,305,530,40,40 +38698,18,601,306,530,40,40 +38699,18,601,271,632,37,37 +38700,18,601,272,525,37,37 +38701,18,601,273,632,38,38 +38702,18,601,274,525,39,39 +38703,18,601,275,527,37,37 +38704,18,601,276,619,39,39 +38705,18,601,277,632,39,39 +38706,18,601,278,527,38,38 +38707,18,601,279,632,40,40 +38708,18,601,280,527,39,39 +38709,18,601,281,632,40,40 +38710,18,601,282,527,40,40 +38711,18,602,295,530,39,39 +38712,18,602,296,530,39,39 +38713,18,602,297,530,40,40 +38714,18,602,298,530,40,40 +38715,18,602,299,530,41,41 +38716,18,602,300,530,41,41 +38717,18,602,301,530,42,42 +38718,18,602,302,530,42,42 +38719,18,602,303,530,42,42 +38720,18,602,304,530,42,42 +38721,18,602,305,530,42,42 +38722,18,602,306,530,42,42 +38723,18,602,271,632,39,39 +38724,18,602,272,525,39,39 +38725,18,602,273,632,40,40 +38726,18,602,274,525,41,41 +38727,18,602,275,527,39,39 +38728,18,602,276,619,41,41 +38729,18,602,277,632,41,41 +38730,18,602,278,527,40,40 +38731,18,602,279,632,42,42 +38732,18,602,280,527,42,42 +38733,18,602,281,632,42,42 +38734,18,602,282,527,42,42 +38735,18,603,295,530,37,37 +38736,18,603,296,530,37,37 +38737,18,603,297,530,38,38 +38738,18,603,298,530,38,38 +38739,18,603,299,530,39,39 +38740,18,603,300,530,39,39 +38741,18,603,301,530,40,40 +38742,18,603,302,530,40,40 +38743,18,603,303,530,40,40 +38744,18,603,304,530,40,40 +38745,18,603,305,530,40,40 +38746,18,603,306,530,40,40 +38747,18,603,271,632,37,37 +38748,18,603,272,525,37,37 +38749,18,603,273,632,38,38 +38750,18,603,274,525,39,39 +38751,18,603,275,527,37,37 +38752,18,603,276,619,39,39 +38753,18,603,277,632,39,39 +38754,18,603,278,527,38,38 +38755,18,603,279,632,40,40 +38756,18,603,280,527,39,39 +38757,18,603,281,632,40,40 +38758,18,603,282,527,40,40 +38759,18,604,307,530,37,37 +38760,18,604,308,530,37,37 +38761,18,604,309,530,38,38 +38762,18,604,310,530,38,38 +38763,18,604,311,530,39,39 +38764,18,604,312,530,39,39 +38765,18,604,313,530,40,40 +38766,18,604,314,530,40,40 +38767,18,604,315,530,40,40 +38768,18,604,316,530,40,40 +38769,18,604,317,530,40,40 +38770,18,604,318,530,40,40 +38771,18,604,251,60,35,55 +38772,18,604,252,10016,35,55 +38773,18,604,253,61,35,55 +38774,18,604,254,60,35,55 +38775,18,604,255,60,35,55 +38776,18,604,256,61,35,60 +38777,18,604,257,550,35,60 +38778,18,604,258,61,35,70 +38779,18,604,259,62,45,70 +38780,18,604,260,62,45,70 +38781,18,604,261,10016,20,45 +38782,18,604,262,10016,20,45 +38783,18,604,263,10016,20,45 +38784,18,604,264,10016,20,45 +38785,18,604,265,10016,20,45 +38786,18,604,266,550,20,50 +38787,18,604,267,550,20,50 +38788,18,604,268,550,20,50 +38789,18,604,269,550,20,50 +38790,18,604,270,550,20,50 +38791,18,604,271,632,37,37 +38792,18,604,272,525,39,39 +38793,18,604,273,632,38,38 +38794,18,604,274,633,38,38 +38795,18,604,275,527,37,37 +38796,18,604,276,619,39,39 +38797,18,604,277,632,39,39 +38798,18,604,278,633,38,38 +38799,18,604,279,632,40,40 +38800,18,604,280,633,39,39 +38801,18,604,281,632,40,40 +38802,18,604,282,633,40,40 +38803,18,605,295,530,37,37 +38804,18,605,296,530,37,37 +38805,18,605,297,530,38,38 +38806,18,605,298,530,38,38 +38807,18,605,299,530,39,39 +38808,18,605,300,530,39,39 +38809,18,605,301,530,40,40 +38810,18,605,302,530,40,40 +38811,18,605,303,530,40,40 +38812,18,605,304,530,40,40 +38813,18,605,305,530,40,40 +38814,18,605,306,530,40,40 +38815,18,605,271,632,37,37 +38816,18,605,272,525,37,37 +38817,18,605,273,632,38,38 +38818,18,605,274,525,39,39 +38819,18,605,275,527,37,37 +38820,18,605,276,619,39,39 +38821,18,605,277,632,39,39 +38822,18,605,278,527,38,38 +38823,18,605,279,632,40,40 +38824,18,605,280,527,39,39 +38825,18,605,281,632,40,40 +38826,18,605,282,527,40,40 +38827,18,606,295,530,37,37 +38828,18,606,296,530,37,37 +38829,18,606,297,530,38,38 +38830,18,606,298,530,38,38 +38831,18,606,299,530,39,39 +38832,18,606,300,530,39,39 +38833,18,606,301,530,40,40 +38834,18,606,302,530,40,40 +38835,18,606,303,530,40,40 +38836,18,606,304,530,40,40 +38837,18,606,305,530,40,40 +38838,18,606,306,530,40,40 +38839,18,606,271,632,37,37 +38840,18,606,272,525,37,37 +38841,18,606,273,632,38,38 +38842,18,606,274,525,39,39 +38843,18,606,275,527,37,37 +38844,18,606,276,619,39,39 +38845,18,606,277,632,39,39 +38846,18,606,278,527,38,38 +38847,18,606,279,632,40,40 +38848,18,606,280,527,39,39 +38849,18,606,281,632,40,40 +38850,18,606,282,527,40,40 +38851,18,607,295,530,37,37 +38852,18,607,296,530,37,37 +38853,18,607,297,530,38,38 +38854,18,607,298,530,38,38 +38855,18,607,299,530,39,39 +38856,18,607,300,530,39,39 +38857,18,607,301,530,40,40 +38858,18,607,302,530,40,40 +38859,18,607,303,530,40,40 +38860,18,607,304,530,40,40 +38861,18,607,305,530,40,40 +38862,18,607,306,530,40,40 +38863,18,607,271,632,37,37 +38864,18,607,272,525,37,37 +38865,18,607,273,632,38,38 +38866,18,607,274,525,39,39 +38867,18,607,275,527,37,37 +38868,18,607,276,619,39,39 +38869,18,607,277,632,39,39 +38870,18,607,278,527,38,38 +38871,18,607,279,632,40,40 +38872,18,607,280,527,39,39 +38873,18,607,281,632,40,40 +38874,18,607,282,527,40,40 +38875,18,608,295,530,39,39 +38876,18,608,296,530,39,39 +38877,18,608,297,530,40,40 +38878,18,608,298,530,40,40 +38879,18,608,299,530,41,41 +38880,18,608,300,530,41,41 +38881,18,608,301,530,42,42 +38882,18,608,302,530,42,42 +38883,18,608,303,530,42,42 +38884,18,608,304,530,42,42 +38885,18,608,305,530,42,42 +38886,18,608,306,530,42,42 +38887,18,608,271,632,39,39 +38888,18,608,272,525,39,39 +38889,18,608,273,632,40,40 +38890,18,608,274,525,41,41 +38891,18,608,275,527,39,39 +38892,18,608,276,619,41,41 +38893,18,608,277,632,41,41 +38894,18,608,278,527,40,40 +38895,18,608,279,632,42,42 +38896,18,608,280,527,41,41 +38897,18,608,281,632,42,42 +38898,18,608,282,527,42,42 +38899,18,609,295,530,39,39 +38900,18,609,296,530,39,39 +38901,18,609,297,530,40,40 +38902,18,609,298,530,40,40 +38903,18,609,299,530,41,41 +38904,18,609,300,530,41,41 +38905,18,609,301,530,42,42 +38906,18,609,302,530,42,42 +38907,18,609,303,530,42,42 +38908,18,609,304,530,42,42 +38909,18,609,305,530,42,42 +38910,18,609,306,530,42,42 +38911,18,609,271,632,39,39 +38912,18,609,272,525,39,39 +38913,18,609,273,632,40,40 +38914,18,609,274,525,41,41 +38915,18,609,275,527,39,39 +38916,18,609,276,619,41,41 +38917,18,609,277,632,41,41 +38918,18,609,278,527,40,40 +38919,18,609,279,632,42,42 +38920,18,609,280,527,41,41 +38921,18,609,281,632,42,42 +38922,18,609,282,527,42,42 +38923,18,610,295,530,39,39 +38924,18,610,296,530,39,39 +38925,18,610,297,530,40,40 +38926,18,610,298,530,40,40 +38927,18,610,299,530,41,41 +38928,18,610,300,530,41,41 +38929,18,610,301,530,42,42 +38930,18,610,302,530,42,42 +38931,18,610,303,530,42,42 +38932,18,610,304,530,42,42 +38933,18,610,305,530,42,42 +38934,18,610,306,530,42,42 +38935,18,610,271,632,39,39 +38936,18,610,272,525,39,39 +38937,18,610,273,632,40,40 +38938,18,610,274,525,41,41 +38939,18,610,275,527,39,39 +38940,18,610,276,619,41,41 +38941,18,610,277,632,41,41 +38942,18,610,278,527,40,40 +38943,18,610,279,632,42,42 +38944,18,610,280,527,41,41 +38945,18,610,281,632,42,42 +38946,18,610,282,527,42,42 +38947,18,611,295,530,39,39 +38948,18,611,296,530,39,39 +38949,18,611,297,530,40,40 +38950,18,611,298,530,40,40 +38951,18,611,299,530,41,41 +38952,18,611,300,530,41,41 +38953,18,611,301,530,42,42 +38954,18,611,302,530,42,42 +38955,18,611,303,530,42,42 +38956,18,611,304,530,42,42 +38957,18,611,305,530,42,42 +38958,18,611,306,530,42,42 +38959,18,611,271,632,39,39 +38960,18,611,272,525,39,39 +38961,18,611,273,632,40,40 +38962,18,611,274,525,41,41 +38963,18,611,275,527,39,39 +38964,18,611,276,619,41,41 +38965,18,611,277,632,41,41 +38966,18,611,278,527,40,40 +38967,18,611,279,632,42,42 +38968,18,611,280,527,41,41 +38969,18,611,281,632,42,42 +38970,18,611,282,527,42,42 +38971,18,612,295,530,39,39 +38972,18,612,296,530,39,39 +38973,18,612,297,530,40,40 +38974,18,612,298,530,40,40 +38975,18,612,299,530,41,41 +38976,18,612,300,530,41,41 +38977,18,612,301,530,42,42 +38978,18,612,302,530,42,42 +38979,18,612,303,530,42,42 +38980,18,612,304,530,42,42 +38981,18,612,305,530,42,42 +38982,18,612,306,530,42,42 +38983,18,612,271,632,39,39 +38984,18,612,272,525,39,39 +38985,18,612,273,632,40,40 +38986,18,612,274,525,41,41 +38987,18,612,275,527,39,39 +38988,18,612,276,619,41,41 +38989,18,612,277,632,41,41 +38990,18,612,278,527,40,40 +38991,18,612,279,632,42,42 +38992,18,612,280,527,41,41 +38993,18,612,281,632,42,42 +38994,18,612,282,527,42,42 +38995,18,613,295,530,39,39 +38996,18,613,296,530,39,39 +38997,18,613,297,530,40,40 +38998,18,613,298,530,40,40 +38999,18,613,299,530,41,41 +39000,18,613,300,530,41,41 +39001,18,613,301,530,42,42 +39002,18,613,302,530,42,42 +39003,18,613,303,530,42,42 +39004,18,613,304,530,42,42 +39005,18,613,305,530,42,42 +39006,18,613,306,530,42,42 +39007,18,613,271,632,39,39 +39008,18,613,272,525,39,39 +39009,18,613,273,632,40,40 +39010,18,613,274,525,41,41 +39011,18,613,275,527,39,39 +39012,18,613,276,619,41,41 +39013,18,613,277,632,41,41 +39014,18,613,278,527,40,40 +39015,18,613,279,632,42,42 +39016,18,613,280,527,41,41 +39017,18,613,281,632,42,42 +39018,18,613,282,527,42,42 +39019,18,614,283,114,57,57 +39020,18,614,284,277,57,57 +39021,18,614,285,42,58,58 +39022,18,614,286,337,58,58 +39023,18,614,287,338,58,58 +39024,18,614,288,426,59,59 +39025,18,614,289,359,58,58 +39026,18,614,290,359,60,60 +39027,18,614,291,114,59,59 +39028,18,614,292,42,60,60 +39029,18,614,293,114,59,59 +39030,18,614,294,42,60,60 +39031,18,614,295,531,47,47 +39032,18,614,296,531,47,47 +39033,18,614,297,587,48,48 +39034,18,614,298,531,48,48 +39035,18,614,299,531,49,49 +39036,18,614,300,531,50,50 +39037,18,614,301,531,50,50 +39038,18,614,302,531,50,50 +39039,18,614,303,169,50,50 +39040,18,614,304,465,50,50 +39041,18,614,305,169,50,50 +39042,18,614,306,465,50,50 +39043,18,614,271,114,47,47 +39044,18,614,272,277,47,47 +39045,18,614,273,42,48,48 +39046,18,614,274,337,48,48 +39047,18,614,275,338,48,48 +39048,18,614,276,426,49,49 +39049,18,614,277,359,48,48 +39050,18,614,278,359,50,50 +39051,18,614,279,114,49,49 +39052,18,614,280,42,50,50 +39053,18,614,281,114,49,49 +39054,18,614,282,42,50,50 +39055,18,615,307,530,47,47 +39056,18,615,308,530,47,47 +39057,18,615,309,530,48,48 +39058,18,615,310,530,48,48 +39059,18,615,311,530,49,49 +39060,18,615,312,530,49,49 +39061,18,615,313,530,50,50 +39062,18,615,314,530,50,50 +39063,18,615,315,530,50,50 +39064,18,615,316,530,50,50 +39065,18,615,317,530,50,50 +39066,18,615,318,530,50,50 +39067,18,615,251,60,35,55 +39068,18,615,252,10016,35,55 +39069,18,615,253,61,35,55 +39070,18,615,254,60,35,55 +39071,18,615,255,60,35,55 +39072,18,615,256,61,35,60 +39073,18,615,257,550,35,60 +39074,18,615,258,61,35,70 +39075,18,615,259,62,45,70 +39076,18,615,260,62,45,70 +39077,18,615,261,10016,25,55 +39078,18,615,262,86,25,55 +39079,18,615,263,10016,25,55 +39080,18,615,264,10016,25,55 +39081,18,615,265,10016,25,55 +39082,18,615,266,86,25,60 +39083,18,615,267,550,25,60 +39084,18,615,268,87,35,70 +39085,18,615,269,87,35,70 +39086,18,615,270,87,35,70 +39087,18,615,271,42,47,47 +39088,18,615,272,221,47,47 +39089,18,615,273,215,48,48 +39090,18,615,274,225,48,48 +39091,18,615,275,337,50,50 +39092,18,615,276,338,50,50 +39093,18,615,277,525,49,49 +39094,18,615,278,124,48,48 +39095,18,615,279,221,49,49 +39096,18,615,280,124,50,50 +39097,18,615,281,221,49,49 +39098,18,615,282,124,50,50 +39099,18,616,283,35,62,62 +39100,18,616,284,221,62,62 +39101,18,616,285,35,64,64 +39102,18,616,286,132,63,63 +39103,18,616,287,337,65,65 +39104,18,616,288,338,65,65 +39105,18,616,289,132,65,65 +39106,18,616,290,375,63,63 +39107,18,616,291,221,64,64 +39108,18,616,292,375,65,65 +39109,18,616,293,221,64,64 +39110,18,616,294,375,65,65 +39111,18,616,295,531,52,52 +39112,18,616,296,531,52,52 +39113,18,616,297,531,53,53 +39114,18,616,298,531,53,53 +39115,18,616,299,531,54,54 +39116,18,616,300,531,55,55 +39117,18,616,301,531,55,55 +39118,18,616,302,473,55,55 +39119,18,616,303,36,55,55 +39120,18,616,304,376,55,55 +39121,18,616,305,36,55,55 +39122,18,616,306,376,55,55 +39123,18,616,271,35,52,52 +39124,18,616,272,221,52,52 +39125,18,616,273,35,54,54 +39126,18,616,274,132,53,53 +39127,18,616,275,337,55,55 +39128,18,616,276,338,55,55 +39129,18,616,277,132,55,55 +39130,18,616,278,375,53,53 +39131,18,616,279,221,54,54 +39132,18,616,280,375,55,55 +39133,18,616,281,221,54,54 +39134,18,616,282,375,55,55 +39135,18,617,307,530,57,57 +39136,18,617,308,530,57,57 +39137,18,617,309,530,58,58 +39138,18,617,310,530,58,58 +39139,18,617,311,530,59,59 +39140,18,617,312,530,59,59 +39141,18,617,313,530,60,60 +39142,18,617,314,530,60,60 +39143,18,617,315,530,60,60 +39144,18,617,316,530,60,60 +39145,18,617,317,530,60,60 +39146,18,617,318,530,60,60 +39147,18,617,251,60,35,55 +39148,18,617,252,10016,35,55 +39149,18,617,253,61,35,55 +39150,18,617,254,60,35,55 +39151,18,617,255,60,35,55 +39152,18,617,256,61,35,60 +39153,18,617,257,550,35,60 +39154,18,617,258,61,45,70 +39155,18,617,259,62,45,70 +39156,18,617,260,62,45,70 +39157,18,617,261,10016,25,55 +39158,18,617,262,86,25,55 +39159,18,617,263,10016,25,55 +39160,18,617,264,10016,25,55 +39161,18,617,265,10016,25,55 +39162,18,617,266,86,25,60 +39163,18,617,267,550,25,60 +39164,18,617,268,87,35,70 +39165,18,617,269,87,35,70 +39166,18,617,270,87,35,70 +39167,18,617,271,42,57,57 +39168,18,617,272,221,57,57 +39169,18,617,273,215,58,58 +39170,18,617,274,225,58,58 +39171,18,617,275,337,60,60 +39172,18,617,276,338,60,60 +39173,18,617,277,525,59,59 +39174,18,617,278,124,58,58 +39175,18,617,279,221,59,59 +39176,18,617,280,124,60,60 +39177,18,617,281,221,59,59 +39178,18,617,282,124,60,60 +39179,18,618,295,531,28,28 +39180,18,618,296,531,28,28 +39181,18,618,297,531,29,29 +39182,18,618,298,531,29,29 +39183,18,618,299,531,30,30 +39184,18,618,300,531,30,30 +39185,18,618,301,531,31,31 +39186,18,618,302,531,31,31 +39187,18,618,303,531,31,31 +39188,18,618,304,508,31,31 +39189,18,618,305,531,31,31 +39190,18,618,306,508,31,31 +39191,18,618,251,456,35,55 +39192,18,618,252,116,35,55 +39193,18,618,253,116,35,55 +39194,18,618,254,456,35,55 +39195,18,618,255,456,35,55 +39196,18,618,256,117,35,60 +39197,18,618,257,211,35,60 +39198,18,618,258,457,35,70 +39199,18,618,259,230,45,70 +39200,18,618,260,230,45,70 +39201,18,618,261,592,5,15 +39202,18,618,262,592,5,15 +39203,18,618,263,592,5,15 +39204,18,618,264,592,5,15 +39205,18,618,265,592,5,15 +39206,18,618,266,594,5,20 +39207,18,618,267,594,5,20 +39208,18,618,268,594,5,20 +39209,18,618,269,593,5,20 +39210,18,618,270,593,5,20 +39211,18,618,271,505,28,28 +39212,18,618,272,507,28,28 +39213,18,618,273,505,29,29 +39214,18,618,274,507,29,29 +39215,18,618,275,599,29,29 +39216,18,618,276,559,29,29 +39217,18,618,277,505,30,30 +39218,18,618,278,507,30,30 +39219,18,618,279,599,31,31 +39220,18,618,280,559,31,31 +39221,18,618,281,505,31,31 +39222,18,618,282,507,31,31 +39223,18,619,251,223,35,55 +39224,18,619,252,90,35,55 +39225,18,619,253,223,35,55 +39226,18,619,254,370,35,55 +39227,18,619,255,370,35,55 +39228,18,619,256,90,35,60 +39229,18,619,257,370,35,60 +39230,18,619,258,224,35,70 +39231,18,619,259,91,45,70 +39232,18,619,260,91,45,70 +39233,18,619,261,278,25,55 +39234,18,619,262,458,25,55 +39235,18,619,262,458,25,55 +39236,18,619,262,458,25,55 +39237,18,619,262,363,25,55 +39238,18,619,263,279,25,55 +39239,18,619,264,279,25,55 +39240,18,619,265,279,25,55 +39241,18,619,266,320,25,60 +39242,18,619,267,320,25,60 +39243,18,619,267,320,25,60 +39244,18,619,267,320,25,60 +39245,18,619,267,364,25,60 +39246,18,619,268,226,35,70 +39247,18,619,268,226,35,70 +39248,18,619,268,226,35,70 +39249,18,619,268,321,35,70 +39250,18,619,269,321,35,70 +39251,18,619,269,321,35,70 +39252,18,619,269,321,35,70 +39253,18,619,269,365,35,70 +39254,18,619,270,321,35,70 +39255,18,619,270,321,35,70 +39256,18,619,270,321,35,70 +39257,18,619,270,365,35,70 +39258,18,620,319,580,22,22 +39259,18,620,320,580,22,22 +39260,18,620,321,580,23,23 +39261,18,620,322,580,23,23 +39262,18,620,323,580,24,24 +39263,18,620,324,580,24,24 +39264,18,620,325,580,25,25 +39265,18,620,326,580,25,25 +39266,18,620,327,580,25,25 +39267,18,620,328,580,25,25 +39268,18,620,329,580,25,25 +39269,18,620,330,580,25,25 +39270,18,621,283,55,57,57 +39271,18,621,284,400,57,57 +39272,18,621,285,335,58,58 +39273,18,621,286,336,58,58 +39274,18,621,287,628,58,58 +39275,18,621,288,628,60,60 +39276,18,621,289,55,59,59 +39277,18,621,290,400,59,59 +39278,18,621,291,335,60,60 +39279,18,621,292,336,60,60 +39280,18,621,293,335,60,60 +39281,18,621,294,336,60,60 +39282,18,621,295,531,47,47 +39283,18,621,296,531,47,47 +39284,18,621,297,587,48,48 +39285,18,621,298,531,48,48 +39286,18,621,299,531,49,49 +39287,18,621,300,531,50,50 +39288,18,621,301,531,50,50 +39289,18,621,302,531,50,50 +39290,18,621,303,531,50,50 +39291,18,621,304,531,50,50 +39292,18,621,305,531,50,50 +39293,18,621,306,531,50,50 +39294,18,621,251,318,35,55 +39295,18,621,252,10016,35,55 +39296,18,621,253,318,35,55 +39297,18,621,254,318,35,55 +39298,18,621,255,318,35,55 +39299,18,621,256,318,35,60 +39300,18,621,257,550,35,60 +39301,18,621,258,319,35,70 +39302,18,621,259,319,45,70 +39303,18,621,260,319,45,70 +39304,18,621,261,10016,25,55 +39305,18,621,262,10016,25,55 +39306,18,621,263,10016,25,55 +39307,18,621,264,10016,25,55 +39308,18,621,265,10016,25,55 +39309,18,621,266,550,25,60 +39310,18,621,267,550,25,60 +39311,18,621,268,550,35,70 +39312,18,621,269,131,35,70 +39313,18,621,270,131,35,70 +39314,18,621,271,55,47,47 +39315,18,621,272,400,47,47 +39316,18,621,273,335,48,48 +39317,18,621,274,336,48,48 +39318,18,621,275,627,48,48 +39319,18,621,276,627,50,50 +39320,18,621,277,55,49,49 +39321,18,621,278,400,49,49 +39322,18,621,279,335,50,50 +39323,18,621,280,336,50,50 +39324,18,621,281,335,50,50 +39325,18,621,282,336,50,50 +39326,18,622,319,581,47,47 +39327,18,622,320,581,47,47 +39328,18,622,321,581,48,48 +39329,18,622,322,581,48,48 +39330,18,622,323,581,49,49 +39331,18,622,324,581,49,49 +39332,18,622,325,581,50,50 +39333,18,622,326,581,50,50 +39334,18,622,327,581,50,50 +39335,18,622,328,581,50,50 +39336,18,622,329,581,50,50 +39337,18,622,330,581,50,50 +39338,18,623,283,505,32,32 +39339,18,623,284,507,32,32 +39340,18,623,285,505,33,33 +39341,18,623,286,507,33,33 +39342,18,623,287,559,32,32 +39343,18,623,288,559,33,33 +39344,18,623,289,505,34,34 +39345,18,623,290,507,34,34 +39346,18,623,291,559,34,34 +39347,18,623,292,507,34,34 +39348,18,623,293,505,35,35 +39349,18,623,294,559,35,35 +39350,18,623,295,531,2,2 +39351,18,623,296,531,2,2 +39352,18,623,297,531,3,3 +39353,18,623,298,531,3,3 +39354,18,623,299,531,4,4 +39355,18,623,300,531,4,4 +39356,18,623,301,531,4,4 +39357,18,623,302,531,4,4 +39358,18,623,303,531,4,4 +39359,18,623,304,531,4,4 +39360,18,623,305,531,4,4 +39361,18,623,306,531,4,4 +39362,18,623,251,10016,35,55 +39363,18,623,252,10016,35,55 +39364,18,623,253,10016,35,55 +39365,18,623,254,349,35,55 +39366,18,623,255,349,35,55 +39367,18,623,256,349,35,60 +39368,18,623,257,550,35,60 +39369,18,623,258,550,35,70 +39370,18,623,259,350,45,70 +39371,18,623,260,350,45,70 +39372,18,623,261,10016,5,15 +39373,18,623,262,10016,5,15 +39374,18,623,263,10016,5,15 +39375,18,623,264,10016,5,15 +39376,18,623,265,10016,5,15 +39377,18,623,266,550,5,20 +39378,18,623,267,550,5,20 +39379,18,623,268,550,5,20 +39380,18,623,269,550,5,20 +39381,18,623,270,550,5,20 +39382,18,623,271,504,2,2 +39383,18,623,272,506,2,2 +39384,18,623,273,504,3,3 +39385,18,623,274,506,3,3 +39386,18,623,275,504,4,4 +39387,18,623,276,506,4,4 +39388,18,623,277,504,4,4 +39389,18,623,278,506,4,4 +39390,18,623,279,504,4,4 +39391,18,623,280,506,4,4 +39392,18,623,281,504,4,4 +39393,18,623,282,506,4,4 +39394,18,624,295,531,4,4 +39395,18,624,296,531,4,4 +39396,18,624,297,531,5,5 +39397,18,624,298,531,5,5 +39398,18,624,299,531,6,6 +39399,18,624,300,531,7,7 +39400,18,624,301,531,7,7 +39401,18,624,302,531,7,7 +39402,18,624,303,531,7,7 +39403,18,624,304,531,7,7 +39404,18,624,305,531,7,7 +39405,18,624,306,531,7,7 +39406,18,624,271,504,4,4 +39407,18,624,272,506,4,4 +39408,18,624,273,504,5,5 +39409,18,624,274,506,5,5 +39410,18,624,275,509,4,4 +39411,18,624,276,509,5,5 +39412,18,624,277,504,6,6 +39413,18,624,278,506,6,6 +39414,18,624,279,504,7,7 +39415,18,624,280,506,7,7 +39416,18,624,281,504,7,7 +39417,18,624,282,506,7,7 +39418,18,625,283,504,10,10 +39419,18,625,284,519,10,10 +39420,18,625,285,522,10,10 +39421,18,625,286,519,11,11 +39422,18,625,287,506,11,11 +39423,18,625,288,509,11,11 +39424,18,625,289,522,11,11 +39425,18,625,290,519,12,12 +39426,18,625,291,522,12,12 +39427,18,625,292,519,13,13 +39428,18,625,293,522,13,13 +39429,18,625,294,519,13,13 +39430,18,625,295,531,8,8 +39431,18,625,296,531,8,8 +39432,18,625,297,531,9,9 +39433,18,625,298,531,9,9 +39434,18,625,299,531,10,10 +39435,18,625,300,531,11,11 +39436,18,625,301,531,11,11 +39437,18,625,302,531,11,11 +39438,18,625,303,531,11,11 +39439,18,625,304,531,11,11 +39440,18,625,305,531,11,11 +39441,18,625,306,531,11,11 +39442,18,625,251,118,35,55 +39443,18,625,252,10016,35,55 +39444,18,625,253,118,35,55 +39445,18,625,254,118,35,55 +39446,18,625,255,118,35,55 +39447,18,625,256,118,35,60 +39448,18,625,257,550,35,60 +39449,18,625,258,119,35,70 +39450,18,625,259,119,45,70 +39451,18,625,260,119,45,70 +39452,18,625,261,10016,5,15 +39453,18,625,262,10016,5,15 +39454,18,625,263,10016,5,15 +39455,18,625,264,10016,5,15 +39456,18,625,265,10016,5,15 +39457,18,625,266,550,5,20 +39458,18,625,267,550,5,20 +39459,18,625,268,550,5,20 +39460,18,625,269,550,5,20 +39461,18,625,270,550,5,20 +39462,18,625,271,504,8,8 +39463,18,625,272,519,8,8 +39464,18,625,273,522,8,8 +39465,18,625,274,519,9,9 +39466,18,625,275,506,9,9 +39467,18,625,276,509,9,9 +39468,18,625,277,522,9,9 +39469,18,625,278,519,10,10 +39470,18,625,279,522,10,10 +39471,18,625,280,519,11,11 +39472,18,625,281,522,11,11 +39473,18,625,282,519,11,11 +39474,18,626,307,529,10,10 +39475,18,626,308,529,10,10 +39476,18,626,309,529,11,11 +39477,18,626,310,529,11,11 +39478,18,626,311,529,12,12 +39479,18,626,312,529,12,12 +39480,18,626,313,529,13,13 +39481,18,626,314,529,13,13 +39482,18,626,315,529,13,13 +39483,18,626,316,529,13,13 +39484,18,626,317,529,13,13 +39485,18,626,318,529,13,13 +39486,18,626,251,60,35,55 +39487,18,626,252,10016,35,55 +39488,18,626,253,61,35,55 +39489,18,626,254,60,35,55 +39490,18,626,255,60,35,55 +39491,18,626,256,61,35,60 +39492,18,626,257,550,35,60 +39493,18,626,258,61,35,60 +39494,18,626,259,62,35,60 +39495,18,626,260,62,35,60 +39496,18,626,261,10016,5,15 +39497,18,626,262,10016,5,15 +39498,18,626,263,10016,5,15 +39499,18,626,264,10016,5,15 +39500,18,626,265,10016,5,15 +39501,18,626,266,550,5,20 +39502,18,626,267,550,5,20 +39503,18,626,268,550,5,20 +39504,18,626,269,550,5,20 +39505,18,626,270,550,5,20 +39506,18,626,271,524,10,10 +39507,18,626,272,527,10,10 +39508,18,626,273,524,11,11 +39509,18,626,274,527,11,11 +39510,18,626,275,524,11,11 +39511,18,626,276,527,11,11 +39512,18,626,277,524,12,12 +39513,18,626,278,527,12,12 +39514,18,626,279,524,13,13 +39515,18,626,280,527,13,13 +39516,18,626,281,524,13,13 +39517,18,626,282,527,13,13 +39518,18,627,251,98,35,55 +39519,18,627,252,366,35,55 +39520,18,627,253,98,35,55 +39521,18,627,254,370,35,55 +39522,18,627,255,370,35,55 +39523,18,627,256,369,35,60 +39524,18,627,257,370,35,60 +39525,18,627,258,99,35,70 +39526,18,627,259,368,45,70 +39527,18,627,260,368,45,70 +39528,18,627,261,592,5,15 +39529,18,627,262,592,5,15 +39530,18,627,263,592,5,15 +39531,18,627,264,592,5,15 +39532,18,627,265,592,5,15 +39533,18,627,266,594,5,20 +39534,18,627,267,594,5,20 +39535,18,627,268,594,5,20 +39536,18,627,269,593,5,20 +39537,18,627,270,593,5,20 +39538,18,627,271,551,15,15 +39539,18,627,272,554,15,15 +39540,18,627,273,551,16,16 +39541,18,627,274,554,16,16 +39542,18,627,275,559,16,16 +39543,18,627,276,559,17,17 +39544,18,627,277,551,17,17 +39545,18,627,278,554,17,17 +39546,18,627,279,551,18,18 +39547,18,627,280,554,18,18 +39548,18,627,281,551,18,18 +39549,18,627,282,554,18,18 +39550,18,628,283,577,22,22 +39551,18,628,284,572,22,22 +39552,18,628,285,568,22,22 +39553,18,628,286,568,24,24 +39554,18,628,287,510,23,23 +39555,18,628,288,510,25,25 +39556,18,628,289,572,23,23 +39557,18,628,290,577,23,23 +39558,18,628,291,572,24,24 +39559,18,628,292,577,24,24 +39560,18,628,293,572,25,25 +39561,18,628,294,577,25,25 +39562,18,628,295,531,19,19 +39563,18,628,296,531,19,19 +39564,18,628,297,587,20,20 +39565,18,628,298,531,20,20 +39566,18,628,299,531,21,21 +39567,18,628,300,531,22,22 +39568,18,628,301,531,22,22 +39569,18,628,302,531,22,22 +39570,18,628,303,573,22,22 +39571,18,628,304,531,22,22 +39572,18,628,305,573,22,22 +39573,18,628,306,531,22,22 +39574,18,628,271,577,19,19 +39575,18,628,272,572,19,19 +39576,18,628,273,568,19,19 +39577,18,628,274,568,21,21 +39578,18,628,275,510,20,20 +39579,18,628,276,510,22,22 +39580,18,628,277,572,20,20 +39581,18,628,278,577,20,20 +39582,18,628,279,572,21,21 +39583,18,628,280,577,21,21 +39584,18,628,281,572,22,22 +39585,18,628,282,577,22,22 +39586,18,629,283,585,26,26 +39587,18,629,284,588,26,26 +39588,18,629,285,520,27,27 +39589,18,629,285,520,27,27 +39590,18,629,285,520,27,27 +39591,18,629,285,582,27,27 +39592,18,629,286,590,27,27 +39593,18,629,287,585,27,27 +39594,18,629,288,541,27,27 +39595,18,629,289,585,28,28 +39596,18,629,290,588,28,28 +39597,18,629,291,520,29,29 +39598,18,629,291,520,29,29 +39599,18,629,291,520,29,29 +39600,18,629,291,582,29,29 +39601,18,629,292,590,29,29 +39602,18,629,293,520,29,29 +39603,18,629,293,520,29,29 +39604,18,629,293,520,29,29 +39605,18,629,293,582,29,29 +39606,18,629,294,590,29,29 +39607,18,629,295,531,22,22 +39608,18,629,296,531,23,23 +39609,18,629,297,587,23,23 +39610,18,629,298,587,25,25 +39611,18,629,299,531,24,24 +39612,18,629,300,531,25,25 +39613,18,629,301,531,25,25 +39614,18,629,302,531,25,25 +39615,18,629,303,521,25,25 +39616,18,629,303,521,25,25 +39617,18,629,303,521,25,25 +39618,18,629,303,531,25,25 +39619,18,629,304,542,25,25 +39620,18,629,305,521,25,25 +39621,18,629,305,521,25,25 +39622,18,629,305,521,25,25 +39623,18,629,305,531,25,25 +39624,18,629,306,542,25,25 +39625,18,629,251,60,35,55 +39626,18,629,252,10016,35,55 +39627,18,629,253,61,35,55 +39628,18,629,254,60,35,55 +39629,18,629,255,60,35,55 +39630,18,629,256,61,35,60 +39631,18,629,257,550,35,60 +39632,18,629,258,61,35,70 +39633,18,629,259,186,45,70 +39634,18,629,260,186,45,70 +39635,18,629,261,10016,10,25 +39636,18,629,262,10016,10,25 +39637,18,629,263,10016,10,25 +39638,18,629,264,10016,10,25 +39639,18,629,265,10016,10,25 +39640,18,629,266,550,10,30 +39641,18,629,267,550,10,30 +39642,18,629,268,550,10,30 +39643,18,629,269,550,10,30 +39644,18,629,270,550,10,30 +39645,18,629,271,585,22,22 +39646,18,629,272,588,22,22 +39647,18,629,273,520,23,23 +39648,18,629,273,520,23,23 +39649,18,629,273,520,23,23 +39650,18,629,273,582,23,23 +39651,18,629,274,590,23,23 +39652,18,629,275,585,23,23 +39653,18,629,276,541,23,23 +39654,18,629,277,585,24,24 +39655,18,629,278,588,24,24 +39656,18,629,279,520,25,25 +39657,18,629,279,520,25,25 +39658,18,629,279,520,25,25 +39659,18,629,279,582,25,25 +39660,18,629,280,590,25,25 +39661,18,629,281,520,25,25 +39662,18,629,281,520,25,25 +39663,18,629,281,520,25,25 +39664,18,629,281,582,25,25 +39665,18,629,282,590,25,25 +39666,18,630,307,529,28,28 +39667,18,630,308,529,28,28 +39668,18,630,309,529,29,29 +39669,18,630,310,529,29,29 +39670,18,630,311,529,30,30 +39671,18,630,312,529,30,30 +39672,18,630,313,529,31,31 +39673,18,630,314,529,31,31 +39674,18,630,315,529,31,31 +39675,18,630,316,529,31,31 +39676,18,630,317,529,31,31 +39677,18,630,318,529,31,31 +39678,18,630,271,525,28,28 +39679,18,630,272,527,28,28 +39680,18,630,273,525,29,29 +39681,18,630,274,527,30,30 +39682,18,630,275,525,30,30 +39683,18,630,276,610,30,30 +39684,18,630,277,525,30,30 +39685,18,630,278,610,31,31 +39686,18,630,279,525,31,31 +39687,18,630,280,610,31,31 +39688,18,630,281,525,31,31 +39689,18,630,282,610,31,31 +39690,18,631,307,529,28,28 +39691,18,631,308,529,28,28 +39692,18,631,309,529,29,29 +39693,18,631,310,529,29,29 +39694,18,631,311,529,30,30 +39695,18,631,312,529,30,30 +39696,18,631,313,529,31,31 +39697,18,631,314,529,31,31 +39698,18,631,315,529,31,31 +39699,18,631,316,529,31,31 +39700,18,631,317,529,31,31 +39701,18,631,318,529,31,31 +39702,18,631,271,525,28,28 +39703,18,631,272,527,28,28 +39704,18,631,273,525,29,29 +39705,18,631,274,527,30,30 +39706,18,631,275,525,30,30 +39707,18,631,276,610,30,30 +39708,18,631,277,525,30,30 +39709,18,631,278,610,31,31 +39710,18,631,279,525,31,31 +39711,18,631,280,610,31,31 +39712,18,631,281,525,31,31 +39713,18,631,282,610,31,31 +39714,18,632,283,520,30,30 +39715,18,632,283,520,30,30 +39716,18,632,283,520,30,30 +39717,18,632,283,613,30,30 +39718,18,632,284,585,30,30 +39719,18,632,285,505,31,31 +39720,18,632,286,523,31,31 +39721,18,632,287,520,32,32 +39722,18,632,287,520,32,32 +39723,18,632,287,520,32,32 +39724,18,632,287,613,32,32 +39725,18,632,288,523,33,33 +39726,18,632,289,505,32,32 +39727,18,632,290,590,31,31 +39728,18,632,291,505,33,33 +39729,18,632,292,590,33,33 +39730,18,632,293,505,33,33 +39731,18,632,294,590,33,33 +39732,18,632,295,531,26,26 +39733,18,632,296,531,26,26 +39734,18,632,297,587,27,27 +39735,18,632,298,531,27,27 +39736,18,632,299,531,28,28 +39737,18,632,300,531,29,29 +39738,18,632,301,531,29,29 +39739,18,632,302,531,29,29 +39740,18,632,303,531,29,29 +39741,18,632,304,521,29,29 +39742,18,632,304,521,29,29 +39743,18,632,304,521,29,29 +39744,18,632,304,531,29,29 +39745,18,632,305,531,29,29 +39746,18,632,306,521,29,29 +39747,18,632,306,521,29,29 +39748,18,632,306,521,29,29 +39749,18,632,306,531,29,29 +39750,18,632,271,520,26,26 +39751,18,632,271,520,26,26 +39752,18,632,271,520,26,26 +39753,18,632,271,613,26,26 +39754,18,632,272,585,26,26 +39755,18,632,273,505,27,27 +39756,18,632,274,523,27,27 +39757,18,632,275,520,28,28 +39758,18,632,275,520,28,28 +39759,18,632,275,520,28,28 +39760,18,632,275,613,28,28 +39761,18,632,276,523,29,29 +39762,18,632,277,505,28,28 +39763,18,632,278,590,27,27 +39764,18,632,279,505,29,29 +39765,18,632,280,590,29,29 +39766,18,632,281,505,29,29 +39767,18,632,282,590,29,29 +39768,18,633,271,607,26,26 +39769,18,633,272,607,26,26 +39770,18,633,273,607,27,27 +39771,18,633,274,607,27,27 +39772,18,633,275,607,28,28 +39773,18,633,276,607,28,28 +39774,18,633,277,607,28,28 +39775,18,633,278,607,28,28 +39776,18,633,279,607,29,29 +39777,18,633,280,607,29,29 +39778,18,633,281,607,29,29 +39779,18,633,282,607,29,29 +39780,18,634,271,607,26,26 +39781,18,634,272,607,26,26 +39782,18,634,273,607,27,27 +39783,18,634,274,607,27,27 +39784,18,634,275,607,28,28 +39785,18,634,276,605,26,26 +39786,18,634,277,607,28,28 +39787,18,634,278,607,28,28 +39788,18,634,279,607,29,29 +39789,18,634,280,605,27,27 +39790,18,634,281,607,29,29 +39791,18,634,282,605,28,28 +39792,18,635,271,607,26,26 +39793,18,635,272,607,27,27 +39794,18,635,273,607,26,26 +39795,18,635,274,605,26,26 +39796,18,635,275,607,28,28 +39797,18,635,276,605,27,27 +39798,18,635,277,607,28,28 +39799,18,635,278,605,28,28 +39800,18,635,279,607,29,29 +39801,18,635,280,605,29,29 +39802,18,635,281,607,29,29 +39803,18,635,282,605,29,29 +39804,18,636,271,607,26,26 +39805,18,636,272,605,26,26 +39806,18,636,273,607,27,27 +39807,18,636,274,605,27,27 +39808,18,636,275,607,28,28 +39809,18,636,276,605,28,28 +39810,18,636,277,607,28,28 +39811,18,636,278,605,28,28 +39812,18,636,279,607,29,29 +39813,18,636,280,605,29,29 +39814,18,636,281,607,29,29 +39815,18,636,282,605,29,29 +39816,18,637,251,339,35,55 +39817,18,637,252,618,35,55 +39818,18,637,253,339,35,55 +39819,18,637,254,339,35,55 +39820,18,637,255,339,35,55 +39821,18,637,256,339,35,60 +39822,18,637,257,618,35,60 +39823,18,637,258,340,35,70 +39824,18,637,259,340,45,70 +39825,18,637,260,340,45,70 +39826,18,637,261,618,15,35 +39827,18,637,262,618,15,35 +39828,18,637,263,618,15,35 +39829,18,637,264,618,15,35 +39830,18,637,265,618,15,35 +39831,18,637,266,618,15,40 +39832,18,637,267,618,15,40 +39833,18,637,268,618,15,40 +39834,18,637,269,537,15,40 +39835,18,637,270,537,15,40 +39836,18,637,271,536,30,30 +39837,18,637,271,536,30,30 +39838,18,637,271,536,30,30 +39839,18,637,272,616,30,30 +39840,18,637,272,616,30,30 +39841,18,637,272,616,30,30 +39842,18,637,273,536,31,31 +39843,18,637,273,536,31,31 +39844,18,637,273,536,31,31 +39845,18,637,274,616,31,31 +39846,18,637,274,616,31,31 +39847,18,637,274,616,31,31 +39848,18,637,275,618,31,31 +39849,18,637,275,618,31,31 +39850,18,637,275,618,31,31 +39851,18,637,276,618,32,32 +39852,18,637,276,618,32,32 +39853,18,637,276,618,32,32 +39854,18,637,277,536,32,32 +39855,18,637,277,536,32,32 +39856,18,637,277,536,32,32 +39857,18,637,278,616,32,32 +39858,18,637,278,616,32,32 +39859,18,637,278,616,32,32 +39860,18,637,279,536,33,33 +39861,18,637,279,536,33,33 +39862,18,637,279,536,33,33 +39863,18,637,280,616,33,33 +39864,18,637,280,616,33,33 +39865,18,637,280,616,33,33 +39866,18,637,281,536,33,33 +39867,18,637,281,536,33,33 +39868,18,637,281,536,33,33 +39869,18,637,282,616,33,33 +39870,18,637,282,616,33,33 +39871,18,637,282,616,33,33 +39872,18,638,251,339,35,55 +39873,18,638,252,618,35,55 +39874,18,638,253,339,35,55 +39875,18,638,254,339,35,55 +39876,18,638,255,339,35,55 +39877,18,638,256,339,35,60 +39878,18,638,257,618,35,60 +39879,18,638,258,340,35,70 +39880,18,638,259,340,45,70 +39881,18,638,260,340,45,70 +39882,18,638,261,618,15,35 +39883,18,638,262,618,15,35 +39884,18,638,263,618,15,35 +39885,18,638,264,618,15,35 +39886,18,638,265,618,15,35 +39887,18,638,266,618,15,40 +39888,18,638,267,618,15,40 +39889,18,638,268,618,15,40 +39890,18,638,269,537,15,40 +39891,18,638,270,537,15,40 +39892,18,638,271,536,30,30 +39893,18,638,271,536,30,30 +39894,18,638,271,536,30,30 +39895,18,638,272,616,30,30 +39896,18,638,272,616,30,30 +39897,18,638,272,616,30,30 +39898,18,638,273,536,31,31 +39899,18,638,273,536,31,31 +39900,18,638,273,536,31,31 +39901,18,638,274,616,31,31 +39902,18,638,274,616,31,31 +39903,18,638,274,616,31,31 +39904,18,638,275,618,31,31 +39905,18,638,275,618,31,31 +39906,18,638,275,618,31,31 +39907,18,638,276,618,32,32 +39908,18,638,276,618,32,32 +39909,18,638,276,618,32,32 +39910,18,638,277,536,32,32 +39911,18,638,277,536,32,32 +39912,18,638,277,536,32,32 +39913,18,638,278,616,32,32 +39914,18,638,278,616,32,32 +39915,18,638,278,616,32,32 +39916,18,638,279,536,33,33 +39917,18,638,279,536,33,33 +39918,18,638,279,536,33,33 +39919,18,638,280,616,33,33 +39920,18,638,280,616,33,33 +39921,18,638,280,616,33,33 +39922,18,638,281,536,33,33 +39923,18,638,281,536,33,33 +39924,18,638,281,536,33,33 +39925,18,638,282,616,33,33 +39926,18,638,282,616,33,33 +39927,18,638,282,616,33,33 +39928,18,639,283,578,36,36 +39929,18,639,284,572,37,37 +39930,18,639,285,569,36,36 +39931,18,639,286,569,38,38 +39932,18,639,287,624,36,36 +39933,18,639,288,510,38,38 +39934,18,639,289,624,37,37 +39935,18,639,290,578,37,37 +39936,18,639,291,624,38,38 +39937,18,639,292,578,38,38 +39938,18,639,293,624,39,39 +39939,18,639,294,578,39,39 +39940,18,639,295,531,31,31 +39941,18,639,296,531,31,31 +39942,18,639,297,587,32,32 +39943,18,639,298,531,32,32 +39944,18,639,299,531,33,33 +39945,18,639,300,531,34,34 +39946,18,639,301,531,34,34 +39947,18,639,302,531,34,34 +39948,18,639,303,573,34,34 +39949,18,639,304,579,34,34 +39950,18,639,305,573,34,34 +39951,18,639,306,579,34,34 +39952,18,639,271,578,31,31 +39953,18,639,272,572,32,32 +39954,18,639,273,569,31,31 +39955,18,639,274,569,33,33 +39956,18,639,275,624,31,31 +39957,18,639,276,510,33,33 +39958,18,639,277,624,32,32 +39959,18,639,278,578,32,32 +39960,18,639,279,624,33,33 +39961,18,639,280,578,33,33 +39962,18,639,281,624,34,34 +39963,18,639,282,578,34,34 +39964,18,640,307,530,47,47 +39965,18,640,308,530,47,47 +39966,18,640,309,530,48,48 +39967,18,640,310,530,48,48 +39968,18,640,311,530,49,49 +39969,18,640,312,530,49,49 +39970,18,640,313,530,50,50 +39971,18,640,314,530,50,50 +39972,18,640,315,530,50,50 +39973,18,640,316,530,50,50 +39974,18,640,317,530,50,50 +39975,18,640,318,530,50,50 +39976,18,640,271,525,48,48 +39977,18,640,272,527,47,47 +39978,18,640,273,75,47,47 +39979,18,640,274,75,49,49 +39980,18,640,275,302,49,49 +39981,18,640,276,108,49,49 +39982,18,640,277,303,49,49 +39983,18,640,278,108,50,50 +39984,18,640,279,303,49,49 +39985,18,640,280,108,50,50 +39986,18,640,281,303,49,49 +39987,18,640,282,108,49,49 +39988,18,641,307,530,47,47 +39989,18,641,308,530,47,47 +39990,18,641,309,530,48,48 +39991,18,641,310,530,48,48 +39992,18,641,311,530,49,49 +39993,18,641,312,530,49,49 +39994,18,641,313,530,50,50 +39995,18,641,314,530,50,50 +39996,18,641,315,530,50,50 +39997,18,641,316,530,50,50 +39998,18,641,317,530,50,50 +39999,18,641,318,530,50,50 +40000,18,641,271,525,48,48 +40001,18,641,272,527,47,47 +40002,18,641,273,75,47,47 +40003,18,641,274,75,49,49 +40004,18,641,275,302,49,49 +40005,18,641,276,108,49,49 +40006,18,641,277,303,49,49 +40007,18,641,278,108,50,50 +40008,18,641,279,303,49,49 +40009,18,641,280,447,50,50 +40010,18,641,281,303,49,49 +40011,18,641,282,447,49,49 +40012,18,642,307,530,47,47 +40013,18,642,308,530,47,47 +40014,18,642,309,530,48,48 +40015,18,642,310,530,48,48 +40016,18,642,311,530,49,49 +40017,18,642,312,530,49,49 +40018,18,642,313,530,50,50 +40019,18,642,314,530,50,50 +40020,18,642,315,530,50,50 +40021,18,642,316,530,50,50 +40022,18,642,317,530,50,50 +40023,18,642,318,530,50,50 +40024,18,642,251,60,35,55 +40025,18,642,252,10016,35,55 +40026,18,642,253,61,35,55 +40027,18,642,254,60,35,55 +40028,18,642,255,60,35,55 +40029,18,642,256,61,35,60 +40030,18,642,257,550,35,60 +40031,18,642,258,61,35,70 +40032,18,642,259,62,45,70 +40033,18,642,260,62,45,70 +40034,18,642,261,10016,25,55 +40035,18,642,262,10016,25,55 +40036,18,642,263,10016,25,55 +40037,18,642,264,10016,25,55 +40038,18,642,265,10016,25,55 +40039,18,642,266,550,25,70 +40040,18,642,267,550,25,70 +40041,18,642,268,550,25,70 +40042,18,642,269,550,25,70 +40043,18,642,270,550,25,70 +40044,18,642,271,525,48,48 +40045,18,642,272,527,47,47 +40046,18,642,273,75,47,47 +40047,18,642,274,75,49,49 +40048,18,642,275,302,49,49 +40049,18,642,276,108,49,49 +40050,18,642,277,303,49,49 +40051,18,642,278,447,50,50 +40052,18,642,279,303,49,49 +40053,18,642,280,447,50,50 +40054,18,642,281,303,49,49 +40055,18,642,282,447,49,49 +40056,18,643,283,507,38,38 +40057,18,643,284,627,39,39 +40058,18,643,285,507,39,39 +40059,18,643,286,627,41,41 +40060,18,643,287,626,39,39 +40061,18,643,288,626,40,40 +40062,18,643,289,591,39,39 +40063,18,643,290,538,38,38 +40064,18,643,291,591,39,39 +40065,18,643,292,538,41,41 +40066,18,643,293,591,40,40 +40067,18,643,294,538,41,41 +40068,18,643,295,531,33,33 +40069,18,643,296,531,33,33 +40070,18,643,297,587,34,34 +40071,18,643,298,531,34,34 +40072,18,643,299,531,35,35 +40073,18,643,300,531,36,36 +40074,18,643,301,531,36,36 +40075,18,643,302,531,36,36 +40076,18,643,303,508,36,36 +40077,18,643,304,539,36,36 +40078,18,643,305,508,36,36 +40079,18,643,306,539,36,36 +40080,18,643,271,507,33,33 +40081,18,643,272,627,34,34 +40082,18,643,273,507,34,34 +40083,18,643,274,627,36,36 +40084,18,643,275,626,34,34 +40085,18,643,276,626,35,35 +40086,18,643,277,590,34,34 +40087,18,643,278,538,33,33 +40088,18,643,279,590,34,34 +40089,18,643,280,538,36,36 +40090,18,643,281,590,35,35 +40091,18,643,282,538,36,36 +40092,18,644,283,507,38,38 +40093,18,644,284,627,39,39 +40094,18,644,285,507,39,39 +40095,18,644,286,627,41,41 +40096,18,644,287,626,39,39 +40097,18,644,288,626,40,40 +40098,18,644,289,591,38,38 +40099,18,644,290,538,38,38 +40100,18,644,291,591,39,39 +40101,18,644,292,538,41,41 +40102,18,644,293,591,40,40 +40103,18,644,294,538,41,41 +40104,18,644,295,531,33,33 +40105,18,644,296,531,33,33 +40106,18,644,297,587,34,34 +40107,18,644,298,531,34,34 +40108,18,644,299,531,35,35 +40109,18,644,300,531,36,36 +40110,18,644,301,531,36,36 +40111,18,644,302,531,36,36 +40112,18,644,303,508,36,36 +40113,18,644,304,539,36,36 +40114,18,644,305,508,36,36 +40115,18,644,306,539,36,36 +40116,18,644,271,507,33,33 +40117,18,644,272,627,34,34 +40118,18,644,273,507,34,34 +40119,18,644,274,627,36,36 +40120,18,644,275,626,34,34 +40121,18,644,276,626,35,35 +40122,18,644,277,590,33,33 +40123,18,644,278,538,33,33 +40124,18,644,279,590,34,34 +40125,18,644,280,538,36,36 +40126,18,644,281,590,35,35 +40127,18,644,282,538,36,36 +40128,18,645,283,628,58,58 +40129,18,645,284,55,57,57 +40130,18,645,285,207,57,57 +40131,18,645,286,591,58,58 +40132,18,645,287,335,58,58 +40133,18,645,288,336,58,58 +40134,18,645,289,588,59,59 +40135,18,645,290,625,60,60 +40136,18,645,291,207,60,60 +40137,18,645,292,628,60,60 +40138,18,645,293,207,60,60 +40139,18,645,294,628,60,60 +40140,18,645,295,531,47,47 +40141,18,645,296,531,47,47 +40142,18,645,297,587,48,48 +40143,18,645,298,531,48,48 +40144,18,645,299,531,49,49 +40145,18,645,300,531,50,50 +40146,18,645,301,531,50,50 +40147,18,645,302,531,50,50 +40148,18,645,303,472,50,50 +40149,18,645,304,531,50,50 +40150,18,645,305,472,50,50 +40151,18,645,306,531,50,50 +40152,18,645,251,118,35,55 +40153,18,645,252,10016,35,55 +40154,18,645,253,118,35,55 +40155,18,645,254,118,35,55 +40156,18,645,255,118,35,55 +40157,18,645,256,118,35,60 +40158,18,645,257,550,35,60 +40159,18,645,258,119,35,70 +40160,18,645,259,119,45,70 +40161,18,645,260,119,45,70 +40162,18,645,261,10016,25,55 +40163,18,645,262,418,25,55 +40164,18,645,263,10016,25,55 +40165,18,645,264,10016,25,55 +40166,18,645,265,10016,25,55 +40167,18,645,266,418,25,60 +40168,18,645,267,550,25,60 +40169,18,645,268,419,35,70 +40170,18,645,269,419,35,70 +40171,18,645,270,419,35,70 +40172,18,645,271,627,48,48 +40173,18,645,272,55,47,47 +40174,18,645,273,207,47,47 +40175,18,645,274,591,48,48 +40176,18,645,275,335,48,48 +40177,18,645,276,336,48,48 +40178,18,645,277,588,49,49 +40179,18,645,278,624,50,50 +40180,18,645,279,207,50,50 +40181,18,645,280,627,50,50 +40182,18,645,281,207,50,50 +40183,18,645,282,627,50,50 +40184,18,646,283,415,57,57 +40185,18,646,284,191,57,57 +40186,18,646,285,78,59,59 +40187,18,646,286,520,58,58 +40188,18,646,287,421,58,58 +40189,18,646,288,11,59,59 +40190,18,646,289,214,60,60 +40191,18,646,290,127,60,60 +40192,18,646,291,206,59,59 +40193,18,646,292,520,60,60 +40194,18,646,293,206,59,59 +40195,18,646,294,520,60,60 +40196,18,646,295,531,47,47 +40197,18,646,296,531,47,47 +40198,18,646,297,587,48,48 +40199,18,646,298,531,48,48 +40200,18,646,299,531,49,49 +40201,18,646,300,531,50,50 +40202,18,646,301,521,50,50 +40203,18,646,302,12,50,50 +40204,18,646,303,416,50,50 +40205,18,646,304,192,50,50 +40206,18,646,305,416,50,50 +40207,18,646,306,192,50,50 +40208,18,646,271,415,47,47 +40209,18,646,272,191,47,47 +40210,18,646,273,78,49,49 +40211,18,646,274,520,48,48 +40212,18,646,275,421,48,48 +40213,18,646,276,11,48,48 +40214,18,646,277,214,50,50 +40215,18,646,278,127,50,50 +40216,18,646,279,206,48,48 +40217,18,646,280,520,50,50 +40218,18,646,281,206,48,48 +40219,18,646,282,520,50,50 +40220,18,647,283,114,57,57 +40221,18,647,284,277,57,57 +40222,18,647,285,42,58,58 +40223,18,647,286,337,58,58 +40224,18,647,287,338,58,58 +40225,18,647,288,426,59,59 +40226,18,647,289,359,58,58 +40227,18,647,290,359,60,60 +40228,18,647,291,114,59,59 +40229,18,647,292,42,60,60 +40230,18,647,293,114,59,59 +40231,18,647,294,42,60,60 +40232,18,647,295,531,47,47 +40233,18,647,296,531,47,47 +40234,18,647,297,587,48,48 +40235,18,647,298,531,48,48 +40236,18,647,299,531,49,49 +40237,18,647,300,531,50,50 +40238,18,647,301,531,50,50 +40239,18,647,302,531,50,50 +40240,18,647,303,169,50,50 +40241,18,647,304,465,50,50 +40242,18,647,305,169,50,50 +40243,18,647,306,465,50,50 +40244,18,647,251,98,35,55 +40245,18,647,252,90,35,55 +40246,18,647,253,98,35,55 +40247,18,647,254,370,35,55 +40248,18,647,255,370,35,55 +40249,18,647,256,90,35,60 +40250,18,647,257,370,35,60 +40251,18,647,258,99,35,70 +40252,18,647,259,91,45,70 +40253,18,647,260,91,45,70 +40254,18,647,261,278,25,55 +40255,18,647,262,120,25,55 +40256,18,647,263,279,25,55 +40257,18,647,264,279,25,55 +40258,18,647,265,279,25,55 +40259,18,647,266,120,25,60 +40260,18,647,267,222,25,60 +40261,18,647,268,121,35,70 +40262,18,647,269,121,35,70 +40263,18,647,270,121,35,70 +40264,18,647,271,114,47,47 +40265,18,647,272,277,47,47 +40266,18,647,273,42,48,48 +40267,18,647,274,337,48,48 +40268,18,647,275,338,48,48 +40269,18,647,276,426,49,49 +40270,18,647,277,359,48,48 +40271,18,647,278,359,50,50 +40272,18,647,279,114,49,49 +40273,18,647,280,42,50,50 +40274,18,647,281,114,49,49 +40275,18,647,282,42,50,50 +40276,18,648,283,55,57,57 +40277,18,648,284,39,58,58 +40278,18,648,285,357,58,58 +40279,18,648,286,620,59,59 +40280,18,648,287,334,59,59 +40281,18,648,288,426,59,59 +40282,18,648,289,213,59,59 +40283,18,648,290,606,58,58 +40284,18,648,291,357,60,60 +40285,18,648,292,606,60,60 +40286,18,648,293,357,60,60 +40287,18,648,294,606,60,60 +40288,18,648,295,531,47,47 +40289,18,648,296,531,47,47 +40290,18,648,297,587,48,48 +40291,18,648,298,531,48,48 +40292,18,648,299,531,49,49 +40293,18,648,300,531,50,50 +40294,18,648,301,531,50,50 +40295,18,648,302,531,50,50 +40296,18,648,303,40,50,50 +40297,18,648,304,531,50,50 +40298,18,648,305,40,50,50 +40299,18,648,306,531,50,50 +40300,18,648,251,118,35,55 +40301,18,648,252,10016,35,55 +40302,18,648,253,118,35,55 +40303,18,648,254,118,35,55 +40304,18,648,255,118,35,55 +40305,18,648,256,118,35,60 +40306,18,648,257,550,35,60 +40307,18,648,258,119,35,70 +40308,18,648,259,119,45,70 +40309,18,648,260,119,45,70 +40310,18,648,261,10016,25,55 +40311,18,648,262,418,25,55 +40312,18,648,263,10016,25,55 +40313,18,648,264,10016,25,55 +40314,18,648,265,10016,25,55 +40315,18,648,266,418,25,60 +40316,18,648,267,550,25,60 +40317,18,648,268,419,35,70 +40318,18,648,269,419,35,70 +40319,18,648,270,419,35,70 +40320,18,648,271,55,47,47 +40321,18,648,272,39,48,48 +40322,18,648,273,357,48,48 +40323,18,648,274,619,49,49 +40324,18,648,275,334,49,49 +40325,18,648,276,426,49,49 +40326,18,648,277,213,49,49 +40327,18,648,278,606,48,48 +40328,18,648,279,357,50,50 +40329,18,648,280,606,50,50 +40330,18,648,281,357,50,50 +40331,18,648,282,606,50,50 +40332,18,649,283,37,57,57 +40333,18,649,284,358,57,57 +40334,18,649,285,548,58,58 +40335,18,649,286,358,59,59 +40336,18,649,287,234,58,58 +40337,18,649,288,164,58,58 +40338,18,649,289,200,58,58 +40339,18,649,290,437,58,58 +40340,18,649,291,164,60,60 +40341,18,649,292,437,60,60 +40342,18,649,293,164,60,60 +40343,18,649,294,437,60,60 +40344,18,649,295,531,47,47 +40345,18,649,296,531,47,47 +40346,18,649,297,587,48,48 +40347,18,649,298,531,48,48 +40348,18,649,299,531,49,49 +40349,18,649,300,531,50,50 +40350,18,649,301,429,50,50 +40351,18,649,302,549,50,50 +40352,18,649,303,531,50,50 +40353,18,649,304,38,50,50 +40354,18,649,305,531,50,50 +40355,18,649,306,38,50,50 +40356,18,649,251,118,35,55 +40357,18,649,252,10016,35,55 +40358,18,649,253,118,35,55 +40359,18,649,254,118,35,55 +40360,18,649,255,118,35,55 +40361,18,649,256,118,35,60 +40362,18,649,257,550,35,60 +40363,18,649,258,119,35,70 +40364,18,649,259,119,45,70 +40365,18,649,260,119,45,70 +40366,18,649,261,10016,25,55 +40367,18,649,262,79,25,55 +40368,18,649,263,10016,25,55 +40369,18,649,264,10016,25,55 +40370,18,649,265,10016,25,55 +40371,18,649,266,79,25,60 +40372,18,649,267,550,25,60 +40373,18,649,268,80,35,70 +40374,18,649,269,199,35,70 +40375,18,649,270,199,35,70 +40376,18,649,271,37,47,47 +40377,18,649,272,358,47,47 +40378,18,649,273,548,48,48 +40379,18,649,274,358,49,49 +40380,18,649,275,234,48,48 +40381,18,649,276,164,48,48 +40382,18,649,277,200,48,48 +40383,18,649,278,437,48,48 +40384,18,649,279,164,50,50 +40385,18,649,280,437,50,50 +40386,18,649,281,164,50,50 +40387,18,649,282,437,50,50 +40388,18,650,283,105,57,57 +40389,18,650,284,22,58,58 +40390,18,650,285,207,57,57 +40391,18,650,286,115,59,59 +40392,18,650,287,22,60,60 +40393,18,650,288,538,58,58 +40394,18,650,289,247,58,58 +40395,18,650,290,538,59,59 +40396,18,650,291,505,60,60 +40397,18,650,292,247,59,59 +40398,18,650,293,505,60,60 +40399,18,650,294,247,59,59 +40400,18,650,295,531,47,47 +40401,18,650,296,531,47,47 +40402,18,650,297,587,48,48 +40403,18,650,298,531,48,48 +40404,18,650,299,531,49,49 +40405,18,650,300,531,50,50 +40406,18,650,301,531,50,50 +40407,18,650,302,539,50,50 +40408,18,650,303,472,50,50 +40409,18,650,304,248,50,50 +40410,18,650,305,472,50,50 +40411,18,650,306,248,50,50 +40412,18,650,271,105,47,47 +40413,18,650,272,22,48,48 +40414,18,650,273,207,47,47 +40415,18,650,274,115,49,49 +40416,18,650,275,22,50,50 +40417,18,650,276,538,48,48 +40418,18,650,277,247,48,48 +40419,18,650,278,538,49,49 +40420,18,650,279,247,50,50 +40421,18,650,280,207,49,49 +40422,18,650,281,247,50,50 +40423,18,650,282,207,49,49 +40424,18,651,283,577,22,22 +40425,18,651,284,572,22,22 +40426,18,651,285,568,22,22 +40427,18,651,286,568,24,24 +40428,18,651,287,510,23,23 +40429,18,651,288,510,25,25 +40430,18,651,289,572,23,23 +40431,18,651,290,577,23,23 +40432,18,651,291,572,24,24 +40433,18,651,292,577,24,24 +40434,18,651,293,572,25,25 +40435,18,651,294,577,25,25 +40436,18,651,295,531,19,19 +40437,18,651,296,531,19,19 +40438,18,651,297,587,20,20 +40439,18,651,298,531,20,20 +40440,18,651,299,531,21,21 +40441,18,651,300,531,22,22 +40442,18,651,301,531,22,22 +40443,18,651,302,531,22,22 +40444,18,651,303,573,22,22 +40445,18,651,304,531,22,22 +40446,18,651,305,573,22,22 +40447,18,651,306,531,22,22 +40448,18,651,271,577,19,19 +40449,18,651,272,572,19,19 +40450,18,651,273,568,19,19 +40451,18,651,274,568,21,21 +40452,18,651,275,510,20,20 +40453,18,651,276,510,22,22 +40454,18,651,277,572,20,20 +40455,18,651,278,577,20,20 +40456,18,651,279,572,21,21 +40457,18,651,280,577,21,21 +40458,18,651,281,572,22,22 +40459,18,651,282,577,22,22 +40460,18,652,283,548,22,22 +40461,18,652,284,541,23,23 +40462,18,652,285,548,23,23 +40463,18,652,286,541,24,24 +40464,18,652,287,520,24,24 +40465,18,652,288,543,23,23 +40466,18,652,289,520,25,25 +40467,18,652,290,543,24,24 +40468,18,652,291,548,24,24 +40469,18,652,292,541,25,25 +40470,18,652,293,548,25,25 +40471,18,652,294,541,25,25 +40472,18,652,295,531,19,19 +40473,18,652,296,531,20,20 +40474,18,652,297,587,20,20 +40475,18,652,298,511,20,20 +40476,18,652,299,513,20,20 +40477,18,652,300,515,20,20 +40478,18,652,301,531,21,21 +40479,18,652,302,521,22,22 +40480,18,652,303,542,22,22 +40481,18,652,304,549,22,22 +40482,18,652,305,542,22,22 +40483,18,652,306,549,22,22 +40484,18,652,251,118,35,55 +40485,18,652,252,10016,35,55 +40486,18,652,253,118,35,55 +40487,18,652,254,118,35,55 +40488,18,652,255,118,35,55 +40489,18,652,256,118,35,60 +40490,18,652,257,550,35,60 +40491,18,652,258,118,35,70 +40492,18,652,259,118,35,70 +40493,18,652,260,118,35,70 +40494,18,652,261,10016,5,20 +40495,18,652,262,10016,5,20 +40496,18,652,263,10016,5,20 +40497,18,652,264,10016,5,20 +40498,18,652,265,10016,5,20 +40499,18,652,266,550,5,20 +40500,18,652,267,550,5,20 +40501,18,652,268,550,5,20 +40502,18,652,269,550,5,20 +40503,18,652,270,550,5,20 +40504,18,652,271,548,19,19 +40505,18,652,272,541,20,20 +40506,18,652,273,548,20,20 +40507,18,652,274,541,21,21 +40508,18,652,275,520,21,21 +40509,18,652,276,543,20,20 +40510,18,652,277,520,22,22 +40511,18,652,278,543,21,21 +40512,18,652,279,548,21,21 +40513,18,652,280,541,22,22 +40514,18,652,281,548,22,22 +40515,18,652,282,541,22,22 +40516,18,653,283,559,32,32 +40517,18,653,284,558,34,34 +40518,18,653,285,505,32,32 +40519,18,653,286,558,35,35 +40520,18,653,287,559,33,33 +40521,18,653,288,505,34,34 +40522,18,653,289,559,34,34 +40523,18,653,290,538,33,33 +40524,18,653,291,559,35,35 +40525,18,653,292,538,35,35 +40526,18,653,293,559,35,35 +40527,18,653,294,538,35,35 +40528,18,653,295,531,28,28 +40529,18,653,296,531,28,28 +40530,18,653,297,531,29,29 +40531,18,653,298,531,29,29 +40532,18,653,299,531,30,30 +40533,18,653,300,531,31,31 +40534,18,653,301,531,31,31 +40535,18,653,302,531,31,31 +40536,18,653,303,531,31,31 +40537,18,653,304,539,31,31 +40538,18,653,305,531,31,31 +40539,18,653,306,539,31,31 +40540,18,653,251,456,35,55 +40541,18,653,252,116,35,55 +40542,18,653,253,116,35,55 +40543,18,653,254,456,35,55 +40544,18,653,255,170,35,55 +40545,18,653,256,117,35,60 +40546,18,653,257,211,35,60 +40547,18,653,258,457,35,70 +40548,18,653,259,230,45,70 +40549,18,653,260,230,45,70 +40550,18,653,261,592,5,15 +40551,18,653,262,592,5,15 +40552,18,653,263,592,5,15 +40553,18,653,264,592,5,15 +40554,18,653,265,592,5,15 +40555,18,653,266,594,5,20 +40556,18,653,267,594,5,20 +40557,18,653,268,594,5,20 +40558,18,653,269,593,5,20 +40559,18,653,270,593,5,20 +40560,18,653,271,559,28,28 +40561,18,653,272,557,30,30 +40562,18,653,273,505,28,28 +40563,18,653,274,557,31,31 +40564,18,653,275,559,29,29 +40565,18,653,276,505,30,30 +40566,18,653,277,559,30,30 +40567,18,653,278,538,29,29 +40568,18,653,279,559,31,31 +40569,18,653,280,538,31,31 +40570,18,653,281,559,31,31 +40571,18,653,282,538,31,31 +40572,18,654,251,223,35,55 +40573,18,654,252,90,35,55 +40574,18,654,253,223,35,55 +40575,18,654,254,370,35,55 +40576,18,654,255,370,35,55 +40577,18,654,256,90,35,60 +40578,18,654,257,370,35,60 +40579,18,654,258,224,35,70 +40580,18,654,259,91,45,70 +40581,18,654,260,91,45,70 +40582,18,654,261,278,25,55 +40583,18,654,262,458,25,55 +40584,18,654,263,279,25,55 +40585,18,654,264,279,25,55 +40586,18,654,265,279,25,55 +40587,18,654,266,320,25,60 +40588,18,654,267,222,25,60 +40589,18,654,268,226,35,70 +40590,18,654,269,226,35,70 +40591,18,654,270,226,35,70 +40592,18,655,251,456,35,55 +40593,18,655,252,116,35,55 +40594,18,655,253,116,35,55 +40595,18,655,254,456,35,55 +40596,18,655,255,456,35,55 +40597,18,655,256,117,35,60 +40598,18,655,257,211,35,60 +40599,18,655,258,457,35,70 +40600,18,655,259,230,45,70 +40601,18,655,260,230,45,70 +40602,18,655,261,592,5,15 +40603,18,655,262,592,5,15 +40604,18,655,263,592,5,15 +40605,18,655,264,592,5,15 +40606,18,655,265,592,5,15 +40607,18,655,266,594,5,20 +40608,18,655,267,594,5,20 +40609,18,655,268,594,5,20 +40610,18,655,269,593,5,20 +40611,18,655,270,593,5,20 +40612,21,576,331,118,40,60 +40613,21,576,332,550,40,60 +40614,21,576,333,118,50,70 +40615,21,576,334,118,50,70 +40616,21,576,335,118,50,70 +40617,21,576,336,118,40,60 +40618,21,576,337,10016,40,60 +40619,21,576,338,119,50,70 +40620,21,576,339,119,50,70 +40621,21,576,340,119,50,70 +40622,21,576,341,550,45,60 +40623,21,576,342,341,45,60 +40624,21,576,343,550,50,60 +40625,21,576,344,550,50,60 +40626,21,576,345,550,50,60 +40627,21,576,346,10016,45,60 +40628,21,576,347,10016,45,60 +40629,21,576,348,342,50,60 +40630,21,576,349,342,50,60 +40631,21,576,350,342,50,60 +40632,21,656,351,19,16,16 +40633,21,656,352,546,16,16 +40634,21,656,353,519,16,16 +40635,21,656,354,427,16,16 +40636,21,656,355,19,17,17 +40637,21,656,356,546,17,17 +40638,21,656,357,519,17,17 +40639,21,656,358,427,17,17 +40640,21,656,359,546,18,18 +40641,21,656,360,133,19,19 +40642,21,656,361,546,18,18 +40643,21,656,362,133,19,19 +40644,21,656,363,531,15,15 +40645,21,656,364,531,15,15 +40646,21,656,365,531,16,16 +40647,21,656,366,531,16,16 +40648,21,656,367,531,17,17 +40649,21,656,368,531,17,17 +40650,21,656,369,531,18,18 +40651,21,656,370,531,18,18 +40652,21,656,371,428,18,18 +40653,21,656,372,547,18,18 +40654,21,656,373,428,18,18 +40655,21,656,374,547,18,18 +40656,21,656,375,19,15,15 +40657,21,656,376,546,15,15 +40658,21,656,377,519,15,15 +40659,21,656,378,427,15,15 +40660,21,656,379,19,16,16 +40661,21,656,380,546,16,16 +40662,21,656,381,519,16,16 +40663,21,656,382,427,16,16 +40664,21,656,383,546,17,17 +40665,21,656,384,133,18,18 +40666,21,656,385,546,17,17 +40667,21,656,386,133,18,18 +40668,21,578,331,339,45,60 +40669,21,578,332,618,45,60 +40670,21,578,333,339,60,60 +40671,21,578,333,339,60,60 +40672,21,578,333,339,60,60 +40673,21,578,333,339,50,60 +40674,21,578,334,339,60,60 +40675,21,578,334,339,60,60 +40676,21,578,334,339,60,60 +40677,21,578,334,339,50,60 +40678,21,578,335,339,60,60 +40679,21,578,335,339,60,60 +40680,21,578,335,339,60,60 +40681,21,578,335,339,50,60 +40682,21,578,336,339,45,60 +40683,21,578,337,618,45,60 +40684,21,578,338,340,60,60 +40685,21,578,338,340,60,60 +40686,21,578,338,340,60,60 +40687,21,578,338,340,50,60 +40688,21,578,339,340,60,60 +40689,21,578,339,340,60,60 +40690,21,578,339,340,60,60 +40691,21,578,339,340,50,60 +40692,21,578,340,340,60,60 +40693,21,578,340,340,60,60 +40694,21,578,340,340,60,60 +40695,21,578,340,340,50,60 +40696,21,578,341,618,45,60 +40697,21,578,342,618,45,60 +40698,21,578,343,618,60,60 +40699,21,578,343,618,60,60 +40700,21,578,343,618,60,60 +40701,21,578,343,618,50,60 +40702,21,578,344,618,60,60 +40703,21,578,344,618,60,60 +40704,21,578,344,618,60,60 +40705,21,578,344,618,50,60 +40706,21,578,345,618,60,60 +40707,21,578,345,618,60,60 +40708,21,578,345,618,60,60 +40709,21,578,345,618,50,60 +40710,21,578,346,618,45,60 +40711,21,578,347,618,45,60 +40712,21,578,348,618,60,60 +40713,21,578,348,618,60,60 +40714,21,578,348,618,60,60 +40715,21,578,348,618,50,60 +40716,21,578,349,537,60,60 +40717,21,578,349,537,60,60 +40718,21,578,349,537,60,60 +40719,21,578,349,537,50,60 +40720,21,578,350,537,60,60 +40721,21,578,350,537,60,60 +40722,21,578,350,537,60,60 +40723,21,578,350,537,50,60 +40724,21,578,375,536,54,54 +40725,21,578,375,536,54,54 +40726,21,578,375,536,54,54 +40727,21,578,376,616,54,54 +40728,21,578,376,616,54,54 +40729,21,578,376,616,54,54 +40730,21,578,377,536,55,55 +40731,21,578,377,536,55,55 +40732,21,578,377,536,55,55 +40733,21,578,378,453,55,55 +40734,21,578,378,453,55,55 +40735,21,578,378,453,55,55 +40736,21,578,379,618,55,55 +40737,21,578,379,618,55,55 +40738,21,578,379,618,55,55 +40739,21,578,380,618,56,56 +40740,21,578,380,618,56,56 +40741,21,578,380,618,56,56 +40742,21,578,381,536,56,56 +40743,21,578,381,536,56,56 +40744,21,578,381,536,56,56 +40745,21,578,382,453,56,56 +40746,21,578,382,453,56,56 +40747,21,578,382,453,56,56 +40748,21,578,383,536,57,57 +40749,21,578,383,536,57,57 +40750,21,578,383,536,57,57 +40751,21,578,384,588,57,57 +40752,21,578,384,588,57,57 +40753,21,578,384,588,57,57 +40754,21,578,385,536,57,57 +40755,21,578,385,536,57,57 +40756,21,578,385,536,57,57 +40757,21,578,386,588,57,57 +40758,21,578,386,588,57,57 +40759,21,578,386,588,57,57 +40760,21,657,331,118,40,60 +40761,21,657,332,550,40,60 +40762,21,657,333,118,50,70 +40763,21,657,334,118,50,70 +40764,21,657,335,118,50,70 +40765,21,657,336,118,40,60 +40766,21,657,337,10016,40,60 +40767,21,657,338,119,50,70 +40768,21,657,339,119,50,70 +40769,21,657,340,119,50,70 +40770,21,657,341,550,5,15 +40771,21,657,342,550,5,15 +40772,21,657,343,550,5,15 +40773,21,657,344,550,5,15 +40774,21,657,345,550,5,15 +40775,21,657,346,10016,5,15 +40776,21,657,347,10016,5,15 +40777,21,657,348,10016,5,15 +40778,21,657,349,10016,5,15 +40779,21,657,350,10016,5,15 +40780,21,658,331,456,40,60 +40781,21,658,332,98,40,60 +40782,21,658,333,456,50,70 +40783,21,658,334,211,50,70 +40784,21,658,335,211,50,70 +40785,21,658,336,98,40,60 +40786,21,658,337,457,40,60 +40787,21,658,338,99,50,70 +40788,21,658,339,99,50,70 +40789,21,658,340,99,50,70 +40790,21,658,341,592,5,15 +40791,21,658,342,592,5,15 +40792,21,658,343,592,5,15 +40793,21,658,344,592,5,15 +40794,21,658,345,592,5,15 +40795,21,658,346,594,5,15 +40796,21,658,347,594,5,15 +40797,21,658,348,594,5,15 +40798,21,658,349,593,5,15 +40799,21,658,350,593,5,15 +40800,21,659,331,370,40,60 +40801,21,659,332,90,40,60 +40802,21,659,333,370,50,70 +40803,21,659,334,370,50,70 +40804,21,659,335,370,50,70 +40805,21,659,336,90,40,60 +40806,21,659,337,370,40,60 +40807,21,659,338,90,50,70 +40808,21,659,339,91,50,70 +40809,21,659,340,91,50,70 +40810,21,659,341,592,30,45 +40811,21,659,342,120,30,45 +40812,21,659,343,550,35,45 +40813,21,659,344,592,35,45 +40814,21,659,345,592,35,45 +40815,21,659,346,593,35,45 +40816,21,659,347,222,35,45 +40817,21,659,348,10016,35,45 +40818,21,659,349,121,35,45 +40819,21,659,350,121,35,45 +40820,21,579,351,505,64,64 +40821,21,579,352,510,64,64 +40822,21,579,353,20,65,65 +40823,21,579,354,39,65,65 +40824,21,579,355,517,65,65 +40825,21,579,356,517,66,66 +40826,21,579,357,42,65,65 +40827,21,579,358,42,66,66 +40828,21,579,359,505,67,67 +40829,21,579,360,510,67,67 +40830,21,579,361,505,67,67 +40831,21,579,362,510,67,67 +40832,21,579,363,531,56,56 +40833,21,579,364,531,56,56 +40834,21,579,365,531,57,57 +40835,21,579,366,206,57,57 +40836,21,579,367,531,58,58 +40837,21,579,368,531,58,58 +40838,21,579,369,531,59,59 +40839,21,579,370,40,59,59 +40840,21,579,371,169,59,59 +40841,21,579,372,518,59,59 +40842,21,579,373,169,59,59 +40843,21,579,374,518,59,59 +40844,21,579,375,505,56,56 +40845,21,579,376,510,56,56 +40846,21,579,377,20,57,57 +40847,21,579,378,39,57,57 +40848,21,579,379,517,57,57 +40849,21,579,380,517,58,58 +40850,21,579,381,42,57,57 +40851,21,579,382,42,58,58 +40852,21,579,383,505,59,59 +40853,21,579,384,510,59,59 +40854,21,579,385,505,59,59 +40855,21,579,386,510,59,59 +40856,21,580,351,20,64,64 +40857,21,580,352,42,64,64 +40858,21,580,353,505,65,65 +40859,21,580,354,39,65,65 +40860,21,580,355,517,65,65 +40861,21,580,356,517,66,66 +40862,21,580,357,510,65,65 +40863,21,580,358,510,66,66 +40864,21,580,359,20,67,67 +40865,21,580,360,42,67,67 +40866,21,580,361,20,67,67 +40867,21,580,362,42,67,67 +40868,21,581,351,536,64,64 +40869,21,581,352,533,64,64 +40870,21,581,353,454,63,63 +40871,21,581,354,193,63,63 +40872,21,581,355,533,63,63 +40873,21,581,356,533,64,64 +40874,21,581,357,539,63,63 +40875,21,581,358,539,63,63 +40876,21,581,359,536,65,65 +40877,21,581,360,539,65,65 +40878,21,581,361,536,65,65 +40879,21,581,362,539,65,65 +40880,21,581,363,531,54,54 +40881,21,581,364,531,54,54 +40882,21,581,365,531,55,55 +40883,21,581,366,531,55,55 +40884,21,581,367,531,56,56 +40885,21,581,368,531,56,56 +40886,21,581,369,469,57,57 +40887,21,581,370,537,57,57 +40888,21,581,371,531,57,57 +40889,21,581,372,538,57,57 +40890,21,581,373,531,57,57 +40891,21,581,374,538,57,57 +40892,21,581,375,536,54,54 +40893,21,581,376,533,54,54 +40894,21,581,377,454,55,55 +40895,21,581,378,193,55,55 +40896,21,581,379,533,55,55 +40897,21,581,380,533,56,56 +40898,21,581,381,539,55,55 +40899,21,581,382,539,55,55 +40900,21,581,383,536,57,57 +40901,21,581,384,539,57,57 +40902,21,581,385,536,57,57 +40903,21,581,386,539,57,57 +40904,21,582,351,546,62,62 +40905,21,582,352,541,62,62 +40906,21,582,353,546,63,63 +40907,21,582,354,288,63,63 +40908,21,582,355,546,64,64 +40909,21,582,356,544,63,63 +40910,21,582,357,288,65,65 +40911,21,582,358,544,65,65 +40912,21,582,359,546,65,65 +40913,21,582,360,541,64,64 +40914,21,582,361,546,65,65 +40915,21,582,362,541,64,64 +40916,21,582,363,531,54,54 +40917,21,582,364,531,64,64 +40918,21,582,365,511,55,55 +40919,21,582,366,513,55,55 +40920,21,582,367,515,55,55 +40921,21,582,368,531,56,56 +40922,21,582,369,531,57,57 +40923,21,582,370,545,57,57 +40924,21,582,371,289,57,57 +40925,21,582,372,547,57,57 +40926,21,582,373,289,57,57 +40927,21,582,374,547,57,57 +40928,21,582,331,118,40,60 +40929,21,582,332,550,40,60 +40930,21,582,333,118,50,70 +40931,21,582,334,118,50,70 +40932,21,582,335,118,50,70 +40933,21,582,336,118,35,60 +40934,21,582,337,10016,35,60 +40935,21,582,338,119,35,70 +40936,21,582,339,119,45,70 +40937,21,582,340,119,45,70 +40938,21,582,341,550,45,60 +40939,21,582,342,183,45,60 +40940,21,582,343,550,50,60 +40941,21,582,344,550,50,60 +40942,21,582,345,550,50,60 +40943,21,582,346,183,45,60 +40944,21,582,347,10016,45,60 +40945,21,582,348,10016,50,60 +40946,21,582,349,184,50,60 +40947,21,582,350,184,50,60 +40948,21,582,375,546,54,54 +40949,21,582,376,541,54,54 +40950,21,582,377,546,55,55 +40951,21,582,378,288,55,55 +40952,21,582,379,546,56,56 +40953,21,582,380,544,55,55 +40954,21,582,381,288,57,57 +40955,21,582,382,544,57,57 +40956,21,582,383,546,57,57 +40957,21,582,384,541,56,56 +40958,21,582,385,546,57,57 +40959,21,582,386,541,56,56 +40960,21,583,375,551,18,18 +40961,21,583,376,554,18,18 +40962,21,583,377,551,19,19 +40963,21,583,378,554,19,19 +40964,21,583,379,556,19,19 +40965,21,583,380,559,19,19 +40966,21,583,381,27,19,19 +40967,21,583,382,557,19,19 +40968,21,583,383,27,20,20 +40969,21,583,384,557,21,21 +40970,21,583,385,27,20,20 +40971,21,583,386,557,21,21 +40972,21,584,375,551,18,18 +40973,21,584,376,554,18,18 +40974,21,584,377,551,19,19 +40975,21,584,378,27,19,19 +40976,21,584,379,556,19,19 +40977,21,584,380,561,19,19 +40978,21,584,381,27,20,20 +40979,21,584,382,557,19,19 +40980,21,584,383,328,21,21 +40981,21,584,384,557,21,21 +40982,21,584,385,328,21,21 +40983,21,584,386,557,21,21 +40984,21,585,375,551,18,18 +40985,21,585,376,562,18,18 +40986,21,585,377,551,19,19 +40987,21,585,378,562,19,19 +40988,21,585,379,27,19,19 +40989,21,585,380,27,20,20 +40990,21,585,381,551,20,20 +40991,21,585,382,562,20,20 +40992,21,585,383,551,21,21 +40993,21,585,384,562,21,21 +40994,21,585,385,551,21,21 +40995,21,585,386,562,21,21 +40996,21,587,375,562,27,27 +40997,21,587,376,551,27,27 +40998,21,587,377,562,28,28 +40999,21,587,378,551,28,28 +41000,21,587,379,28,28,28 +41001,21,587,380,28,29,29 +41002,21,587,381,562,29,29 +41003,21,587,382,552,29,29 +41004,21,587,383,562,30,30 +41005,21,587,384,552,30,30 +41006,21,587,385,562,30,30 +41007,21,587,386,552,30,30 +41008,21,588,375,343,27,27 +41009,21,588,376,343,27,27 +41010,21,588,377,343,28,28 +41011,21,588,378,343,28,28 +41012,21,588,379,343,28,28 +41013,21,588,380,343,28,28 +41014,21,588,381,343,29,29 +41015,21,588,382,343,29,29 +41016,21,588,383,343,30,30 +41017,21,588,384,343,30,30 +41018,21,588,385,343,30,30 +41019,21,588,386,343,30,30 +41020,21,590,387,529,25,25 +41021,21,590,388,529,25,25 +41022,21,590,389,529,26,26 +41023,21,590,390,529,26,26 +41024,21,590,391,529,27,27 +41025,21,590,392,529,27,27 +41026,21,590,393,529,28,28 +41027,21,590,394,529,28,28 +41028,21,590,395,529,28,28 +41029,21,590,396,529,28,28 +41030,21,590,397,529,28,28 +41031,21,590,398,529,28,28 +41032,21,590,375,595,25,25 +41033,21,590,376,599,26,26 +41034,21,590,377,595,26,26 +41035,21,590,378,299,27,27 +41036,21,590,379,597,26,26 +41037,21,590,380,597,27,27 +41038,21,590,381,595,27,27 +41039,21,590,382,525,25,25 +41040,21,590,383,595,28,28 +41041,21,590,384,599,28,28 +41042,21,590,385,602,28,28 +41043,21,590,386,602,28,28 +41044,21,591,387,529,28,28 +41045,21,591,388,529,28,28 +41046,21,591,389,529,29,29 +41047,21,591,390,529,29,29 +41048,21,591,391,529,30,30 +41049,21,591,392,529,30,30 +41050,21,591,393,529,31,31 +41051,21,591,394,529,31,31 +41052,21,591,395,529,31,31 +41053,21,591,396,529,31,31 +41054,21,591,397,529,31,31 +41055,21,591,398,529,31,31 +41056,21,591,375,595,28,28 +41057,21,591,376,599,29,29 +41058,21,591,377,595,29,29 +41059,21,591,378,299,30,30 +41060,21,591,379,597,29,29 +41061,21,591,380,597,30,30 +41062,21,591,381,595,30,30 +41063,21,591,382,525,28,28 +41064,21,591,383,595,31,31 +41065,21,591,384,599,31,31 +41066,21,591,385,602,31,31 +41067,21,591,386,602,31,31 +41068,21,592,387,529,28,28 +41069,21,592,388,529,28,28 +41070,21,592,389,529,29,29 +41071,21,592,390,529,29,29 +41072,21,592,391,529,30,30 +41073,21,592,392,529,30,30 +41074,21,592,393,529,31,31 +41075,21,592,394,529,31,31 +41076,21,592,395,529,31,31 +41077,21,592,396,529,31,31 +41078,21,592,397,529,31,31 +41079,21,592,398,529,31,31 +41080,21,592,375,595,28,28 +41081,21,592,376,599,29,29 +41082,21,592,377,595,29,29 +41083,21,592,378,299,30,30 +41084,21,592,379,597,30,30 +41085,21,592,380,597,31,31 +41086,21,592,381,595,30,30 +41087,21,592,382,525,28,28 +41088,21,592,383,602,31,31 +41089,21,592,384,602,31,31 +41090,21,592,385,595,31,31 +41091,21,592,386,599,31,31 +41092,21,593,387,530,54,54 +41093,21,593,388,95,54,54 +41094,21,593,389,530,55,55 +41095,21,593,390,530,55,55 +41096,21,593,391,530,56,56 +41097,21,593,392,530,56,56 +41098,21,593,393,530,57,57 +41099,21,593,394,530,57,57 +41100,21,593,395,530,57,57 +41101,21,593,396,208,57,57 +41102,21,593,397,530,57,57 +41103,21,593,398,208,57,57 +41104,21,593,375,525,54,54 +41105,21,593,375,525,54,54 +41106,21,593,375,525,54,54 +41107,21,593,375,614,54,54 +41108,21,593,376,525,55,55 +41109,21,593,376,533,55,55 +41110,21,593,376,525,55,55 +41111,21,593,376,525,55,55 +41112,21,593,377,533,55,55 +41113,21,593,377,631,55,55 +41114,21,593,377,533,55,55 +41115,21,593,377,533,55,55 +41116,21,593,378,527,54,54 +41117,21,593,379,632,56,56 +41118,21,593,380,614,56,56 +41119,21,593,380,631,56,56 +41120,21,593,380,614,56,56 +41121,21,593,380,615,56,56 +41122,21,593,381,631,56,56 +41123,21,593,381,614,56,56 +41124,21,593,381,631,56,56 +41125,21,593,381,631,56,56 +41126,21,593,382,632,57,57 +41127,21,593,383,615,57,57 +41128,21,593,384,95,57,57 +41129,21,593,385,615,57,57 +41130,21,593,386,95,57,57 +41131,21,594,351,583,63,63 +41132,21,594,352,586,63,63 +41133,21,594,353,620,64,64 +41134,21,594,354,586,65,65 +41135,21,594,355,620,65,65 +41136,21,594,356,614,65,65 +41137,21,594,357,620,66,66 +41138,21,594,358,583,65,65 +41139,21,594,359,620,66,66 +41140,21,594,360,614,66,66 +41141,21,594,361,619,66,66 +41142,21,594,362,614,66,66 +41143,21,594,363,531,55,55 +41144,21,594,364,531,55,55 +41145,21,594,365,587,56,56 +41146,21,594,366,531,56,56 +41147,21,594,367,531,57,57 +41148,21,594,368,531,57,57 +41149,21,594,369,531,58,58 +41150,21,594,370,531,58,58 +41151,21,594,371,531,58,58 +41152,21,594,372,521,58,58 +41153,21,594,372,521,58,58 +41154,21,594,372,521,58,58 +41155,21,594,372,584,58,58 +41156,21,594,373,531,58,58 +41157,21,594,374,521,58,58 +41158,21,594,374,521,58,58 +41159,21,594,374,521,58,58 +41160,21,594,374,584,58,58 +41161,21,594,375,520,55,55 +41162,21,594,375,520,55,55 +41163,21,594,375,520,55,55 +41164,21,594,375,583,55,55 +41165,21,594,376,586,55,55 +41166,21,594,377,620,56,56 +41167,21,594,378,586,57,57 +41168,21,594,379,620,57,57 +41169,21,594,380,520,57,57 +41170,21,594,380,520,57,57 +41171,21,594,380,520,57,57 +41172,21,594,380,614,57,57 +41173,21,594,381,620,58,58 +41174,21,594,382,520,58,58 +41175,21,594,382,520,58,58 +41176,21,594,382,520,58,58 +41177,21,594,382,583,57,57 +41178,21,594,383,586,58,58 +41179,21,594,383,586,58,58 +41180,21,594,383,586,58,58 +41181,21,594,383,620,58,58 +41182,21,594,384,621,58,58 +41183,21,594,384,621,58,58 +41184,21,594,384,621,58,58 +41185,21,594,384,614,58,58 +41186,21,594,385,586,58,58 +41187,21,594,385,586,58,58 +41188,21,594,385,586,58,58 +41189,21,594,385,620,58,58 +41190,21,594,386,621,58,58 +41191,21,594,386,621,58,58 +41192,21,594,386,621,58,58 +41193,21,594,386,614,58,58 +41194,21,595,351,520,63,63 +41195,21,595,351,520,63,63 +41196,21,595,351,520,63,63 +41197,21,595,351,583,63,63 +41198,21,595,352,586,63,63 +41199,21,595,353,620,64,64 +41200,21,595,354,586,65,65 +41201,21,595,355,620,65,65 +41202,21,595,356,520,65,65 +41203,21,595,356,520,65,65 +41204,21,595,356,520,65,65 +41205,21,595,356,614,65,65 +41206,21,595,357,620,66,66 +41207,21,595,358,520,66,66 +41208,21,595,358,520,66,66 +41209,21,595,358,520,66,66 +41210,21,595,358,583,65,65 +41211,21,595,359,586,66,66 +41212,21,595,359,586,66,66 +41213,21,595,359,586,66,66 +41214,21,595,359,614,66,66 +41215,21,595,360,621,66,66 +41216,21,595,361,586,66,66 +41217,21,595,361,586,66,66 +41218,21,595,361,586,66,66 +41219,21,595,361,614,66,66 +41220,21,595,362,621,66,66 +41221,21,595,363,531,55,55 +41222,21,595,364,531,55,55 +41223,21,595,365,587,56,56 +41224,21,595,366,531,56,56 +41225,21,595,367,531,57,57 +41226,21,595,368,531,57,57 +41227,21,595,369,531,57,57 +41228,21,595,370,531,57,57 +41229,21,595,371,531,57,57 +41230,21,595,372,521,57,57 +41231,21,595,372,521,57,57 +41232,21,595,372,521,57,57 +41233,21,595,372,584,57,57 +41234,21,595,373,531,57,57 +41235,21,595,374,521,57,57 +41236,21,595,374,521,57,57 +41237,21,595,374,521,57,57 +41238,21,595,374,584,57,57 +41239,21,595,331,147,40,60 +41240,21,595,332,550,40,60 +41241,21,595,333,147,50,70 +41242,21,595,334,147,50,70 +41243,21,595,335,147,50,70 +41244,21,595,336,147,40,60 +41245,21,595,337,10016,40,60 +41246,21,595,338,148,50,70 +41247,21,595,339,148,50,70 +41248,21,595,340,149,50,70 +41249,21,595,341,550,45,60 +41250,21,595,342,550,45,60 +41251,21,595,343,550,50,60 +41252,21,595,344,550,50,60 +41253,21,595,345,550,50,60 +41254,21,595,346,10016,45,60 +41255,21,595,347,10016,45,60 +41256,21,595,348,10016,50,60 +41257,21,595,349,10016,50,60 +41258,21,595,350,10016,50,60 +41259,21,595,375,520,55,55 +41260,21,595,375,520,55,55 +41261,21,595,375,520,55,55 +41262,21,595,375,583,55,55 +41263,21,595,376,586,55,55 +41264,21,595,377,620,56,56 +41265,21,595,378,586,57,57 +41266,21,595,379,620,57,57 +41267,21,595,380,520,57,57 +41268,21,595,380,520,57,57 +41269,21,595,380,520,57,57 +41270,21,595,380,614,57,57 +41271,21,595,381,620,58,58 +41272,21,595,382,520,58,58 +41273,21,595,382,520,58,58 +41274,21,595,382,520,58,58 +41275,21,595,382,583,57,57 +41276,21,595,383,586,58,58 +41277,21,595,383,586,58,58 +41278,21,595,383,586,58,58 +41279,21,595,383,614,58,58 +41280,21,595,384,621,58,58 +41281,21,595,385,586,58,58 +41282,21,595,385,586,58,58 +41283,21,595,385,586,58,58 +41284,21,595,385,614,58,58 +41285,21,595,386,621,58,58 +41286,21,596,375,623,55,55 +41287,21,596,376,620,55,55 +41288,21,596,377,623,56,56 +41289,21,596,378,621,56,56 +41290,21,596,379,623,57,57 +41291,21,596,380,621,57,57 +41292,21,596,381,623,58,58 +41293,21,596,382,621,58,58 +41294,21,596,383,623,58,58 +41295,21,596,384,621,58,58 +41296,21,596,385,623,58,58 +41297,21,596,386,621,58,58 +41298,21,597,375,623,55,55 +41299,21,597,376,623,55,55 +41300,21,597,377,623,56,56 +41301,21,597,378,623,56,56 +41302,21,597,379,623,57,57 +41303,21,597,380,623,57,57 +41304,21,597,381,623,58,58 +41305,21,597,382,623,58,58 +41306,21,597,383,623,58,58 +41307,21,597,384,623,58,58 +41308,21,597,385,623,58,58 +41309,21,597,386,623,58,58 +41310,21,660,387,530,47,47 +41311,21,660,388,530,47,47 +41312,21,660,389,530,48,48 +41313,21,660,390,530,48,48 +41314,21,660,391,530,49,49 +41315,21,660,392,530,49,49 +41316,21,660,393,530,50,50 +41317,21,660,394,530,50,50 +41318,21,660,395,530,50,50 +41319,21,660,396,530,50,50 +41320,21,660,397,530,50,50 +41321,21,660,398,530,50,50 +41322,21,660,375,525,47,47 +41323,21,660,376,525,47,47 +41324,21,660,377,525,48,48 +41325,21,660,378,525,48,48 +41326,21,660,379,525,49,49 +41327,21,660,380,525,49,49 +41328,21,660,381,525,50,50 +41329,21,660,382,525,50,50 +41330,21,660,383,525,50,50 +41331,21,660,384,525,50,50 +41332,21,660,385,525,50,50 +41333,21,660,386,525,50,50 +41334,21,661,331,60,40,55 +41335,21,661,332,550,40,55 +41336,21,661,333,60,50,55 +41337,21,661,334,60,50,55 +41338,21,661,335,60,50,55 +41339,21,661,336,61,40,60 +41340,21,661,337,10016,40,60 +41341,21,661,338,61,50,60 +41342,21,661,339,62,50,60 +41343,21,661,340,62,50,60 +41344,21,661,341,550,35,50 +41345,21,661,342,183,35,50 +41346,21,661,343,550,40,50 +41347,21,661,344,550,40,50 +41348,21,661,345,550,40,50 +41349,21,661,346,183,35,50 +41350,21,661,347,10016,35,50 +41351,21,661,348,10016,40,50 +41352,21,661,349,184,40,50 +41353,21,661,350,184,40,50 +41354,21,661,375,354,47,47 +41355,21,661,376,354,47,47 +41356,21,661,377,354,48,48 +41357,21,661,378,623,48,48 +41358,21,661,379,354,49,49 +41359,21,661,380,623,49,49 +41360,21,661,381,354,50,50 +41361,21,661,382,623,50,50 +41362,21,661,383,354,50,50 +41363,21,661,384,623,50,50 +41364,21,661,385,354,50,50 +41365,21,661,386,623,50,50 +41366,21,662,351,546,52,52 +41367,21,662,352,546,52,52 +41368,21,662,353,546,53,53 +41369,21,662,354,315,53,53 +41370,21,662,355,546,54,54 +41371,21,662,356,315,54,54 +41372,21,662,357,546,55,55 +41373,21,662,358,315,55,55 +41374,21,662,359,546,55,55 +41375,21,662,360,315,55,55 +41376,21,662,361,546,55,55 +41377,21,662,362,315,55,55 +41378,21,662,363,531,47,47 +41379,21,662,364,531,47,47 +41380,21,662,365,531,48,48 +41381,21,662,366,531,48,48 +41382,21,662,367,206,49,49 +41383,21,662,368,531,49,49 +41384,21,662,369,531,50,50 +41385,21,662,370,531,50,50 +41386,21,662,371,547,50,50 +41387,21,662,372,407,50,50 +41388,21,662,373,547,50,50 +41389,21,662,374,407,50,50 +41390,21,662,375,546,47,47 +41391,21,662,376,546,47,47 +41392,21,662,377,546,48,48 +41393,21,662,378,315,48,48 +41394,21,662,379,546,49,49 +41395,21,662,380,315,49,49 +41396,21,662,381,546,50,50 +41397,21,662,382,315,50,50 +41398,21,662,383,546,50,50 +41399,21,662,384,315,50,50 +41400,21,662,385,546,50,50 +41401,21,662,386,315,50,50 +41402,21,663,351,520,52,52 +41403,21,663,352,520,52,52 +41404,21,663,353,520,53,53 +41405,21,663,354,520,53,53 +41406,21,663,355,520,54,54 +41407,21,663,356,334,54,54 +41408,21,663,357,520,55,55 +41409,21,663,358,334,55,55 +41410,21,663,359,520,55,55 +41411,21,663,360,334,55,55 +41412,21,663,361,520,55,55 +41413,21,663,362,334,55,55 +41414,21,663,363,531,47,47 +41415,21,663,364,531,47,47 +41416,21,663,365,531,48,48 +41417,21,663,366,531,48,48 +41418,21,663,367,206,49,49 +41419,21,663,368,531,49,49 +41420,21,663,369,531,50,50 +41421,21,663,370,531,50,50 +41422,21,663,371,531,50,50 +41423,21,663,372,521,50,50 +41424,21,663,373,531,50,50 +41425,21,663,374,521,50,50 +41426,21,663,331,60,40,60 +41427,21,663,332,550,40,60 +41428,21,663,333,60,50,70 +41429,21,663,334,60,50,70 +41430,21,663,335,60,50,70 +41431,21,663,336,61,40,60 +41432,21,663,337,10016,40,60 +41433,21,663,338,61,50,70 +41434,21,663,339,186,50,70 +41435,21,663,340,186,50,70 +41436,21,663,341,550,35,50 +41437,21,663,342,418,35,50 +41438,21,663,343,550,40,50 +41439,21,663,344,550,40,50 +41440,21,663,345,550,40,50 +41441,21,663,346,418,35,50 +41442,21,663,347,10016,35,50 +41443,21,663,348,419,40,50 +41444,21,663,349,419,40,50 +41445,21,663,350,419,40,50 +41446,21,663,375,520,47,47 +41447,21,663,376,520,47,47 +41448,21,663,377,520,48,48 +41449,21,663,378,520,48,48 +41450,21,663,379,520,49,49 +41451,21,663,380,334,49,49 +41452,21,663,381,520,50,50 +41453,21,663,382,334,50,50 +41454,21,663,383,520,50,50 +41455,21,663,384,334,50,50 +41456,21,663,385,520,50,50 +41457,21,663,386,334,50,50 +41458,21,664,387,530,41,41 +41459,21,664,388,95,41,41 +41460,21,664,389,530,42,42 +41461,21,664,390,530,42,42 +41462,21,664,391,530,43,43 +41463,21,664,392,530,43,43 +41464,21,664,393,530,44,44 +41465,21,664,394,530,44,44 +41466,21,664,395,530,44,44 +41467,21,664,396,530,44,44 +41468,21,664,397,530,44,44 +41469,21,664,398,530,44,44 +41470,21,664,375,525,41,41 +41471,21,664,376,525,41,41 +41472,21,664,377,525,42,42 +41473,21,664,378,525,42,42 +41474,21,664,379,525,43,43 +41475,21,664,380,95,43,43 +41476,21,664,381,525,44,44 +41477,21,664,382,95,44,44 +41478,21,664,383,525,44,44 +41479,21,664,384,95,44,44 +41480,21,664,385,525,44,44 +41481,21,664,386,95,44,44 +41482,21,665,387,530,47,47 +41483,21,665,388,95,47,47 +41484,21,665,389,530,48,48 +41485,21,665,390,530,48,48 +41486,21,665,391,530,49,49 +41487,21,665,392,530,49,49 +41488,21,665,393,530,50,50 +41489,21,665,394,530,50,50 +41490,21,665,395,530,50,50 +41491,21,665,396,530,50,50 +41492,21,665,397,530,50,50 +41493,21,665,398,530,50,50 +41494,21,665,331,60,40,60 +41495,21,665,332,550,40,60 +41496,21,665,333,60,50,70 +41497,21,665,334,60,50,70 +41498,21,665,335,60,50,70 +41499,21,665,336,61,40,60 +41500,21,665,337,10016,40,60 +41501,21,665,338,61,50,70 +41502,21,665,339,62,50,70 +41503,21,665,340,62,50,70 +41504,21,665,341,550,35,50 +41505,21,665,342,183,35,50 +41506,21,665,343,550,40,50 +41507,21,665,344,550,40,50 +41508,21,665,345,550,40,50 +41509,21,665,346,183,35,60 +41510,21,665,347,10016,35,60 +41511,21,665,348,10016,40,70 +41512,21,665,349,184,40,70 +41513,21,665,350,184,40,70 +41514,21,665,375,525,47,47 +41515,21,665,376,525,47,47 +41516,21,665,377,525,48,48 +41517,21,665,378,525,48,48 +41518,21,665,379,525,49,49 +41519,21,665,380,95,49,49 +41520,21,665,381,525,50,50 +41521,21,665,382,95,50,50 +41522,21,665,383,525,50,50 +41523,21,665,384,95,50,50 +41524,21,665,385,525,50,50 +41525,21,665,386,95,50,50 +41526,21,666,351,533,52,52 +41527,21,666,352,533,52,52 +41528,21,666,353,533,53,53 +41529,21,666,354,538,53,53 +41530,21,666,355,533,54,54 +41531,21,666,356,538,54,54 +41532,21,666,357,533,55,55 +41533,21,666,358,538,55,55 +41534,21,666,359,533,55,55 +41535,21,666,360,538,55,55 +41536,21,666,361,533,55,55 +41537,21,666,362,538,55,55 +41538,21,666,363,531,47,47 +41539,21,666,364,531,47,47 +41540,21,666,365,531,48,48 +41541,21,666,366,531,48,48 +41542,21,666,367,531,49,49 +41543,21,666,368,531,49,49 +41544,21,666,369,531,50,50 +41545,21,666,370,531,50,50 +41546,21,666,371,531,50,50 +41547,21,666,372,539,50,50 +41548,21,666,373,531,50,50 +41549,21,666,374,539,50,50 +41550,21,666,375,533,47,47 +41551,21,666,376,533,47,47 +41552,21,666,377,533,48,48 +41553,21,666,378,538,48,48 +41554,21,666,379,533,49,49 +41555,21,666,380,538,49,49 +41556,21,666,381,533,50,50 +41557,21,666,382,538,50,50 +41558,21,666,383,533,50,50 +41559,21,666,384,538,50,50 +41560,21,666,385,533,50,50 +41561,21,666,386,538,50,50 +41562,21,667,387,530,47,47 +41563,21,667,388,95,47,47 +41564,21,667,389,530,48,48 +41565,21,667,390,530,48,48 +41566,21,667,391,530,49,49 +41567,21,667,392,530,49,49 +41568,21,667,393,530,50,50 +41569,21,667,394,530,50,50 +41570,21,667,395,530,50,50 +41571,21,667,396,530,50,50 +41572,21,667,397,530,50,50 +41573,21,667,398,530,50,50 +41574,21,667,375,621,47,47 +41575,21,667,376,621,47,47 +41576,21,667,377,621,48,48 +41577,21,667,378,621,48,48 +41578,21,667,379,621,49,49 +41579,21,667,380,634,49,49 +41580,21,667,381,621,50,50 +41581,21,667,382,634,50,50 +41582,21,667,383,621,50,50 +41583,21,667,384,634,50,50 +41584,21,667,385,621,50,50 +41585,21,667,386,634,50,50 +41586,21,668,331,60,40,60 +41587,21,668,332,550,40,60 +41588,21,668,333,60,50,70 +41589,21,668,334,60,50,70 +41590,21,668,335,60,50,70 +41591,21,668,336,61,40,60 +41592,21,668,337,10016,40,60 +41593,21,668,338,61,50,70 +41594,21,668,339,62,50,70 +41595,21,668,340,62,50,70 +41596,21,668,341,550,35,50 +41597,21,668,342,183,35,50 +41598,21,668,343,550,40,50 +41599,21,668,344,550,40,50 +41600,21,668,345,550,40,50 +41601,21,668,346,183,35,50 +41602,21,668,347,10016,35,50 +41603,21,668,348,10016,40,50 +41604,21,668,349,184,40,50 +41605,21,668,350,184,40,50 +41606,21,668,375,354,47,47 +41607,21,668,376,354,47,47 +41608,21,668,377,354,48,48 +41609,21,668,378,623,48,48 +41610,21,668,379,354,49,49 +41611,21,668,380,623,49,49 +41612,21,668,381,354,50,50 +41613,21,668,382,623,50,50 +41614,21,668,383,354,50,50 +41615,21,668,384,623,50,50 +41616,21,668,385,354,50,50 +41617,21,668,386,623,50,50 +41618,21,669,351,520,52,52 +41619,21,669,352,520,52,52 +41620,21,669,353,520,53,53 +41621,21,669,354,520,53,53 +41622,21,669,355,520,54,54 +41623,21,669,356,334,54,54 +41624,21,669,357,520,55,55 +41625,21,669,358,334,55,55 +41626,21,669,359,520,55,55 +41627,21,669,360,334,55,55 +41628,21,669,361,520,55,55 +41629,21,669,362,334,55,55 +41630,21,669,363,531,47,47 +41631,21,669,364,531,47,47 +41632,21,669,365,531,48,48 +41633,21,669,366,531,48,48 +41634,21,669,367,206,49,49 +41635,21,669,368,531,49,49 +41636,21,669,369,531,50,50 +41637,21,669,370,531,50,50 +41638,21,669,371,531,50,50 +41639,21,669,372,521,50,50 +41640,21,669,373,531,50,50 +41641,21,669,374,521,50,50 +41642,21,669,331,60,40,60 +41643,21,669,332,550,40,60 +41644,21,669,333,60,50,70 +41645,21,669,334,60,50,70 +41646,21,669,335,60,50,70 +41647,21,669,336,61,40,60 +41648,21,669,337,10016,40,60 +41649,21,669,338,61,50,70 +41650,21,669,339,186,50,70 +41651,21,669,340,186,50,70 +41652,21,669,341,550,35,50 +41653,21,669,342,418,35,50 +41654,21,669,343,550,40,50 +41655,21,669,344,550,40,50 +41656,21,669,345,550,40,50 +41657,21,669,346,418,35,50 +41658,21,669,347,10016,35,50 +41659,21,669,348,419,40,50 +41660,21,669,349,419,40,50 +41661,21,669,350,419,40,50 +41662,21,669,375,520,47,47 +41663,21,669,376,520,47,47 +41664,21,669,377,520,48,48 +41665,21,669,378,520,48,48 +41666,21,669,379,520,49,49 +41667,21,669,380,334,49,49 +41668,21,669,381,520,50,50 +41669,21,669,382,334,50,50 +41670,21,669,383,520,50,50 +41671,21,669,384,334,50,50 +41672,21,669,385,520,50,50 +41673,21,669,386,334,50,50 +41674,21,670,387,530,47,47 +41675,21,670,388,95,47,47 +41676,21,670,389,530,48,48 +41677,21,670,390,530,48,48 +41678,21,670,391,530,49,49 +41679,21,670,392,530,49,49 +41680,21,670,393,530,50,50 +41681,21,670,394,530,50,50 +41682,21,670,395,530,50,50 +41683,21,670,396,530,50,50 +41684,21,670,397,530,50,50 +41685,21,670,398,530,50,50 +41686,21,670,375,621,47,47 +41687,21,670,376,621,47,47 +41688,21,670,377,621,48,48 +41689,21,670,378,621,48,48 +41690,21,670,379,621,49,49 +41691,21,670,380,634,49,49 +41692,21,670,381,621,50,50 +41693,21,670,382,634,50,50 +41694,21,670,383,621,50,50 +41695,21,670,384,634,50,50 +41696,21,670,385,621,50,50 +41697,21,670,386,634,50,50 +41698,21,614,351,114,49,49 +41699,21,614,352,279,50,50 +41700,21,614,353,114,50,50 +41701,21,614,354,337,50,50 +41702,21,614,355,338,51,51 +41703,21,614,356,35,50,50 +41704,21,614,357,583,50,50 +41705,21,614,358,35,52,52 +41706,21,614,359,583,52,52 +41707,21,614,360,225,49,49 +41708,21,614,361,583,52,52 +41709,21,614,362,225,49,49 +41710,21,614,363,531,44,44 +41711,21,614,364,531,44,44 +41712,21,614,365,531,45,45 +41713,21,614,366,531,45,45 +41714,21,614,367,531,46,46 +41715,21,614,368,531,46,46 +41716,21,614,369,531,47,47 +41717,21,614,370,36,47,47 +41718,21,614,371,584,47,47 +41719,21,614,372,465,47,47 +41720,21,614,373,584,47,47 +41721,21,614,374,465,47,47 +41722,21,614,375,114,44,44 +41723,21,614,376,279,45,45 +41724,21,614,377,114,45,45 +41725,21,614,378,337,45,45 +41726,21,614,379,338,46,46 +41727,21,614,380,35,45,45 +41728,21,614,381,583,45,45 +41729,21,614,382,35,47,47 +41730,21,614,383,583,47,47 +41731,21,614,384,225,44,44 +41732,21,614,385,583,47,47 +41733,21,614,386,225,44,44 +41734,21,615,387,530,44,44 +41735,21,615,388,530,44,44 +41736,21,615,389,530,45,45 +41737,21,615,390,530,45,45 +41738,21,615,391,530,46,46 +41739,21,615,392,530,46,46 +41740,21,615,393,530,47,47 +41741,21,615,394,530,47,47 +41742,21,615,395,530,47,47 +41743,21,615,396,530,47,47 +41744,21,615,397,530,47,47 +41745,21,615,398,530,47,47 +41746,21,615,331,60,40,60 +41747,21,615,332,550,40,60 +41748,21,615,333,60,50,70 +41749,21,615,334,60,50,70 +41750,21,615,335,60,50,70 +41751,21,615,336,61,40,60 +41752,21,615,337,10016,40,60 +41753,21,615,338,61,50,70 +41754,21,615,339,62,50,70 +41755,21,615,340,62,50,70 +41756,21,615,341,550,35,50 +41757,21,615,342,86,35,50 +41758,21,615,343,550,40,50 +41759,21,615,344,550,40,50 +41760,21,615,345,550,40,50 +41761,21,615,346,86,35,50 +41762,21,615,347,10016,35,50 +41763,21,615,348,87,40,50 +41764,21,615,349,87,40,50 +41765,21,615,350,87,40,50 +41766,21,615,375,215,44,44 +41767,21,615,376,221,44,44 +41768,21,615,377,583,45,45 +41769,21,615,378,35,44,44 +41770,21,615,379,337,46,46 +41771,21,615,380,338,46,46 +41772,21,615,381,35,46,46 +41773,21,615,382,583,47,47 +41774,21,615,383,221,46,46 +41775,21,615,384,225,47,47 +41776,21,615,385,221,46,46 +41777,21,615,386,225,47,47 +41778,21,616,351,221,49,49 +41779,21,616,352,35,50,50 +41780,21,616,353,221,51,51 +41781,21,616,354,132,50,50 +41782,21,616,355,337,51,51 +41783,21,616,356,338,51,51 +41784,21,616,357,132,52,52 +41785,21,616,358,375,50,50 +41786,21,616,359,225,49,49 +41787,21,616,360,375,52,52 +41788,21,616,361,225,49,49 +41789,21,616,362,375,52,52 +41790,21,616,363,531,44,44 +41791,21,616,364,531,44,44 +41792,21,616,365,531,45,45 +41793,21,616,366,531,45,45 +41794,21,616,367,531,46,46 +41795,21,616,368,531,46,46 +41796,21,616,369,531,47,47 +41797,21,616,370,473,47,47 +41798,21,616,371,36,47,47 +41799,21,616,372,376,47,47 +41800,21,616,373,36,47,47 +41801,21,616,374,376,47,47 +41802,21,616,375,221,44,44 +41803,21,616,376,35,45,45 +41804,21,616,377,221,46,46 +41805,21,616,378,132,45,45 +41806,21,616,379,337,46,46 +41807,21,616,380,338,46,46 +41808,21,616,381,132,47,47 +41809,21,616,382,375,45,45 +41810,21,616,383,225,44,44 +41811,21,616,384,375,47,47 +41812,21,616,385,225,44,44 +41813,21,616,386,375,47,47 +41814,21,617,351,221,49,49 +41815,21,617,352,35,50,50 +41816,21,617,353,221,51,51 +41817,21,617,354,132,50,50 +41818,21,617,355,337,51,51 +41819,21,617,356,338,51,51 +41820,21,617,357,132,52,52 +41821,21,617,358,375,50,50 +41822,21,617,359,225,49,49 +41823,21,617,360,375,52,52 +41824,21,617,361,225,49,49 +41825,21,617,362,375,52,52 +41826,21,617,363,531,44,44 +41827,21,617,364,531,44,44 +41828,21,617,365,531,45,45 +41829,21,617,366,531,45,45 +41830,21,617,367,531,46,46 +41831,21,617,368,531,46,46 +41832,21,617,369,531,47,47 +41833,21,617,370,473,47,47 +41834,21,617,371,36,47,47 +41835,21,617,372,376,47,47 +41836,21,617,373,36,47,47 +41837,21,617,374,376,47,47 +41838,21,617,375,221,44,44 +41839,21,617,376,35,45,45 +41840,21,617,377,221,46,46 +41841,21,617,378,132,45,45 +41842,21,617,379,337,46,46 +41843,21,617,380,338,46,46 +41844,21,617,381,132,47,47 +41845,21,617,382,375,45,45 +41846,21,617,383,225,44,44 +41847,21,617,384,375,47,47 +41848,21,617,385,225,44,44 +41849,21,617,386,375,47,47 +41850,21,671,331,88,40,60 +41851,21,671,332,88,40,60 +41852,21,671,333,88,50,70 +41853,21,671,334,88,50,70 +41854,21,671,335,88,50,70 +41855,21,671,336,88,40,60 +41856,21,671,337,88,40,60 +41857,21,671,338,89,50,70 +41858,21,671,339,89,50,70 +41859,21,671,340,89,50,70 +41860,21,671,341,88,5,15 +41861,21,671,342,88,5,15 +41862,21,671,343,88,5,15 +41863,21,671,344,88,5,15 +41864,21,671,345,88,5,15 +41865,21,671,346,88,5,20 +41866,21,671,347,88,5,20 +41867,21,671,348,88,5,20 +41868,21,671,349,89,5,20 +41869,21,671,350,89,5,20 +41870,21,671,375,19,14,14 +41871,21,671,376,41,14,14 +41872,21,671,377,19,15,15 +41873,21,671,378,41,15,15 +41874,21,671,379,19,16,16 +41875,21,671,380,41,16,16 +41876,21,671,381,88,15,15 +41877,21,671,382,88,17,17 +41878,21,671,383,19,17,17 +41879,21,671,384,41,17,17 +41880,21,671,385,19,17,17 +41881,21,671,386,41,17,17 +41882,21,672,331,88,40,60 +41883,21,672,332,88,40,60 +41884,21,672,333,88,50,70 +41885,21,672,334,88,50,70 +41886,21,672,335,88,50,70 +41887,21,672,336,88,60,60 +41888,21,672,337,88,60,60 +41889,21,672,338,89,70,70 +41890,21,672,339,89,70,70 +41891,21,672,340,89,70,70 +41892,21,672,341,88,5,15 +41893,21,672,342,88,5,15 +41894,21,672,343,88,5,15 +41895,21,672,344,88,5,15 +41896,21,672,345,88,5,15 +41897,21,672,346,88,5,20 +41898,21,672,347,88,5,20 +41899,21,672,348,88,5,20 +41900,21,672,349,89,5,20 +41901,21,672,350,89,5,20 +41902,21,672,375,19,14,14 +41903,21,672,376,41,14,14 +41904,21,672,377,19,15,15 +41905,21,672,378,41,15,15 +41906,21,672,379,19,16,16 +41907,21,672,380,41,16,16 +41908,21,672,381,88,15,15 +41909,21,672,382,88,17,17 +41910,21,672,383,19,17,17 +41911,21,672,384,41,17,17 +41912,21,672,385,19,17,17 +41913,21,672,386,41,17,17 +41914,21,618,363,531,56,56 +41915,21,618,364,531,56,56 +41916,21,618,365,531,57,57 +41917,21,618,366,531,57,57 +41918,21,618,367,531,58,58 +41919,21,618,368,531,58,58 +41920,21,618,369,531,59,59 +41921,21,618,370,462,59,59 +41922,21,618,371,601,59,59 +41923,21,618,372,508,59,59 +41924,21,618,373,601,59,59 +41925,21,618,374,508,59,59 +41926,21,618,331,456,35,55 +41927,21,618,332,116,35,55 +41928,21,618,333,116,35,55 +41929,21,618,334,456,35,55 +41930,21,618,335,456,35,55 +41931,21,618,336,117,35,60 +41932,21,618,337,211,35,60 +41933,21,618,338,457,35,70 +41934,21,618,339,230,45,70 +41935,21,618,340,230,45,70 +41936,21,618,341,592,45,60 +41937,21,618,342,592,45,60 +41938,21,618,343,592,50,60 +41939,21,618,344,592,50,60 +41940,21,618,345,592,50,60 +41941,21,618,346,594,45,60 +41942,21,618,347,594,45,60 +41943,21,618,348,594,50,60 +41944,21,618,349,593,50,60 +41945,21,618,350,593,50,60 +41946,21,618,375,505,56,56 +41947,21,618,376,507,56,56 +41948,21,618,377,110,57,57 +41949,21,618,378,82,57,57 +41950,21,618,379,600,57,57 +41951,21,618,380,560,57,57 +41952,21,618,381,82,59,59 +41953,21,618,382,600,59,59 +41954,21,618,383,560,58,58 +41955,21,618,384,110,58,58 +41956,21,618,385,560,58,58 +41957,21,618,386,110,58,58 +41958,21,619,331,170,40,60 +41959,21,619,332,223,40,60 +41960,21,619,333,170,50,70 +41961,21,619,334,170,50,70 +41962,21,619,335,170,50,70 +41963,21,619,336,223,40,60 +41964,21,619,337,170,40,60 +41965,21,619,338,171,50,70 +41966,21,619,339,224,50,70 +41967,21,619,340,224,50,70 +41968,21,619,341,592,25,40 +41969,21,619,342,458,25,40 +41970,21,619,342,458,25,40 +41971,21,619,342,458,25,40 +41972,21,619,342,363,25,40 +41973,21,619,343,223,30,40 +41974,21,619,344,592,30,40 +41975,21,619,345,592,30,40 +41976,21,619,346,593,25,40 +41977,21,619,346,593,25,40 +41978,21,619,346,593,25,40 +41979,21,619,346,320,25,40 +41980,21,619,347,320,25,40 +41981,21,619,347,320,25,40 +41982,21,619,347,320,25,40 +41983,21,619,347,364,25,40 +41984,21,619,348,226,30,40 +41985,21,619,348,226,30,40 +41986,21,619,348,226,30,40 +41987,21,619,348,365,30,40 +41988,21,619,349,321,30,40 +41989,21,619,350,321,30,40 +41990,21,673,331,60,40,60 +41991,21,673,332,550,40,60 +41992,21,673,333,60,50,70 +41993,21,673,334,60,50,70 +41994,21,673,335,60,50,70 +41995,21,673,336,61,40,60 +41996,21,673,337,10016,40,60 +41997,21,673,338,61,50,70 +41998,21,673,339,186,50,70 +41999,21,673,340,186,50,70 +42000,21,673,341,550,5,15 +42001,21,673,342,298,5,15 +42002,21,673,343,550,5,15 +42003,21,673,344,550,5,15 +42004,21,673,345,550,5,15 +42005,21,673,346,10016,5,15 +42006,21,673,347,183,5,15 +42007,21,673,348,10016,5,15 +42008,21,673,349,184,5,15 +42009,21,673,350,184,5,15 +42010,21,674,363,531,4,4 +42011,21,674,364,531,4,4 +42012,21,674,365,531,5,5 +42013,21,674,366,206,5,5 +42014,21,674,367,531,6,6 +42015,21,674,368,531,6,6 +42016,21,674,369,531,7,7 +42017,21,674,370,531,7,7 +42018,21,674,371,531,7,7 +42019,21,674,372,531,7,7 +42020,21,674,373,531,7,7 +42021,21,674,374,531,7,7 +42022,21,674,331,60,40,60 +42023,21,674,332,550,40,60 +42024,21,674,333,60,50,70 +42025,21,674,334,60,50,70 +42026,21,674,335,60,50,70 +42027,21,674,336,61,40,60 +42028,21,674,337,10016,40,60 +42029,21,674,338,61,50,70 +42030,21,674,339,186,50,70 +42031,21,674,340,186,50,70 +42032,21,674,341,550,5,15 +42033,21,674,342,298,5,15 +42034,21,674,343,550,5,15 +42035,21,674,344,550,5,15 +42036,21,674,345,550,5,15 +42037,21,674,346,10016,5,15 +42038,21,674,347,183,5,15 +42039,21,674,348,10016,5,15 +42040,21,674,349,184,5,15 +42041,21,674,350,184,5,15 +42042,21,674,375,506,4,4 +42043,21,674,376,298,5,5 +42044,21,674,377,504,5,5 +42045,21,674,378,179,5,5 +42046,21,674,379,506,5,5 +42047,21,674,380,54,5,5 +42048,21,674,381,506,6,6 +42049,21,674,382,519,7,7 +42050,21,674,383,447,5,5 +42051,21,674,384,506,7,7 +42052,21,674,385,447,7,7 +42053,21,674,386,506,7,7 +42054,21,675,363,531,10,10 +42055,21,675,364,531,10,10 +42056,21,675,365,531,11,11 +42057,21,675,366,531,11,11 +42058,21,675,367,531,12,12 +42059,21,675,368,531,12,12 +42060,21,675,369,531,13,13 +42061,21,675,370,531,13,13 +42062,21,675,371,531,13,13 +42063,21,675,372,531,13,13 +42064,21,675,373,531,13,13 +42065,21,675,374,531,13,13 +42066,21,675,331,456,40,60 +42067,21,675,332,98,40,60 +42068,21,675,333,456,50,70 +42069,21,675,334,211,50,70 +42070,21,675,335,211,50,70 +42071,21,675,336,98,40,60 +42072,21,675,337,457,40,60 +42073,21,675,338,99,50,70 +42074,21,675,339,99,50,70 +42075,21,675,340,99,50,70 +42076,21,675,341,592,5,15 +42077,21,675,342,592,5,15 +42078,21,675,343,592,5,15 +42079,21,675,344,592,5,15 +42080,21,675,345,592,5,15 +42081,21,675,346,594,5,15 +42082,21,675,347,594,5,15 +42083,21,675,348,594,5,15 +42084,21,675,349,593,5,15 +42085,21,675,350,593,5,15 +42086,21,675,375,504,10,10 +42087,21,675,376,519,10,10 +42088,21,675,377,240,10,10 +42089,21,675,378,81,10,10 +42090,21,675,379,504,11,11 +42091,21,675,380,519,11,11 +42092,21,675,381,240,11,11 +42093,21,675,382,81,11,11 +42094,21,675,383,504,12,12 +42095,21,675,384,519,12,12 +42096,21,675,385,504,13,13 +42097,21,675,386,519,13,13 +42098,21,676,351,240,11,11 +42099,21,676,352,81,11,11 +42100,21,676,353,504,11,11 +42101,21,676,354,109,11,11 +42102,21,676,355,58,12,12 +42103,21,676,356,58,14,14 +42104,21,676,357,240,13,13 +42105,21,676,358,81,13,13 +42106,21,676,359,504,13,13 +42107,21,676,360,109,13,13 +42108,21,676,361,504,14,14 +42109,21,676,362,109,14,14 +42110,21,676,363,531,10,10 +42111,21,676,364,531,10,10 +42112,21,676,365,531,11,11 +42113,21,676,366,531,11,11 +42114,21,676,367,531,12,12 +42115,21,676,368,531,12,12 +42116,21,676,369,531,13,13 +42117,21,676,370,531,13,13 +42118,21,676,371,531,13,13 +42119,21,676,372,531,13,13 +42120,21,676,373,531,13,13 +42121,21,676,374,531,13,13 +42122,21,676,375,240,10,10 +42123,21,676,376,81,10,10 +42124,21,676,377,504,10,10 +42125,21,676,378,109,10,10 +42126,21,676,379,58,11,11 +42127,21,676,380,58,13,13 +42128,21,676,381,240,12,12 +42129,21,676,382,81,12,12 +42130,21,676,383,504,12,12 +42131,21,676,384,109,12,12 +42132,21,676,385,504,13,13 +42133,21,676,386,109,13,13 +42134,21,677,351,451,35,35 +42135,21,677,352,326,35,35 +42136,21,677,353,227,36,36 +42137,21,677,354,451,37,37 +42138,21,677,355,426,36,36 +42139,21,677,356,426,37,37 +42140,21,677,357,227,38,38 +42141,21,677,358,326,37,37 +42142,21,677,359,329,38,38 +42143,21,677,360,326,37,37 +42144,21,677,361,329,38,38 +42145,21,677,362,326,37,37 +42146,21,677,363,531,31,31 +42147,21,677,364,531,31,31 +42148,21,677,365,531,32,32 +42149,21,677,366,531,32,32 +42150,21,677,367,531,33,33 +42151,21,677,368,531,33,33 +42152,21,677,369,531,34,34 +42153,21,677,370,531,34,34 +42154,21,677,371,531,34,34 +42155,21,677,372,531,34,34 +42156,21,677,373,531,34,34 +42157,21,677,374,531,34,34 +42158,21,677,375,451,31,31 +42159,21,677,376,325,31,31 +42160,21,677,377,328,32,32 +42161,21,677,378,451,33,33 +42162,21,677,379,426,32,32 +42163,21,677,380,426,33,33 +42164,21,677,381,227,34,34 +42165,21,677,382,326,33,33 +42166,21,677,383,328,34,34 +42167,21,677,384,326,33,33 +42168,21,677,385,328,34,34 +42169,21,677,386,326,33,33 +42170,21,678,387,530,32,32 +42171,21,678,388,530,32,32 +42172,21,678,389,530,33,33 +42173,21,678,390,530,33,33 +42174,21,678,391,530,34,34 +42175,21,678,392,530,34,34 +42176,21,678,393,530,35,35 +42177,21,678,394,530,35,35 +42178,21,678,395,530,35,35 +42179,21,678,396,530,35,35 +42180,21,678,397,530,35,35 +42181,21,678,398,530,35,35 +42182,21,678,375,325,31,31 +42183,21,678,376,527,32,32 +42184,21,678,377,525,32,32 +42185,21,678,378,451,33,33 +42186,21,678,379,525,34,34 +42187,21,678,380,527,34,34 +42188,21,678,381,326,35,35 +42189,21,678,382,451,35,35 +42190,21,678,383,527,35,35 +42191,21,678,384,525,35,35 +42192,21,678,385,527,35,35 +42193,21,678,386,525,35,35 +42194,21,679,387,530,32,32 +42195,21,679,388,530,32,32 +42196,21,679,389,530,33,33 +42197,21,679,390,530,33,33 +42198,21,679,391,530,34,34 +42199,21,679,392,530,34,34 +42200,21,679,393,530,35,35 +42201,21,679,394,530,35,35 +42202,21,679,395,530,35,35 +42203,21,679,396,530,35,35 +42204,21,679,397,530,35,35 +42205,21,679,398,530,35,35 +42206,21,679,375,326,35,35 +42207,21,679,376,527,32,32 +42208,21,679,377,525,32,32 +42209,21,679,378,451,33,33 +42210,21,679,379,525,34,34 +42211,21,679,380,527,34,34 +42212,21,679,381,325,31,31 +42213,21,679,382,451,35,35 +42214,21,679,383,527,35,35 +42215,21,679,384,525,35,35 +42216,21,679,385,527,35,35 +42217,21,679,386,525,35,35 +42218,21,680,387,530,32,32 +42219,21,680,388,530,32,32 +42220,21,680,389,530,33,33 +42221,21,680,390,530,33,33 +42222,21,680,391,530,34,34 +42223,21,680,392,530,34,34 +42224,21,680,393,530,35,35 +42225,21,680,394,530,35,35 +42226,21,680,395,530,35,35 +42227,21,680,396,530,35,35 +42228,21,680,397,530,35,35 +42229,21,680,398,530,35,35 +42230,21,680,375,325,31,31 +42231,21,680,376,527,32,32 +42232,21,680,377,525,32,32 +42233,21,680,378,451,33,33 +42234,21,680,379,525,34,34 +42235,21,680,380,527,34,34 +42236,21,680,381,326,35,35 +42237,21,680,382,451,35,35 +42238,21,680,383,527,35,35 +42239,21,680,384,525,35,35 +42240,21,680,385,527,35,35 +42241,21,680,386,525,35,35 +42242,21,681,387,530,32,32 +42243,21,681,388,530,32,32 +42244,21,681,389,530,33,33 +42245,21,681,390,530,33,33 +42246,21,681,391,530,34,34 +42247,21,681,392,530,34,34 +42248,21,681,393,530,35,35 +42249,21,681,394,530,35,35 +42250,21,681,395,530,35,35 +42251,21,681,396,530,35,35 +42252,21,681,397,530,35,35 +42253,21,681,398,530,35,35 +42254,21,681,375,325,31,31 +42255,21,681,376,527,32,32 +42256,21,681,377,525,32,32 +42257,21,681,378,451,33,33 +42258,21,681,379,525,34,34 +42259,21,681,380,527,34,34 +42260,21,681,381,326,35,35 +42261,21,681,382,451,35,35 +42262,21,681,383,527,35,35 +42263,21,681,384,525,35,35 +42264,21,681,385,527,35,35 +42265,21,681,386,525,35,35 +42266,21,682,387,530,32,32 +42267,21,682,388,530,32,32 +42268,21,682,389,530,33,33 +42269,21,682,390,530,33,33 +42270,21,682,391,530,34,34 +42271,21,682,392,530,34,34 +42272,21,682,393,530,35,35 +42273,21,682,394,530,35,35 +42274,21,682,395,530,35,35 +42275,21,682,396,530,35,35 +42276,21,682,397,530,35,35 +42277,21,682,398,530,35,35 +42278,21,682,375,325,31,31 +42279,21,682,376,527,32,32 +42280,21,682,377,525,32,32 +42281,21,682,378,451,33,33 +42282,21,682,379,525,34,34 +42283,21,682,380,527,34,34 +42284,21,682,381,326,35,35 +42285,21,682,382,451,35,35 +42286,21,682,383,527,35,35 +42287,21,682,384,525,35,35 +42288,21,682,385,527,35,35 +42289,21,682,386,525,35,35 +42290,21,683,387,530,32,32 +42291,21,683,388,530,32,32 +42292,21,683,389,530,33,33 +42293,21,683,390,530,33,33 +42294,21,683,391,530,34,34 +42295,21,683,392,530,34,34 +42296,21,683,393,530,35,35 +42297,21,683,394,530,35,35 +42298,21,683,395,530,35,35 +42299,21,683,396,530,35,35 +42300,21,683,397,530,35,35 +42301,21,683,398,530,35,35 +42302,21,683,375,325,31,31 +42303,21,683,376,527,32,32 +42304,21,683,377,525,32,32 +42305,21,683,378,451,33,33 +42306,21,683,379,525,34,34 +42307,21,683,380,527,34,34 +42308,21,683,381,326,35,35 +42309,21,683,382,451,35,35 +42310,21,683,383,527,35,35 +42311,21,683,384,525,35,35 +42312,21,683,385,527,35,35 +42313,21,683,386,525,35,35 +42314,21,684,387,530,32,32 +42315,21,684,388,530,32,32 +42316,21,684,389,530,33,33 +42317,21,684,390,530,33,33 +42318,21,684,391,530,34,34 +42319,21,684,392,530,34,34 +42320,21,684,393,530,35,35 +42321,21,684,394,530,35,35 +42322,21,684,395,530,35,35 +42323,21,684,396,530,35,35 +42324,21,684,397,530,35,35 +42325,21,684,398,530,35,35 +42326,21,684,375,325,31,31 +42327,21,684,376,527,32,32 +42328,21,684,377,525,32,32 +42329,21,684,378,451,33,33 +42330,21,684,379,525,34,34 +42331,21,684,380,527,34,34 +42332,21,684,381,326,35,35 +42333,21,684,382,451,35,35 +42334,21,684,383,527,35,35 +42335,21,684,384,525,35,35 +42336,21,684,385,527,35,35 +42337,21,684,386,525,35,35 +42338,21,685,387,530,32,32 +42339,21,685,388,530,32,32 +42340,21,685,389,530,33,33 +42341,21,685,390,530,33,33 +42342,21,685,391,530,34,34 +42343,21,685,392,530,34,34 +42344,21,685,393,530,35,35 +42345,21,685,394,530,35,35 +42346,21,685,395,530,35,35 +42347,21,685,396,530,35,35 +42348,21,685,397,530,35,35 +42349,21,685,398,530,35,35 +42350,21,685,375,326,35,35 +42351,21,685,376,527,32,32 +42352,21,685,377,525,32,32 +42353,21,685,378,451,33,33 +42354,21,685,379,525,34,34 +42355,21,685,380,527,34,34 +42356,21,685,381,325,31,31 +42357,21,685,382,451,35,35 +42358,21,685,383,527,35,35 +42359,21,685,384,525,35,35 +42360,21,685,385,527,35,35 +42361,21,685,386,525,35,35 +42362,21,686,387,530,32,32 +42363,21,686,388,530,32,32 +42364,21,686,389,530,33,33 +42365,21,686,390,530,33,33 +42366,21,686,391,530,34,34 +42367,21,686,392,530,34,34 +42368,21,686,393,530,35,35 +42369,21,686,394,530,35,35 +42370,21,686,395,530,35,35 +42371,21,686,396,530,35,35 +42372,21,686,397,530,35,35 +42373,21,686,398,530,35,35 +42374,21,686,375,325,31,31 +42375,21,686,376,527,32,32 +42376,21,686,377,525,32,32 +42377,21,686,378,451,33,33 +42378,21,686,379,525,34,34 +42379,21,686,380,527,34,34 +42380,21,686,381,326,35,35 +42381,21,686,382,451,35,35 +42382,21,686,383,527,35,35 +42383,21,686,384,525,35,35 +42384,21,686,385,527,35,35 +42385,21,686,386,525,35,35 +42386,21,687,387,530,32,32 +42387,21,687,388,530,32,32 +42388,21,687,389,530,33,33 +42389,21,687,390,530,33,33 +42390,21,687,391,530,34,34 +42391,21,687,392,530,34,34 +42392,21,687,393,530,35,35 +42393,21,687,394,530,35,35 +42394,21,687,395,530,35,35 +42395,21,687,396,530,35,35 +42396,21,687,397,530,35,35 +42397,21,687,398,530,35,35 +42398,21,687,375,325,31,31 +42399,21,687,376,527,32,32 +42400,21,687,377,525,32,32 +42401,21,687,378,451,33,33 +42402,21,687,379,525,34,34 +42403,21,687,380,527,34,34 +42404,21,687,381,326,35,35 +42405,21,687,382,451,35,35 +42406,21,687,383,527,35,35 +42407,21,687,384,525,35,35 +42408,21,687,385,527,35,35 +42409,21,687,386,525,35,35 +42410,21,688,387,530,32,32 +42411,21,688,388,530,32,32 +42412,21,688,389,530,33,33 +42413,21,688,390,530,33,33 +42414,21,688,391,530,34,34 +42415,21,688,392,530,34,34 +42416,21,688,393,530,35,35 +42417,21,688,394,530,35,35 +42418,21,688,395,530,35,35 +42419,21,688,396,530,35,35 +42420,21,688,397,530,35,35 +42421,21,688,398,530,35,35 +42422,21,688,375,325,31,31 +42423,21,688,376,527,32,32 +42424,21,688,377,525,32,32 +42425,21,688,378,451,33,33 +42426,21,688,379,525,34,34 +42427,21,688,380,527,34,34 +42428,21,688,381,326,35,35 +42429,21,688,382,451,35,35 +42430,21,688,383,527,35,35 +42431,21,688,384,525,35,35 +42432,21,688,385,527,35,35 +42433,21,688,386,525,35,35 +42434,21,689,387,530,32,32 +42435,21,689,388,530,32,32 +42436,21,689,389,530,33,33 +42437,21,689,390,530,33,33 +42438,21,689,391,530,34,34 +42439,21,689,392,530,34,34 +42440,21,689,393,530,35,35 +42441,21,689,394,530,35,35 +42442,21,689,395,530,35,35 +42443,21,689,396,530,35,35 +42444,21,689,397,530,35,35 +42445,21,689,398,530,35,35 +42446,21,689,375,325,31,31 +42447,21,689,376,527,32,32 +42448,21,689,377,525,32,32 +42449,21,689,378,451,33,33 +42450,21,689,379,525,34,34 +42451,21,689,380,527,34,34 +42452,21,689,381,326,35,35 +42453,21,689,382,451,35,35 +42454,21,689,383,527,35,35 +42455,21,689,384,525,35,35 +42456,21,689,385,527,35,35 +42457,21,689,386,525,35,35 +42458,21,690,375,607,31,31 +42459,21,690,376,574,31,31 +42460,21,690,377,20,32,32 +42461,21,690,378,42,32,32 +42462,21,690,379,607,33,33 +42463,21,690,380,354,32,32 +42464,21,690,381,20,33,33 +42465,21,690,382,42,33,33 +42466,21,690,383,354,34,34 +42467,21,690,384,575,34,34 +42468,21,690,385,354,34,34 +42469,21,690,386,575,34,34 +42470,21,691,375,607,31,31 +42471,21,691,376,574,31,31 +42472,21,691,377,20,32,32 +42473,21,691,378,42,32,32 +42474,21,691,379,575,33,33 +42475,21,691,380,354,32,32 +42476,21,691,381,20,33,33 +42477,21,691,382,42,33,33 +42478,21,691,383,354,34,34 +42479,21,691,384,575,34,34 +42480,21,691,385,354,34,34 +42481,21,691,386,575,34,34 +42482,21,692,387,529,16,16 +42483,21,692,388,95,16,16 +42484,21,692,389,529,17,17 +42485,21,692,390,529,17,17 +42486,21,692,391,529,18,18 +42487,21,692,392,529,18,18 +42488,21,692,393,529,19,19 +42489,21,692,394,529,19,19 +42490,21,692,395,529,19,19 +42491,21,692,396,529,19,19 +42492,21,692,397,529,19,19 +42493,21,692,398,529,19,19 +42494,21,692,375,524,16,16 +42495,21,692,376,527,16,16 +42496,21,692,377,524,17,17 +42497,21,692,378,527,17,17 +42498,21,692,379,532,17,17 +42499,21,692,380,532,18,18 +42500,21,692,381,19,17,17 +42501,21,692,382,19,17,17 +42502,21,692,383,524,18,18 +42503,21,692,384,95,18,18 +42504,21,692,385,527,18,18 +42505,21,692,386,95,18,18 +42506,21,693,387,529,27,27 +42507,21,693,388,95,27,27 +42508,21,693,389,529,28,28 +42509,21,693,390,529,28,28 +42510,21,693,391,529,29,29 +42511,21,693,392,529,29,29 +42512,21,693,393,529,30,30 +42513,21,693,394,529,30,30 +42514,21,693,395,529,30,30 +42515,21,693,396,529,30,30 +42516,21,693,397,529,30,30 +42517,21,693,398,529,30,30 +42518,21,693,331,60,40,60 +42519,21,693,332,550,40,60 +42520,21,693,333,60,50,70 +42521,21,693,334,60,50,70 +42522,21,693,335,60,50,70 +42523,21,693,336,61,40,60 +42524,21,693,337,10016,40,60 +42525,21,693,338,61,50,70 +42526,21,693,339,62,50,70 +42527,21,693,340,62,50,70 +42528,21,693,341,550,10,30 +42529,21,693,342,183,10,30 +42530,21,693,343,550,10,30 +42531,21,693,344,550,10,30 +42532,21,693,345,550,10,30 +42533,21,693,346,183,10,30 +42534,21,693,347,10016,10,30 +42535,21,693,348,10016,10,30 +42536,21,693,349,184,10,30 +42537,21,693,350,184,10,30 +42538,21,693,375,525,27,27 +42539,21,693,376,527,27,27 +42540,21,693,377,525,28,28 +42541,21,693,378,527,28,28 +42542,21,693,379,533,28,28 +42543,21,693,380,533,30,30 +42544,21,693,381,20,29,29 +42545,21,693,382,20,29,29 +42546,21,693,383,525,30,30 +42547,21,693,384,95,30,30 +42548,21,693,385,527,30,30 +42549,21,693,386,95,30,30 +42550,21,694,387,529,27,27 +42551,21,694,388,95,27,27 +42552,21,694,389,529,28,28 +42553,21,694,390,529,28,28 +42554,21,694,391,529,29,29 +42555,21,694,392,529,29,29 +42556,21,694,393,529,30,30 +42557,21,694,394,529,30,30 +42558,21,694,395,529,30,30 +42559,21,694,396,529,30,30 +42560,21,694,397,529,30,30 +42561,21,694,398,529,30,30 +42562,21,694,375,525,27,27 +42563,21,694,376,527,27,27 +42564,21,694,377,525,28,28 +42565,21,694,378,527,28,28 +42566,21,694,379,533,28,28 +42567,21,694,380,533,30,30 +42568,21,694,381,525,29,29 +42569,21,694,382,527,29,29 +42570,21,694,383,525,30,30 +42571,21,694,384,95,30,30 +42572,21,694,385,527,30,30 +42573,21,694,386,95,30,30 +42574,21,695,387,530,54,54 +42575,21,695,388,95,54,54 +42576,21,695,389,530,55,55 +42577,21,695,390,530,55,55 +42578,21,695,391,530,56,56 +42579,21,695,392,530,56,56 +42580,21,695,393,530,57,57 +42581,21,695,394,530,57,57 +42582,21,695,395,530,57,57 +42583,21,695,396,208,57,57 +42584,21,695,397,530,57,57 +42585,21,695,398,208,57,57 +42586,21,695,331,60,50,60 +42587,21,695,332,550,50,60 +42588,21,695,333,60,60,70 +42589,21,695,334,60,60,70 +42590,21,695,335,60,60,70 +42591,21,695,336,61,50,60 +42592,21,695,337,10016,50,60 +42593,21,695,338,61,60,60 +42594,21,695,339,62,60,60 +42595,21,695,340,62,60,60 +42596,21,695,341,550,45,60 +42597,21,695,342,550,45,60 +42598,21,695,343,550,50,60 +42599,21,695,344,550,50,60 +42600,21,695,345,550,50,60 +42601,21,695,346,10016,45,60 +42602,21,695,347,10016,45,60 +42603,21,695,348,10016,50,60 +42604,21,695,349,10016,50,60 +42605,21,695,350,10016,50,60 +42606,21,695,375,525,54,54 +42607,21,695,376,632,54,54 +42608,21,695,377,525,55,55 +42609,21,695,378,527,54,54 +42610,21,695,379,305,55,55 +42611,21,695,380,299,55,55 +42612,21,695,381,305,57,57 +42613,21,695,382,299,57,57 +42614,21,695,383,525,56,56 +42615,21,695,384,95,57,57 +42616,21,695,385,525,56,56 +42617,21,695,386,95,57,57 +42618,21,696,387,530,54,54 +42619,21,696,388,95,54,54 +42620,21,696,389,530,55,55 +42621,21,696,390,530,55,55 +42622,21,696,391,530,56,56 +42623,21,696,392,530,56,56 +42624,21,696,393,530,57,57 +42625,21,696,394,530,57,57 +42626,21,696,395,530,57,57 +42627,21,696,396,208,57,57 +42628,21,696,397,530,57,57 +42629,21,696,398,208,57,57 +42630,21,696,375,525,54,54 +42631,21,696,376,632,54,54 +42632,21,696,377,525,55,55 +42633,21,696,378,527,54,54 +42634,21,696,379,305,55,55 +42635,21,696,380,299,55,55 +42636,21,696,381,305,57,57 +42637,21,696,382,299,57,57 +42638,21,696,383,525,56,56 +42639,21,696,384,95,57,57 +42640,21,696,385,525,56,56 +42641,21,696,386,95,57,57 +42642,21,697,387,530,54,54 +42643,21,697,388,95,54,54 +42644,21,697,389,530,55,55 +42645,21,697,390,530,55,55 +42646,21,697,391,530,56,56 +42647,21,697,392,530,56,56 +42648,21,697,393,530,57,57 +42649,21,697,394,530,57,57 +42650,21,697,395,530,57,57 +42651,21,697,396,208,57,57 +42652,21,697,397,530,57,57 +42653,21,697,398,208,57,57 +42654,21,697,375,525,54,54 +42655,21,697,376,632,54,54 +42656,21,697,377,525,55,55 +42657,21,697,378,527,54,54 +42658,21,697,379,305,55,55 +42659,21,697,380,299,55,55 +42660,21,697,381,305,57,57 +42661,21,697,382,299,57,57 +42662,21,697,383,525,56,56 +42663,21,697,384,95,57,57 +42664,21,697,385,525,56,56 +42665,21,697,386,95,57,57 +42666,21,698,387,530,54,54 +42667,21,698,388,95,54,54 +42668,21,698,389,530,55,55 +42669,21,698,390,530,55,55 +42670,21,698,391,530,56,56 +42671,21,698,392,530,56,56 +42672,21,698,393,530,57,57 +42673,21,698,394,530,57,57 +42674,21,698,395,530,57,57 +42675,21,698,396,208,57,57 +42676,21,698,397,530,57,57 +42677,21,698,398,208,57,57 +42678,21,698,375,525,54,54 +42679,21,698,376,632,54,54 +42680,21,698,377,525,55,55 +42681,21,698,378,527,54,54 +42682,21,698,379,305,55,55 +42683,21,698,380,299,55,55 +42684,21,698,381,305,57,57 +42685,21,698,382,299,57,57 +42686,21,698,383,525,56,56 +42687,21,698,384,95,57,57 +42688,21,698,385,525,56,56 +42689,21,698,386,95,57,57 +42690,21,699,387,530,54,54 +42691,21,699,388,95,54,54 +42692,21,699,389,530,55,55 +42693,21,699,390,530,55,55 +42694,21,699,391,530,56,56 +42695,21,699,392,530,56,56 +42696,21,699,393,530,57,57 +42697,21,699,394,530,57,57 +42698,21,699,395,530,57,57 +42699,21,699,396,208,57,57 +42700,21,699,397,530,57,57 +42701,21,699,398,208,57,57 +42702,21,699,375,525,54,54 +42703,21,699,376,632,54,54 +42704,21,699,377,525,55,55 +42705,21,699,378,527,54,54 +42706,21,699,379,305,55,55 +42707,21,699,380,299,55,55 +42708,21,699,381,305,57,57 +42709,21,699,382,299,57,57 +42710,21,699,383,525,56,56 +42711,21,699,384,95,57,57 +42712,21,699,385,525,56,56 +42713,21,699,386,95,57,57 +42714,21,700,387,530,34,34 +42715,21,700,388,530,34,34 +42716,21,700,389,530,35,35 +42717,21,700,390,530,35,35 +42718,21,700,391,530,36,36 +42719,21,700,392,530,36,36 +42720,21,700,393,530,37,37 +42721,21,700,394,530,37,37 +42722,21,700,395,530,37,37 +42723,21,700,396,530,37,37 +42724,21,700,397,530,37,37 +42725,21,700,398,530,37,37 +42726,21,700,331,370,40,60 +42727,21,700,332,90,40,60 +42728,21,700,333,370,50,70 +42729,21,700,334,370,50,70 +42730,21,700,335,370,50,70 +42731,21,700,336,90,40,60 +42732,21,700,337,370,40,60 +42733,21,700,338,90,50,70 +42734,21,700,339,91,50,70 +42735,21,700,340,91,50,70 +42736,21,700,341,592,25,40 +42737,21,700,342,86,25,40 +42738,21,700,343,592,30,40 +42739,21,700,344,592,30,40 +42740,21,700,345,592,30,40 +42741,21,700,346,86,25,40 +42742,21,700,347,593,25,40 +42743,21,700,348,87,30,40 +42744,21,700,349,87,30,40 +42745,21,700,350,87,30,40 +42746,21,700,375,527,34,34 +42747,21,700,376,55,34,34 +42748,21,700,377,86,35,35 +42749,21,700,378,525,35,35 +42750,21,700,379,527,35,35 +42751,21,700,380,55,35,35 +42752,21,700,381,602,37,37 +42753,21,700,382,525,37,37 +42754,21,700,383,55,36,36 +42755,21,700,384,527,36,36 +42756,21,700,385,55,36,36 +42757,21,700,386,527,36,36 +42758,21,701,387,530,39,39 +42759,21,701,388,530,39,39 +42760,21,701,389,530,40,40 +42761,21,701,390,530,40,40 +42762,21,701,391,530,41,41 +42763,21,701,392,530,41,41 +42764,21,701,393,530,42,42 +42765,21,701,394,530,42,42 +42766,21,701,395,530,42,42 +42767,21,701,396,530,42,42 +42768,21,701,397,530,42,42 +42769,21,701,398,530,42,42 +42770,21,701,375,527,39,39 +42771,21,701,376,525,39,39 +42772,21,701,377,55,40,40 +42773,21,701,378,525,40,40 +42774,21,701,379,527,40,40 +42775,21,701,380,55,40,40 +42776,21,701,381,603,42,42 +42777,21,701,382,525,42,42 +42778,21,701,383,213,41,41 +42779,21,701,384,527,41,41 +42780,21,701,385,213,41,41 +42781,21,701,386,527,41,41 +42782,21,702,351,274,64,64 +42783,21,702,352,334,64,64 +42784,21,702,353,274,65,65 +42785,21,702,354,55,65,65 +42786,21,702,355,164,66,66 +42787,21,702,356,203,66,66 +42788,21,702,357,611,65,65 +42789,21,702,358,203,67,67 +42790,21,702,359,611,67,67 +42791,21,702,360,352,65,65 +42792,21,702,361,611,67,67 +42793,21,702,362,352,67,67 +42794,21,702,363,531,56,56 +42795,21,702,364,531,56,56 +42796,21,702,365,531,57,57 +42797,21,702,366,206,57,57 +42798,21,702,367,531,58,58 +42799,21,702,368,531,58,58 +42800,21,702,369,531,59,59 +42801,21,702,370,531,59,59 +42802,21,702,371,275,59,59 +42803,21,702,372,531,59,59 +42804,21,702,373,275,59,59 +42805,21,702,374,531,59,59 +42806,21,702,331,129,40,60 +42807,21,702,332,550,40,60 +42808,21,702,333,129,50,70 +42809,21,702,334,129,50,70 +42810,21,702,335,129,1,100 +42811,21,702,336,129,40,60 +42812,21,702,337,10016,40,60 +42813,21,702,338,130,50,70 +42814,21,702,339,130,50,70 +42815,21,702,340,130,1,100 +42816,21,702,341,550,45,60 +42817,21,702,342,418,45,60 +42818,21,702,343,550,50,60 +42819,21,702,344,550,50,60 +42820,21,702,345,550,50,60 +42821,21,702,346,418,45,60 +42822,21,702,347,10016,45,60 +42823,21,702,348,10016,50,60 +42824,21,702,349,419,50,60 +42825,21,702,350,419,50,60 +42826,21,702,375,274,56,56 +42827,21,702,376,334,56,56 +42828,21,702,377,274,57,57 +42829,21,702,378,55,57,57 +42830,21,702,379,164,58,58 +42831,21,702,380,203,58,58 +42832,21,702,381,611,57,57 +42833,21,702,382,203,59,59 +42834,21,702,383,611,59,59 +42835,21,702,384,352,57,57 +42836,21,702,385,611,59,59 +42837,21,702,386,352,59,59 +42838,21,620,399,580,23,23 +42839,21,620,400,580,23,23 +42840,21,620,401,580,24,24 +42841,21,620,402,580,24,24 +42842,21,620,403,580,25,25 +42843,21,620,404,580,25,25 +42844,21,620,405,580,26,26 +42845,21,620,406,580,25,25 +42846,21,620,407,580,26,26 +42847,21,620,408,580,26,26 +42848,21,620,409,580,26,26 +42849,21,620,410,580,26,26 +42850,21,621,351,55,40,40 +42851,21,621,352,183,40,40 +42852,21,621,353,335,41,41 +42853,21,621,354,336,41,41 +42854,21,621,355,55,41,41 +42855,21,621,356,183,41,41 +42856,21,621,357,55,42,42 +42857,21,621,358,183,42,42 +42858,21,621,359,335,43,43 +42859,21,621,360,336,43,43 +42860,21,621,361,335,43,43 +42861,21,621,362,336,43,43 +42862,21,621,363,531,36,36 +42863,21,621,364,531,36,36 +42864,21,621,365,587,37,37 +42865,21,621,366,206,37,37 +42866,21,621,367,531,38,38 +42867,21,621,368,531,38,38 +42868,21,621,369,531,39,39 +42869,21,621,370,531,39,39 +42870,21,621,371,531,39,39 +42871,21,621,372,184,39,39 +42872,21,621,373,531,39,39 +42873,21,621,374,184,39,39 +42874,21,621,331,318,40,60 +42875,21,621,332,550,40,60 +42876,21,621,333,318,50,70 +42877,21,621,334,318,50,70 +42878,21,621,335,318,50,70 +42879,21,621,336,318,40,60 +42880,21,621,337,10016,40,60 +42881,21,621,338,319,50,70 +42882,21,621,339,319,50,70 +42883,21,621,340,319,50,70 +42884,21,621,341,550,25,40 +42885,21,621,342,183,25,40 +42886,21,621,343,550,30,40 +42887,21,621,344,550,30,40 +42888,21,621,345,550,30,40 +42889,21,621,346,183,25,40 +42890,21,621,347,10016,25,40 +42891,21,621,348,184,30,40 +42892,21,621,349,131,30,40 +42893,21,621,350,131,30,40 +42894,21,621,375,55,36,36 +42895,21,621,376,183,36,36 +42896,21,621,377,335,37,37 +42897,21,621,378,336,37,37 +42898,21,621,379,55,37,37 +42899,21,621,380,183,37,37 +42900,21,621,381,55,38,38 +42901,21,621,382,183,38,38 +42902,21,621,383,335,39,39 +42903,21,621,384,336,39,39 +42904,21,621,385,335,39,39 +42905,21,621,386,336,39,39 +42906,21,622,399,581,54,54 +42907,21,622,400,581,54,54 +42908,21,622,401,581,55,55 +42909,21,622,402,581,55,55 +42910,21,622,403,581,56,56 +42911,21,622,404,581,56,56 +42912,21,622,405,581,57,57 +42913,21,622,406,581,57,57 +42914,21,622,407,581,57,57 +42915,21,622,408,581,57,57 +42916,21,622,409,581,57,57 +42917,21,622,410,581,57,57 +42918,21,623,351,505,64,64 +42919,21,623,352,507,64,64 +42920,21,623,353,39,65,65 +42921,21,623,354,507,65,65 +42922,21,623,355,505,66,66 +42923,21,623,356,560,66,66 +42924,21,623,357,505,67,67 +42925,21,623,358,507,67,67 +42926,21,623,359,505,67,67 +42927,21,623,360,507,67,67 +42928,21,623,361,505,67,67 +42929,21,623,362,560,67,67 +42930,21,623,363,531,56,56 +42931,21,623,364,531,56,56 +42932,21,623,365,531,57,57 +42933,21,623,366,206,57,57 +42934,21,623,367,531,58,58 +42935,21,623,368,531,58,58 +42936,21,623,369,531,59,59 +42937,21,623,370,531,59,59 +42938,21,623,371,508,59,59 +42939,21,623,372,40,59,59 +42940,21,623,373,508,59,59 +42941,21,623,374,40,59,59 +42942,21,623,331,550,40,60 +42943,21,623,332,550,40,60 +42944,21,623,333,550,50,70 +42945,21,623,334,349,50,70 +42946,21,623,335,349,50,70 +42947,21,623,336,349,40,60 +42948,21,623,337,10016,40,60 +42949,21,623,338,349,50,70 +42950,21,623,339,350,50,70 +42951,21,623,340,350,50,70 +42952,21,623,341,550,45,60 +42953,21,623,342,550,45,60 +42954,21,623,343,550,50,60 +42955,21,623,344,550,50,60 +42956,21,623,345,550,50,60 +42957,21,623,346,10016,45,60 +42958,21,623,347,10016,45,60 +42959,21,623,348,10016,50,60 +42960,21,623,349,10016,50,60 +42961,21,623,350,10016,50,60 +42962,21,623,375,505,56,56 +42963,21,623,376,507,56,56 +42964,21,623,377,39,57,57 +42965,21,623,378,507,57,57 +42966,21,623,379,505,58,58 +42967,21,623,380,507,58,58 +42968,21,623,381,505,59,59 +42969,21,623,382,507,59,59 +42970,21,623,383,505,59,59 +42971,21,623,384,507,59,59 +42972,21,623,385,505,59,59 +42973,21,623,386,507,59,59 +42974,21,624,363,531,56,56 +42975,21,624,364,531,56,56 +42976,21,624,365,531,57,57 +42977,21,624,366,206,57,57 +42978,21,624,367,531,58,58 +42979,21,624,368,531,58,58 +42980,21,624,369,531,59,59 +42981,21,624,370,463,59,59 +42982,21,624,371,508,59,59 +42983,21,624,372,40,59,59 +42984,21,624,373,508,59,59 +42985,21,624,374,40,59,59 +42986,21,624,375,505,56,56 +42987,21,624,376,507,56,56 +42988,21,624,377,39,57,57 +42989,21,624,378,108,58,58 +42990,21,624,379,510,57,57 +42991,21,624,380,510,58,58 +42992,21,624,381,505,59,59 +42993,21,624,382,507,59,59 +42994,21,624,383,505,59,59 +42995,21,624,384,507,59,59 +42996,21,624,385,505,59,59 +42997,21,624,386,507,59,59 +42998,21,625,351,505,63,63 +42999,21,625,352,520,63,63 +43000,21,625,353,523,64,64 +43001,21,625,354,193,64,64 +43002,21,625,355,507,65,65 +43003,21,625,356,509,65,65 +43004,21,625,357,523,66,66 +43005,21,625,358,520,65,65 +43006,21,625,359,523,66,66 +43007,21,625,360,520,65,65 +43008,21,625,361,523,66,66 +43009,21,625,362,520,65,65 +43010,21,625,363,531,55,55 +43011,21,625,364,531,55,55 +43012,21,625,365,531,56,56 +43013,21,625,366,531,56,56 +43014,21,625,367,531,57,57 +43015,21,625,368,531,57,57 +43016,21,625,369,531,58,58 +43017,21,625,370,469,58,58 +43018,21,625,371,521,58,58 +43019,21,625,372,508,58,58 +43020,21,625,373,521,58,58 +43021,21,625,374,508,58,58 +43022,21,625,331,118,40,60 +43023,21,625,332,550,40,60 +43024,21,625,333,118,50,70 +43025,21,625,334,118,50,70 +43026,21,625,335,118,50,70 +43027,21,625,336,118,40,60 +43028,21,625,337,10016,40,60 +43029,21,625,338,119,50,70 +43030,21,625,339,119,50,70 +43031,21,625,340,119,50,70 +43032,21,625,341,550,45,60 +43033,21,625,342,341,45,60 +43034,21,625,343,550,50,60 +43035,21,625,344,550,50,60 +43036,21,625,345,550,50,60 +43037,21,625,346,341,45,60 +43038,21,625,347,10016,45,60 +43039,21,625,348,342,50,60 +43040,21,625,349,342,50,60 +43041,21,625,350,342,50,60 +43042,21,625,375,505,55,55 +43043,21,625,376,520,55,55 +43044,21,625,377,523,56,56 +43045,21,625,378,193,56,56 +43046,21,625,379,507,57,57 +43047,21,625,380,509,57,57 +43048,21,625,381,523,58,58 +43049,21,625,382,520,57,57 +43050,21,625,383,523,58,58 +43051,21,625,384,520,57,57 +43052,21,625,385,523,58,58 +43053,21,625,386,520,57,57 +43054,21,626,387,530,55,55 +43055,21,626,388,530,55,55 +43056,21,626,389,530,56,56 +43057,21,626,390,530,56,56 +43058,21,626,391,530,57,57 +43059,21,626,392,530,57,57 +43060,21,626,393,530,58,58 +43061,21,626,394,530,58,58 +43062,21,626,395,530,58,58 +43063,21,626,396,530,58,58 +43064,21,626,397,530,58,58 +43065,21,626,398,530,58,58 +43066,21,626,331,60,50,60 +43067,21,626,332,550,50,60 +43068,21,626,333,60,60,70 +43069,21,626,334,60,60,70 +43070,21,626,335,60,60,70 +43071,21,626,336,61,50,60 +43072,21,626,337,10016,50,60 +43073,21,626,338,61,60,60 +43074,21,626,339,62,60,60 +43075,21,626,340,62,60,60 +43076,21,626,341,550,45,60 +43077,21,626,342,550,45,60 +43078,21,626,343,550,50,60 +43079,21,626,344,550,50,60 +43080,21,626,345,550,50,60 +43081,21,626,346,10016,45,60 +43082,21,626,347,10016,45,60 +43083,21,626,348,10016,50,60 +43084,21,626,349,10016,50,60 +43085,21,626,350,10016,50,60 +43086,21,626,375,525,55,55 +43087,21,626,376,527,55,55 +43088,21,626,377,525,56,56 +43089,21,626,378,527,56,56 +43090,21,626,379,525,57,57 +43091,21,626,380,527,57,57 +43092,21,626,381,525,58,58 +43093,21,626,382,527,58,58 +43094,21,626,383,525,58,58 +43095,21,626,384,527,58,58 +43096,21,626,385,525,58,58 +43097,21,626,386,527,58,58 +43098,21,627,331,456,40,60 +43099,21,627,332,366,40,60 +43100,21,627,333,456,50,70 +43101,21,627,334,211,50,70 +43102,21,627,335,211,50,70 +43103,21,627,336,457,40,60 +43104,21,627,337,211,40,60 +43105,21,627,338,369,50,70 +43106,21,627,339,367,50,70 +43107,21,627,340,367,50,70 +43108,21,627,341,592,5,15 +43109,21,627,342,592,5,15 +43110,21,627,343,592,5,15 +43111,21,627,344,592,5,15 +43112,21,627,345,592,5,15 +43113,21,627,346,594,5,20 +43114,21,627,347,594,5,20 +43115,21,627,348,594,5,20 +43116,21,627,349,593,5,20 +43117,21,627,350,593,5,20 +43118,21,627,375,551,14,14 +43119,21,627,376,554,14,14 +43120,21,627,377,551,15,15 +43121,21,627,378,554,15,15 +43122,21,627,379,568,15,15 +43123,21,627,380,568,14,14 +43124,21,627,381,559,17,17 +43125,21,627,382,568,17,17 +43126,21,627,383,551,16,16 +43127,21,627,384,554,16,16 +43128,21,627,385,551,17,17 +43129,21,627,386,554,17,17 +43130,21,628,351,574,23,23 +43131,21,628,352,572,23,23 +43132,21,628,353,568,23,23 +43133,21,628,354,568,25,25 +43134,21,628,355,510,24,24 +43135,21,628,356,510,26,26 +43136,21,628,357,572,24,24 +43137,21,628,358,574,24,24 +43138,21,628,359,572,25,25 +43139,21,628,360,574,25,25 +43140,21,628,361,572,26,26 +43141,21,628,362,574,26,26 +43142,21,628,363,531,21,21 +43143,21,628,364,531,21,21 +43144,21,628,365,587,22,22 +43145,21,628,366,531,22,22 +43146,21,628,367,531,23,23 +43147,21,628,368,531,23,23 +43148,21,628,369,531,24,24 +43149,21,628,370,531,24,24 +43150,21,628,371,573,24,24 +43151,21,628,372,531,24,24 +43152,21,628,373,573,24,24 +43153,21,628,374,531,24,24 +43154,21,628,375,574,21,21 +43155,21,628,376,572,21,21 +43156,21,628,377,568,21,21 +43157,21,628,378,568,23,23 +43158,21,628,379,510,22,22 +43159,21,628,380,510,24,24 +43160,21,628,381,572,22,22 +43161,21,628,382,574,22,22 +43162,21,628,383,572,23,23 +43163,21,628,384,574,23,23 +43164,21,628,385,572,24,24 +43165,21,628,386,574,24,24 +43166,21,629,351,585,26,26 +43167,21,629,352,616,26,26 +43168,21,629,353,520,29,29 +43169,21,629,354,590,29,29 +43170,21,629,355,585,28,28 +43171,21,629,356,541,29,29 +43172,21,629,357,183,28,28 +43173,21,629,358,588,26,26 +43174,21,629,359,520,29,29 +43175,21,629,360,616,29,29 +43176,21,629,361,520,29,29 +43177,21,629,362,616,29,29 +43178,21,629,363,531,23,23 +43179,21,629,364,531,24,24 +43180,21,629,365,587,24,24 +43181,21,629,366,587,25,25 +43182,21,629,367,531,25,25 +43183,21,629,368,206,25,25 +43184,21,629,369,184,26,26 +43185,21,629,370,351,26,26 +43186,21,629,371,521,26,26 +43187,21,629,372,542,26,26 +43188,21,629,373,521,26,26 +43189,21,629,374,542,26,26 +43190,21,629,331,60,40,60 +43191,21,629,332,550,40,60 +43192,21,629,333,60,50,70 +43193,21,629,334,60,50,70 +43194,21,629,335,60,50,70 +43195,21,629,336,61,40,60 +43196,21,629,337,10016,40,60 +43197,21,629,338,61,50,70 +43198,21,629,339,186,50,70 +43199,21,629,340,186,50,70 +43200,21,629,341,550,10,25 +43201,21,629,342,183,10,25 +43202,21,629,343,550,10,25 +43203,21,629,344,550,10,25 +43204,21,629,345,550,10,25 +43205,21,629,346,183,10,30 +43206,21,629,347,10016,10,30 +43207,21,629,348,10016,10,30 +43208,21,629,349,184,10,30 +43209,21,629,350,184,10,30 +43210,21,629,375,585,23,23 +43211,21,629,376,616,23,23 +43212,21,629,377,520,26,26 +43213,21,629,378,590,26,26 +43214,21,629,379,585,25,25 +43215,21,629,380,541,26,26 +43216,21,629,381,183,25,25 +43217,21,629,382,588,23,23 +43218,21,629,383,520,26,26 +43219,21,629,384,616,26,26 +43220,21,629,385,520,26,26 +43221,21,629,386,616,26,26 +43222,21,630,387,529,27,27 +43223,21,630,388,529,27,27 +43224,21,630,389,529,28,28 +43225,21,630,390,529,28,28 +43226,21,630,391,529,29,29 +43227,21,630,392,529,29,29 +43228,21,630,393,529,30,30 +43229,21,630,394,529,30,30 +43230,21,630,395,529,30,30 +43231,21,630,396,529,30,30 +43232,21,630,397,529,30,30 +43233,21,630,398,529,30,30 +43234,21,630,375,525,27,27 +43235,21,630,376,527,27,27 +43236,21,630,377,525,28,28 +43237,21,630,378,527,28,28 +43238,21,630,379,304,29,29 +43239,21,630,380,610,29,29 +43240,21,630,381,304,30,30 +43241,21,630,382,610,30,30 +43242,21,630,383,304,30,30 +43243,21,630,384,610,30,30 +43244,21,630,385,304,30,30 +43245,21,630,386,610,30,30 +43246,21,631,387,529,27,27 +43247,21,631,388,529,27,27 +43248,21,631,389,529,28,28 +43249,21,631,390,529,28,28 +43250,21,631,391,529,29,29 +43251,21,631,392,529,29,29 +43252,21,631,393,529,30,30 +43253,21,631,394,529,30,30 +43254,21,631,395,529,30,30 +43255,21,631,396,529,30,30 +43256,21,631,397,529,30,30 +43257,21,631,398,529,30,30 +43258,21,631,375,525,27,27 +43259,21,631,376,527,27,27 +43260,21,631,377,525,28,28 +43261,21,631,378,527,28,28 +43262,21,631,379,304,29,29 +43263,21,631,380,610,29,29 +43264,21,631,381,304,30,30 +43265,21,631,382,610,30,30 +43266,21,631,383,304,30,30 +43267,21,631,384,610,30,30 +43268,21,631,385,304,30,30 +43269,21,631,386,610,30,30 +43270,21,632,351,520,33,33 +43271,21,632,351,520,33,33 +43272,21,632,351,520,33,33 +43273,21,632,351,613,33,33 +43274,21,632,352,585,33,33 +43275,21,632,353,505,34,34 +43276,21,632,354,523,34,34 +43277,21,632,355,520,35,35 +43278,21,632,355,520,35,35 +43279,21,632,355,520,35,35 +43280,21,632,355,520,33,33 +43281,21,632,356,523,36,36 +43282,21,632,357,335,35,35 +43283,21,632,358,336,35,35 +43284,21,632,359,505,36,36 +43285,21,632,359,505,36,36 +43286,21,632,359,505,36,36 +43287,21,632,359,613,36,36 +43288,21,632,360,590,36,36 +43289,21,632,361,505,36,36 +43290,21,632,361,505,36,36 +43291,21,632,361,505,36,36 +43292,21,632,361,613,36,36 +43293,21,632,362,590,36,36 +43294,21,632,363,531,30,30 +43295,21,632,364,531,30,30 +43296,21,632,365,587,31,31 +43297,21,632,366,531,31,31 +43298,21,632,367,531,32,32 +43299,21,632,368,531,32,32 +43300,21,632,369,531,33,33 +43301,21,632,370,531,33,33 +43302,21,632,371,531,33,33 +43303,21,632,372,521,33,33 +43304,21,632,373,531,33,33 +43305,21,632,374,521,33,33 +43306,21,632,375,520,30,30 +43307,21,632,375,520,30,30 +43308,21,632,375,520,30,30 +43309,21,632,375,613,30,30 +43310,21,632,376,585,30,30 +43311,21,632,377,505,31,31 +43312,21,632,378,523,31,31 +43313,21,632,379,520,32,32 +43314,21,632,379,520,32,32 +43315,21,632,379,520,32,32 +43316,21,632,379,520,30,30 +43317,21,632,380,523,33,33 +43318,21,632,381,335,32,32 +43319,21,632,382,336,32,32 +43320,21,632,383,505,33,33 +43321,21,632,383,505,33,33 +43322,21,632,383,505,33,33 +43323,21,632,383,613,33,33 +43324,21,632,384,590,33,33 +43325,21,632,385,505,33,33 +43326,21,632,385,505,33,33 +43327,21,632,385,505,33,33 +43328,21,632,385,613,33,33 +43329,21,632,386,590,33,33 +43330,21,633,375,607,27,27 +43331,21,633,376,607,27,27 +43332,21,633,377,607,28,28 +43333,21,633,378,607,28,28 +43334,21,633,379,607,29,29 +43335,21,633,380,607,29,29 +43336,21,633,381,607,30,30 +43337,21,633,382,607,30,30 +43338,21,633,383,607,30,30 +43339,21,633,384,607,30,30 +43340,21,633,385,607,30,30 +43341,21,633,386,607,30,30 +43342,21,634,375,607,28,28 +43343,21,634,376,607,28,28 +43344,21,634,377,607,29,29 +43345,21,634,378,607,29,29 +43346,21,634,379,607,30,30 +43347,21,634,380,605,30,30 +43348,21,634,381,607,31,31 +43349,21,634,382,42,31,31 +43350,21,634,383,607,31,31 +43351,21,634,384,605,31,31 +43352,21,634,385,607,31,31 +43353,21,634,386,605,31,31 +43354,21,635,375,607,29,29 +43355,21,635,376,607,29,29 +43356,21,635,377,607,30,30 +43357,21,635,378,605,30,30 +43358,21,635,379,607,31,31 +43359,21,635,380,605,31,31 +43360,21,635,381,42,32,32 +43361,21,635,382,42,32,32 +43362,21,635,383,607,32,32 +43363,21,635,384,605,32,32 +43364,21,635,385,607,32,32 +43365,21,635,386,605,32,32 +43366,21,636,375,607,30,30 +43367,21,636,376,605,30,30 +43368,21,636,377,607,31,31 +43369,21,636,378,605,31,31 +43370,21,636,379,42,33,33 +43371,21,636,380,42,33,33 +43372,21,636,381,607,32,32 +43373,21,636,382,605,32,32 +43374,21,636,383,607,33,33 +43375,21,636,384,605,33,33 +43376,21,636,385,607,33,33 +43377,21,636,386,605,33,33 +43378,21,637,331,339,45,60 +43379,21,637,332,618,45,60 +43380,21,637,333,339,60,60 +43381,21,637,333,339,50,60 +43382,21,637,333,339,50,60 +43383,21,637,333,339,50,60 +43384,21,637,334,339,60,60 +43385,21,637,334,339,50,60 +43386,21,637,334,339,50,60 +43387,21,637,334,339,50,60 +43388,21,637,335,339,60,60 +43389,21,637,335,339,50,60 +43390,21,637,335,339,50,60 +43391,21,637,335,339,50,60 +43392,21,637,336,339,45,60 +43393,21,637,337,618,45,60 +43394,21,637,338,340,60,60 +43395,21,637,338,340,50,60 +43396,21,637,338,340,50,60 +43397,21,637,338,340,50,60 +43398,21,637,339,340,60,60 +43399,21,637,339,340,50,60 +43400,21,637,339,340,50,60 +43401,21,637,339,340,50,60 +43402,21,637,340,340,60,60 +43403,21,637,340,340,50,60 +43404,21,637,340,340,50,60 +43405,21,637,340,340,50,60 +43406,21,637,341,618,45,60 +43407,21,637,342,536,45,60 +43408,21,637,343,618,60,60 +43409,21,637,343,618,50,60 +43410,21,637,343,618,50,60 +43411,21,637,343,618,50,60 +43412,21,637,344,618,60,60 +43413,21,637,344,618,50,60 +43414,21,637,344,618,50,60 +43415,21,637,344,618,50,60 +43416,21,637,345,618,60,60 +43417,21,637,345,618,50,60 +43418,21,637,345,618,50,60 +43419,21,637,345,618,50,60 +43420,21,637,346,618,45,60 +43421,21,637,347,536,45,60 +43422,21,637,348,618,60,60 +43423,21,637,348,618,50,60 +43424,21,637,348,618,50,60 +43425,21,637,348,618,50,60 +43426,21,637,349,537,60,60 +43427,21,637,349,537,50,60 +43428,21,637,349,537,50,60 +43429,21,637,349,537,50,60 +43430,21,637,350,537,60,60 +43431,21,637,350,537,50,60 +43432,21,637,350,537,50,60 +43433,21,637,350,537,50,60 +43434,21,637,375,536,54,54 +43435,21,637,375,536,54,54 +43436,21,637,375,536,54,54 +43437,21,637,376,616,54,54 +43438,21,637,376,616,54,54 +43439,21,637,376,616,54,54 +43440,21,637,377,536,55,55 +43441,21,637,377,536,55,55 +43442,21,637,377,536,55,55 +43443,21,637,378,453,55,55 +43444,21,637,378,453,55,55 +43445,21,637,378,453,55,55 +43446,21,637,379,618,55,55 +43447,21,637,379,618,55,55 +43448,21,637,379,618,55,55 +43449,21,637,380,618,56,56 +43450,21,637,380,618,56,56 +43451,21,637,380,618,56,56 +43452,21,637,381,536,56,56 +43453,21,637,381,536,56,56 +43454,21,637,381,536,56,56 +43455,21,637,382,453,56,56 +43456,21,637,382,453,56,56 +43457,21,637,382,453,56,56 +43458,21,637,383,536,57,57 +43459,21,637,383,536,57,57 +43460,21,637,383,536,57,57 +43461,21,637,384,588,57,57 +43462,21,637,384,588,57,57 +43463,21,637,384,588,57,57 +43464,21,637,385,536,57,57 +43465,21,637,385,536,57,57 +43466,21,637,385,536,57,57 +43467,21,637,386,588,57,57 +43468,21,637,386,588,57,57 +43469,21,637,386,588,57,57 +43470,21,638,331,339,45,60 +43471,21,638,332,618,45,60 +43472,21,638,333,339,60,60 +43473,21,638,333,339,60,60 +43474,21,638,333,339,60,60 +43475,21,638,333,339,50,60 +43476,21,638,334,339,60,60 +43477,21,638,334,339,60,60 +43478,21,638,334,339,60,60 +43479,21,638,334,339,50,60 +43480,21,638,335,339,60,60 +43481,21,638,335,339,60,60 +43482,21,638,335,339,60,60 +43483,21,638,335,339,50,60 +43484,21,638,336,339,45,60 +43485,21,638,337,618,45,60 +43486,21,638,338,340,60,60 +43487,21,638,338,340,60,60 +43488,21,638,338,340,60,60 +43489,21,638,338,340,50,60 +43490,21,638,339,340,60,60 +43491,21,638,339,340,60,60 +43492,21,638,339,340,60,60 +43493,21,638,339,340,50,60 +43494,21,638,340,340,60,60 +43495,21,638,340,340,60,60 +43496,21,638,340,340,60,60 +43497,21,638,340,340,50,60 +43498,21,638,341,618,45,60 +43499,21,638,342,618,45,60 +43500,21,638,343,618,60,60 +43501,21,638,343,618,60,60 +43502,21,638,343,618,60,60 +43503,21,638,343,618,50,60 +43504,21,638,344,618,60,60 +43505,21,638,344,618,60,60 +43506,21,638,344,618,60,60 +43507,21,638,344,618,50,60 +43508,21,638,345,618,60,60 +43509,21,638,345,618,60,60 +43510,21,638,345,618,60,60 +43511,21,638,345,618,50,60 +43512,21,638,346,618,45,60 +43513,21,638,347,618,45,60 +43514,21,638,348,618,60,60 +43515,21,638,348,618,60,60 +43516,21,638,348,618,60,60 +43517,21,638,348,618,50,60 +43518,21,638,349,537,60,60 +43519,21,638,349,537,60,60 +43520,21,638,349,537,60,60 +43521,21,638,349,537,50,60 +43522,21,638,350,537,60,60 +43523,21,638,350,537,60,60 +43524,21,638,350,537,60,60 +43525,21,638,350,537,50,60 +43526,21,638,375,536,54,54 +43527,21,638,375,536,54,54 +43528,21,638,375,536,54,54 +43529,21,638,376,616,54,54 +43530,21,638,376,616,54,54 +43531,21,638,376,616,54,54 +43532,21,638,377,536,55,55 +43533,21,638,377,536,55,55 +43534,21,638,377,536,55,55 +43535,21,638,378,453,55,55 +43536,21,638,378,453,55,55 +43537,21,638,378,453,55,55 +43538,21,638,379,618,55,55 +43539,21,638,379,618,55,55 +43540,21,638,379,618,55,55 +43541,21,638,380,618,56,56 +43542,21,638,380,618,56,56 +43543,21,638,380,618,56,56 +43544,21,638,381,536,56,56 +43545,21,638,381,536,56,56 +43546,21,638,381,536,56,56 +43547,21,638,382,453,56,56 +43548,21,638,382,453,56,56 +43549,21,638,382,453,56,56 +43550,21,638,383,536,57,57 +43551,21,638,383,536,57,57 +43552,21,638,383,536,57,57 +43553,21,638,384,588,57,57 +43554,21,638,384,588,57,57 +43555,21,638,384,588,57,57 +43556,21,638,385,536,57,57 +43557,21,638,385,536,57,57 +43558,21,638,385,536,57,57 +43559,21,638,386,588,57,57 +43560,21,638,386,588,57,57 +43561,21,638,386,588,57,57 +43562,21,639,351,575,41,41 +43563,21,639,352,572,41,41 +43564,21,639,353,569,42,42 +43565,21,639,354,572,43,43 +43566,21,639,355,624,42,42 +43567,21,639,356,510,44,44 +43568,21,639,357,624,44,44 +43569,21,639,358,89,44,44 +43570,21,639,359,575,43,43 +43571,21,639,360,569,44,44 +43572,21,639,361,575,43,43 +43573,21,639,362,569,44,44 +43574,21,639,363,531,37,37 +43575,21,639,364,531,37,37 +43576,21,639,365,587,38,38 +43577,21,639,366,531,38,38 +43578,21,639,367,531,39,39 +43579,21,639,368,531,39,39 +43580,21,639,369,531,40,40 +43581,21,639,370,531,40,40 +43582,21,639,371,573,40,40 +43583,21,639,372,576,40,40 +43584,21,639,373,573,40,40 +43585,21,639,374,576,40,40 +43586,21,639,375,575,37,37 +43587,21,639,376,572,37,37 +43588,21,639,377,569,38,38 +43589,21,639,378,572,39,39 +43590,21,639,379,624,38,38 +43591,21,639,380,510,40,40 +43592,21,639,381,624,40,40 +43593,21,639,382,89,40,40 +43594,21,639,383,575,39,39 +43595,21,639,384,569,40,40 +43596,21,639,385,575,39,39 +43597,21,639,386,569,40,40 +43598,21,645,351,616,40,40 +43599,21,645,352,55,40,40 +43600,21,645,353,207,41,41 +43601,21,645,354,183,40,40 +43602,21,645,355,335,42,42 +43603,21,645,356,336,42,42 +43604,21,645,357,591,41,41 +43605,21,645,358,588,40,40 +43606,21,645,359,207,43,43 +43607,21,645,360,616,43,43 +43608,21,645,361,207,43,43 +43609,21,645,362,616,43,43 +43610,21,645,363,531,36,36 +43611,21,645,364,531,36,36 +43612,21,645,365,587,37,37 +43613,21,645,366,531,37,37 +43614,21,645,367,531,38,38 +43615,21,645,368,531,38,38 +43616,21,645,369,531,39,39 +43617,21,645,370,531,39,39 +43618,21,645,371,472,39,39 +43619,21,645,372,184,39,39 +43620,21,645,373,472,39,39 +43621,21,645,374,184,39,39 +43622,21,645,331,118,40,50 +43623,21,645,332,550,40,50 +43624,21,645,333,118,50,60 +43625,21,645,334,118,50,60 +43626,21,645,335,118,50,60 +43627,21,645,336,118,40,60 +43628,21,645,337,10016,40,60 +43629,21,645,338,119,50,70 +43630,21,645,339,119,50,70 +43631,21,645,340,119,50,70 +43632,21,645,341,550,25,40 +43633,21,645,342,418,25,40 +43634,21,645,343,550,30,40 +43635,21,645,344,550,30,40 +43636,21,645,345,550,30,40 +43637,21,645,346,418,25,40 +43638,21,645,347,10016,25,40 +43639,21,645,348,419,30,40 +43640,21,645,349,419,30,40 +43641,21,645,350,419,30,40 +43642,21,645,375,616,36,36 +43643,21,645,376,55,36,36 +43644,21,645,377,207,37,37 +43645,21,645,378,183,36,36 +43646,21,645,379,335,38,38 +43647,21,645,380,336,38,38 +43648,21,645,381,591,37,37 +43649,21,645,382,588,36,36 +43650,21,645,383,207,39,39 +43651,21,645,384,616,39,39 +43652,21,645,385,207,39,39 +43653,21,645,386,616,39,39 +43654,21,646,351,415,39,39 +43655,21,646,352,315,39,39 +43656,21,646,353,540,40,40 +43657,21,646,354,520,41,41 +43658,21,646,355,214,40,40 +43659,21,646,356,520,40,40 +43660,21,646,357,214,42,42 +43661,21,646,358,540,42,42 +43662,21,646,359,315,41,41 +43663,21,646,360,520,42,42 +43664,21,646,361,315,41,41 +43665,21,646,362,520,42,42 +43666,21,646,363,531,35,35 +43667,21,646,364,531,35,35 +43668,21,646,365,587,36,36 +43669,21,646,366,206,36,36 +43670,21,646,367,531,37,37 +43671,21,646,368,531,37,37 +43672,21,646,369,521,38,38 +43673,21,646,370,542,38,38 +43674,21,646,371,416,38,38 +43675,21,646,372,407,38,38 +43676,21,646,373,416,38,38 +43677,21,646,374,407,38,38 +43678,21,646,375,415,35,35 +43679,21,646,376,315,35,35 +43680,21,646,377,540,36,36 +43681,21,646,378,520,37,37 +43682,21,646,379,214,36,36 +43683,21,646,380,520,36,36 +43684,21,646,381,214,38,38 +43685,21,646,382,540,38,38 +43686,21,646,383,315,37,37 +43687,21,646,384,520,38,38 +43688,21,646,385,315,37,37 +43689,21,646,386,520,38,38 +43690,21,647,351,114,38,38 +43691,21,647,352,279,38,38 +43692,21,647,353,426,38,38 +43693,21,647,354,337,40,40 +43694,21,647,355,338,40,40 +43695,21,647,356,359,39,39 +43696,21,647,357,426,39,39 +43697,21,647,358,359,41,41 +43698,21,647,359,114,40,40 +43699,21,647,360,279,40,40 +43700,21,647,361,114,41,41 +43701,21,647,362,279,41,41 +43702,21,647,363,531,34,34 +43703,21,647,364,531,34,34 +43704,21,647,365,587,35,35 +43705,21,647,366,531,35,35 +43706,21,647,367,531,36,36 +43707,21,647,368,531,36,36 +43708,21,647,369,531,37,37 +43709,21,647,370,531,37,37 +43710,21,647,371,531,37,37 +43711,21,647,372,465,37,37 +43712,21,647,373,531,37,37 +43713,21,647,374,465,37,37 +43714,21,647,331,370,40,60 +43715,21,647,332,90,40,60 +43716,21,647,333,370,50,70 +43717,21,647,334,370,50,70 +43718,21,647,335,370,50,70 +43719,21,647,336,90,40,60 +43720,21,647,337,370,40,60 +43721,21,647,338,90,50,70 +43722,21,647,339,91,50,70 +43723,21,647,340,91,50,70 +43724,21,647,341,592,25,40 +43725,21,647,342,120,25,40 +43726,21,647,343,550,30,40 +43727,21,647,344,592,30,40 +43728,21,647,345,592,30,40 +43729,21,647,346,120,25,40 +43730,21,647,347,593,25,40 +43731,21,647,348,10016,30,40 +43732,21,647,349,121,30,40 +43733,21,647,350,121,30,40 +43734,21,647,375,114,34,34 +43735,21,647,376,279,34,34 +43736,21,647,377,426,34,34 +43737,21,647,378,337,36,36 +43738,21,647,379,338,36,36 +43739,21,647,380,359,35,35 +43740,21,647,381,426,35,35 +43741,21,647,382,359,37,37 +43742,21,647,383,114,36,36 +43743,21,647,384,279,36,36 +43744,21,647,385,114,37,37 +43745,21,647,386,279,37,37 +43746,21,648,351,55,37,37 +43747,21,648,352,619,37,37 +43748,21,648,353,426,38,38 +43749,21,648,354,334,37,37 +43750,21,648,355,619,39,39 +43751,21,648,356,359,38,38 +43752,21,648,357,426,39,39 +43753,21,648,358,359,40,40 +43754,21,648,359,55,39,39 +43755,21,648,360,334,40,40 +43756,21,648,361,55,39,39 +43757,21,648,362,334,40,40 +43758,21,648,363,531,33,33 +43759,21,648,364,531,33,33 +43760,21,648,365,587,34,34 +43761,21,648,366,531,34,34 +43762,21,648,367,531,35,35 +43763,21,648,368,531,35,35 +43764,21,648,369,531,36,36 +43765,21,648,370,531,36,36 +43766,21,648,371,531,36,36 +43767,21,648,372,531,36,36 +43768,21,648,373,531,36,36 +43769,21,648,374,531,36,36 +43770,21,648,331,118,40,60 +43771,21,648,332,550,40,60 +43772,21,648,333,118,50,70 +43773,21,648,334,118,50,70 +43774,21,648,335,118,50,70 +43775,21,648,336,118,40,60 +43776,21,648,337,10016,40,60 +43777,21,648,338,119,50,70 +43778,21,648,339,119,50,70 +43779,21,648,340,119,50,70 +43780,21,648,341,550,15,35 +43781,21,648,342,418,15,35 +43782,21,648,343,550,15,35 +43783,21,648,344,550,15,35 +43784,21,648,345,550,15,35 +43785,21,648,346,418,15,40 +43786,21,648,347,10016,15,40 +43787,21,648,348,419,25,40 +43788,21,648,349,419,25,40 +43789,21,648,350,419,25,40 +43790,21,648,375,55,34,34 +43791,21,648,376,333,33,33 +43792,21,648,377,426,34,34 +43793,21,648,378,619,33,33 +43794,21,648,379,619,35,35 +43795,21,648,380,359,34,34 +43796,21,648,381,426,35,35 +43797,21,648,382,359,36,36 +43798,21,648,383,55,35,35 +43799,21,648,384,334,36,36 +43800,21,648,385,55,35,35 +43801,21,648,386,334,36,36 +43802,21,649,351,37,37,37 +43803,21,649,352,546,37,37 +43804,21,649,353,334,38,38 +43805,21,649,354,546,39,39 +43806,21,649,355,183,38,38 +43807,21,649,356,55,38,38 +43808,21,649,357,437,36,36 +43809,21,649,358,437,36,36 +43810,21,649,359,546,39,39 +43811,21,649,360,334,40,40 +43812,21,649,361,546,39,39 +43813,21,649,362,334,40,40 +43814,21,649,363,531,33,33 +43815,21,649,364,531,33,33 +43816,21,649,365,587,34,34 +43817,21,649,366,531,34,34 +43818,21,649,367,531,35,35 +43819,21,649,368,531,35,35 +43820,21,649,369,531,36,36 +43821,21,649,370,531,36,36 +43822,21,649,371,547,36,36 +43823,21,649,372,38,36,36 +43824,21,649,373,547,36,36 +43825,21,649,374,38,36,36 +43826,21,649,331,118,40,60 +43827,21,649,332,550,40,60 +43828,21,649,333,118,50,70 +43829,21,649,334,118,50,70 +43830,21,649,335,118,50,70 +43831,21,649,336,118,40,60 +43832,21,649,337,10016,40,60 +43833,21,649,338,119,50,70 +43834,21,649,339,119,50,70 +43835,21,649,340,119,50,70 +43836,21,649,341,550,25,40 +43837,21,649,342,183,25,40 +43838,21,649,343,550,30,40 +43839,21,649,344,550,30,40 +43840,21,649,345,550,30,40 +43841,21,649,346,183,25,40 +43842,21,649,347,10016,25,40 +43843,21,649,348,10016,30,40 +43844,21,649,349,184,30,40 +43845,21,649,350,184,30,40 +43846,21,649,375,333,33,33 +43847,21,649,376,546,33,33 +43848,21,649,377,37,34,34 +43849,21,649,378,436,32,32 +43850,21,649,379,183,34,34 +43851,21,649,380,55,34,34 +43852,21,649,381,546,35,35 +43853,21,649,382,436,32,32 +43854,21,649,383,546,35,35 +43855,21,649,384,334,36,36 +43856,21,649,385,546,35,35 +43857,21,649,386,334,36,36 +43858,21,650,351,28,62,62 +43859,21,650,352,207,63,63 +43860,21,650,353,28,64,64 +43861,21,650,354,560,63,63 +43862,21,650,355,539,63,63 +43863,21,650,356,247,63,63 +43864,21,650,357,539,64,64 +43865,21,650,358,539,65,65 +43866,21,650,359,247,65,65 +43867,21,650,360,207,65,65 +43868,21,650,361,247,65,65 +43869,21,650,362,207,65,65 +43870,21,650,363,531,54,54 +43871,21,650,364,531,54,54 +43872,21,650,365,587,55,55 +43873,21,650,366,531,55,55 +43874,21,650,367,531,56,56 +43875,21,650,368,531,56,56 +43876,21,650,369,531,57,57 +43877,21,650,370,538,57,57 +43878,21,650,371,472,57,57 +43879,21,650,372,248,57,57 +43880,21,650,373,472,57,57 +43881,21,650,374,248,57,57 +43882,21,650,375,28,54,54 +43883,21,650,376,207,55,55 +43884,21,650,377,28,56,56 +43885,21,650,378,560,55,55 +43886,21,650,379,539,55,55 +43887,21,650,380,247,55,55 +43888,21,650,381,539,56,56 +43889,21,650,382,539,57,57 +43890,21,650,383,247,57,57 +43891,21,650,384,207,57,57 +43892,21,650,385,247,57,57 +43893,21,650,386,207,57,57 +43894,21,651,351,574,23,23 +43895,21,651,352,572,23,23 +43896,21,651,353,568,23,23 +43897,21,651,354,568,25,25 +43898,21,651,355,510,24,24 +43899,21,651,356,510,26,26 +43900,21,651,357,572,24,24 +43901,21,651,358,574,24,24 +43902,21,651,359,572,25,25 +43903,21,651,360,574,25,25 +43904,21,651,361,572,26,26 +43905,21,651,362,574,26,26 +43906,21,651,363,531,21,21 +43907,21,651,364,531,21,21 +43908,21,651,365,587,22,22 +43909,21,651,366,531,22,22 +43910,21,651,367,531,23,23 +43911,21,651,368,531,23,23 +43912,21,651,369,531,24,24 +43913,21,651,370,531,24,24 +43914,21,651,371,573,24,24 +43915,21,651,372,531,24,24 +43916,21,651,373,573,24,24 +43917,21,651,374,531,24,24 +43918,21,651,375,574,21,21 +43919,21,651,376,572,21,21 +43920,21,651,377,568,21,21 +43921,21,651,378,568,23,23 +43922,21,651,379,510,22,22 +43923,21,651,380,510,24,24 +43924,21,651,381,572,22,22 +43925,21,651,382,574,22,22 +43926,21,651,383,572,23,23 +43927,21,651,384,574,23,23 +43928,21,651,385,572,24,24 +43929,21,651,386,574,24,24 +43930,21,652,351,546,23,23 +43931,21,652,352,541,23,23 +43932,21,652,353,415,24,24 +43933,21,652,354,544,23,23 +43934,21,652,355,315,25,25 +43935,21,652,356,544,23,23 +43936,21,652,357,315,26,26 +43937,21,652,358,214,26,26 +43938,21,652,359,546,25,25 +43939,21,652,360,541,26,26 +43940,21,652,361,546,26,26 +43941,21,652,362,541,26,26 +43942,21,652,363,531,21,21 +43943,21,652,364,531,23,23 +43944,21,652,365,587,22,22 +43945,21,652,366,511,22,22 +43946,21,652,367,513,22,22 +43947,21,652,368,515,22,22 +43948,21,652,369,416,24,24 +43949,21,652,370,407,24,24 +43950,21,652,371,542,24,24 +43951,21,652,372,547,24,24 +43952,21,652,373,542,24,24 +43953,21,652,374,547,24,24 +43954,21,652,331,60,40,60 +43955,21,652,332,550,40,60 +43956,21,652,333,60,50,70 +43957,21,652,334,60,50,70 +43958,21,652,335,60,50,70 +43959,21,652,336,61,40,60 +43960,21,652,337,10016,40,60 +43961,21,652,338,61,50,70 +43962,21,652,339,186,50,70 +43963,21,652,340,186,50,70 +43964,21,652,341,550,10,25 +43965,21,652,342,418,10,25 +43966,21,652,343,550,10,25 +43967,21,652,344,550,10,25 +43968,21,652,345,550,10,25 +43969,21,652,346,418,10,30 +43970,21,652,347,10016,10,30 +43971,21,652,348,419,10,30 +43972,21,652,349,419,10,30 +43973,21,652,350,419,10,30 +43974,21,652,375,546,21,21 +43975,21,652,376,541,21,21 +43976,21,652,377,415,22,22 +43977,21,652,378,543,21,21 +43978,21,652,379,315,23,23 +43979,21,652,380,543,21,21 +43980,21,652,381,315,24,24 +43981,21,652,382,214,24,24 +43982,21,652,383,546,23,23 +43983,21,652,384,541,24,24 +43984,21,652,385,546,24,24 +43985,21,652,386,541,24,24 +43986,21,653,351,560,65,65 +43987,21,653,352,558,65,65 +43988,21,653,353,505,64,64 +43989,21,653,354,357,66,66 +43990,21,653,355,539,65,65 +43991,21,653,356,455,66,66 +43992,21,653,357,560,66,66 +43993,21,653,358,539,67,67 +43994,21,653,359,560,66,66 +43995,21,653,360,539,67,67 +43996,21,653,361,560,66,66 +43997,21,653,362,539,67,67 +43998,21,653,363,531,56,56 +43999,21,653,364,531,56,56 +44000,21,653,365,531,57,57 +44001,21,653,366,206,57,57 +44002,21,653,367,531,58,58 +44003,21,653,368,531,58,58 +44004,21,653,369,531,59,59 +44005,21,653,370,531,59,59 +44006,21,653,371,531,59,59 +44007,21,653,372,538,59,59 +44008,21,653,373,531,59,59 +44009,21,653,374,538,59,59 +44010,21,653,331,456,50,60 +44011,21,653,332,116,50,60 +44012,21,653,333,456,60,70 +44013,21,653,334,222,60,70 +44014,21,653,335,222,60,70 +44015,21,653,336,116,50,60 +44016,21,653,337,457,50,60 +44017,21,653,338,117,60,70 +44018,21,653,339,230,60,70 +44019,21,653,340,230,60,70 +44020,21,653,341,592,45,60 +44021,21,653,342,592,45,60 +44022,21,653,343,592,50,60 +44023,21,653,344,592,50,60 +44024,21,653,345,592,50,60 +44025,21,653,346,594,45,60 +44026,21,653,347,594,45,60 +44027,21,653,348,594,50,60 +44028,21,653,349,593,50,60 +44029,21,653,350,593,50,60 +44030,21,653,375,560,57,57 +44031,21,653,376,558,57,57 +44032,21,653,377,505,56,56 +44033,21,653,378,357,58,58 +44034,21,653,379,539,57,57 +44035,21,653,380,455,58,58 +44036,21,653,381,560,58,58 +44037,21,653,382,539,59,59 +44038,21,653,383,560,58,58 +44039,21,653,384,539,59,59 +44040,21,653,385,560,58,58 +44041,21,653,386,539,59,59 +44042,21,703,363,504,2,2 +44043,21,703,364,504,2,2 +44044,21,703,365,504,3,3 +44045,21,703,366,504,3,3 +44046,21,703,367,504,4,4 +44047,21,703,368,504,4,4 +44048,21,703,369,504,4,4 +44049,21,703,370,504,4,4 +44050,21,703,371,504,4,4 +44051,21,703,372,504,4,4 +44052,21,703,373,504,4,4 +44053,21,703,374,504,4,4 +44054,21,703,331,60,40,60 +44055,21,703,332,550,40,60 +44056,21,703,333,60,50,70 +44057,21,703,334,60,50,70 +44058,21,703,335,60,50,70 +44059,21,703,336,61,40,60 +44060,21,703,337,10016,40,60 +44061,21,703,338,61,50,70 +44062,21,703,339,186,50,70 +44063,21,703,340,186,50,70 +44064,21,703,341,550,5,15 +44065,21,703,342,550,5,15 +44066,21,703,343,550,5,15 +44067,21,703,344,550,5,15 +44068,21,703,345,550,5,15 +44069,21,703,346,10016,5,15 +44070,21,703,347,10016,5,15 +44071,21,703,348,10016,5,15 +44072,21,703,349,10016,5,15 +44073,21,703,350,10016,5,15 +44074,21,703,375,504,2,2 +44075,21,703,376,509,2,2 +44076,21,703,377,504,3,3 +44077,21,703,378,509,3,3 +44078,21,703,379,504,4,4 +44079,21,703,380,509,4,4 +44080,21,703,381,504,4,4 +44081,21,703,382,509,4,4 +44082,21,703,383,504,4,4 +44083,21,703,384,509,4,4 +44084,21,703,385,504,4,4 +44085,21,703,386,509,4,4 +44086,21,704,351,519,9,9 +44087,21,704,351,191,9,9 +44088,21,704,351,519,9,9 +44089,21,704,351,519,9,9 +44090,21,704,352,543,10,10 +44091,21,704,353,504,10,10 +44092,21,704,354,509,10,10 +44093,21,704,355,504,10,10 +44094,21,704,356,540,11,11 +44095,21,704,357,519,10,10 +44096,21,704,358,540,10,10 +44097,21,704,359,509,11,11 +44098,21,704,360,191,11,11 +44099,21,704,360,191,10,10 +44100,21,704,360,191,11,11 +44101,21,704,360,191,11,11 +44102,21,704,361,509,11,11 +44103,21,704,361,191,11,11 +44104,21,704,361,509,11,11 +44105,21,704,361,509,11,11 +44106,21,704,362,191,11,11 +44107,21,704,363,531,2,2 +44108,21,704,364,531,2,2 +44109,21,704,365,531,3,3 +44110,21,704,366,206,3,3 +44111,21,704,367,531,4,4 +44112,21,704,368,531,4,4 +44113,21,704,369,531,4,4 +44114,21,704,370,531,4,4 +44115,21,704,371,531,4,4 +44116,21,704,372,531,4,4 +44117,21,704,373,531,4,4 +44118,21,704,374,531,4,4 +44119,21,704,331,60,40,60 +44120,21,704,332,550,40,60 +44121,21,704,333,60,50,70 +44122,21,704,334,60,50,70 +44123,21,704,335,60,50,70 +44124,21,704,336,61,40,60 +44125,21,704,337,10016,40,60 +44126,21,704,338,61,50,70 +44127,21,704,339,186,50,70 +44128,21,704,340,186,50,70 +44129,21,704,341,550,5,15 +44130,21,704,342,298,5,15 +44131,21,704,343,550,5,15 +44132,21,704,344,550,5,15 +44133,21,704,345,550,5,15 +44134,21,704,346,10016,5,15 +44135,21,704,347,183,5,15 +44136,21,704,348,10016,5,15 +44137,21,704,349,184,5,15 +44138,21,704,350,184,5,15 +44139,21,704,375,519,2,2 +44140,21,704,375,191,2,2 +44141,21,704,375,519,2,2 +44142,21,704,375,519,2,2 +44143,21,704,376,540,2,2 +44144,21,704,377,504,3,3 +44145,21,704,378,509,3,3 +44146,21,704,379,504,3,3 +44147,21,704,380,540,3,3 +44148,21,704,381,519,4,4 +44149,21,704,382,540,4,4 +44150,21,704,383,509,4,4 +44151,21,704,384,191,4,4 +44152,21,704,384,191,3,3 +44153,21,704,384,191,4,4 +44154,21,704,384,191,4,4 +44155,21,704,385,509,4,4 +44156,21,704,385,191,4,4 +44157,21,704,385,509,4,4 +44158,21,704,385,509,4,4 +44159,21,704,386,191,4,4 +44160,21,705,351,591,44,44 +44161,21,705,352,619,44,44 +44162,21,705,353,279,45,45 +44163,21,705,354,55,45,45 +44164,21,705,355,337,46,46 +44165,21,705,356,338,46,46 +44166,21,705,357,183,45,45 +44167,21,705,358,183,47,47 +44168,21,705,359,619,47,47 +44169,21,705,360,225,44,44 +44170,21,705,361,619,47,47 +44171,21,705,362,225,44,44 +44172,21,705,363,531,39,39 +44173,21,705,364,531,39,39 +44174,21,705,365,587,40,40 +44175,21,705,366,531,40,40 +44176,21,705,367,531,41,41 +44177,21,705,368,531,41,41 +44178,21,705,369,531,42,42 +44179,21,705,370,531,42,42 +44180,21,705,371,531,42,42 +44181,21,705,372,184,42,42 +44182,21,705,373,531,42,42 +44183,21,705,374,184,42,42 +44184,21,705,331,118,40,60 +44185,21,705,332,550,40,60 +44186,21,705,333,118,50,70 +44187,21,705,334,118,50,70 +44188,21,705,335,118,50,70 +44189,21,705,336,118,40,60 +44190,21,705,337,10016,40,60 +44191,21,705,338,119,50,70 +44192,21,705,339,119,50,70 +44193,21,705,340,119,50,70 +44194,21,705,341,550,15,40 +44195,21,705,342,183,15,40 +44196,21,705,343,550,15,40 +44197,21,705,344,550,15,40 +44198,21,705,345,550,15,40 +44199,21,705,346,183,15,40 +44200,21,705,347,10016,15,40 +44201,21,705,348,10016,25,45 +44202,21,705,349,184,25,45 +44203,21,705,350,184,25,45 +44204,21,705,375,591,39,39 +44205,21,705,376,619,39,39 +44206,21,705,377,279,40,40 +44207,21,705,378,55,40,40 +44208,21,705,379,337,41,41 +44209,21,705,380,338,41,41 +44210,21,705,381,183,40,40 +44211,21,705,382,183,42,42 +44212,21,705,383,619,42,42 +44213,21,705,384,225,39,39 +44214,21,705,385,619,42,42 +44215,21,705,386,225,39,39 +44216,21,706,351,626,54,54 +44217,21,706,352,539,53,53 +44218,21,706,353,207,54,54 +44219,21,706,354,620,53,53 +44220,21,706,355,591,54,54 +44221,21,706,356,55,55,55 +44222,21,706,357,620,53,53 +44223,21,706,358,539,54,54 +44224,21,706,359,629,52,52 +44225,21,706,360,626,56,56 +44226,21,706,361,629,52,52 +44227,21,706,362,626,56,56 +44228,21,706,363,531,48,48 +44229,21,706,364,531,48,48 +44230,21,706,365,587,49,49 +44231,21,706,366,531,49,49 +44232,21,706,367,531,50,50 +44233,21,706,368,531,50,50 +44234,21,706,369,531,51,51 +44235,21,706,370,531,51,51 +44236,21,706,371,472,51,51 +44237,21,706,372,538,51,51 +44238,21,706,373,472,51,51 +44239,21,706,374,538,51,51 +44240,21,706,331,60,40,60 +44241,21,706,332,550,40,60 +44242,21,706,333,60,50,70 +44243,21,706,334,60,50,70 +44244,21,706,335,60,50,70 +44245,21,706,336,61,40,60 +44246,21,706,337,10016,40,60 +44247,21,706,338,61,50,70 +44248,21,706,339,62,50,70 +44249,21,706,340,62,50,70 +44250,21,706,341,550,40,55 +44251,21,706,342,418,40,55 +44252,21,706,343,550,45,55 +44253,21,706,344,550,45,55 +44254,21,706,345,550,45,55 +44255,21,706,346,418,40,55 +44256,21,706,347,10016,40,55 +44257,21,706,348,419,45,55 +44258,21,706,349,419,45,55 +44259,21,706,350,419,45,55 +44260,21,706,375,626,49,49 +44261,21,706,376,539,48,48 +44262,21,706,377,207,49,49 +44263,21,706,378,619,48,48 +44264,21,706,379,591,49,49 +44265,21,706,380,55,50,50 +44266,21,706,381,619,48,48 +44267,21,706,382,539,49,49 +44268,21,706,383,629,47,47 +44269,21,706,384,626,51,51 +44270,21,706,385,629,47,47 +44271,21,706,386,626,51,51 +44272,21,654,331,370,40,60 +44273,21,654,332,90,40,60 +44274,21,654,333,370,50,70 +44275,21,654,334,370,50,70 +44276,21,654,335,370,50,70 +44277,21,654,336,90,40,60 +44278,21,654,337,370,40,60 +44279,21,654,338,90,50,70 +44280,21,654,339,91,50,70 +44281,21,654,340,91,50,70 +44282,21,654,341,592,25,40 +44283,21,654,342,120,25,40 +44284,21,654,343,550,30,40 +44285,21,654,344,592,30,40 +44286,21,654,345,592,30,40 +44287,21,654,346,120,25,40 +44288,21,654,347,593,25,40 +44289,21,654,348,10016,30,40 +44290,21,654,349,121,30,40 +44291,21,654,350,121,30,40 +44292,21,655,331,456,50,60 +44293,21,655,332,116,50,60 +44294,21,655,333,456,60,70 +44295,21,655,334,456,60,70 +44296,21,655,335,456,60,70 +44297,21,655,336,116,50,60 +44298,21,655,337,457,50,60 +44299,21,655,338,117,60,70 +44300,21,655,339,230,60,70 +44301,21,655,340,230,60,70 +44302,21,655,341,592,45,60 +44303,21,655,342,592,45,60 +44304,21,655,343,592,50,60 +44305,21,655,344,592,50,60 +44306,21,655,345,592,50,60 +44307,21,655,346,594,45,60 +44308,21,655,347,594,45,60 +44309,21,655,348,594,50,60 +44310,21,655,349,593,50,60 +44311,21,655,350,593,50,60 +44312,21,707,331,370,40,60 +44313,21,707,332,223,40,60 +44314,21,707,333,370,50,70 +44315,21,707,334,370,50,70 +44316,21,707,335,370,50,70 +44317,21,707,336,223,40,60 +44318,21,707,337,370,40,60 +44319,21,707,338,223,50,70 +44320,21,707,339,224,50,70 +44321,21,707,340,224,50,70 +44322,21,707,341,592,30,45 +44323,21,707,342,458,30,45 +44324,21,707,343,223,35,45 +44325,21,707,344,592,35,45 +44326,21,707,345,592,35,45 +44327,21,707,346,593,30,45 +44328,21,707,347,594,30,45 +44329,21,707,348,226,35,45 +44330,21,707,349,594,35,45 +44331,21,707,350,594,35,45 +44332,22,576,331,118,40,60 +44333,22,576,332,10016,40,60 +44334,22,576,333,118,50,70 +44335,22,576,334,118,50,70 +44336,22,576,335,118,50,70 +44337,22,576,336,118,40,60 +44338,22,576,337,550,40,60 +44339,22,576,338,119,50,70 +44340,22,576,339,119,50,70 +44341,22,576,340,119,50,70 +44342,22,576,341,10016,45,60 +44343,22,576,342,341,45,60 +44344,22,576,343,10016,50,60 +44345,22,576,344,10016,50,60 +44346,22,576,345,10016,50,60 +44347,22,576,346,550,45,60 +44348,22,576,347,550,45,60 +44349,22,576,348,342,50,60 +44350,22,576,349,342,50,60 +44351,22,576,350,342,50,60 +44352,22,656,351,19,16,16 +44353,22,656,352,548,16,16 +44354,22,656,353,519,16,16 +44355,22,656,354,300,16,16 +44356,22,656,355,19,17,17 +44357,22,656,356,548,17,17 +44358,22,656,357,519,17,17 +44359,22,656,358,300,17,17 +44360,22,656,359,548,18,18 +44361,22,656,360,133,19,19 +44362,22,656,361,548,18,18 +44363,22,656,362,133,19,19 +44364,22,656,363,531,15,15 +44365,22,656,364,531,15,15 +44366,22,656,365,531,16,16 +44367,22,656,366,531,16,16 +44368,22,656,367,531,17,17 +44369,22,656,368,531,17,17 +44370,22,656,369,531,18,18 +44371,22,656,370,531,18,18 +44372,22,656,371,301,18,18 +44373,22,656,372,549,18,18 +44374,22,656,373,301,18,18 +44375,22,656,374,549,18,18 +44376,22,656,375,19,15,15 +44377,22,656,376,548,15,15 +44378,22,656,377,519,15,15 +44379,22,656,378,300,15,15 +44380,22,656,379,19,16,16 +44381,22,656,380,548,16,16 +44382,22,656,381,519,16,16 +44383,22,656,382,300,16,16 +44384,22,656,383,548,17,17 +44385,22,656,384,133,18,18 +44386,22,656,385,548,17,17 +44387,22,656,386,133,18,18 +44388,22,578,331,339,45,60 +44389,22,578,332,618,45,60 +44390,22,578,333,339,60,60 +44391,22,578,333,339,60,60 +44392,22,578,333,339,60,60 +44393,22,578,333,339,50,60 +44394,22,578,334,339,60,60 +44395,22,578,334,339,60,60 +44396,22,578,334,339,60,60 +44397,22,578,334,339,50,60 +44398,22,578,335,339,60,60 +44399,22,578,335,339,60,60 +44400,22,578,335,339,60,60 +44401,22,578,335,339,50,60 +44402,22,578,336,339,45,60 +44403,22,578,337,618,45,60 +44404,22,578,338,340,60,60 +44405,22,578,338,340,60,60 +44406,22,578,338,340,60,60 +44407,22,578,338,340,50,60 +44408,22,578,339,340,60,60 +44409,22,578,339,340,60,60 +44410,22,578,339,340,60,60 +44411,22,578,339,340,50,60 +44412,22,578,340,340,60,60 +44413,22,578,340,340,60,60 +44414,22,578,340,340,60,60 +44415,22,578,340,340,50,60 +44416,22,578,341,618,45,60 +44417,22,578,342,618,45,60 +44418,22,578,343,618,60,60 +44419,22,578,343,618,60,60 +44420,22,578,343,618,60,60 +44421,22,578,343,618,50,60 +44422,22,578,344,618,60,60 +44423,22,578,344,618,60,60 +44424,22,578,344,618,60,60 +44425,22,578,344,618,50,60 +44426,22,578,345,618,60,60 +44427,22,578,345,618,60,60 +44428,22,578,345,618,60,60 +44429,22,578,345,618,50,60 +44430,22,578,346,618,45,60 +44431,22,578,347,618,45,60 +44432,22,578,348,618,60,60 +44433,22,578,348,618,60,60 +44434,22,578,348,618,60,60 +44435,22,578,348,618,50,60 +44436,22,578,349,537,60,60 +44437,22,578,349,537,60,60 +44438,22,578,349,537,60,60 +44439,22,578,349,537,50,60 +44440,22,578,350,537,60,60 +44441,22,578,350,537,60,60 +44442,22,578,350,537,60,60 +44443,22,578,350,537,50,60 +44444,22,578,375,536,54,54 +44445,22,578,375,536,54,54 +44446,22,578,375,536,54,54 +44447,22,578,376,588,54,54 +44448,22,578,376,588,54,54 +44449,22,578,376,588,54,54 +44450,22,578,377,536,55,55 +44451,22,578,377,536,55,55 +44452,22,578,377,536,55,55 +44453,22,578,378,453,55,55 +44454,22,578,378,453,55,55 +44455,22,578,378,453,55,55 +44456,22,578,379,618,55,55 +44457,22,578,379,618,55,55 +44458,22,578,379,618,55,55 +44459,22,578,380,618,56,56 +44460,22,578,380,618,56,56 +44461,22,578,380,618,56,56 +44462,22,578,381,536,56,56 +44463,22,578,381,536,56,56 +44464,22,578,381,536,56,56 +44465,22,578,382,453,56,56 +44466,22,578,382,453,56,56 +44467,22,578,382,453,56,56 +44468,22,578,383,536,57,57 +44469,22,578,383,536,57,57 +44470,22,578,383,536,57,57 +44471,22,578,384,616,57,57 +44472,22,578,384,616,57,57 +44473,22,578,384,616,57,57 +44474,22,578,385,536,57,57 +44475,22,578,385,536,57,57 +44476,22,578,385,536,57,57 +44477,22,578,386,616,57,57 +44478,22,578,386,616,57,57 +44479,22,578,386,616,57,57 +44480,22,657,331,118,40,60 +44481,22,657,332,10016,40,60 +44482,22,657,333,118,50,70 +44483,22,657,334,118,50,70 +44484,22,657,335,118,50,70 +44485,22,657,336,118,40,60 +44486,22,657,337,550,40,60 +44487,22,657,338,119,50,70 +44488,22,657,339,119,50,70 +44489,22,657,340,119,50,70 +44490,22,657,341,10016,5,15 +44491,22,657,342,10016,5,15 +44492,22,657,343,10016,5,15 +44493,22,657,344,10016,5,15 +44494,22,657,345,10016,5,15 +44495,22,657,346,550,5,15 +44496,22,657,347,550,5,15 +44497,22,657,348,550,5,15 +44498,22,657,349,550,5,15 +44499,22,657,350,550,5,15 +44500,22,658,331,456,40,60 +44501,22,658,332,98,40,60 +44502,22,658,333,456,50,70 +44503,22,658,334,211,50,70 +44504,22,658,335,211,50,70 +44505,22,658,336,98,40,60 +44506,22,658,337,457,40,60 +44507,22,658,338,99,50,70 +44508,22,658,339,99,50,70 +44509,22,658,340,99,50,70 +44510,22,658,341,592,5,15 +44511,22,658,342,592,5,15 +44512,22,658,343,592,5,15 +44513,22,658,344,592,5,15 +44514,22,658,345,592,5,15 +44515,22,658,346,594,5,15 +44516,22,658,347,594,5,15 +44517,22,658,348,594,5,15 +44518,22,658,349,593,5,15 +44519,22,658,350,593,5,15 +44520,22,659,331,370,40,60 +44521,22,659,332,90,40,60 +44522,22,659,333,370,50,70 +44523,22,659,334,370,50,70 +44524,22,659,335,370,50,70 +44525,22,659,336,90,40,60 +44526,22,659,337,370,40,60 +44527,22,659,338,90,50,70 +44528,22,659,339,91,50,70 +44529,22,659,340,91,50,70 +44530,22,659,341,592,30,45 +44531,22,659,342,120,30,45 +44532,22,659,343,10016,35,45 +44533,22,659,344,592,35,45 +44534,22,659,345,592,35,45 +44535,22,659,346,593,35,45 +44536,22,659,347,222,35,45 +44537,22,659,348,550,35,45 +44538,22,659,349,121,35,45 +44539,22,659,350,121,35,45 +44540,22,579,351,505,64,64 +44541,22,579,352,510,64,64 +44542,22,579,353,20,65,65 +44543,22,579,354,39,65,65 +44544,22,579,355,517,65,65 +44545,22,579,356,517,66,66 +44546,22,579,357,42,65,65 +44547,22,579,358,42,66,66 +44548,22,579,359,505,67,67 +44549,22,579,360,510,67,67 +44550,22,579,361,505,67,67 +44551,22,579,362,510,67,67 +44552,22,579,363,531,56,56 +44553,22,579,364,531,56,56 +44554,22,579,365,531,57,57 +44555,22,579,366,206,57,57 +44556,22,579,367,531,58,58 +44557,22,579,368,531,58,58 +44558,22,579,369,531,59,59 +44559,22,579,370,40,59,59 +44560,22,579,371,169,59,59 +44561,22,579,372,518,59,59 +44562,22,579,373,169,59,59 +44563,22,579,374,518,59,59 +44564,22,579,375,505,56,56 +44565,22,579,376,510,56,56 +44566,22,579,377,20,57,57 +44567,22,579,378,39,57,57 +44568,22,579,379,517,57,57 +44569,22,579,380,517,58,58 +44570,22,579,381,42,57,57 +44571,22,579,382,42,58,58 +44572,22,579,383,505,59,59 +44573,22,579,384,510,59,59 +44574,22,579,385,505,59,59 +44575,22,579,386,510,59,59 +44576,22,580,351,20,64,64 +44577,22,580,352,42,64,64 +44578,22,580,353,505,65,65 +44579,22,580,354,39,65,65 +44580,22,580,355,517,65,65 +44581,22,580,356,517,66,66 +44582,22,580,357,510,65,65 +44583,22,580,358,510,66,66 +44584,22,580,359,20,67,67 +44585,22,580,360,42,67,67 +44586,22,580,361,20,67,67 +44587,22,580,362,42,67,67 +44588,22,581,351,536,64,64 +44589,22,581,352,533,64,64 +44590,22,581,353,454,63,63 +44591,22,581,354,193,63,63 +44592,22,581,355,533,63,63 +44593,22,581,356,533,64,64 +44594,22,581,357,538,63,63 +44595,22,581,358,538,63,63 +44596,22,581,359,536,65,65 +44597,22,581,360,538,65,65 +44598,22,581,361,536,65,65 +44599,22,581,362,538,65,65 +44600,22,581,363,531,54,54 +44601,22,581,364,531,54,54 +44602,22,581,365,531,55,55 +44603,22,581,366,531,55,55 +44604,22,581,367,531,56,56 +44605,22,581,368,531,56,56 +44606,22,581,369,469,57,57 +44607,22,581,370,537,57,57 +44608,22,581,371,531,57,57 +44609,22,581,372,539,57,57 +44610,22,581,373,531,57,57 +44611,22,581,374,539,57,57 +44612,22,581,375,536,54,54 +44613,22,581,376,533,54,54 +44614,22,581,377,454,55,55 +44615,22,581,378,193,55,55 +44616,22,581,379,533,55,55 +44617,22,581,380,533,56,56 +44618,22,581,381,538,55,55 +44619,22,581,382,538,55,55 +44620,22,581,383,536,57,57 +44621,22,581,384,538,57,57 +44622,22,581,385,536,57,57 +44623,22,581,386,538,57,57 +44624,22,582,351,548,62,62 +44625,22,582,352,541,62,62 +44626,22,582,353,548,63,63 +44627,22,582,354,288,63,63 +44628,22,582,355,548,64,64 +44629,22,582,356,544,63,63 +44630,22,582,357,288,65,65 +44631,22,582,358,544,65,65 +44632,22,582,359,548,65,65 +44633,22,582,360,541,64,64 +44634,22,582,361,548,65,65 +44635,22,582,362,541,64,64 +44636,22,582,363,531,54,54 +44637,22,582,364,531,54,54 +44638,22,582,365,511,55,55 +44639,22,582,366,513,55,55 +44640,22,582,367,515,55,55 +44641,22,582,368,531,56,56 +44642,22,582,369,531,57,57 +44643,22,582,370,545,57,57 +44644,22,582,371,289,57,57 +44645,22,582,372,549,57,57 +44646,22,582,373,289,57,57 +44647,22,582,374,549,57,57 +44648,22,582,331,118,40,60 +44649,22,582,332,10016,40,60 +44650,22,582,333,118,50,70 +44651,22,582,334,118,50,70 +44652,22,582,335,118,50,70 +44653,22,582,336,118,35,60 +44654,22,582,337,550,35,60 +44655,22,582,338,119,35,70 +44656,22,582,339,119,45,70 +44657,22,582,340,119,45,70 +44658,22,582,341,10016,45,60 +44659,22,582,342,183,45,60 +44660,22,582,343,10016,50,60 +44661,22,582,344,10016,50,60 +44662,22,582,345,10016,50,60 +44663,22,582,346,183,45,60 +44664,22,582,347,550,45,60 +44665,22,582,348,550,50,60 +44666,22,582,349,184,50,60 +44667,22,582,350,184,50,60 +44668,22,582,375,548,54,54 +44669,22,582,376,541,54,54 +44670,22,582,377,548,55,55 +44671,22,582,378,288,55,55 +44672,22,582,379,548,56,56 +44673,22,582,380,544,55,55 +44674,22,582,381,288,57,57 +44675,22,582,382,544,57,57 +44676,22,582,383,548,57,57 +44677,22,582,384,541,56,56 +44678,22,582,385,548,57,57 +44679,22,582,386,541,56,56 +44680,22,583,375,551,18,18 +44681,22,583,376,554,18,18 +44682,22,583,377,551,19,19 +44683,22,583,378,554,19,19 +44684,22,583,379,556,19,19 +44685,22,583,380,559,19,19 +44686,22,583,381,27,19,19 +44687,22,583,382,557,19,19 +44688,22,583,383,27,20,20 +44689,22,583,384,557,21,21 +44690,22,583,385,27,20,20 +44691,22,583,386,557,21,21 +44692,22,584,375,551,18,18 +44693,22,584,376,554,18,18 +44694,22,584,377,551,19,19 +44695,22,584,378,27,19,19 +44696,22,584,379,556,19,19 +44697,22,584,380,561,19,19 +44698,22,584,381,27,20,20 +44699,22,584,382,557,19,19 +44700,22,584,383,328,21,21 +44701,22,584,384,557,21,21 +44702,22,584,385,328,21,21 +44703,22,584,386,557,21,21 +44704,22,585,375,551,18,18 +44705,22,585,376,562,18,18 +44706,22,585,377,551,19,19 +44707,22,585,378,562,19,19 +44708,22,585,379,27,19,19 +44709,22,585,380,27,20,20 +44710,22,585,381,551,20,20 +44711,22,585,382,562,20,20 +44712,22,585,383,551,21,21 +44713,22,585,384,562,21,21 +44714,22,585,385,551,21,21 +44715,22,585,386,562,21,21 +44716,22,587,375,562,27,27 +44717,22,587,376,551,27,27 +44718,22,587,377,562,28,28 +44719,22,587,378,551,28,28 +44720,22,587,379,28,28,28 +44721,22,587,380,28,29,29 +44722,22,587,381,562,29,29 +44723,22,587,382,552,29,29 +44724,22,587,383,562,30,30 +44725,22,587,384,552,30,30 +44726,22,587,385,562,30,30 +44727,22,587,386,552,30,30 +44728,22,588,375,343,27,27 +44729,22,588,376,343,27,27 +44730,22,588,377,343,28,28 +44731,22,588,378,343,28,28 +44732,22,588,379,343,28,28 +44733,22,588,380,343,28,28 +44734,22,588,381,343,29,29 +44735,22,588,382,343,29,29 +44736,22,588,383,343,30,30 +44737,22,588,384,343,30,30 +44738,22,588,385,343,30,30 +44739,22,588,386,343,30,30 +44740,22,590,387,529,25,25 +44741,22,590,388,529,25,25 +44742,22,590,389,529,26,26 +44743,22,590,390,529,26,26 +44744,22,590,391,529,27,27 +44745,22,590,392,529,27,27 +44746,22,590,393,529,28,28 +44747,22,590,394,529,28,28 +44748,22,590,395,529,28,28 +44749,22,590,396,529,28,28 +44750,22,590,397,529,28,28 +44751,22,590,398,529,28,28 +44752,22,590,375,595,25,25 +44753,22,590,376,599,26,26 +44754,22,590,377,595,26,26 +44755,22,590,378,299,27,27 +44756,22,590,379,597,26,26 +44757,22,590,380,597,27,27 +44758,22,590,381,595,27,27 +44759,22,590,382,525,25,25 +44760,22,590,383,595,28,28 +44761,22,590,384,599,28,28 +44762,22,590,385,602,28,28 +44763,22,590,386,602,28,28 +44764,22,591,387,529,28,28 +44765,22,591,388,529,28,28 +44766,22,591,389,529,29,29 +44767,22,591,390,529,29,29 +44768,22,591,391,529,30,30 +44769,22,591,392,529,30,30 +44770,22,591,393,529,31,31 +44771,22,591,394,529,31,31 +44772,22,591,395,529,31,31 +44773,22,591,396,529,31,31 +44774,22,591,397,529,31,31 +44775,22,591,398,529,31,31 +44776,22,591,375,595,28,28 +44777,22,591,376,599,29,29 +44778,22,591,377,595,29,29 +44779,22,591,378,299,30,30 +44780,22,591,379,597,29,29 +44781,22,591,380,597,30,30 +44782,22,591,381,595,30,30 +44783,22,591,382,525,28,28 +44784,22,591,383,595,31,31 +44785,22,591,384,599,31,31 +44786,22,591,385,602,31,31 +44787,22,591,386,602,31,31 +44788,22,592,387,529,28,28 +44789,22,592,388,529,28,28 +44790,22,592,389,529,29,29 +44791,22,592,390,529,29,29 +44792,22,592,391,529,30,30 +44793,22,592,392,529,30,30 +44794,22,592,393,529,31,31 +44795,22,592,394,529,31,31 +44796,22,592,395,529,31,31 +44797,22,592,396,529,31,31 +44798,22,592,397,529,31,31 +44799,22,592,398,529,31,31 +44800,22,592,375,595,28,28 +44801,22,592,376,599,29,29 +44802,22,592,377,595,29,29 +44803,22,592,378,299,30,30 +44804,22,592,379,597,30,30 +44805,22,592,380,597,31,31 +44806,22,592,381,595,30,30 +44807,22,592,382,525,28,28 +44808,22,592,383,602,31,31 +44809,22,592,384,602,31,31 +44810,22,592,385,595,31,31 +44811,22,592,386,599,31,31 +44812,22,593,387,530,54,54 +44813,22,593,388,95,54,54 +44814,22,593,389,530,55,55 +44815,22,593,390,530,55,55 +44816,22,593,391,530,56,56 +44817,22,593,392,530,56,56 +44818,22,593,393,530,57,57 +44819,22,593,394,530,57,57 +44820,22,593,395,530,57,57 +44821,22,593,396,208,57,57 +44822,22,593,397,530,57,57 +44823,22,593,398,208,57,57 +44824,22,593,375,525,54,54 +44825,22,593,375,525,54,54 +44826,22,593,375,525,54,54 +44827,22,593,375,614,54,54 +44828,22,593,376,525,55,55 +44829,22,593,376,533,55,55 +44830,22,593,376,525,55,55 +44831,22,593,376,525,55,55 +44832,22,593,377,533,55,55 +44833,22,593,377,631,55,55 +44834,22,593,377,533,55,55 +44835,22,593,377,533,55,55 +44836,22,593,378,527,54,54 +44837,22,593,379,632,56,56 +44838,22,593,380,614,56,56 +44839,22,593,380,631,56,56 +44840,22,593,380,614,56,56 +44841,22,593,380,615,56,56 +44842,22,593,381,631,56,56 +44843,22,593,381,614,56,56 +44844,22,593,381,631,56,56 +44845,22,593,381,631,56,56 +44846,22,593,382,632,57,57 +44847,22,593,383,615,57,57 +44848,22,593,384,95,57,57 +44849,22,593,385,615,57,57 +44850,22,593,386,95,57,57 +44851,22,594,351,583,63,63 +44852,22,594,352,586,63,63 +44853,22,594,353,620,64,64 +44854,22,594,354,586,65,65 +44855,22,594,355,620,65,65 +44856,22,594,356,614,65,65 +44857,22,594,357,620,66,66 +44858,22,594,358,583,65,65 +44859,22,594,359,620,66,66 +44860,22,594,360,614,66,66 +44861,22,594,361,619,66,66 +44862,22,594,362,614,66,66 +44863,22,594,363,531,55,55 +44864,22,594,364,531,55,55 +44865,22,594,365,587,56,56 +44866,22,594,366,531,56,56 +44867,22,594,367,531,57,57 +44868,22,594,368,531,57,57 +44869,22,594,369,531,58,58 +44870,22,594,370,531,58,58 +44871,22,594,371,531,58,58 +44872,22,594,372,521,58,58 +44873,22,594,372,521,58,58 +44874,22,594,372,521,58,58 +44875,22,594,372,584,58,58 +44876,22,594,373,531,58,58 +44877,22,594,374,521,58,58 +44878,22,594,374,521,58,58 +44879,22,594,374,521,58,58 +44880,22,594,374,584,58,58 +44881,22,594,375,520,55,55 +44882,22,594,375,520,55,55 +44883,22,594,375,520,55,55 +44884,22,594,375,583,55,55 +44885,22,594,376,586,55,55 +44886,22,594,377,620,56,56 +44887,22,594,378,586,57,57 +44888,22,594,379,620,57,57 +44889,22,594,380,520,57,57 +44890,22,594,380,520,57,57 +44891,22,594,380,520,57,57 +44892,22,594,380,614,57,57 +44893,22,594,381,620,58,58 +44894,22,594,382,520,58,58 +44895,22,594,382,520,58,58 +44896,22,594,382,520,58,58 +44897,22,594,382,583,57,57 +44898,22,594,383,586,58,58 +44899,22,594,383,586,58,58 +44900,22,594,383,586,58,58 +44901,22,594,383,620,58,58 +44902,22,594,384,621,58,58 +44903,22,594,384,621,58,58 +44904,22,594,384,621,58,58 +44905,22,594,384,614,58,58 +44906,22,594,385,586,58,58 +44907,22,594,385,586,58,58 +44908,22,594,385,586,58,58 +44909,22,594,385,620,58,58 +44910,22,594,386,621,58,58 +44911,22,594,386,621,58,58 +44912,22,594,386,621,58,58 +44913,22,594,386,614,58,58 +44914,22,595,351,520,63,63 +44915,22,595,351,520,63,63 +44916,22,595,351,520,63,63 +44917,22,595,351,583,63,63 +44918,22,595,352,586,63,63 +44919,22,595,353,620,64,64 +44920,22,595,354,586,65,65 +44921,22,595,355,620,65,65 +44922,22,595,356,520,65,65 +44923,22,595,356,520,65,65 +44924,22,595,356,520,65,65 +44925,22,595,356,614,65,65 +44926,22,595,357,620,66,66 +44927,22,595,358,520,66,66 +44928,22,595,358,520,66,66 +44929,22,595,358,520,66,66 +44930,22,595,358,583,65,65 +44931,22,595,359,586,66,66 +44932,22,595,359,586,66,66 +44933,22,595,359,586,66,66 +44934,22,595,359,614,66,66 +44935,22,595,360,621,66,66 +44936,22,595,361,586,66,66 +44937,22,595,361,586,66,66 +44938,22,595,361,586,66,66 +44939,22,595,361,614,66,66 +44940,22,595,362,621,66,66 +44941,22,595,363,531,55,55 +44942,22,595,364,531,55,55 +44943,22,595,365,587,56,56 +44944,22,595,366,531,56,56 +44945,22,595,367,531,57,57 +44946,22,595,368,531,57,57 +44947,22,595,369,531,57,57 +44948,22,595,370,531,57,57 +44949,22,595,371,531,57,57 +44950,22,595,372,521,57,57 +44951,22,595,372,521,57,57 +44952,22,595,372,521,57,57 +44953,22,595,372,584,57,57 +44954,22,595,373,531,57,57 +44955,22,595,374,521,57,57 +44956,22,595,374,521,57,57 +44957,22,595,374,521,57,57 +44958,22,595,374,584,57,57 +44959,22,595,331,147,40,60 +44960,22,595,332,10016,40,60 +44961,22,595,333,147,50,70 +44962,22,595,334,147,50,70 +44963,22,595,335,147,50,70 +44964,22,595,336,147,40,60 +44965,22,595,337,550,40,60 +44966,22,595,338,148,50,70 +44967,22,595,339,148,50,70 +44968,22,595,340,149,50,70 +44969,22,595,341,10016,45,60 +44970,22,595,342,10016,45,60 +44971,22,595,343,10016,50,60 +44972,22,595,344,10016,50,60 +44973,22,595,345,10016,50,60 +44974,22,595,346,550,45,60 +44975,22,595,347,550,45,60 +44976,22,595,348,550,50,60 +44977,22,595,349,550,50,60 +44978,22,595,350,550,50,60 +44979,22,595,375,520,55,55 +44980,22,595,375,520,55,55 +44981,22,595,375,520,55,55 +44982,22,595,375,583,55,55 +44983,22,595,376,586,55,55 +44984,22,595,377,620,56,56 +44985,22,595,378,586,57,57 +44986,22,595,379,620,57,57 +44987,22,595,380,520,57,57 +44988,22,595,380,520,57,57 +44989,22,595,380,520,57,57 +44990,22,595,380,614,57,57 +44991,22,595,381,620,58,58 +44992,22,595,382,520,58,58 +44993,22,595,382,520,58,58 +44994,22,595,382,520,58,58 +44995,22,595,382,583,57,57 +44996,22,595,383,586,58,58 +44997,22,595,383,586,58,58 +44998,22,595,383,586,58,58 +44999,22,595,383,614,58,58 +45000,22,595,384,621,58,58 +45001,22,595,385,586,58,58 +45002,22,595,385,586,58,58 +45003,22,595,385,586,58,58 +45004,22,595,385,614,58,58 +45005,22,595,386,621,58,58 +45006,22,596,375,623,55,55 +45007,22,596,376,620,55,55 +45008,22,596,377,623,56,56 +45009,22,596,378,621,56,56 +45010,22,596,379,623,57,57 +45011,22,596,380,621,57,57 +45012,22,596,381,623,58,58 +45013,22,596,382,621,58,58 +45014,22,596,383,623,58,58 +45015,22,596,384,621,58,58 +45016,22,596,385,623,58,58 +45017,22,596,386,621,58,58 +45018,22,597,375,623,55,55 +45019,22,597,376,623,55,55 +45020,22,597,377,623,56,56 +45021,22,597,378,623,56,56 +45022,22,597,379,623,57,57 +45023,22,597,380,623,57,57 +45024,22,597,381,623,58,58 +45025,22,597,382,623,58,58 +45026,22,597,383,623,58,58 +45027,22,597,384,623,58,58 +45028,22,597,385,623,58,58 +45029,22,597,386,623,58,58 +45030,22,660,387,530,47,47 +45031,22,660,388,530,47,47 +45032,22,660,389,530,48,48 +45033,22,660,390,530,48,48 +45034,22,660,391,530,49,49 +45035,22,660,392,530,49,49 +45036,22,660,393,530,50,50 +45037,22,660,394,530,50,50 +45038,22,660,395,530,50,50 +45039,22,660,396,530,50,50 +45040,22,660,397,530,50,50 +45041,22,660,398,530,50,50 +45042,22,660,375,525,47,47 +45043,22,660,376,525,47,47 +45044,22,660,377,525,48,48 +45045,22,660,378,525,48,48 +45046,22,660,379,525,49,49 +45047,22,660,380,525,49,49 +45048,22,660,381,525,50,50 +45049,22,660,382,525,50,50 +45050,22,660,383,525,50,50 +45051,22,660,384,525,50,50 +45052,22,660,385,525,50,50 +45053,22,660,386,525,50,50 +45054,22,661,331,60,40,55 +45055,22,661,332,10016,40,55 +45056,22,661,333,60,50,55 +45057,22,661,334,60,50,55 +45058,22,661,335,60,50,55 +45059,22,661,336,61,40,60 +45060,22,661,337,550,40,60 +45061,22,661,338,61,50,60 +45062,22,661,339,62,50,60 +45063,22,661,340,62,50,60 +45064,22,661,341,10016,35,50 +45065,22,661,342,183,35,50 +45066,22,661,343,10016,40,50 +45067,22,661,344,10016,40,50 +45068,22,661,345,10016,40,50 +45069,22,661,346,183,35,50 +45070,22,661,347,550,35,50 +45071,22,661,348,550,40,50 +45072,22,661,349,184,40,50 +45073,22,661,350,184,40,50 +45074,22,661,375,354,47,47 +45075,22,661,376,354,47,47 +45076,22,661,377,354,48,48 +45077,22,661,378,623,48,48 +45078,22,661,379,354,49,49 +45079,22,661,380,623,49,49 +45080,22,661,381,354,50,50 +45081,22,661,382,623,50,50 +45082,22,661,383,354,50,50 +45083,22,661,384,623,50,50 +45084,22,661,385,354,50,50 +45085,22,661,386,623,50,50 +45086,22,662,351,548,52,52 +45087,22,662,352,548,52,52 +45088,22,662,353,548,53,53 +45089,22,662,354,315,53,53 +45090,22,662,355,548,54,54 +45091,22,662,356,315,54,54 +45092,22,662,357,548,55,55 +45093,22,662,358,315,55,55 +45094,22,662,359,548,55,55 +45095,22,662,360,315,55,55 +45096,22,662,361,548,55,55 +45097,22,662,362,315,55,55 +45098,22,662,363,531,47,47 +45099,22,662,364,531,47,47 +45100,22,662,365,531,48,48 +45101,22,662,366,531,48,48 +45102,22,662,367,206,49,49 +45103,22,662,368,531,49,49 +45104,22,662,369,531,50,50 +45105,22,662,370,531,50,50 +45106,22,662,371,549,50,50 +45107,22,662,372,407,50,50 +45108,22,662,373,549,50,50 +45109,22,662,374,407,50,50 +45110,22,662,375,548,47,47 +45111,22,662,376,548,47,47 +45112,22,662,377,548,48,48 +45113,22,662,378,315,48,48 +45114,22,662,379,548,49,49 +45115,22,662,380,315,49,49 +45116,22,662,381,548,50,50 +45117,22,662,382,315,50,50 +45118,22,662,383,548,50,50 +45119,22,662,384,315,50,50 +45120,22,662,385,548,50,50 +45121,22,662,386,315,50,50 +45122,22,663,351,520,52,52 +45123,22,663,352,520,52,52 +45124,22,663,353,520,53,53 +45125,22,663,354,520,53,53 +45126,22,663,355,520,54,54 +45127,22,663,356,334,54,54 +45128,22,663,357,520,55,55 +45129,22,663,358,334,55,55 +45130,22,663,359,520,55,55 +45131,22,663,360,334,55,55 +45132,22,663,361,520,55,55 +45133,22,663,362,334,55,55 +45134,22,663,363,531,47,47 +45135,22,663,364,531,47,47 +45136,22,663,365,531,48,48 +45137,22,663,366,531,48,48 +45138,22,663,367,206,49,49 +45139,22,663,368,531,49,49 +45140,22,663,369,531,50,50 +45141,22,663,370,531,50,50 +45142,22,663,371,531,50,50 +45143,22,663,372,521,50,50 +45144,22,663,373,531,50,50 +45145,22,663,374,521,50,50 +45146,22,663,331,60,40,60 +45147,22,663,332,10016,40,60 +45148,22,663,333,60,50,70 +45149,22,663,334,60,50,70 +45150,22,663,335,60,50,70 +45151,22,663,336,61,40,60 +45152,22,663,337,550,40,60 +45153,22,663,338,61,50,70 +45154,22,663,339,186,50,70 +45155,22,663,340,186,50,70 +45156,22,663,341,10016,35,50 +45157,22,663,342,418,35,50 +45158,22,663,343,10016,40,50 +45159,22,663,344,10016,40,50 +45160,22,663,345,10016,40,50 +45161,22,663,346,418,35,50 +45162,22,663,347,550,35,50 +45163,22,663,348,419,40,50 +45164,22,663,349,419,40,50 +45165,22,663,350,419,40,50 +45166,22,663,375,520,47,47 +45167,22,663,376,520,47,47 +45168,22,663,377,520,48,48 +45169,22,663,378,520,48,48 +45170,22,663,379,520,49,49 +45171,22,663,380,334,49,49 +45172,22,663,381,520,50,50 +45173,22,663,382,334,50,50 +45174,22,663,383,520,50,50 +45175,22,663,384,334,50,50 +45176,22,663,385,520,50,50 +45177,22,663,386,334,50,50 +45178,22,664,387,530,41,41 +45179,22,664,388,95,41,41 +45180,22,664,389,530,42,42 +45181,22,664,390,530,42,42 +45182,22,664,391,530,43,43 +45183,22,664,392,530,43,43 +45184,22,664,393,530,44,44 +45185,22,664,394,530,44,44 +45186,22,664,395,530,44,44 +45187,22,664,396,530,44,44 +45188,22,664,397,530,44,44 +45189,22,664,398,530,44,44 +45190,22,664,375,525,41,41 +45191,22,664,376,525,41,41 +45192,22,664,377,525,42,42 +45193,22,664,378,525,42,42 +45194,22,664,379,525,43,43 +45195,22,664,380,95,43,43 +45196,22,664,381,525,44,44 +45197,22,664,382,95,44,44 +45198,22,664,383,525,44,44 +45199,22,664,384,95,44,44 +45200,22,664,385,525,44,44 +45201,22,664,386,95,44,44 +45202,22,665,387,530,47,47 +45203,22,665,388,95,47,47 +45204,22,665,389,530,48,48 +45205,22,665,390,530,48,48 +45206,22,665,391,530,49,49 +45207,22,665,392,530,49,49 +45208,22,665,393,530,50,50 +45209,22,665,394,530,50,50 +45210,22,665,395,530,50,50 +45211,22,665,396,530,50,50 +45212,22,665,397,530,50,50 +45213,22,665,398,530,50,50 +45214,22,665,331,60,40,60 +45215,22,665,332,10016,40,60 +45216,22,665,333,60,50,70 +45217,22,665,334,60,50,70 +45218,22,665,335,60,50,70 +45219,22,665,336,61,40,60 +45220,22,665,337,550,40,60 +45221,22,665,338,61,50,70 +45222,22,665,339,62,50,70 +45223,22,665,340,62,50,70 +45224,22,665,341,10016,35,50 +45225,22,665,342,183,35,50 +45226,22,665,343,10016,40,50 +45227,22,665,344,10016,40,50 +45228,22,665,345,10016,40,50 +45229,22,665,346,183,35,50 +45230,22,665,347,550,35,50 +45231,22,665,348,550,40,50 +45232,22,665,349,184,40,50 +45233,22,665,350,184,40,50 +45234,22,665,375,525,47,47 +45235,22,665,376,525,47,47 +45236,22,665,377,525,48,48 +45237,22,665,378,525,48,48 +45238,22,665,379,525,49,49 +45239,22,665,380,95,49,49 +45240,22,665,381,525,50,50 +45241,22,665,382,95,50,50 +45242,22,665,383,525,50,50 +45243,22,665,384,95,50,50 +45244,22,665,385,525,50,50 +45245,22,665,386,95,50,50 +45246,22,666,351,533,52,52 +45247,22,666,352,533,52,52 +45248,22,666,353,533,53,53 +45249,22,666,354,538,53,53 +45250,22,666,355,533,54,54 +45251,22,666,356,538,54,54 +45252,22,666,357,533,55,55 +45253,22,666,358,538,55,55 +45254,22,666,359,533,55,55 +45255,22,666,360,538,55,55 +45256,22,666,361,533,55,55 +45257,22,666,362,538,55,55 +45258,22,666,363,531,47,47 +45259,22,666,364,531,47,47 +45260,22,666,365,531,48,48 +45261,22,666,366,531,48,48 +45262,22,666,367,531,49,49 +45263,22,666,368,531,49,49 +45264,22,666,369,531,50,50 +45265,22,666,370,531,50,50 +45266,22,666,371,531,50,50 +45267,22,666,372,539,50,50 +45268,22,666,373,531,50,50 +45269,22,666,374,539,50,50 +45270,22,666,375,533,47,47 +45271,22,666,376,533,47,47 +45272,22,666,377,533,48,48 +45273,22,666,378,538,48,48 +45274,22,666,379,533,49,49 +45275,22,666,380,538,49,49 +45276,22,666,381,533,50,50 +45277,22,666,382,538,50,50 +45278,22,666,383,533,50,50 +45279,22,666,384,538,50,50 +45280,22,666,385,533,50,50 +45281,22,666,386,538,50,50 +45282,22,667,387,530,47,47 +45283,22,667,388,95,47,47 +45284,22,667,389,530,48,48 +45285,22,667,390,530,48,48 +45286,22,667,391,530,49,49 +45287,22,667,392,530,49,49 +45288,22,667,393,530,50,50 +45289,22,667,394,530,50,50 +45290,22,667,395,530,50,50 +45291,22,667,396,530,50,50 +45292,22,667,397,530,50,50 +45293,22,667,398,530,50,50 +45294,22,667,375,621,47,47 +45295,22,667,376,621,47,47 +45296,22,667,377,621,48,48 +45297,22,667,378,621,48,48 +45298,22,667,379,621,49,49 +45299,22,667,380,634,49,49 +45300,22,667,381,621,50,50 +45301,22,667,382,634,50,50 +45302,22,667,383,621,50,50 +45303,22,667,384,634,50,50 +45304,22,667,385,621,50,50 +45305,22,667,386,634,50,50 +45306,22,668,331,60,40,60 +45307,22,668,332,10016,40,60 +45308,22,668,333,60,50,70 +45309,22,668,334,60,50,70 +45310,22,668,335,60,50,70 +45311,22,668,336,61,40,60 +45312,22,668,337,550,40,60 +45313,22,668,338,61,50,70 +45314,22,668,339,62,50,70 +45315,22,668,340,62,50,70 +45316,22,668,341,10016,35,50 +45317,22,668,342,183,35,50 +45318,22,668,343,10016,40,50 +45319,22,668,344,10016,40,50 +45320,22,668,345,10016,40,50 +45321,22,668,346,183,35,50 +45322,22,668,347,550,35,50 +45323,22,668,348,550,40,50 +45324,22,668,349,184,40,50 +45325,22,668,350,184,40,50 +45326,22,668,375,354,47,47 +45327,22,668,376,354,47,47 +45328,22,668,377,354,48,48 +45329,22,668,378,623,48,48 +45330,22,668,379,354,49,49 +45331,22,668,380,623,49,49 +45332,22,668,381,354,50,50 +45333,22,668,382,623,50,50 +45334,22,668,383,354,50,50 +45335,22,668,384,623,50,50 +45336,22,668,385,354,50,50 +45337,22,668,386,623,50,50 +45338,22,669,351,520,52,52 +45339,22,669,352,520,52,52 +45340,22,669,353,520,53,53 +45341,22,669,354,520,53,53 +45342,22,669,355,520,54,54 +45343,22,669,356,334,54,54 +45344,22,669,357,520,55,55 +45345,22,669,358,334,55,55 +45346,22,669,359,520,55,55 +45347,22,669,360,334,55,55 +45348,22,669,361,520,55,55 +45349,22,669,362,334,55,55 +45350,22,669,363,531,47,47 +45351,22,669,364,531,47,47 +45352,22,669,365,531,48,48 +45353,22,669,366,531,48,48 +45354,22,669,367,206,49,49 +45355,22,669,368,531,49,49 +45356,22,669,369,531,50,50 +45357,22,669,370,531,50,50 +45358,22,669,371,531,50,50 +45359,22,669,372,521,50,50 +45360,22,669,373,531,50,50 +45361,22,669,374,521,50,50 +45362,22,669,331,60,40,60 +45363,22,669,332,10016,40,60 +45364,22,669,333,60,50,70 +45365,22,669,334,60,50,70 +45366,22,669,335,60,50,70 +45367,22,669,336,61,40,60 +45368,22,669,337,550,40,60 +45369,22,669,338,61,50,70 +45370,22,669,339,186,50,70 +45371,22,669,340,186,50,70 +45372,22,669,341,10016,35,50 +45373,22,669,342,418,35,50 +45374,22,669,343,10016,40,50 +45375,22,669,344,10016,40,50 +45376,22,669,345,10016,40,50 +45377,22,669,346,418,35,50 +45378,22,669,347,550,35,50 +45379,22,669,348,419,40,50 +45380,22,669,349,419,40,50 +45381,22,669,350,419,40,50 +45382,22,669,375,520,47,47 +45383,22,669,376,520,47,47 +45384,22,669,377,520,48,48 +45385,22,669,378,520,48,48 +45386,22,669,379,520,49,49 +45387,22,669,380,334,49,49 +45388,22,669,381,520,50,50 +45389,22,669,382,334,50,50 +45390,22,669,383,520,50,50 +45391,22,669,384,334,50,50 +45392,22,669,385,520,50,50 +45393,22,669,386,334,50,50 +45394,22,670,387,530,47,47 +45395,22,670,388,95,47,47 +45396,22,670,389,530,48,48 +45397,22,670,390,530,48,48 +45398,22,670,391,530,49,49 +45399,22,670,392,530,49,49 +45400,22,670,393,530,50,50 +45401,22,670,394,530,50,50 +45402,22,670,395,530,50,50 +45403,22,670,396,530,50,50 +45404,22,670,397,530,50,50 +45405,22,670,398,530,50,50 +45406,22,670,375,621,47,47 +45407,22,670,376,621,47,47 +45408,22,670,377,621,48,48 +45409,22,670,378,621,48,48 +45410,22,670,379,621,49,49 +45411,22,670,380,634,49,49 +45412,22,670,381,621,50,50 +45413,22,670,382,634,50,50 +45414,22,670,383,621,50,50 +45415,22,670,384,634,50,50 +45416,22,670,385,621,50,50 +45417,22,670,386,634,50,50 +45418,22,614,351,114,49,49 +45419,22,614,352,279,50,50 +45420,22,614,353,114,50,50 +45421,22,614,354,337,50,50 +45422,22,614,355,338,51,51 +45423,22,614,356,35,50,50 +45424,22,614,357,583,50,50 +45425,22,614,358,35,52,52 +45426,22,614,359,583,52,52 +45427,22,614,360,225,49,49 +45428,22,614,361,583,52,52 +45429,22,614,362,225,49,49 +45430,22,614,363,531,44,44 +45431,22,614,364,531,44,44 +45432,22,614,365,531,45,45 +45433,22,614,366,531,45,45 +45434,22,614,367,531,46,46 +45435,22,614,368,531,46,46 +45436,22,614,369,531,47,47 +45437,22,614,370,36,47,47 +45438,22,614,371,584,47,47 +45439,22,614,372,465,47,47 +45440,22,614,373,584,47,47 +45441,22,614,374,465,47,47 +45442,22,614,375,114,44,44 +45443,22,614,376,279,45,45 +45444,22,614,377,114,45,45 +45445,22,614,378,337,45,45 +45446,22,614,379,338,46,46 +45447,22,614,380,35,45,45 +45448,22,614,381,583,45,45 +45449,22,614,382,35,47,47 +45450,22,614,383,583,47,47 +45451,22,614,384,225,44,44 +45452,22,614,385,583,47,47 +45453,22,614,386,225,44,44 +45454,22,615,387,530,44,44 +45455,22,615,388,530,44,44 +45456,22,615,389,530,45,45 +45457,22,615,390,530,45,45 +45458,22,615,391,530,46,46 +45459,22,615,392,530,46,46 +45460,22,615,393,530,47,47 +45461,22,615,394,530,47,47 +45462,22,615,395,530,47,47 +45463,22,615,396,530,47,47 +45464,22,615,397,530,47,47 +45465,22,615,398,530,47,47 +45466,22,615,331,60,40,60 +45467,22,615,332,10016,40,60 +45468,22,615,333,60,50,70 +45469,22,615,334,60,50,70 +45470,22,615,335,60,50,70 +45471,22,615,336,61,40,60 +45472,22,615,337,550,40,60 +45473,22,615,338,61,50,70 +45474,22,615,339,62,50,70 +45475,22,615,340,62,50,70 +45476,22,615,341,10016,35,50 +45477,22,615,342,86,35,50 +45478,22,615,343,10016,40,50 +45479,22,615,344,10016,40,50 +45480,22,615,345,10016,40,50 +45481,22,615,346,86,35,50 +45482,22,615,347,550,35,50 +45483,22,615,348,87,40,50 +45484,22,615,349,87,40,50 +45485,22,615,350,87,40,50 +45486,22,615,375,215,44,44 +45487,22,615,376,221,44,44 +45488,22,615,377,583,45,45 +45489,22,615,378,35,44,44 +45490,22,615,379,337,46,46 +45491,22,615,380,338,46,46 +45492,22,615,381,35,46,46 +45493,22,615,382,583,47,47 +45494,22,615,383,221,46,46 +45495,22,615,384,225,47,47 +45496,22,615,385,221,46,46 +45497,22,615,386,225,47,47 +45498,22,616,351,221,49,49 +45499,22,616,352,35,50,50 +45500,22,616,353,221,51,51 +45501,22,616,354,132,50,50 +45502,22,616,355,337,51,51 +45503,22,616,356,338,51,51 +45504,22,616,357,132,52,52 +45505,22,616,358,375,50,50 +45506,22,616,359,225,49,49 +45507,22,616,360,375,52,52 +45508,22,616,361,225,49,49 +45509,22,616,362,375,52,52 +45510,22,616,363,531,44,44 +45511,22,616,364,531,44,44 +45512,22,616,365,531,45,45 +45513,22,616,366,531,45,45 +45514,22,616,367,531,46,46 +45515,22,616,368,531,46,46 +45516,22,616,369,531,47,47 +45517,22,616,370,473,47,47 +45518,22,616,371,36,47,47 +45519,22,616,372,376,47,47 +45520,22,616,373,36,47,47 +45521,22,616,374,376,47,47 +45522,22,616,375,221,44,44 +45523,22,616,376,35,45,45 +45524,22,616,377,221,46,46 +45525,22,616,378,132,45,45 +45526,22,616,379,337,46,46 +45527,22,616,380,338,46,46 +45528,22,616,381,132,47,47 +45529,22,616,382,375,45,45 +45530,22,616,383,225,44,44 +45531,22,616,384,375,47,47 +45532,22,616,385,225,44,44 +45533,22,616,386,375,47,47 +45534,22,617,351,221,49,49 +45535,22,617,352,35,50,50 +45536,22,617,353,221,51,51 +45537,22,617,354,132,50,50 +45538,22,617,355,337,51,51 +45539,22,617,356,338,51,51 +45540,22,617,357,132,52,52 +45541,22,617,358,375,50,50 +45542,22,617,359,225,49,49 +45543,22,617,360,375,52,52 +45544,22,617,361,225,49,49 +45545,22,617,362,375,52,52 +45546,22,617,363,531,44,44 +45547,22,617,364,531,44,44 +45548,22,617,365,531,45,45 +45549,22,617,366,531,45,45 +45550,22,617,367,531,46,46 +45551,22,617,368,531,46,46 +45552,22,617,369,531,47,47 +45553,22,617,370,473,47,47 +45554,22,617,371,36,47,47 +45555,22,617,372,376,47,47 +45556,22,617,373,36,47,47 +45557,22,617,374,376,47,47 +45558,22,617,375,221,44,44 +45559,22,617,376,35,45,45 +45560,22,617,377,221,46,46 +45561,22,617,378,132,45,45 +45562,22,617,379,337,46,46 +45563,22,617,380,338,46,46 +45564,22,617,381,132,47,47 +45565,22,617,382,375,45,45 +45566,22,617,383,225,44,44 +45567,22,617,384,375,47,47 +45568,22,617,385,225,44,44 +45569,22,617,386,375,47,47 +45570,22,671,331,88,40,60 +45571,22,671,332,88,40,60 +45572,22,671,333,88,50,70 +45573,22,671,334,88,50,70 +45574,22,671,335,88,50,70 +45575,22,671,336,88,40,60 +45576,22,671,337,88,40,60 +45577,22,671,338,89,50,70 +45578,22,671,339,89,50,70 +45579,22,671,340,89,50,70 +45580,22,671,341,88,5,15 +45581,22,671,342,88,5,15 +45582,22,671,343,88,5,15 +45583,22,671,344,88,5,15 +45584,22,671,345,88,5,15 +45585,22,671,346,88,5,20 +45586,22,671,347,88,5,20 +45587,22,671,348,88,5,20 +45588,22,671,349,89,5,20 +45589,22,671,350,89,5,20 +45590,22,671,375,19,14,14 +45591,22,671,376,41,14,14 +45592,22,671,377,19,15,15 +45593,22,671,378,41,15,15 +45594,22,671,379,19,16,16 +45595,22,671,380,41,16,16 +45596,22,671,381,88,15,15 +45597,22,671,382,88,17,17 +45598,22,671,383,19,17,17 +45599,22,671,384,41,17,17 +45600,22,671,385,19,17,17 +45601,22,671,386,41,17,17 +45602,22,672,331,88,40,60 +45603,22,672,332,88,40,60 +45604,22,672,333,88,50,70 +45605,22,672,334,88,50,70 +45606,22,672,335,88,50,70 +45607,22,672,336,88,60,60 +45608,22,672,337,88,60,60 +45609,22,672,338,89,70,70 +45610,22,672,339,89,70,70 +45611,22,672,340,89,70,70 +45612,22,672,341,88,5,15 +45613,22,672,342,88,5,15 +45614,22,672,343,88,5,15 +45615,22,672,344,88,5,15 +45616,22,672,345,88,5,15 +45617,22,672,346,88,5,20 +45618,22,672,347,88,5,20 +45619,22,672,348,88,5,20 +45620,22,672,349,89,5,20 +45621,22,672,350,89,5,20 +45622,22,672,375,19,14,14 +45623,22,672,376,41,14,14 +45624,22,672,377,19,15,15 +45625,22,672,378,41,15,15 +45626,22,672,379,19,16,16 +45627,22,672,380,41,16,16 +45628,22,672,381,88,15,15 +45629,22,672,382,88,17,17 +45630,22,672,383,19,17,17 +45631,22,672,384,41,17,17 +45632,22,672,385,19,17,17 +45633,22,672,386,41,17,17 +45634,22,618,363,531,56,56 +45635,22,618,364,531,56,56 +45636,22,618,365,531,57,57 +45637,22,618,366,531,57,57 +45638,22,618,367,531,58,58 +45639,22,618,368,531,58,58 +45640,22,618,369,531,59,59 +45641,22,618,370,462,59,59 +45642,22,618,371,601,59,59 +45643,22,618,372,508,59,59 +45644,22,618,373,601,59,59 +45645,22,618,374,508,59,59 +45646,22,618,331,456,35,55 +45647,22,618,332,116,35,55 +45648,22,618,333,116,35,55 +45649,22,618,334,456,35,55 +45650,22,618,335,456,35,55 +45651,22,618,336,117,35,60 +45652,22,618,337,211,35,60 +45653,22,618,338,457,35,70 +45654,22,618,339,230,45,70 +45655,22,618,340,230,45,70 +45656,22,618,341,592,45,60 +45657,22,618,342,592,45,60 +45658,22,618,343,592,50,60 +45659,22,618,344,592,50,60 +45660,22,618,345,592,50,60 +45661,22,618,346,594,45,60 +45662,22,618,347,594,45,60 +45663,22,618,348,594,50,60 +45664,22,618,349,593,50,60 +45665,22,618,350,593,50,60 +45666,22,618,375,505,56,56 +45667,22,618,376,507,56,56 +45668,22,618,377,110,57,57 +45669,22,618,378,82,57,57 +45670,22,618,379,600,57,57 +45671,22,618,380,560,57,57 +45672,22,618,381,82,59,59 +45673,22,618,382,600,59,59 +45674,22,618,383,560,58,58 +45675,22,618,384,110,58,58 +45676,22,618,385,560,58,58 +45677,22,618,386,110,58,58 +45678,22,619,331,170,40,60 +45679,22,619,332,223,40,60 +45680,22,619,333,170,50,70 +45681,22,619,334,170,50,70 +45682,22,619,335,170,50,70 +45683,22,619,336,223,40,60 +45684,22,619,337,170,40,60 +45685,22,619,338,171,50,70 +45686,22,619,339,224,50,70 +45687,22,619,340,224,50,70 +45688,22,619,341,592,25,40 +45689,22,619,342,458,25,40 +45690,22,619,342,458,25,40 +45691,22,619,342,458,25,40 +45692,22,619,342,363,25,40 +45693,22,619,343,223,30,40 +45694,22,619,344,592,30,40 +45695,22,619,345,592,30,40 +45696,22,619,346,593,25,40 +45697,22,619,346,593,25,40 +45698,22,619,346,593,25,40 +45699,22,619,346,320,25,40 +45700,22,619,347,320,25,40 +45701,22,619,347,320,25,40 +45702,22,619,347,320,25,40 +45703,22,619,347,364,25,40 +45704,22,619,348,226,30,40 +45705,22,619,348,226,30,40 +45706,22,619,348,226,30,40 +45707,22,619,348,365,30,40 +45708,22,619,349,321,30,40 +45709,22,619,350,321,30,40 +45710,22,673,331,60,40,60 +45711,22,673,332,10016,40,60 +45712,22,673,333,60,50,70 +45713,22,673,334,60,50,70 +45714,22,673,335,60,50,70 +45715,22,673,336,61,40,60 +45716,22,673,337,550,40,60 +45717,22,673,338,61,50,70 +45718,22,673,339,186,50,70 +45719,22,673,340,186,50,70 +45720,22,673,341,10016,5,15 +45721,22,673,342,298,5,15 +45722,22,673,343,10016,5,15 +45723,22,673,344,10016,5,15 +45724,22,673,345,10016,5,15 +45725,22,673,346,550,5,15 +45726,22,673,347,183,5,15 +45727,22,673,348,550,5,15 +45728,22,673,349,184,5,15 +45729,22,673,350,184,5,15 +45730,22,674,363,531,4,4 +45731,22,674,364,531,4,4 +45732,22,674,365,531,5,5 +45733,22,674,366,206,5,5 +45734,22,674,367,531,6,6 +45735,22,674,368,531,6,6 +45736,22,674,369,531,7,7 +45737,22,674,370,531,7,7 +45738,22,674,371,531,7,7 +45739,22,674,372,531,7,7 +45740,22,674,373,531,7,7 +45741,22,674,374,531,7,7 +45742,22,674,331,60,40,60 +45743,22,674,332,10016,40,60 +45744,22,674,333,60,50,70 +45745,22,674,334,60,50,70 +45746,22,674,335,60,50,70 +45747,22,674,336,61,40,60 +45748,22,674,337,550,40,60 +45749,22,674,338,61,50,70 +45750,22,674,339,186,50,70 +45751,22,674,340,186,50,70 +45752,22,674,341,10016,5,15 +45753,22,674,342,298,5,15 +45754,22,674,343,10016,5,15 +45755,22,674,344,10016,5,15 +45756,22,674,345,10016,5,15 +45757,22,674,346,550,5,15 +45758,22,674,347,183,5,15 +45759,22,674,348,550,5,15 +45760,22,674,349,184,5,15 +45761,22,674,350,184,5,15 +45762,22,674,375,506,4,4 +45763,22,674,376,298,5,5 +45764,22,674,377,504,5,5 +45765,22,674,378,179,5,5 +45766,22,674,379,506,5,5 +45767,22,674,380,54,5,5 +45768,22,674,381,506,6,6 +45769,22,674,382,519,7,7 +45770,22,674,383,447,5,5 +45771,22,674,384,506,7,7 +45772,22,674,385,447,7,7 +45773,22,674,386,506,7,7 +45774,22,675,363,531,10,10 +45775,22,675,364,531,10,10 +45776,22,675,365,531,11,11 +45777,22,675,366,531,11,11 +45778,22,675,367,531,12,12 +45779,22,675,368,531,12,12 +45780,22,675,369,531,13,13 +45781,22,675,370,531,13,13 +45782,22,675,371,531,13,13 +45783,22,675,372,531,13,13 +45784,22,675,373,531,13,13 +45785,22,675,374,531,13,13 +45786,22,675,331,456,40,60 +45787,22,675,332,98,40,60 +45788,22,675,333,456,50,70 +45789,22,675,334,211,50,70 +45790,22,675,335,211,50,70 +45791,22,675,336,98,40,60 +45792,22,675,337,457,40,60 +45793,22,675,338,99,50,70 +45794,22,675,339,99,50,70 +45795,22,675,340,99,50,70 +45796,22,675,341,592,5,15 +45797,22,675,342,592,5,15 +45798,22,675,343,592,5,15 +45799,22,675,344,592,5,15 +45800,22,675,345,592,5,15 +45801,22,675,346,594,5,15 +45802,22,675,347,594,5,15 +45803,22,675,348,594,5,15 +45804,22,675,349,593,5,15 +45805,22,675,350,593,5,15 +45806,22,675,375,504,10,10 +45807,22,675,376,519,10,10 +45808,22,675,377,239,10,10 +45809,22,675,378,81,10,10 +45810,22,675,379,504,11,11 +45811,22,675,380,519,11,11 +45812,22,675,381,239,11,11 +45813,22,675,382,81,11,11 +45814,22,675,383,504,12,12 +45815,22,675,384,519,12,12 +45816,22,675,385,504,13,13 +45817,22,675,386,519,13,13 +45818,22,676,351,239,11,11 +45819,22,676,352,81,11,11 +45820,22,676,353,504,11,11 +45821,22,676,354,109,11,11 +45822,22,676,355,58,12,12 +45823,22,676,356,58,14,14 +45824,22,676,357,239,13,13 +45825,22,676,358,81,13,13 +45826,22,676,359,504,13,13 +45827,22,676,360,109,13,13 +45828,22,676,361,504,14,14 +45829,22,676,362,109,14,14 +45830,22,676,363,531,10,10 +45831,22,676,364,531,10,10 +45832,22,676,365,531,11,11 +45833,22,676,366,531,11,11 +45834,22,676,367,531,12,12 +45835,22,676,368,531,12,12 +45836,22,676,369,531,13,13 +45837,22,676,370,531,13,13 +45838,22,676,371,531,13,13 +45839,22,676,372,531,13,13 +45840,22,676,373,531,13,13 +45841,22,676,374,531,13,13 +45842,22,676,375,239,10,10 +45843,22,676,376,81,10,10 +45844,22,676,377,504,10,10 +45845,22,676,378,109,10,10 +45846,22,676,379,58,11,11 +45847,22,676,380,58,13,13 +45848,22,676,381,239,12,12 +45849,22,676,382,81,12,12 +45850,22,676,383,504,12,12 +45851,22,676,384,109,12,12 +45852,22,676,385,504,13,13 +45853,22,676,386,109,13,13 +45854,22,677,351,451,35,35 +45855,22,677,352,323,35,35 +45856,22,677,353,227,36,36 +45857,22,677,354,451,37,37 +45858,22,677,355,426,36,36 +45859,22,677,356,426,37,37 +45860,22,677,357,227,38,38 +45861,22,677,358,323,37,37 +45862,22,677,359,329,38,38 +45863,22,677,360,323,37,37 +45864,22,677,361,329,38,38 +45865,22,677,362,323,37,37 +45866,22,677,363,531,31,31 +45867,22,677,364,531,31,31 +45868,22,677,365,531,32,32 +45869,22,677,366,531,32,32 +45870,22,677,367,531,33,33 +45871,22,677,368,531,33,33 +45872,22,677,369,531,34,34 +45873,22,677,370,531,34,34 +45874,22,677,371,531,34,34 +45875,22,677,372,531,34,34 +45876,22,677,373,531,34,34 +45877,22,677,374,531,34,34 +45878,22,677,375,451,31,31 +45879,22,677,376,322,31,31 +45880,22,677,377,328,32,32 +45881,22,677,378,451,33,33 +45882,22,677,379,426,32,32 +45883,22,677,380,426,33,33 +45884,22,677,381,227,34,34 +45885,22,677,382,323,33,33 +45886,22,677,383,328,34,34 +45887,22,677,384,323,33,33 +45888,22,677,385,328,34,34 +45889,22,677,386,323,33,33 +45890,22,678,387,530,32,32 +45891,22,678,388,530,32,32 +45892,22,678,389,530,33,33 +45893,22,678,390,530,33,33 +45894,22,678,391,530,34,34 +45895,22,678,392,530,34,34 +45896,22,678,393,530,35,35 +45897,22,678,394,530,35,35 +45898,22,678,395,530,35,35 +45899,22,678,396,530,35,35 +45900,22,678,397,530,35,35 +45901,22,678,398,530,35,35 +45902,22,678,375,322,31,31 +45903,22,678,376,527,32,32 +45904,22,678,377,525,32,32 +45905,22,678,378,451,33,33 +45906,22,678,379,525,34,34 +45907,22,678,380,527,34,34 +45908,22,678,381,323,35,35 +45909,22,678,382,451,35,35 +45910,22,678,383,527,35,35 +45911,22,678,384,525,35,35 +45912,22,678,385,527,35,35 +45913,22,678,386,525,35,35 +45914,22,679,387,530,32,32 +45915,22,679,388,530,32,32 +45916,22,679,389,530,33,33 +45917,22,679,390,530,33,33 +45918,22,679,391,530,34,34 +45919,22,679,392,530,34,34 +45920,22,679,393,530,35,35 +45921,22,679,394,530,35,35 +45922,22,679,395,530,35,35 +45923,22,679,396,530,35,35 +45924,22,679,397,530,35,35 +45925,22,679,398,530,35,35 +45926,22,679,375,323,35,35 +45927,22,679,376,527,32,32 +45928,22,679,377,525,32,32 +45929,22,679,378,451,33,33 +45930,22,679,379,525,34,34 +45931,22,679,380,527,34,34 +45932,22,679,381,322,31,31 +45933,22,679,382,451,35,35 +45934,22,679,383,527,35,35 +45935,22,679,384,525,35,35 +45936,22,679,385,527,35,35 +45937,22,679,386,525,35,35 +45938,22,680,387,530,32,32 +45939,22,680,388,530,32,32 +45940,22,680,389,530,33,33 +45941,22,680,390,530,33,33 +45942,22,680,391,530,34,34 +45943,22,680,392,530,34,34 +45944,22,680,393,530,35,35 +45945,22,680,394,530,35,35 +45946,22,680,395,530,35,35 +45947,22,680,396,530,35,35 +45948,22,680,397,530,35,35 +45949,22,680,398,530,35,35 +45950,22,680,375,322,31,31 +45951,22,680,376,527,32,32 +45952,22,680,377,525,32,32 +45953,22,680,378,451,33,33 +45954,22,680,379,525,34,34 +45955,22,680,380,527,34,34 +45956,22,680,381,323,35,35 +45957,22,680,382,451,35,35 +45958,22,680,383,527,35,35 +45959,22,680,384,525,35,35 +45960,22,680,385,527,35,35 +45961,22,680,386,525,35,35 +45962,22,681,387,530,32,32 +45963,22,681,388,530,32,32 +45964,22,681,389,530,33,33 +45965,22,681,390,530,33,33 +45966,22,681,391,530,34,34 +45967,22,681,392,530,34,34 +45968,22,681,393,530,35,35 +45969,22,681,394,530,35,35 +45970,22,681,395,530,35,35 +45971,22,681,396,530,35,35 +45972,22,681,397,530,35,35 +45973,22,681,398,530,35,35 +45974,22,681,375,322,31,31 +45975,22,681,376,527,32,32 +45976,22,681,377,525,32,32 +45977,22,681,378,451,33,33 +45978,22,681,379,525,34,34 +45979,22,681,380,527,34,34 +45980,22,681,381,323,35,35 +45981,22,681,382,451,35,35 +45982,22,681,383,527,35,35 +45983,22,681,384,525,35,35 +45984,22,681,385,527,35,35 +45985,22,681,386,525,35,35 +45986,22,682,387,530,32,32 +45987,22,682,388,530,32,32 +45988,22,682,389,530,33,33 +45989,22,682,390,530,33,33 +45990,22,682,391,530,34,34 +45991,22,682,392,530,34,34 +45992,22,682,393,530,35,35 +45993,22,682,394,530,35,35 +45994,22,682,395,530,35,35 +45995,22,682,396,530,35,35 +45996,22,682,397,530,35,35 +45997,22,682,398,530,35,35 +45998,22,682,375,322,31,31 +45999,22,682,376,527,32,32 +46000,22,682,377,525,32,32 +46001,22,682,378,451,33,33 +46002,22,682,379,525,34,34 +46003,22,682,380,527,34,34 +46004,22,682,381,323,35,35 +46005,22,682,382,451,35,35 +46006,22,682,383,527,35,35 +46007,22,682,384,525,35,35 +46008,22,682,385,527,35,35 +46009,22,682,386,525,35,35 +46010,22,683,387,530,32,32 +46011,22,683,388,530,32,32 +46012,22,683,389,530,33,33 +46013,22,683,390,530,33,33 +46014,22,683,391,530,34,34 +46015,22,683,392,530,34,34 +46016,22,683,393,530,35,35 +46017,22,683,394,530,35,35 +46018,22,683,395,530,35,35 +46019,22,683,396,530,35,35 +46020,22,683,397,530,35,35 +46021,22,683,398,530,35,35 +46022,22,683,375,322,31,31 +46023,22,683,376,527,32,32 +46024,22,683,377,525,32,32 +46025,22,683,378,451,33,33 +46026,22,683,379,525,34,34 +46027,22,683,380,527,34,34 +46028,22,683,381,323,35,35 +46029,22,683,382,451,35,35 +46030,22,683,383,527,35,35 +46031,22,683,384,525,35,35 +46032,22,683,385,527,35,35 +46033,22,683,386,525,35,35 +46034,22,684,387,530,32,32 +46035,22,684,388,530,32,32 +46036,22,684,389,530,33,33 +46037,22,684,390,530,33,33 +46038,22,684,391,530,34,34 +46039,22,684,392,530,34,34 +46040,22,684,393,530,35,35 +46041,22,684,394,530,35,35 +46042,22,684,395,530,35,35 +46043,22,684,396,530,35,35 +46044,22,684,397,530,35,35 +46045,22,684,398,530,35,35 +46046,22,684,375,322,31,31 +46047,22,684,376,527,32,32 +46048,22,684,377,525,32,32 +46049,22,684,378,451,33,33 +46050,22,684,379,525,34,34 +46051,22,684,380,527,34,34 +46052,22,684,381,323,35,35 +46053,22,684,382,451,35,35 +46054,22,684,383,527,35,35 +46055,22,684,384,525,35,35 +46056,22,684,385,527,35,35 +46057,22,684,386,525,35,35 +46058,22,685,387,530,32,32 +46059,22,685,388,530,32,32 +46060,22,685,389,530,33,33 +46061,22,685,390,530,33,33 +46062,22,685,391,530,34,34 +46063,22,685,392,530,34,34 +46064,22,685,393,530,35,35 +46065,22,685,394,530,35,35 +46066,22,685,395,530,35,35 +46067,22,685,396,530,35,35 +46068,22,685,397,530,35,35 +46069,22,685,398,530,35,35 +46070,22,685,375,323,35,35 +46071,22,685,376,527,32,32 +46072,22,685,377,525,32,32 +46073,22,685,378,451,33,33 +46074,22,685,379,525,34,34 +46075,22,685,380,527,34,34 +46076,22,685,381,322,31,31 +46077,22,685,382,451,35,35 +46078,22,685,383,527,35,35 +46079,22,685,384,525,35,35 +46080,22,685,385,527,35,35 +46081,22,685,386,525,35,35 +46082,22,686,387,530,32,32 +46083,22,686,388,530,32,32 +46084,22,686,389,530,33,33 +46085,22,686,390,530,33,33 +46086,22,686,391,530,34,34 +46087,22,686,392,530,34,34 +46088,22,686,393,530,35,35 +46089,22,686,394,530,35,35 +46090,22,686,395,530,35,35 +46091,22,686,396,530,35,35 +46092,22,686,397,530,35,35 +46093,22,686,398,530,35,35 +46094,22,686,375,322,31,31 +46095,22,686,376,527,32,32 +46096,22,686,377,525,32,32 +46097,22,686,378,451,33,33 +46098,22,686,379,525,34,34 +46099,22,686,380,527,34,34 +46100,22,686,381,323,35,35 +46101,22,686,382,451,35,35 +46102,22,686,383,527,35,35 +46103,22,686,384,525,35,35 +46104,22,686,385,527,35,35 +46105,22,686,386,525,35,35 +46106,22,687,387,530,32,32 +46107,22,687,388,530,32,32 +46108,22,687,389,530,33,33 +46109,22,687,390,530,33,33 +46110,22,687,391,530,34,34 +46111,22,687,392,530,34,34 +46112,22,687,393,530,35,35 +46113,22,687,394,530,35,35 +46114,22,687,395,530,35,35 +46115,22,687,396,530,35,35 +46116,22,687,397,530,35,35 +46117,22,687,398,530,35,35 +46118,22,687,375,322,31,31 +46119,22,687,376,527,32,32 +46120,22,687,377,525,32,32 +46121,22,687,378,451,33,33 +46122,22,687,379,525,34,34 +46123,22,687,380,527,34,34 +46124,22,687,381,323,35,35 +46125,22,687,382,451,35,35 +46126,22,687,383,527,35,35 +46127,22,687,384,525,35,35 +46128,22,687,385,527,35,35 +46129,22,687,386,525,35,35 +46130,22,688,387,530,32,32 +46131,22,688,388,530,32,32 +46132,22,688,389,530,33,33 +46133,22,688,390,530,33,33 +46134,22,688,391,530,34,34 +46135,22,688,392,530,34,34 +46136,22,688,393,530,35,35 +46137,22,688,394,530,35,35 +46138,22,688,395,530,35,35 +46139,22,688,396,530,35,35 +46140,22,688,397,530,35,35 +46141,22,688,398,530,35,35 +46142,22,688,375,322,31,31 +46143,22,688,376,527,32,32 +46144,22,688,377,525,32,32 +46145,22,688,378,451,33,33 +46146,22,688,379,525,34,34 +46147,22,688,380,527,34,34 +46148,22,688,381,323,35,35 +46149,22,688,382,451,35,35 +46150,22,688,383,527,35,35 +46151,22,688,384,525,35,35 +46152,22,688,385,527,35,35 +46153,22,688,386,525,35,35 +46154,22,689,387,530,32,32 +46155,22,689,388,530,32,32 +46156,22,689,389,530,33,33 +46157,22,689,390,530,33,33 +46158,22,689,391,530,34,34 +46159,22,689,392,530,34,34 +46160,22,689,393,530,35,35 +46161,22,689,394,530,35,35 +46162,22,689,395,530,35,35 +46163,22,689,396,530,35,35 +46164,22,689,397,530,35,35 +46165,22,689,398,530,35,35 +46166,22,689,375,322,31,31 +46167,22,689,376,527,32,32 +46168,22,689,377,525,32,32 +46169,22,689,378,451,33,33 +46170,22,689,379,525,34,34 +46171,22,689,380,527,34,34 +46172,22,689,381,323,35,35 +46173,22,689,382,451,35,35 +46174,22,689,383,527,35,35 +46175,22,689,384,525,35,35 +46176,22,689,385,527,35,35 +46177,22,689,386,525,35,35 +46178,22,690,375,607,31,31 +46179,22,690,376,577,31,31 +46180,22,690,377,20,32,32 +46181,22,690,378,42,32,32 +46182,22,690,379,607,33,33 +46183,22,690,380,354,32,32 +46184,22,690,381,20,33,33 +46185,22,690,382,42,33,33 +46186,22,690,383,354,34,34 +46187,22,690,384,578,34,34 +46188,22,690,385,354,34,34 +46189,22,690,386,578,34,34 +46190,22,691,375,607,31,31 +46191,22,691,376,577,31,31 +46192,22,691,377,20,32,32 +46193,22,691,378,42,32,32 +46194,22,691,379,578,33,33 +46195,22,691,380,354,32,32 +46196,22,691,381,20,33,33 +46197,22,691,382,42,33,33 +46198,22,691,383,354,34,34 +46199,22,691,384,578,34,34 +46200,22,691,385,354,34,34 +46201,22,691,386,578,34,34 +46202,22,692,387,529,16,16 +46203,22,692,388,95,16,16 +46204,22,692,389,529,17,17 +46205,22,692,390,529,17,17 +46206,22,692,391,529,18,18 +46207,22,692,392,529,18,18 +46208,22,692,393,529,19,19 +46209,22,692,394,529,19,19 +46210,22,692,395,529,19,19 +46211,22,692,396,529,19,19 +46212,22,692,397,529,19,19 +46213,22,692,398,529,19,19 +46214,22,692,375,524,16,16 +46215,22,692,376,527,16,16 +46216,22,692,377,524,17,17 +46217,22,692,378,527,17,17 +46218,22,692,379,532,17,17 +46219,22,692,380,532,18,18 +46220,22,692,381,19,17,17 +46221,22,692,382,19,17,17 +46222,22,692,383,524,18,18 +46223,22,692,384,95,18,18 +46224,22,692,385,527,18,18 +46225,22,692,386,95,18,18 +46226,22,693,387,529,27,27 +46227,22,693,388,95,27,27 +46228,22,693,389,529,28,28 +46229,22,693,390,529,28,28 +46230,22,693,391,529,29,29 +46231,22,693,392,529,29,29 +46232,22,693,393,529,30,30 +46233,22,693,394,529,30,30 +46234,22,693,395,529,30,30 +46235,22,693,396,529,30,30 +46236,22,693,397,529,30,30 +46237,22,693,398,529,30,30 +46238,22,693,331,60,40,60 +46239,22,693,332,10016,40,60 +46240,22,693,333,60,50,70 +46241,22,693,334,60,50,70 +46242,22,693,335,60,50,70 +46243,22,693,336,61,40,60 +46244,22,693,337,550,40,60 +46245,22,693,338,61,50,70 +46246,22,693,339,62,50,70 +46247,22,693,340,62,50,70 +46248,22,693,341,10016,10,30 +46249,22,693,342,183,10,30 +46250,22,693,343,10016,10,30 +46251,22,693,344,10016,10,30 +46252,22,693,345,10016,10,30 +46253,22,693,346,183,10,30 +46254,22,693,347,550,10,30 +46255,22,693,348,550,10,30 +46256,22,693,349,184,10,30 +46257,22,693,350,184,10,30 +46258,22,693,375,525,27,27 +46259,22,693,376,527,27,27 +46260,22,693,377,525,28,28 +46261,22,693,378,527,28,28 +46262,22,693,379,533,28,28 +46263,22,693,380,533,30,30 +46264,22,693,381,20,29,29 +46265,22,693,382,20,29,29 +46266,22,693,383,525,30,30 +46267,22,693,384,95,30,30 +46268,22,693,385,527,30,30 +46269,22,693,386,95,30,30 +46270,22,694,387,529,27,27 +46271,22,694,388,95,27,27 +46272,22,694,389,529,28,28 +46273,22,694,390,529,28,28 +46274,22,694,391,529,29,29 +46275,22,694,392,529,29,29 +46276,22,694,393,529,30,30 +46277,22,694,394,529,30,30 +46278,22,694,395,529,30,30 +46279,22,694,396,529,30,30 +46280,22,694,397,529,30,30 +46281,22,694,398,529,30,30 +46282,22,694,375,525,27,27 +46283,22,694,376,527,27,27 +46284,22,694,377,525,28,28 +46285,22,694,378,527,28,28 +46286,22,694,379,533,28,28 +46287,22,694,380,533,30,30 +46288,22,694,381,525,29,29 +46289,22,694,382,527,29,29 +46290,22,694,383,525,30,30 +46291,22,694,384,95,30,30 +46292,22,694,385,527,30,30 +46293,22,694,386,95,30,30 +46294,22,695,387,530,54,54 +46295,22,695,388,95,54,54 +46296,22,695,389,530,55,55 +46297,22,695,390,530,55,55 +46298,22,695,391,530,56,56 +46299,22,695,392,530,56,56 +46300,22,695,393,530,57,57 +46301,22,695,394,530,57,57 +46302,22,695,395,530,57,57 +46303,22,695,396,208,57,57 +46304,22,695,397,530,57,57 +46305,22,695,398,208,57,57 +46306,22,695,331,60,50,60 +46307,22,695,332,10016,50,60 +46308,22,695,333,60,60,70 +46309,22,695,334,60,60,70 +46310,22,695,335,60,60,70 +46311,22,695,336,61,50,60 +46312,22,695,337,550,50,60 +46313,22,695,338,61,60,60 +46314,22,695,339,62,60,60 +46315,22,695,340,62,60,60 +46316,22,695,341,10016,45,60 +46317,22,695,342,10016,45,60 +46318,22,695,343,10016,50,60 +46319,22,695,344,10016,50,60 +46320,22,695,345,10016,50,60 +46321,22,695,346,550,45,60 +46322,22,695,347,550,45,60 +46323,22,695,348,550,50,60 +46324,22,695,349,550,50,60 +46325,22,695,350,550,50,60 +46326,22,695,375,525,54,54 +46327,22,695,376,632,54,54 +46328,22,695,377,525,55,55 +46329,22,695,378,527,54,54 +46330,22,695,379,305,55,55 +46331,22,695,380,299,55,55 +46332,22,695,381,305,57,57 +46333,22,695,382,299,57,57 +46334,22,695,383,525,56,56 +46335,22,695,384,95,57,57 +46336,22,695,385,525,56,56 +46337,22,695,386,95,57,57 +46338,22,696,387,530,54,54 +46339,22,696,388,95,54,54 +46340,22,696,389,530,55,55 +46341,22,696,390,530,55,55 +46342,22,696,391,530,56,56 +46343,22,696,392,530,56,56 +46344,22,696,393,530,57,57 +46345,22,696,394,530,57,57 +46346,22,696,395,530,57,57 +46347,22,696,396,208,57,57 +46348,22,696,397,530,57,57 +46349,22,696,398,208,57,57 +46350,22,696,375,525,54,54 +46351,22,696,376,632,54,54 +46352,22,696,377,525,55,55 +46353,22,696,378,527,54,54 +46354,22,696,379,305,55,55 +46355,22,696,380,299,55,55 +46356,22,696,381,305,57,57 +46357,22,696,382,299,57,57 +46358,22,696,383,525,56,56 +46359,22,696,384,95,57,57 +46360,22,696,385,525,56,56 +46361,22,696,386,95,57,57 +46362,22,697,387,530,54,54 +46363,22,697,388,95,54,54 +46364,22,697,389,530,55,55 +46365,22,697,390,530,55,55 +46366,22,697,391,530,56,56 +46367,22,697,392,530,56,56 +46368,22,697,393,530,57,57 +46369,22,697,394,530,57,57 +46370,22,697,395,530,57,57 +46371,22,697,396,208,57,57 +46372,22,697,397,530,57,57 +46373,22,697,398,208,57,57 +46374,22,697,375,525,54,54 +46375,22,697,376,632,54,54 +46376,22,697,377,525,55,55 +46377,22,697,378,527,54,54 +46378,22,697,379,305,55,55 +46379,22,697,380,299,55,55 +46380,22,697,381,305,57,57 +46381,22,697,382,299,57,57 +46382,22,697,383,525,56,56 +46383,22,697,384,95,57,57 +46384,22,697,385,525,56,56 +46385,22,697,386,95,57,57 +46386,22,698,387,530,54,54 +46387,22,698,388,95,54,54 +46388,22,698,389,530,55,55 +46389,22,698,390,530,55,55 +46390,22,698,391,530,56,56 +46391,22,698,392,530,56,56 +46392,22,698,393,530,57,57 +46393,22,698,394,530,57,57 +46394,22,698,395,530,57,57 +46395,22,698,396,208,57,57 +46396,22,698,397,530,57,57 +46397,22,698,398,208,57,57 +46398,22,698,375,525,54,54 +46399,22,698,376,632,54,54 +46400,22,698,377,525,55,55 +46401,22,698,378,527,54,54 +46402,22,698,379,305,55,55 +46403,22,698,380,299,55,55 +46404,22,698,381,305,57,57 +46405,22,698,382,299,57,57 +46406,22,698,383,525,56,56 +46407,22,698,384,95,57,57 +46408,22,698,385,525,56,56 +46409,22,698,386,95,57,57 +46410,22,699,387,530,54,54 +46411,22,699,388,95,54,54 +46412,22,699,389,530,55,55 +46413,22,699,390,530,55,55 +46414,22,699,391,530,56,56 +46415,22,699,392,530,56,56 +46416,22,699,393,530,57,57 +46417,22,699,394,530,57,57 +46418,22,699,395,530,57,57 +46419,22,699,396,208,57,57 +46420,22,699,397,530,57,57 +46421,22,699,398,208,57,57 +46422,22,699,375,525,54,54 +46423,22,699,376,632,54,54 +46424,22,699,377,525,55,55 +46425,22,699,378,527,54,54 +46426,22,699,379,305,55,55 +46427,22,699,380,299,55,55 +46428,22,699,381,305,57,57 +46429,22,699,382,299,57,57 +46430,22,699,383,525,56,56 +46431,22,699,384,95,57,57 +46432,22,699,385,525,56,56 +46433,22,699,386,95,57,57 +46434,22,700,387,530,34,34 +46435,22,700,388,530,34,34 +46436,22,700,389,530,35,35 +46437,22,700,390,530,35,35 +46438,22,700,391,530,36,36 +46439,22,700,392,530,36,36 +46440,22,700,393,530,37,37 +46441,22,700,394,530,37,37 +46442,22,700,395,530,37,37 +46443,22,700,396,530,37,37 +46444,22,700,397,530,37,37 +46445,22,700,398,530,37,37 +46446,22,700,331,370,40,60 +46447,22,700,332,90,40,60 +46448,22,700,333,370,50,70 +46449,22,700,334,370,50,70 +46450,22,700,335,370,50,70 +46451,22,700,336,90,40,60 +46452,22,700,337,370,40,60 +46453,22,700,338,90,50,70 +46454,22,700,339,91,50,70 +46455,22,700,340,91,50,70 +46456,22,700,341,592,25,40 +46457,22,700,342,86,25,40 +46458,22,700,343,592,30,40 +46459,22,700,344,592,30,40 +46460,22,700,345,592,30,40 +46461,22,700,346,86,25,40 +46462,22,700,347,593,25,40 +46463,22,700,348,87,30,40 +46464,22,700,349,87,30,40 +46465,22,700,350,87,30,40 +46466,22,700,375,527,34,34 +46467,22,700,376,55,34,34 +46468,22,700,377,86,35,35 +46469,22,700,378,525,35,35 +46470,22,700,379,527,35,35 +46471,22,700,380,55,35,35 +46472,22,700,381,602,37,37 +46473,22,700,382,525,37,37 +46474,22,700,383,55,36,36 +46475,22,700,384,527,36,36 +46476,22,700,385,55,36,36 +46477,22,700,386,527,36,36 +46478,22,701,387,530,39,39 +46479,22,701,388,530,39,39 +46480,22,701,389,530,40,40 +46481,22,701,390,530,40,40 +46482,22,701,391,530,41,41 +46483,22,701,392,530,41,41 +46484,22,701,393,530,42,42 +46485,22,701,394,530,42,42 +46486,22,701,395,530,42,42 +46487,22,701,396,530,42,42 +46488,22,701,397,530,42,42 +46489,22,701,398,530,42,42 +46490,22,701,375,527,39,39 +46491,22,701,376,525,39,39 +46492,22,701,377,55,40,40 +46493,22,701,378,525,40,40 +46494,22,701,379,527,40,40 +46495,22,701,380,55,40,40 +46496,22,701,381,603,42,42 +46497,22,701,382,525,42,42 +46498,22,701,383,213,41,41 +46499,22,701,384,527,41,41 +46500,22,701,385,213,41,41 +46501,22,701,386,527,41,41 +46502,22,702,351,274,64,64 +46503,22,702,352,334,64,64 +46504,22,702,353,274,65,65 +46505,22,702,354,55,65,65 +46506,22,702,355,164,66,66 +46507,22,702,356,203,66,66 +46508,22,702,357,611,65,65 +46509,22,702,358,203,67,67 +46510,22,702,359,611,67,67 +46511,22,702,360,352,65,65 +46512,22,702,361,611,67,67 +46513,22,702,362,352,67,67 +46514,22,702,363,531,56,56 +46515,22,702,364,531,56,56 +46516,22,702,365,531,57,57 +46517,22,702,366,206,57,57 +46518,22,702,367,531,58,58 +46519,22,702,368,531,58,58 +46520,22,702,369,531,59,59 +46521,22,702,370,531,59,59 +46522,22,702,371,275,59,59 +46523,22,702,372,531,59,59 +46524,22,702,373,275,59,59 +46525,22,702,374,531,59,59 +46526,22,702,331,129,40,60 +46527,22,702,332,10016,40,60 +46528,22,702,333,129,50,70 +46529,22,702,334,129,50,70 +46530,22,702,335,129,1,100 +46531,22,702,336,129,40,60 +46532,22,702,337,550,40,60 +46533,22,702,338,130,50,70 +46534,22,702,339,130,50,70 +46535,22,702,340,130,1,100 +46536,22,702,341,10016,45,60 +46537,22,702,342,418,45,60 +46538,22,702,343,10016,50,60 +46539,22,702,344,10016,50,60 +46540,22,702,345,10016,50,60 +46541,22,702,346,418,45,60 +46542,22,702,347,550,45,60 +46543,22,702,348,550,50,60 +46544,22,702,349,419,50,60 +46545,22,702,350,419,50,60 +46546,22,702,375,274,56,56 +46547,22,702,376,334,56,56 +46548,22,702,377,274,57,57 +46549,22,702,378,55,57,57 +46550,22,702,379,164,58,58 +46551,22,702,380,203,58,58 +46552,22,702,381,611,57,57 +46553,22,702,382,203,59,59 +46554,22,702,383,611,59,59 +46555,22,702,384,352,57,57 +46556,22,702,385,611,59,59 +46557,22,702,386,352,59,59 +46558,22,620,399,580,23,23 +46559,22,620,400,580,23,23 +46560,22,620,401,580,24,24 +46561,22,620,402,580,24,24 +46562,22,620,403,580,25,25 +46563,22,620,404,580,25,25 +46564,22,620,405,580,26,26 +46565,22,620,406,580,25,25 +46566,22,620,407,580,26,26 +46567,22,620,408,580,26,26 +46568,22,620,409,580,26,26 +46569,22,620,410,580,26,26 +46570,22,621,351,55,40,40 +46571,22,621,352,183,40,40 +46572,22,621,353,335,41,41 +46573,22,621,354,336,41,41 +46574,22,621,355,55,41,41 +46575,22,621,356,183,41,41 +46576,22,621,357,55,42,42 +46577,22,621,358,183,42,42 +46578,22,621,359,335,43,43 +46579,22,621,360,336,43,43 +46580,22,621,361,335,43,43 +46581,22,621,362,336,43,43 +46582,22,621,363,531,36,36 +46583,22,621,364,531,36,36 +46584,22,621,365,587,37,37 +46585,22,621,366,206,37,37 +46586,22,621,367,531,38,38 +46587,22,621,368,531,38,38 +46588,22,621,369,531,39,39 +46589,22,621,370,531,39,39 +46590,22,621,371,531,39,39 +46591,22,621,372,184,39,39 +46592,22,621,373,531,39,39 +46593,22,621,374,184,39,39 +46594,22,621,331,318,40,60 +46595,22,621,332,10016,40,60 +46596,22,621,333,318,50,70 +46597,22,621,334,318,50,70 +46598,22,621,335,318,50,70 +46599,22,621,336,318,40,60 +46600,22,621,337,550,40,60 +46601,22,621,338,319,50,70 +46602,22,621,339,319,50,70 +46603,22,621,340,319,50,70 +46604,22,621,341,10016,25,40 +46605,22,621,342,183,25,40 +46606,22,621,343,10016,30,40 +46607,22,621,344,10016,30,40 +46608,22,621,345,10016,30,40 +46609,22,621,346,183,25,40 +46610,22,621,347,550,25,40 +46611,22,621,348,184,30,40 +46612,22,621,349,131,30,40 +46613,22,621,350,131,30,40 +46614,22,621,375,55,36,36 +46615,22,621,376,183,36,36 +46616,22,621,377,335,37,37 +46617,22,621,378,336,37,37 +46618,22,621,379,55,37,37 +46619,22,621,380,183,37,37 +46620,22,621,381,55,38,38 +46621,22,621,382,183,38,38 +46622,22,621,383,335,39,39 +46623,22,621,384,336,39,39 +46624,22,621,385,335,39,39 +46625,22,621,386,336,39,39 +46626,22,622,399,581,54,54 +46627,22,622,400,581,54,54 +46628,22,622,401,581,55,55 +46629,22,622,402,581,55,55 +46630,22,622,403,581,56,56 +46631,22,622,404,581,56,56 +46632,22,622,405,581,57,57 +46633,22,622,406,581,57,57 +46634,22,622,407,581,57,57 +46635,22,622,408,581,57,57 +46636,22,622,409,581,57,57 +46637,22,622,410,581,57,57 +46638,22,623,351,505,64,64 +46639,22,623,352,507,64,64 +46640,22,623,353,39,65,65 +46641,22,623,354,507,65,65 +46642,22,623,355,505,66,66 +46643,22,623,356,560,66,66 +46644,22,623,357,505,67,67 +46645,22,623,358,507,67,67 +46646,22,623,359,505,67,67 +46647,22,623,360,507,67,67 +46648,22,623,361,505,67,67 +46649,22,623,362,560,67,67 +46650,22,623,363,531,56,56 +46651,22,623,364,531,56,56 +46652,22,623,365,531,57,57 +46653,22,623,366,206,57,57 +46654,22,623,367,531,58,58 +46655,22,623,368,531,58,58 +46656,22,623,369,531,59,59 +46657,22,623,370,531,59,59 +46658,22,623,371,508,59,59 +46659,22,623,372,40,59,59 +46660,22,623,373,508,59,59 +46661,22,623,374,40,59,59 +46662,22,623,331,10016,40,60 +46663,22,623,332,10016,40,60 +46664,22,623,333,10016,50,70 +46665,22,623,334,349,50,70 +46666,22,623,335,349,50,70 +46667,22,623,336,349,40,60 +46668,22,623,337,550,40,60 +46669,22,623,338,349,50,70 +46670,22,623,339,350,50,70 +46671,22,623,340,350,50,70 +46672,22,623,341,10016,45,60 +46673,22,623,342,10016,45,60 +46674,22,623,343,10016,50,60 +46675,22,623,344,10016,50,60 +46676,22,623,345,10016,50,60 +46677,22,623,346,550,45,60 +46678,22,623,347,550,45,60 +46679,22,623,348,550,50,60 +46680,22,623,349,550,50,60 +46681,22,623,350,550,50,60 +46682,22,623,375,505,56,56 +46683,22,623,376,507,56,56 +46684,22,623,377,39,57,57 +46685,22,623,378,507,57,57 +46686,22,623,379,505,58,58 +46687,22,623,380,507,58,58 +46688,22,623,381,505,59,59 +46689,22,623,382,507,59,59 +46690,22,623,383,505,59,59 +46691,22,623,384,507,59,59 +46692,22,623,385,505,59,59 +46693,22,623,386,507,59,59 +46694,22,624,363,531,56,56 +46695,22,624,364,531,56,56 +46696,22,624,365,531,57,57 +46697,22,624,366,206,57,57 +46698,22,624,367,531,58,58 +46699,22,624,368,531,58,58 +46700,22,624,369,531,59,59 +46701,22,624,370,463,59,59 +46702,22,624,371,508,59,59 +46703,22,624,372,40,59,59 +46704,22,624,373,508,59,59 +46705,22,624,374,40,59,59 +46706,22,624,375,505,56,56 +46707,22,624,376,507,56,56 +46708,22,624,377,39,57,57 +46709,22,624,378,108,58,58 +46710,22,624,379,510,57,57 +46711,22,624,380,510,58,58 +46712,22,624,381,505,59,59 +46713,22,624,382,507,59,59 +46714,22,624,383,505,59,59 +46715,22,624,384,507,59,59 +46716,22,624,385,505,59,59 +46717,22,624,386,507,59,59 +46718,22,625,351,505,63,63 +46719,22,625,352,520,63,63 +46720,22,625,353,523,64,64 +46721,22,625,354,193,64,64 +46722,22,625,355,507,65,65 +46723,22,625,356,509,65,65 +46724,22,625,357,523,66,66 +46725,22,625,358,520,65,65 +46726,22,625,359,523,66,66 +46727,22,625,360,520,65,65 +46728,22,625,361,523,66,66 +46729,22,625,362,520,65,65 +46730,22,625,363,531,55,55 +46731,22,625,364,531,55,55 +46732,22,625,365,531,56,56 +46733,22,625,366,531,56,56 +46734,22,625,367,531,57,57 +46735,22,625,368,531,57,57 +46736,22,625,369,531,58,58 +46737,22,625,370,469,58,58 +46738,22,625,371,521,58,58 +46739,22,625,372,508,58,58 +46740,22,625,373,521,58,58 +46741,22,625,374,508,58,58 +46742,22,625,331,118,40,60 +46743,22,625,332,10016,40,60 +46744,22,625,333,118,50,70 +46745,22,625,334,118,50,70 +46746,22,625,335,118,50,70 +46747,22,625,336,118,40,60 +46748,22,625,337,550,40,60 +46749,22,625,338,119,50,70 +46750,22,625,339,119,50,70 +46751,22,625,340,119,50,70 +46752,22,625,341,10016,45,60 +46753,22,625,342,341,45,60 +46754,22,625,343,10016,50,60 +46755,22,625,344,10016,50,60 +46756,22,625,345,10016,50,60 +46757,22,625,346,341,45,60 +46758,22,625,347,550,45,60 +46759,22,625,348,342,50,60 +46760,22,625,349,342,50,60 +46761,22,625,350,342,50,60 +46762,22,625,375,505,55,55 +46763,22,625,376,520,55,55 +46764,22,625,377,523,56,56 +46765,22,625,378,193,56,56 +46766,22,625,379,507,57,57 +46767,22,625,380,509,57,57 +46768,22,625,381,523,58,58 +46769,22,625,382,520,57,57 +46770,22,625,383,523,58,58 +46771,22,625,384,520,57,57 +46772,22,625,385,523,58,58 +46773,22,625,386,520,57,57 +46774,22,626,387,530,55,55 +46775,22,626,388,530,55,55 +46776,22,626,389,530,56,56 +46777,22,626,390,530,56,56 +46778,22,626,391,530,57,57 +46779,22,626,392,530,57,57 +46780,22,626,393,530,58,58 +46781,22,626,394,530,58,58 +46782,22,626,395,530,58,58 +46783,22,626,396,530,58,58 +46784,22,626,397,530,58,58 +46785,22,626,398,530,58,58 +46786,22,626,331,60,50,60 +46787,22,626,332,10016,50,60 +46788,22,626,333,60,60,70 +46789,22,626,334,60,60,70 +46790,22,626,335,60,60,70 +46791,22,626,336,61,50,60 +46792,22,626,337,550,50,60 +46793,22,626,338,61,60,60 +46794,22,626,339,62,60,60 +46795,22,626,340,62,60,60 +46796,22,626,341,10016,45,60 +46797,22,626,342,10016,45,60 +46798,22,626,343,10016,50,60 +46799,22,626,344,10016,50,60 +46800,22,626,345,10016,50,60 +46801,22,626,346,550,45,60 +46802,22,626,347,550,45,60 +46803,22,626,348,550,50,60 +46804,22,626,349,550,50,60 +46805,22,626,350,550,50,60 +46806,22,626,375,525,55,55 +46807,22,626,376,527,55,55 +46808,22,626,377,525,56,56 +46809,22,626,378,527,56,56 +46810,22,626,379,525,57,57 +46811,22,626,380,527,57,57 +46812,22,626,381,525,58,58 +46813,22,626,382,527,58,58 +46814,22,626,383,525,58,58 +46815,22,626,384,527,58,58 +46816,22,626,385,525,58,58 +46817,22,626,386,527,58,58 +46818,22,627,331,456,40,60 +46819,22,627,332,366,40,60 +46820,22,627,333,456,50,70 +46821,22,627,334,211,50,70 +46822,22,627,335,211,50,70 +46823,22,627,336,457,40,60 +46824,22,627,337,211,40,60 +46825,22,627,338,369,50,70 +46826,22,627,339,368,50,70 +46827,22,627,340,368,50,70 +46828,22,627,341,592,5,15 +46829,22,627,342,592,5,15 +46830,22,627,343,592,5,15 +46831,22,627,344,592,5,15 +46832,22,627,345,592,5,15 +46833,22,627,346,594,5,20 +46834,22,627,347,594,5,20 +46835,22,627,348,594,5,20 +46836,22,627,349,593,5,20 +46837,22,627,350,593,5,20 +46838,22,627,375,551,14,14 +46839,22,627,376,554,14,14 +46840,22,627,377,551,15,15 +46841,22,627,378,554,15,15 +46842,22,627,379,572,15,15 +46843,22,627,380,572,14,14 +46844,22,627,381,559,17,17 +46845,22,627,382,572,17,17 +46846,22,627,383,551,16,16 +46847,22,627,384,554,16,16 +46848,22,627,385,551,17,17 +46849,22,627,386,554,17,17 +46850,22,628,351,577,23,23 +46851,22,628,352,572,23,23 +46852,22,628,353,568,23,23 +46853,22,628,354,572,25,25 +46854,22,628,355,510,24,24 +46855,22,628,356,510,26,26 +46856,22,628,357,568,24,24 +46857,22,628,358,577,24,24 +46858,22,628,359,568,25,25 +46859,22,628,360,577,25,25 +46860,22,628,361,568,26,26 +46861,22,628,362,577,26,26 +46862,22,628,363,531,21,21 +46863,22,628,364,531,21,21 +46864,22,628,365,587,22,22 +46865,22,628,366,531,22,22 +46866,22,628,367,531,23,23 +46867,22,628,368,531,23,23 +46868,22,628,369,531,24,24 +46869,22,628,370,531,24,24 +46870,22,628,371,573,24,24 +46871,22,628,372,531,24,24 +46872,22,628,373,573,24,24 +46873,22,628,374,531,24,24 +46874,22,628,375,577,21,21 +46875,22,628,376,572,21,21 +46876,22,628,377,568,21,21 +46877,22,628,378,572,23,23 +46878,22,628,379,510,22,22 +46879,22,628,380,510,24,24 +46880,22,628,381,568,22,22 +46881,22,628,382,577,22,22 +46882,22,628,383,568,23,23 +46883,22,628,384,577,23,23 +46884,22,628,385,568,24,24 +46885,22,628,386,577,24,24 +46886,22,629,351,585,26,26 +46887,22,629,352,588,26,26 +46888,22,629,353,520,29,29 +46889,22,629,354,590,29,29 +46890,22,629,355,585,28,28 +46891,22,629,356,541,29,29 +46892,22,629,357,183,28,28 +46893,22,629,358,616,26,26 +46894,22,629,359,520,29,29 +46895,22,629,360,588,29,29 +46896,22,629,361,520,29,29 +46897,22,629,362,588,29,29 +46898,22,629,363,531,23,23 +46899,22,629,364,531,24,24 +46900,22,629,365,587,24,24 +46901,22,629,366,587,25,25 +46902,22,629,367,531,25,25 +46903,22,629,368,206,25,25 +46904,22,629,369,184,26,26 +46905,22,629,370,351,26,26 +46906,22,629,371,521,26,26 +46907,22,629,372,542,26,26 +46908,22,629,373,521,26,26 +46909,22,629,374,542,26,26 +46910,22,629,331,60,40,60 +46911,22,629,332,10016,40,60 +46912,22,629,333,60,50,70 +46913,22,629,334,60,50,70 +46914,22,629,335,60,50,70 +46915,22,629,336,61,40,60 +46916,22,629,337,550,40,60 +46917,22,629,338,61,50,70 +46918,22,629,339,186,50,70 +46919,22,629,340,186,50,70 +46920,22,629,341,10016,10,30 +46921,22,629,342,183,10,30 +46922,22,629,343,10016,10,30 +46923,22,629,344,10016,10,30 +46924,22,629,345,10016,10,30 +46925,22,629,346,183,10,35 +46926,22,629,347,550,10,35 +46927,22,629,348,550,10,35 +46928,22,629,349,184,10,35 +46929,22,629,350,184,10,35 +46930,22,629,375,585,23,23 +46931,22,629,376,588,23,23 +46932,22,629,377,520,26,26 +46933,22,629,378,590,26,26 +46934,22,629,379,585,25,25 +46935,22,629,380,541,26,26 +46936,22,629,381,183,25,25 +46937,22,629,382,616,23,23 +46938,22,629,383,520,26,26 +46939,22,629,384,588,26,26 +46940,22,629,385,520,26,26 +46941,22,629,386,588,26,26 +46942,22,630,387,529,27,27 +46943,22,630,388,529,27,27 +46944,22,630,389,529,28,28 +46945,22,630,390,529,28,28 +46946,22,630,391,529,29,29 +46947,22,630,392,529,29,29 +46948,22,630,393,529,30,30 +46949,22,630,394,529,30,30 +46950,22,630,395,529,30,30 +46951,22,630,396,529,30,30 +46952,22,630,397,529,30,30 +46953,22,630,398,529,30,30 +46954,22,630,375,525,27,27 +46955,22,630,376,527,27,27 +46956,22,630,377,525,28,28 +46957,22,630,378,527,28,28 +46958,22,630,379,304,29,29 +46959,22,630,380,610,29,29 +46960,22,630,381,304,30,30 +46961,22,630,382,610,30,30 +46962,22,630,383,304,30,30 +46963,22,630,384,610,30,30 +46964,22,630,385,304,30,30 +46965,22,630,386,610,30,30 +46966,22,631,387,529,27,27 +46967,22,631,388,529,27,27 +46968,22,631,389,529,28,28 +46969,22,631,390,529,28,28 +46970,22,631,391,529,29,29 +46971,22,631,392,529,29,29 +46972,22,631,393,529,30,30 +46973,22,631,394,529,30,30 +46974,22,631,395,529,30,30 +46975,22,631,396,529,30,30 +46976,22,631,397,529,30,30 +46977,22,631,398,529,30,30 +46978,22,631,375,525,27,27 +46979,22,631,376,527,27,27 +46980,22,631,377,525,28,28 +46981,22,631,378,527,28,28 +46982,22,631,379,304,29,29 +46983,22,631,380,610,29,29 +46984,22,631,381,304,30,30 +46985,22,631,382,610,30,30 +46986,22,631,383,304,30,30 +46987,22,631,384,610,30,30 +46988,22,631,385,304,30,30 +46989,22,631,386,610,30,30 +46990,22,632,351,520,33,33 +46991,22,632,351,520,33,33 +46992,22,632,351,520,33,33 +46993,22,632,351,613,33,33 +46994,22,632,352,585,33,33 +46995,22,632,353,505,34,34 +46996,22,632,354,523,34,34 +46997,22,632,355,520,35,35 +46998,22,632,355,520,35,35 +46999,22,632,355,520,35,35 +47000,22,632,355,520,33,33 +47001,22,632,356,523,36,36 +47002,22,632,357,335,35,35 +47003,22,632,358,336,35,35 +47004,22,632,359,505,36,36 +47005,22,632,359,505,36,36 +47006,22,632,359,505,36,36 +47007,22,632,359,613,36,36 +47008,22,632,360,590,36,36 +47009,22,632,361,505,36,36 +47010,22,632,361,505,36,36 +47011,22,632,361,505,36,36 +47012,22,632,361,613,36,36 +47013,22,632,362,590,36,36 +47014,22,632,363,531,30,30 +47015,22,632,364,531,30,30 +47016,22,632,365,587,31,31 +47017,22,632,366,531,31,31 +47018,22,632,367,531,32,32 +47019,22,632,368,531,32,32 +47020,22,632,369,531,33,33 +47021,22,632,370,531,33,33 +47022,22,632,371,531,33,33 +47023,22,632,372,521,33,33 +47024,22,632,373,531,33,33 +47025,22,632,374,521,33,33 +47026,22,632,375,520,30,30 +47027,22,632,375,520,30,30 +47028,22,632,375,520,30,30 +47029,22,632,375,613,30,30 +47030,22,632,376,585,30,30 +47031,22,632,377,505,31,31 +47032,22,632,378,523,31,31 +47033,22,632,379,520,32,32 +47034,22,632,379,520,32,32 +47035,22,632,379,520,32,32 +47036,22,632,379,520,30,30 +47037,22,632,380,523,33,33 +47038,22,632,381,335,32,32 +47039,22,632,382,336,32,32 +47040,22,632,383,505,33,33 +47041,22,632,383,505,33,33 +47042,22,632,383,505,33,33 +47043,22,632,383,613,33,33 +47044,22,632,384,590,33,33 +47045,22,632,385,505,33,33 +47046,22,632,385,505,33,33 +47047,22,632,385,505,33,33 +47048,22,632,385,613,33,33 +47049,22,632,386,590,33,33 +47050,22,633,375,607,27,27 +47051,22,633,376,607,27,27 +47052,22,633,377,607,28,28 +47053,22,633,378,607,28,28 +47054,22,633,379,607,29,29 +47055,22,633,380,607,29,29 +47056,22,633,381,607,30,30 +47057,22,633,382,607,30,30 +47058,22,633,383,607,30,30 +47059,22,633,384,607,30,30 +47060,22,633,385,607,30,30 +47061,22,633,386,607,30,30 +47062,22,634,375,607,28,28 +47063,22,634,376,607,28,28 +47064,22,634,377,607,29,29 +47065,22,634,378,607,29,29 +47066,22,634,379,607,30,30 +47067,22,634,380,605,30,30 +47068,22,634,381,607,31,31 +47069,22,634,382,42,31,31 +47070,22,634,383,607,31,31 +47071,22,634,384,605,31,31 +47072,22,634,385,607,31,31 +47073,22,634,386,605,31,31 +47074,22,635,375,607,29,29 +47075,22,635,376,607,29,29 +47076,22,635,377,607,30,30 +47077,22,635,378,605,30,30 +47078,22,635,379,607,31,31 +47079,22,635,380,605,31,31 +47080,22,635,381,42,32,32 +47081,22,635,382,42,32,32 +47082,22,635,383,607,32,32 +47083,22,635,384,605,32,32 +47084,22,635,385,607,32,32 +47085,22,635,386,605,32,32 +47086,22,636,375,607,30,30 +47087,22,636,376,605,30,30 +47088,22,636,377,607,31,31 +47089,22,636,378,605,31,31 +47090,22,636,379,42,33,33 +47091,22,636,380,42,33,33 +47092,22,636,381,607,32,32 +47093,22,636,382,605,32,32 +47094,22,636,383,607,33,33 +47095,22,636,384,605,33,33 +47096,22,636,385,607,33,33 +47097,22,636,386,605,33,33 +47098,22,637,331,339,45,60 +47099,22,637,332,618,45,60 +47100,22,637,333,339,60,60 +47101,22,637,333,339,50,60 +47102,22,637,333,339,50,60 +47103,22,637,333,339,50,60 +47104,22,637,334,339,60,60 +47105,22,637,334,339,50,60 +47106,22,637,334,339,50,60 +47107,22,637,334,339,50,60 +47108,22,637,335,339,60,60 +47109,22,637,335,339,50,60 +47110,22,637,335,339,50,60 +47111,22,637,335,339,50,60 +47112,22,637,336,339,45,60 +47113,22,637,337,618,45,60 +47114,22,637,338,340,60,60 +47115,22,637,338,340,50,60 +47116,22,637,338,340,50,60 +47117,22,637,338,340,50,60 +47118,22,637,339,340,60,60 +47119,22,637,339,340,50,60 +47120,22,637,339,340,50,60 +47121,22,637,339,340,50,60 +47122,22,637,340,340,60,60 +47123,22,637,340,340,50,60 +47124,22,637,340,340,50,60 +47125,22,637,340,340,50,60 +47126,22,637,341,618,45,60 +47127,22,637,342,536,45,60 +47128,22,637,343,618,60,60 +47129,22,637,343,618,50,60 +47130,22,637,343,618,50,60 +47131,22,637,343,618,50,60 +47132,22,637,344,618,60,60 +47133,22,637,344,618,50,60 +47134,22,637,344,618,50,60 +47135,22,637,344,618,50,60 +47136,22,637,345,618,60,60 +47137,22,637,345,618,50,60 +47138,22,637,345,618,50,60 +47139,22,637,345,618,50,60 +47140,22,637,346,618,45,60 +47141,22,637,347,536,45,60 +47142,22,637,348,618,60,60 +47143,22,637,348,618,50,60 +47144,22,637,348,618,50,60 +47145,22,637,348,618,50,60 +47146,22,637,349,537,60,60 +47147,22,637,349,537,50,60 +47148,22,637,349,537,50,60 +47149,22,637,349,537,50,60 +47150,22,637,350,537,60,60 +47151,22,637,350,537,50,60 +47152,22,637,350,537,50,60 +47153,22,637,350,537,50,60 +47154,22,637,375,536,54,54 +47155,22,637,375,536,54,54 +47156,22,637,375,536,54,54 +47157,22,637,376,588,54,54 +47158,22,637,376,588,54,54 +47159,22,637,376,588,54,54 +47160,22,637,377,536,55,55 +47161,22,637,377,536,55,55 +47162,22,637,377,536,55,55 +47163,22,637,378,453,55,55 +47164,22,637,378,453,55,55 +47165,22,637,378,453,55,55 +47166,22,637,379,618,55,55 +47167,22,637,379,618,55,55 +47168,22,637,379,618,55,55 +47169,22,637,380,618,56,56 +47170,22,637,380,618,56,56 +47171,22,637,380,618,56,56 +47172,22,637,381,536,56,56 +47173,22,637,381,536,56,56 +47174,22,637,381,536,56,56 +47175,22,637,382,453,56,56 +47176,22,637,382,453,56,56 +47177,22,637,382,453,56,56 +47178,22,637,383,536,57,57 +47179,22,637,383,536,57,57 +47180,22,637,383,536,57,57 +47181,22,637,384,616,57,57 +47182,22,637,384,616,57,57 +47183,22,637,384,616,57,57 +47184,22,637,385,536,57,57 +47185,22,637,385,536,57,57 +47186,22,637,385,536,57,57 +47187,22,637,386,616,57,57 +47188,22,637,386,616,57,57 +47189,22,637,386,616,57,57 +47190,22,638,331,339,45,60 +47191,22,638,332,618,45,60 +47192,22,638,333,339,60,60 +47193,22,638,333,339,60,60 +47194,22,638,333,339,60,60 +47195,22,638,333,339,50,60 +47196,22,638,334,339,60,60 +47197,22,638,334,339,60,60 +47198,22,638,334,339,60,60 +47199,22,638,334,339,50,60 +47200,22,638,335,339,60,60 +47201,22,638,335,339,60,60 +47202,22,638,335,339,60,60 +47203,22,638,335,339,50,60 +47204,22,638,336,339,45,60 +47205,22,638,337,618,45,60 +47206,22,638,338,340,60,60 +47207,22,638,338,340,60,60 +47208,22,638,338,340,60,60 +47209,22,638,338,340,50,60 +47210,22,638,339,340,60,60 +47211,22,638,339,340,60,60 +47212,22,638,339,340,60,60 +47213,22,638,339,340,50,60 +47214,22,638,340,340,60,60 +47215,22,638,340,340,60,60 +47216,22,638,340,340,60,60 +47217,22,638,340,340,50,60 +47218,22,638,341,618,45,60 +47219,22,638,342,618,45,60 +47220,22,638,343,618,60,60 +47221,22,638,343,618,60,60 +47222,22,638,343,618,60,60 +47223,22,638,343,618,50,60 +47224,22,638,344,618,60,60 +47225,22,638,344,618,60,60 +47226,22,638,344,618,60,60 +47227,22,638,344,618,50,60 +47228,22,638,345,618,60,60 +47229,22,638,345,618,60,60 +47230,22,638,345,618,60,60 +47231,22,638,345,618,50,60 +47232,22,638,346,618,45,60 +47233,22,638,347,618,45,60 +47234,22,638,348,618,60,60 +47235,22,638,348,618,60,60 +47236,22,638,348,618,60,60 +47237,22,638,348,618,50,60 +47238,22,638,349,537,60,60 +47239,22,638,349,537,60,60 +47240,22,638,349,537,60,60 +47241,22,638,349,537,50,60 +47242,22,638,350,537,60,60 +47243,22,638,350,537,60,60 +47244,22,638,350,537,60,60 +47245,22,638,350,537,50,60 +47246,22,638,375,536,54,54 +47247,22,638,375,536,54,54 +47248,22,638,375,536,54,54 +47249,22,638,376,588,54,54 +47250,22,638,376,588,54,54 +47251,22,638,376,588,54,54 +47252,22,638,377,536,55,55 +47253,22,638,377,536,55,55 +47254,22,638,377,536,55,55 +47255,22,638,378,453,55,55 +47256,22,638,378,453,55,55 +47257,22,638,378,453,55,55 +47258,22,638,379,618,55,55 +47259,22,638,379,618,55,55 +47260,22,638,379,618,55,55 +47261,22,638,380,618,56,56 +47262,22,638,380,618,56,56 +47263,22,638,380,618,56,56 +47264,22,638,381,536,56,56 +47265,22,638,381,536,56,56 +47266,22,638,381,536,56,56 +47267,22,638,382,453,56,56 +47268,22,638,382,453,56,56 +47269,22,638,382,453,56,56 +47270,22,638,383,536,57,57 +47271,22,638,383,536,57,57 +47272,22,638,383,536,57,57 +47273,22,638,384,616,57,57 +47274,22,638,384,616,57,57 +47275,22,638,384,616,57,57 +47276,22,638,385,536,57,57 +47277,22,638,385,536,57,57 +47278,22,638,385,536,57,57 +47279,22,638,386,616,57,57 +47280,22,638,386,616,57,57 +47281,22,638,386,616,57,57 +47282,22,639,351,578,41,41 +47283,22,639,352,572,41,41 +47284,22,639,353,569,42,42 +47285,22,639,354,572,43,43 +47286,22,639,355,624,42,42 +47287,22,639,356,510,44,44 +47288,22,639,357,624,44,44 +47289,22,639,358,89,44,44 +47290,22,639,359,578,43,43 +47291,22,639,360,569,44,44 +47292,22,639,361,578,43,43 +47293,22,639,362,569,44,44 +47294,22,639,363,531,37,37 +47295,22,639,364,531,37,37 +47296,22,639,365,587,38,38 +47297,22,639,366,531,38,38 +47298,22,639,367,531,39,39 +47299,22,639,368,531,39,39 +47300,22,639,369,531,40,40 +47301,22,639,370,531,40,40 +47302,22,639,371,573,40,40 +47303,22,639,372,579,40,40 +47304,22,639,373,573,40,40 +47305,22,639,374,579,40,40 +47306,22,639,375,578,37,37 +47307,22,639,376,572,37,37 +47308,22,639,377,569,38,38 +47309,22,639,378,572,39,39 +47310,22,639,379,624,38,38 +47311,22,639,380,510,40,40 +47312,22,639,381,624,40,40 +47313,22,639,382,89,40,40 +47314,22,639,383,578,39,39 +47315,22,639,384,569,40,40 +47316,22,639,385,578,39,39 +47317,22,639,386,569,40,40 +47318,22,645,351,588,40,40 +47319,22,645,352,55,40,40 +47320,22,645,353,207,41,41 +47321,22,645,354,183,40,40 +47322,22,645,355,335,42,42 +47323,22,645,356,336,42,42 +47324,22,645,357,591,41,41 +47325,22,645,358,616,40,40 +47326,22,645,359,207,43,43 +47327,22,645,360,588,43,43 +47328,22,645,361,207,43,43 +47329,22,645,362,588,43,43 +47330,22,645,363,531,36,36 +47331,22,645,364,531,36,36 +47332,22,645,365,587,37,37 +47333,22,645,366,531,37,37 +47334,22,645,367,531,38,38 +47335,22,645,368,531,38,38 +47336,22,645,369,531,39,39 +47337,22,645,370,531,39,39 +47338,22,645,371,472,39,39 +47339,22,645,372,184,39,39 +47340,22,645,373,472,39,39 +47341,22,645,374,184,39,39 +47342,22,645,331,118,40,60 +47343,22,645,332,10016,40,60 +47344,22,645,333,118,50,70 +47345,22,645,334,118,50,70 +47346,22,645,335,118,50,70 +47347,22,645,336,118,40,60 +47348,22,645,337,550,40,60 +47349,22,645,338,119,50,70 +47350,22,645,339,119,50,70 +47351,22,645,340,119,50,70 +47352,22,645,341,10016,25,40 +47353,22,645,342,418,25,40 +47354,22,645,343,10016,30,40 +47355,22,645,344,10016,30,40 +47356,22,645,345,10016,30,40 +47357,22,645,346,418,25,40 +47358,22,645,347,550,25,40 +47359,22,645,348,419,30,40 +47360,22,645,349,419,30,40 +47361,22,645,350,419,30,40 +47362,22,645,375,588,36,36 +47363,22,645,376,55,36,36 +47364,22,645,377,207,37,37 +47365,22,645,378,183,36,36 +47366,22,645,379,335,38,38 +47367,22,645,380,336,38,38 +47368,22,645,381,591,37,37 +47369,22,645,382,616,36,36 +47370,22,645,383,207,39,39 +47371,22,645,384,588,39,39 +47372,22,645,385,207,39,39 +47373,22,645,386,588,39,39 +47374,22,646,351,415,39,39 +47375,22,646,352,315,39,39 +47376,22,646,353,540,40,40 +47377,22,646,354,520,41,41 +47378,22,646,355,127,40,40 +47379,22,646,356,520,40,40 +47380,22,646,357,127,42,42 +47381,22,646,358,540,42,42 +47382,22,646,359,315,41,41 +47383,22,646,360,520,42,42 +47384,22,646,361,315,41,41 +47385,22,646,362,520,42,42 +47386,22,646,363,531,35,35 +47387,22,646,364,531,35,35 +47388,22,646,365,587,36,36 +47389,22,646,366,206,36,36 +47390,22,646,367,531,37,37 +47391,22,646,368,531,37,37 +47392,22,646,369,521,38,38 +47393,22,646,370,542,38,38 +47394,22,646,371,416,38,38 +47395,22,646,372,407,38,38 +47396,22,646,373,416,38,38 +47397,22,646,374,407,38,38 +47398,22,646,375,415,35,35 +47399,22,646,376,315,35,35 +47400,22,646,377,540,36,36 +47401,22,646,378,520,37,37 +47402,22,646,379,127,36,36 +47403,22,646,380,520,36,36 +47404,22,646,381,127,38,38 +47405,22,646,382,540,38,38 +47406,22,646,383,315,37,37 +47407,22,646,384,520,38,38 +47408,22,646,385,315,37,37 +47409,22,646,386,520,38,38 +47410,22,647,351,114,38,38 +47411,22,647,352,279,38,38 +47412,22,647,353,426,38,38 +47413,22,647,354,337,40,40 +47414,22,647,355,338,40,40 +47415,22,647,356,359,39,39 +47416,22,647,357,426,39,39 +47417,22,647,358,359,41,41 +47418,22,647,359,114,40,40 +47419,22,647,360,279,40,40 +47420,22,647,361,114,41,41 +47421,22,647,362,279,41,41 +47422,22,647,363,531,34,34 +47423,22,647,364,531,34,34 +47424,22,647,365,587,35,35 +47425,22,647,366,531,35,35 +47426,22,647,367,531,36,36 +47427,22,647,368,531,36,36 +47428,22,647,369,531,37,37 +47429,22,647,370,531,37,37 +47430,22,647,371,531,37,37 +47431,22,647,372,465,37,37 +47432,22,647,373,531,37,37 +47433,22,647,374,465,37,37 +47434,22,647,331,370,40,60 +47435,22,647,332,90,40,60 +47436,22,647,333,370,50,70 +47437,22,647,334,370,50,70 +47438,22,647,335,370,50,70 +47439,22,647,336,90,40,60 +47440,22,647,337,370,40,60 +47441,22,647,338,90,50,70 +47442,22,647,339,91,50,70 +47443,22,647,340,91,50,70 +47444,22,647,341,592,25,40 +47445,22,647,342,120,25,40 +47446,22,647,343,10016,30,40 +47447,22,647,344,592,30,40 +47448,22,647,345,592,30,40 +47449,22,647,346,120,25,40 +47450,22,647,347,593,25,40 +47451,22,647,348,550,30,40 +47452,22,647,349,121,30,40 +47453,22,647,350,121,30,40 +47454,22,647,375,114,34,34 +47455,22,647,376,279,34,34 +47456,22,647,377,426,34,34 +47457,22,647,378,337,36,36 +47458,22,647,379,338,36,36 +47459,22,647,380,359,35,35 +47460,22,647,381,426,35,35 +47461,22,647,382,359,37,37 +47462,22,647,383,114,36,36 +47463,22,647,384,279,36,36 +47464,22,647,385,114,37,37 +47465,22,647,386,279,37,37 +47466,22,648,351,55,38,38 +47467,22,648,352,619,37,37 +47468,22,648,353,426,38,38 +47469,22,648,354,334,37,37 +47470,22,648,355,619,39,39 +47471,22,648,356,359,38,38 +47472,22,648,357,426,39,39 +47473,22,648,358,359,40,40 +47474,22,648,359,55,39,39 +47475,22,648,360,334,40,40 +47476,22,648,361,55,39,39 +47477,22,648,362,334,40,40 +47478,22,648,363,531,33,33 +47479,22,648,364,531,33,33 +47480,22,648,365,587,34,34 +47481,22,648,366,531,34,34 +47482,22,648,367,531,35,35 +47483,22,648,368,531,35,35 +47484,22,648,369,531,36,36 +47485,22,648,370,531,36,36 +47486,22,648,371,531,36,36 +47487,22,648,372,531,36,36 +47488,22,648,373,531,36,36 +47489,22,648,374,531,36,36 +47490,22,648,331,118,40,60 +47491,22,648,332,10016,40,60 +47492,22,648,333,118,50,70 +47493,22,648,334,118,50,70 +47494,22,648,335,118,50,70 +47495,22,648,336,118,40,60 +47496,22,648,337,550,40,60 +47497,22,648,338,119,50,70 +47498,22,648,339,119,50,70 +47499,22,648,340,119,50,70 +47500,22,648,341,10016,25,40 +47501,22,648,342,418,25,40 +47502,22,648,343,10016,30,40 +47503,22,648,344,10016,30,40 +47504,22,648,345,10016,30,40 +47505,22,648,346,418,25,40 +47506,22,648,347,550,25,40 +47507,22,648,348,419,30,40 +47508,22,648,349,419,30,40 +47509,22,648,350,419,30,40 +47510,22,648,375,55,34,34 +47511,22,648,376,333,33,33 +47512,22,648,377,426,34,34 +47513,22,648,378,619,33,33 +47514,22,648,379,619,35,35 +47515,22,648,380,359,34,34 +47516,22,648,381,426,35,35 +47517,22,648,382,359,36,36 +47518,22,648,383,55,35,35 +47519,22,648,384,334,36,36 +47520,22,648,385,55,35,35 +47521,22,648,386,334,36,36 +47522,22,649,351,37,37,37 +47523,22,649,352,548,37,37 +47524,22,649,353,334,38,38 +47525,22,649,354,548,39,39 +47526,22,649,355,183,38,38 +47527,22,649,356,55,38,38 +47528,22,649,357,437,36,36 +47529,22,649,358,437,36,36 +47530,22,649,359,548,39,39 +47531,22,649,360,334,40,40 +47532,22,649,361,548,39,39 +47533,22,649,362,334,40,40 +47534,22,649,363,531,33,33 +47535,22,649,364,531,33,33 +47536,22,649,365,587,34,34 +47537,22,649,366,531,34,34 +47538,22,649,367,531,35,35 +47539,22,649,368,531,35,35 +47540,22,649,369,531,36,36 +47541,22,649,370,184,36,36 +47542,22,649,371,549,36,36 +47543,22,649,372,38,36,36 +47544,22,649,373,549,36,36 +47545,22,649,374,38,36,36 +47546,22,649,331,118,40,60 +47547,22,649,332,10016,40,60 +47548,22,649,333,118,50,70 +47549,22,649,334,118,50,70 +47550,22,649,335,118,50,70 +47551,22,649,336,118,40,60 +47552,22,649,337,550,40,60 +47553,22,649,338,119,50,70 +47554,22,649,339,119,50,70 +47555,22,649,340,119,50,70 +47556,22,649,341,10016,25,40 +47557,22,649,342,183,25,40 +47558,22,649,343,10016,30,40 +47559,22,649,344,10016,30,40 +47560,22,649,345,10016,30,40 +47561,22,649,346,183,25,40 +47562,22,649,347,550,25,40 +47563,22,649,348,550,30,40 +47564,22,649,349,184,30,40 +47565,22,649,350,184,30,40 +47566,22,649,375,333,33,33 +47567,22,649,376,548,33,33 +47568,22,649,377,37,34,34 +47569,22,649,378,436,32,32 +47570,22,649,379,183,34,34 +47571,22,649,380,55,34,34 +47572,22,649,381,548,35,35 +47573,22,649,382,436,32,32 +47574,22,649,383,548,35,35 +47575,22,649,384,334,36,36 +47576,22,649,385,548,35,35 +47577,22,649,386,334,36,36 +47578,22,650,351,28,62,62 +47579,22,650,352,207,63,63 +47580,22,650,353,28,64,64 +47581,22,650,354,560,63,63 +47582,22,650,355,538,63,63 +47583,22,650,356,247,63,63 +47584,22,650,357,538,64,64 +47585,22,650,358,538,65,65 +47586,22,650,359,247,65,65 +47587,22,650,360,207,65,65 +47588,22,650,361,247,65,65 +47589,22,650,362,207,65,65 +47590,22,650,363,531,54,54 +47591,22,650,364,531,54,54 +47592,22,650,365,587,55,55 +47593,22,650,366,531,55,55 +47594,22,650,367,531,56,56 +47595,22,650,368,531,56,56 +47596,22,650,369,531,57,57 +47597,22,650,370,539,57,57 +47598,22,650,371,472,57,57 +47599,22,650,372,248,57,57 +47600,22,650,373,472,57,57 +47601,22,650,374,248,57,57 +47602,22,650,375,28,54,54 +47603,22,650,376,207,55,55 +47604,22,650,377,28,56,56 +47605,22,650,378,560,55,55 +47606,22,650,379,538,55,55 +47607,22,650,380,247,55,55 +47608,22,650,381,538,56,56 +47609,22,650,382,538,57,57 +47610,22,650,383,247,57,57 +47611,22,650,384,207,57,57 +47612,22,650,385,247,57,57 +47613,22,650,386,207,57,57 +47614,22,651,351,577,23,23 +47615,22,651,352,572,23,23 +47616,22,651,353,568,23,23 +47617,22,651,354,572,25,25 +47618,22,651,355,510,24,24 +47619,22,651,356,510,26,26 +47620,22,651,357,568,24,24 +47621,22,651,358,577,24,24 +47622,22,651,359,568,25,25 +47623,22,651,360,577,25,25 +47624,22,651,361,568,26,26 +47625,22,651,362,577,26,26 +47626,22,651,363,531,21,21 +47627,22,651,364,531,21,21 +47628,22,651,365,587,22,22 +47629,22,651,366,531,22,22 +47630,22,651,367,531,23,23 +47631,22,651,368,531,23,23 +47632,22,651,369,531,24,24 +47633,22,651,370,531,24,24 +47634,22,651,371,573,24,24 +47635,22,651,372,531,24,24 +47636,22,651,373,573,24,24 +47637,22,651,374,531,24,24 +47638,22,651,375,577,21,21 +47639,22,651,376,572,21,21 +47640,22,651,377,568,21,21 +47641,22,651,378,572,23,23 +47642,22,651,379,510,22,22 +47643,22,651,380,510,24,24 +47644,22,651,381,568,22,22 +47645,22,651,382,577,22,22 +47646,22,651,383,568,23,23 +47647,22,651,384,577,23,23 +47648,22,651,385,568,24,24 +47649,22,651,386,577,24,24 +47650,22,652,351,548,23,23 +47651,22,652,352,541,23,23 +47652,22,652,353,415,24,24 +47653,22,652,354,544,23,23 +47654,22,652,355,315,25,25 +47655,22,652,356,544,23,23 +47656,22,652,357,315,26,26 +47657,22,652,358,127,26,26 +47658,22,652,359,548,25,25 +47659,22,652,360,541,26,26 +47660,22,652,361,548,26,26 +47661,22,652,362,541,26,26 +47662,22,652,363,531,21,21 +47663,22,652,364,531,23,23 +47664,22,652,365,587,22,22 +47665,22,652,366,511,22,22 +47666,22,652,367,513,22,22 +47667,22,652,368,515,22,22 +47668,22,652,369,416,24,24 +47669,22,652,370,407,24,24 +47670,22,652,371,542,24,24 +47671,22,652,372,549,24,24 +47672,22,652,373,542,24,24 +47673,22,652,374,549,24,24 +47674,22,652,331,60,40,60 +47675,22,652,332,10016,40,60 +47676,22,652,333,60,50,70 +47677,22,652,334,60,50,70 +47678,22,652,335,60,50,70 +47679,22,652,336,61,40,60 +47680,22,652,337,550,40,60 +47681,22,652,338,61,50,70 +47682,22,652,339,186,50,70 +47683,22,652,340,186,50,70 +47684,22,652,341,10016,10,25 +47685,22,652,342,418,10,25 +47686,22,652,343,10016,10,25 +47687,22,652,344,10016,10,25 +47688,22,652,345,10016,10,25 +47689,22,652,346,418,10,30 +47690,22,652,347,550,10,30 +47691,22,652,348,419,10,30 +47692,22,652,349,419,10,30 +47693,22,652,350,419,10,30 +47694,22,652,375,548,21,21 +47695,22,652,376,541,21,21 +47696,22,652,377,415,22,22 +47697,22,652,378,543,21,21 +47698,22,652,379,315,23,23 +47699,22,652,380,543,21,21 +47700,22,652,381,315,24,24 +47701,22,652,382,127,24,24 +47702,22,652,383,548,23,23 +47703,22,652,384,541,24,24 +47704,22,652,385,548,24,24 +47705,22,652,386,541,24,24 +47706,22,653,351,560,65,65 +47707,22,653,352,558,65,65 +47708,22,653,353,505,64,64 +47709,22,653,354,357,66,66 +47710,22,653,355,538,65,65 +47711,22,653,356,455,66,66 +47712,22,653,357,560,66,66 +47713,22,653,358,538,67,67 +47714,22,653,359,560,66,66 +47715,22,653,360,538,67,67 +47716,22,653,361,560,66,66 +47717,22,653,362,538,67,67 +47718,22,653,363,531,56,56 +47719,22,653,364,531,56,56 +47720,22,653,365,531,57,57 +47721,22,653,366,206,57,57 +47722,22,653,367,531,58,58 +47723,22,653,368,531,58,58 +47724,22,653,369,531,59,59 +47725,22,653,370,531,59,59 +47726,22,653,371,531,59,59 +47727,22,653,372,539,59,59 +47728,22,653,373,531,59,59 +47729,22,653,374,539,59,59 +47730,22,653,331,456,50,60 +47731,22,653,332,116,50,60 +47732,22,653,333,456,60,70 +47733,22,653,334,222,60,70 +47734,22,653,335,222,60,70 +47735,22,653,336,116,50,60 +47736,22,653,337,457,50,60 +47737,22,653,338,117,60,70 +47738,22,653,339,230,60,70 +47739,22,653,340,230,60,70 +47740,22,653,341,592,45,60 +47741,22,653,342,592,45,60 +47742,22,653,343,592,50,60 +47743,22,653,344,592,50,60 +47744,22,653,345,592,50,60 +47745,22,653,346,594,45,60 +47746,22,653,347,594,45,60 +47747,22,653,348,594,50,60 +47748,22,653,349,593,50,60 +47749,22,653,350,593,50,60 +47750,22,653,375,560,57,57 +47751,22,653,376,558,57,57 +47752,22,653,377,505,56,56 +47753,22,653,378,357,58,58 +47754,22,653,379,538,57,57 +47755,22,653,380,455,58,58 +47756,22,653,381,560,58,58 +47757,22,653,382,538,59,59 +47758,22,653,383,560,58,58 +47759,22,653,384,538,59,59 +47760,22,653,385,560,58,58 +47761,22,653,386,538,59,59 +47762,22,703,363,504,2,2 +47763,22,703,364,504,2,2 +47764,22,703,365,504,3,3 +47765,22,703,366,504,3,3 +47766,22,703,367,504,4,4 +47767,22,703,368,504,4,4 +47768,22,703,369,504,4,4 +47769,22,703,370,504,4,4 +47770,22,703,371,504,4,4 +47771,22,703,372,504,4,4 +47772,22,703,373,504,4,4 +47773,22,703,374,504,4,4 +47774,22,703,331,60,40,60 +47775,22,703,332,10016,40,60 +47776,22,703,333,60,50,70 +47777,22,703,334,60,50,70 +47778,22,703,335,60,50,70 +47779,22,703,336,61,40,60 +47780,22,703,337,550,40,60 +47781,22,703,338,61,50,70 +47782,22,703,339,186,50,70 +47783,22,703,340,186,50,70 +47784,22,703,341,10016,5,15 +47785,22,703,342,10016,5,15 +47786,22,703,343,10016,5,15 +47787,22,703,344,10016,5,15 +47788,22,703,345,10016,5,15 +47789,22,703,346,550,5,15 +47790,22,703,347,550,5,15 +47791,22,703,348,550,5,15 +47792,22,703,349,550,5,15 +47793,22,703,350,550,5,15 +47794,22,703,375,504,2,2 +47795,22,703,376,509,2,2 +47796,22,703,377,504,3,3 +47797,22,703,378,509,3,3 +47798,22,703,379,504,4,4 +47799,22,703,380,509,4,4 +47800,22,703,381,504,4,4 +47801,22,703,382,509,4,4 +47802,22,703,383,504,4,4 +47803,22,703,384,509,4,4 +47804,22,703,385,504,4,4 +47805,22,703,386,509,4,4 +47806,22,704,351,519,9,9 +47807,22,704,351,191,9,9 +47808,22,704,351,519,9,9 +47809,22,704,351,519,9,9 +47810,22,704,352,543,10,10 +47811,22,704,353,504,10,10 +47812,22,704,354,509,10,10 +47813,22,704,355,504,10,10 +47814,22,704,356,540,11,11 +47815,22,704,357,519,10,10 +47816,22,704,358,540,10,10 +47817,22,704,359,509,11,11 +47818,22,704,360,191,11,11 +47819,22,704,360,191,10,10 +47820,22,704,360,191,11,11 +47821,22,704,360,191,11,11 +47822,22,704,361,509,11,11 +47823,22,704,361,191,11,11 +47824,22,704,361,509,11,11 +47825,22,704,361,509,11,11 +47826,22,704,362,191,11,11 +47827,22,704,363,531,2,2 +47828,22,704,364,531,2,2 +47829,22,704,365,531,3,3 +47830,22,704,366,206,3,3 +47831,22,704,367,531,4,4 +47832,22,704,368,531,4,4 +47833,22,704,369,531,4,4 +47834,22,704,370,531,4,4 +47835,22,704,371,531,4,4 +47836,22,704,372,531,4,4 +47837,22,704,373,531,4,4 +47838,22,704,374,531,4,4 +47839,22,704,331,60,40,60 +47840,22,704,332,10016,40,60 +47841,22,704,333,60,50,70 +47842,22,704,334,60,50,70 +47843,22,704,335,60,50,70 +47844,22,704,336,61,40,60 +47845,22,704,337,550,40,60 +47846,22,704,338,61,50,70 +47847,22,704,339,186,50,70 +47848,22,704,340,186,50,70 +47849,22,704,341,10016,5,15 +47850,22,704,342,298,5,15 +47851,22,704,343,10016,5,15 +47852,22,704,344,10016,5,15 +47853,22,704,345,10016,5,15 +47854,22,704,346,550,5,15 +47855,22,704,347,183,5,15 +47856,22,704,348,550,5,15 +47857,22,704,349,184,5,15 +47858,22,704,350,184,5,15 +47859,22,704,375,519,2,2 +47860,22,704,375,191,2,2 +47861,22,704,375,519,2,2 +47862,22,704,375,519,2,2 +47863,22,704,376,540,2,2 +47864,22,704,377,504,3,3 +47865,22,704,378,509,3,3 +47866,22,704,379,504,3,3 +47867,22,704,380,540,3,3 +47868,22,704,381,519,4,4 +47869,22,704,382,540,4,4 +47870,22,704,383,509,4,4 +47871,22,704,384,191,4,4 +47872,22,704,384,191,3,3 +47873,22,704,384,191,4,4 +47874,22,704,384,191,4,4 +47875,22,704,385,509,4,4 +47876,22,704,385,191,4,4 +47877,22,704,385,509,4,4 +47878,22,704,385,509,4,4 +47879,22,704,386,191,4,4 +47880,22,705,351,591,44,44 +47881,22,705,352,619,44,44 +47882,22,705,353,279,45,45 +47883,22,705,354,55,45,45 +47884,22,705,355,337,46,46 +47885,22,705,356,338,46,46 +47886,22,705,357,183,45,45 +47887,22,705,358,183,47,47 +47888,22,705,359,619,47,47 +47889,22,705,360,225,44,44 +47890,22,705,361,619,47,47 +47891,22,705,362,225,44,44 +47892,22,705,363,531,39,39 +47893,22,705,364,531,39,39 +47894,22,705,365,587,40,40 +47895,22,705,366,531,40,40 +47896,22,705,367,531,41,41 +47897,22,705,368,531,41,41 +47898,22,705,369,531,42,42 +47899,22,705,370,531,42,42 +47900,22,705,371,531,42,42 +47901,22,705,372,184,42,42 +47902,22,705,373,531,42,42 +47903,22,705,374,184,42,42 +47904,22,705,331,118,40,60 +47905,22,705,332,10016,40,60 +47906,22,705,333,118,50,70 +47907,22,705,334,118,50,70 +47908,22,705,335,118,50,70 +47909,22,705,336,118,40,60 +47910,22,705,337,550,40,60 +47911,22,705,338,119,50,70 +47912,22,705,339,119,50,70 +47913,22,705,340,119,50,70 +47914,22,705,341,10016,15,40 +47915,22,705,342,183,15,40 +47916,22,705,343,10016,15,40 +47917,22,705,344,10016,15,40 +47918,22,705,345,10016,15,40 +47919,22,705,346,183,15,40 +47920,22,705,347,550,15,40 +47921,22,705,348,550,25,45 +47922,22,705,349,184,25,45 +47923,22,705,350,184,25,45 +47924,22,705,375,591,39,39 +47925,22,705,376,619,39,39 +47926,22,705,377,279,40,40 +47927,22,705,378,55,40,40 +47928,22,705,379,337,41,41 +47929,22,705,380,338,41,41 +47930,22,705,381,183,40,40 +47931,22,705,382,183,42,42 +47932,22,705,383,619,42,42 +47933,22,705,384,225,39,39 +47934,22,705,385,619,42,42 +47935,22,705,386,225,39,39 +47936,22,706,351,626,54,54 +47937,22,706,352,538,53,53 +47938,22,706,353,207,54,54 +47939,22,706,354,620,53,53 +47940,22,706,355,591,54,54 +47941,22,706,356,55,55,55 +47942,22,706,357,620,53,53 +47943,22,706,358,538,54,54 +47944,22,706,359,627,52,52 +47945,22,706,360,626,56,56 +47946,22,706,361,627,52,52 +47947,22,706,362,626,56,56 +47948,22,706,363,531,48,48 +47949,22,706,364,531,48,48 +47950,22,706,365,587,49,49 +47951,22,706,366,531,49,49 +47952,22,706,367,531,50,50 +47953,22,706,368,531,50,50 +47954,22,706,369,531,51,51 +47955,22,706,370,531,51,51 +47956,22,706,371,472,51,51 +47957,22,706,372,539,51,51 +47958,22,706,373,472,51,51 +47959,22,706,374,539,51,51 +47960,22,706,331,60,40,60 +47961,22,706,332,10016,40,60 +47962,22,706,333,60,50,70 +47963,22,706,334,60,50,70 +47964,22,706,335,60,50,70 +47965,22,706,336,61,40,60 +47966,22,706,337,550,40,60 +47967,22,706,338,61,50,70 +47968,22,706,339,62,50,70 +47969,22,706,340,62,50,70 +47970,22,706,341,10016,40,55 +47971,22,706,342,418,40,55 +47972,22,706,343,10016,45,55 +47973,22,706,344,10016,45,55 +47974,22,706,345,10016,45,55 +47975,22,706,346,418,40,55 +47976,22,706,347,550,40,55 +47977,22,706,348,419,45,55 +47978,22,706,349,419,45,55 +47979,22,706,350,419,45,55 +47980,22,706,375,626,49,49 +47981,22,706,376,538,48,48 +47982,22,706,377,207,49,49 +47983,22,706,378,619,48,48 +47984,22,706,379,591,49,49 +47985,22,706,380,55,50,50 +47986,22,706,381,619,48,48 +47987,22,706,382,538,49,49 +47988,22,706,383,627,47,47 +47989,22,706,384,626,51,51 +47990,22,706,385,627,47,47 +47991,22,706,386,626,51,51 +47992,22,654,331,370,40,60 +47993,22,654,332,90,40,60 +47994,22,654,333,370,50,70 +47995,22,654,334,370,50,70 +47996,22,654,335,370,50,70 +47997,22,654,336,90,40,60 +47998,22,654,337,370,40,60 +47999,22,654,338,90,50,70 +48000,22,654,339,91,50,70 +48001,22,654,340,91,50,70 +48002,22,654,341,592,25,40 +48003,22,654,342,120,25,40 +48004,22,654,343,10016,30,40 +48005,22,654,344,592,30,40 +48006,22,654,345,592,30,40 +48007,22,654,346,120,25,40 +48008,22,654,347,593,25,40 +48009,22,654,348,550,30,40 +48010,22,654,349,121,30,40 +48011,22,654,350,121,30,40 +48012,22,655,331,456,50,60 +48013,22,655,332,116,50,60 +48014,22,655,333,456,60,70 +48015,22,655,334,456,60,70 +48016,22,655,335,456,60,70 +48017,22,655,336,116,50,60 +48018,22,655,337,457,50,60 +48019,22,655,338,117,60,70 +48020,22,655,339,230,60,70 +48021,22,655,340,230,60,70 +48022,22,655,341,592,45,60 +48023,22,655,342,592,45,60 +48024,22,655,343,592,50,60 +48025,22,655,344,592,50,60 +48026,22,655,345,592,50,60 +48027,22,655,346,594,45,60 +48028,22,655,347,594,45,60 +48029,22,655,348,594,50,60 +48030,22,655,349,593,50,60 +48031,22,655,350,593,50,60 +48032,22,707,331,370,40,60 +48033,22,707,332,223,40,60 +48034,22,707,333,370,50,70 +48035,22,707,334,370,50,70 +48036,22,707,335,370,50,70 +48037,22,707,336,223,40,60 +48038,22,707,337,370,40,60 +48039,22,707,338,223,50,70 +48040,22,707,339,224,50,70 +48041,22,707,340,224,50,70 +48042,22,707,341,592,30,45 +48043,22,707,342,458,30,45 +48044,22,707,343,223,35,45 +48045,22,707,344,592,35,45 +48046,22,707,345,592,35,45 +48047,22,707,346,593,30,45 +48048,22,707,347,594,30,45 +48049,22,707,348,226,35,45 +48050,22,707,349,594,35,45 +48051,22,707,350,594,35,45 diff --git a/data/v2/csv/item_categories.csv b/data/v2/csv/item_categories.csv new file mode 100644 index 00000000..d2e20821 --- /dev/null +++ b/data/v2/csv/item_categories.csv @@ -0,0 +1,45 @@ +id,pocket_id,identifier +1,7,stat-boosts +2,5,effort-drop +3,5,medicine +4,5,other +5,5,in-a-pinch +6,5,picky-healing +7,5,type-protection +8,5,baking-only +9,1,collectibles +10,1,evolution +11,1,spelunking +12,1,held-items +13,1,choice +14,1,effort-training +15,1,bad-held-items +16,1,training +17,1,plates +18,1,species-specific +19,1,type-enhancement +20,8,event-items +21,8,gameplay +22,8,plot-advancement +23,8,unused +24,1,loot +25,6,all-mail +26,2,vitamins +27,2,healing +28,2,pp-recovery +29,2,revival +30,2,status-cures +32,1,mulch +33,3,special-balls +34,3,standard-balls +35,1,dex-completion +36,1,scarves +37,4,all-machines +38,7,flutes +39,3,apricorn-balls +40,8,apricorn-box +41,8,data-cards +42,1,jewels +43,7,miracle-shooter +44,1,mega-stones +10001,8,xy-unknown diff --git a/data/v2/csv/item_category_prose.csv b/data/v2/csv/item_category_prose.csv new file mode 100644 index 00000000..6ac47251 --- /dev/null +++ b/data/v2/csv/item_category_prose.csv @@ -0,0 +1,45 @@ +item_category_id,local_language_id,name +1,9,Stat boosts +2,9,Effort drop +3,9,Medicine +4,9,Other +5,9,In a pinch +6,9,Picky healing +7,9,Type protection +8,9,Baking only +9,9,Collectibles +10,9,Evolution +11,9,Spelunking +12,9,Held items +13,9,Choice +14,9,Effort training +15,9,Bad held items +16,9,Training +17,9,Plates +18,9,Species-specific +19,9,Type enhancement +20,9,Event items +21,9,Gameplay +22,9,Plot advancement +23,9,Unused +24,9,Loot +25,9,All mail +26,9,Vitamins +27,9,Healing +28,9,PP recovery +29,9,Revival +30,9,Status cures +32,9,Mulch +33,9,Special balls +34,9,Standard balls +35,9,Dex completion +36,9,Scarves +37,9,All machines +38,9,Flutes +39,9,Apricorn balls +40,9,Apricorn Box +41,9,Data Cards +42,9,Jewels +43,9,Miracle Shooter +44,9,Mega Stones +10001,9,X/Y unknown diff --git a/data/v2/csv/item_flag_map.csv b/data/v2/csv/item_flag_map.csv new file mode 100644 index 00000000..842ccfcb --- /dev/null +++ b/data/v2/csv/item_flag_map.csv @@ -0,0 +1,612 @@ +item_id,item_flag_id +1,1 +1,2 +1,4 +1,5 +2,1 +2,2 +2,4 +2,5 +3,1 +3,2 +3,4 +3,5 +4,1 +4,2 +4,4 +4,5 +5,1 +5,2 +5,4 +5,5 +6,1 +6,2 +6,4 +6,5 +7,1 +7,2 +7,4 +7,5 +8,1 +8,2 +8,4 +8,5 +9,1 +9,2 +9,4 +9,5 +10,1 +10,2 +10,4 +10,5 +11,1 +11,2 +11,4 +11,5 +12,1 +12,2 +12,4 +12,5 +13,1 +13,2 +13,4 +13,5 +14,1 +14,2 +14,4 +14,5 +15,1 +15,2 +15,4 +15,5 +16,1 +16,2 +16,4 +16,5 +17,1 +17,2 +17,3 +17,4 +17,5 +18,1 +18,2 +18,3 +18,4 +18,5 +19,1 +19,2 +19,3 +19,4 +19,5 +20,1 +20,2 +20,3 +20,4 +20,5 +21,1 +21,2 +21,3 +21,4 +21,5 +22,1 +22,2 +22,3 +22,4 +22,5 +23,1 +23,2 +23,3 +23,4 +23,5 +24,1 +24,2 +24,3 +24,4 +24,5 +25,1 +25,2 +25,3 +25,4 +25,5 +26,1 +26,2 +26,3 +26,4 +26,5 +27,1 +27,2 +27,3 +27,4 +27,5 +28,1 +28,2 +28,3 +28,4 +28,5 +28,8 +29,1 +29,2 +29,3 +29,4 +29,5 +29,8 +30,1 +30,2 +30,3 +30,4 +30,5 +31,1 +31,2 +31,3 +31,4 +31,5 +32,1 +32,2 +32,3 +32,4 +32,5 +33,1 +33,2 +33,3 +33,4 +33,5 +34,1 +34,2 +34,3 +34,4 +34,5 +35,1 +35,2 +35,3 +35,4 +35,5 +36,1 +36,2 +36,3 +36,4 +36,5 +37,1 +37,2 +37,3 +37,4 +37,5 +38,1 +38,2 +38,3 +38,4 +38,5 +39,1 +39,2 +39,3 +39,4 +39,5 +40,1 +40,2 +40,3 +40,4 +40,5 +41,1 +41,2 +41,3 +41,4 +41,5 +42,1 +42,2 +42,3 +42,4 +42,5 +43,1 +43,2 +43,3 +43,4 +43,5 +44,1 +44,2 +44,3 +44,4 +44,5 +45,1 +45,2 +45,3 +45,4 +45,5 +46,1 +46,2 +46,3 +46,4 +46,5 +47,1 +47,2 +47,3 +47,4 +47,5 +48,1 +48,2 +48,3 +48,4 +48,5 +49,1 +49,2 +49,3 +49,4 +49,5 +50,1 +50,2 +50,3 +50,4 +50,5 +51,1 +51,2 +51,3 +51,4 +51,5 +52,1 +52,2 +52,3 +52,4 +52,5 +53,1 +53,2 +53,3 +53,4 +53,5 +54,1 +54,2 +54,3 +54,4 +54,5 +55,1 +55,2 +55,4 +55,5 +56,1 +56,2 +56,4 +56,5 +57,1 +57,2 +57,4 +57,5 +58,1 +58,2 +58,4 +58,5 +59,1 +59,2 +59,4 +59,5 +60,1 +60,2 +60,4 +60,5 +61,1 +61,2 +61,4 +61,5 +62,1 +62,2 +62,4 +62,5 +63,1 +63,2 +63,4 +63,5 +64,1 +64,2 +64,4 +64,5 +65,1 +65,2 +65,3 +65,4 +65,5 +66,1 +66,2 +66,4 +66,5 +67,1 +67,2 +67,4 +67,5 +68,1 +68,2 +68,3 +68,5 +69,1 +69,2 +69,3 +69,5 +70,1 +71,1 +72,8 +73,8 +74,8 +75,8 +80,8 +81,8 +82,8 +83,8 +84,8 +85,8 +91,8 +93,8 +99,8 +100,8 +101,8 +102,8 +103,8 +104,8 +105,8 +106,8 +110,8 +111,8 +112,5 +113,5 +126,7 +127,7 +128,7 +129,7 +130,7 +131,7 +132,7 +133,7 +134,7 +135,7 +136,7 +137,7 +138,7 +139,7 +140,7 +161,7 +162,7 +163,7 +164,7 +165,7 +166,7 +167,7 +168,7 +169,7 +170,7 +171,7 +172,7 +173,7 +174,7 +175,7 +176,7 +177,7 +178,7 +179,7 +180,7 +181,7 +182,7 +183,7 +184,7 +185,7 +186,7 +187,7 +188,7 +189,7 +190,5 +190,7 +191,5 +191,7 +192,5 +192,7 +193,5 +193,7 +194,5 +194,7 +195,5 +195,7 +196,5 +196,7 +197,5 +197,7 +198,5 +198,7 +199,5 +199,7 +200,5 +200,7 +201,5 +202,5 +203,5 +204,5 +205,5 +205,7 +206,5 +206,7 +206,8 +207,5 +207,7 +208,5 +208,7 +209,5 +209,7 +210,5 +210,7 +211,5 +211,7 +213,5 +214,5 +214,7 +215,5 +215,7 +215,8 +216,5 +216,7 +217,5 +217,7 +218,5 +218,7 +219,5 +219,7 +220,5 +220,7 +221,5 +221,7 +222,5 +222,7 +223,5 +223,7 +224,5 +224,7 +225,5 +225,7 +226,5 +226,7 +227,5 +227,7 +228,5 +228,7 +230,5 +230,7 +231,5 +231,7 +232,5 +232,7 +233,5 +234,5 +235,5 +236,5 +237,7 +238,7 +239,7 +240,7 +241,7 +242,5 +242,7 +243,5 +243,7 +244,5 +244,7 +245,5 +245,7 +246,5 +246,7 +246,8 +247,5 +247,7 +248,5 +248,7 +249,5 +249,7 +250,5 +250,7 +251,5 +252,5 +252,7 +253,5 +253,7 +254,5 +254,7 +255,5 +255,7 +255,8 +256,5 +256,7 +257,5 +257,7 +258,5 +258,7 +259,5 +259,7 +259,8 +260,5 +260,7 +260,8 +261,5 +261,7 +261,8 +262,5 +262,7 +262,8 +263,5 +263,7 +264,5 +264,7 +265,5 +265,7 +266,5 +266,7 +267,5 +267,7 +268,5 +268,7 +269,5 +269,7 +270,5 +270,7 +271,5 +271,7 +272,5 +272,7 +273,5 +273,7 +274,5 +274,7 +275,5 +275,7 +275,8 +276,5 +276,7 +276,8 +277,5 +277,7 +277,8 +278,5 +278,7 +278,8 +279,5 +279,7 +279,8 +280,5 +280,7 +280,8 +281,5 +281,7 +281,8 +282,5 +282,7 +282,8 +283,5 +283,7 +283,8 +284,5 +284,7 +284,8 +285,5 +285,7 +285,8 +286,5 +286,7 +286,8 +287,5 +287,7 +287,8 +288,5 +288,7 +288,8 +289,5 +289,7 +289,8 +290,5 +290,7 +290,8 +291,5 +291,7 +292,5 +292,7 +293,5 +293,7 +294,5 +294,7 +295,5 +295,7 +296,5 +296,7 +297,5 +303,5 +303,7 +304,5 +304,7 diff --git a/data/v2/csv/item_flag_prose.csv b/data/v2/csv/item_flag_prose.csv new file mode 100644 index 00000000..037b563d --- /dev/null +++ b/data/v2/csv/item_flag_prose.csv @@ -0,0 +1,9 @@ +item_flag_id,local_language_id,name,description +1,9,Countable,Has a count in the bag +2,9,Consumable,Consumed when used +3,9,Usable_overworld,Usable outside battle +4,9,Usable_in_battle,Usable in battle +5,9,Holdable,Can be held by a Pokémon +6,9,Holdable_passive,Works passively when held +7,9,Holdable_active,Usable by a Pokémon when held +8,9,Underground,Appears in Sinnoh Underground diff --git a/data/v2/csv/item_flags.csv b/data/v2/csv/item_flags.csv new file mode 100644 index 00000000..e508d914 --- /dev/null +++ b/data/v2/csv/item_flags.csv @@ -0,0 +1,9 @@ +id,identifier +1,countable +2,consumable +3,usable-overworld +4,usable-in-battle +5,holdable +6,holdable-passive +7,holdable-active +8,underground diff --git a/data/v2/csv/item_flavor_summaries.csv b/data/v2/csv/item_flavor_summaries.csv new file mode 100644 index 00000000..bc3fd50b --- /dev/null +++ b/data/v2/csv/item_flavor_summaries.csv @@ -0,0 +1 @@ +item_id,local_language_id,flavor_summary diff --git a/data/v2/csv/item_flavor_text.csv b/data/v2/csv/item_flavor_text.csv new file mode 100644 index 00000000..e70148eb --- /dev/null +++ b/data/v2/csv/item_flavor_text.csv @@ -0,0 +1,26392 @@ +item_id,version_group_id,language_id,flavor_text +1,5,9,"The best BALL that +catches a POKéMON +without fail." +1,6,9,"The best BALL that +catches a POKéMON +without fail." +1,7,9,"The best BALL with the ultimate +performance. It will catch any wild +POKéMON without fail." +1,8,9,"The best Ball with the ultimate level of +performance. It will catch any wild +Pokémon without fail." +1,9,9,"The best Ball with the ultimate level of +performance. It will catch any wild +Pokémon without fail." +1,10,9,"The best Ball with the ultimate level of +performance. It will catch any wild +Pokémon without fail." +1,11,5,"Assurément la Ball la plus performante. +Elle permet de capturer à coup sûr un +Pokémon sauvage." +1,11,9,"The best Ball with the ultimate level of +performance. It will catch any wild +Pokémon without fail." +1,14,9,"The best Ball with the ultimate level of +performance. It will catch any wild +Pokémon without fail." +1,15,1,"やせいの ポケモンを かならず +つかまえることが できる +さいこう せいのうの ボール。" +1,15,3,"야생 포켓몬을 반드시 +잡을 수 있는 +최고 성능의 볼." +1,15,5,"Assurément la Ball la plus performante. +Elle permet de capturer à coup sûr un Pokémon +sauvage." +1,15,6,"Der beste Ball! Damit fängst du garantiert jedes +wilde Pokémon." +1,15,7,"La Poké Ball definitiva. Atrapa cualquier Pokémon +salvaje y no falla nunca." +1,15,8,"La Poké Ball dalle prestazioni migliori: +cattura qualsiasi Pokémon selvatico senza +mai fallire." +1,15,9,"The best Poké Ball with the ultimate +level of performance. With it, you will +catch any wild Pokémon without fail." +1,15,11,"野生の ポケモンを 必ず +捕まえることが できる +最高 性能の ボール。" +2,5,9,"A better BALL with +a higher catch rate +than a GREAT BALL." +2,6,9,"A better BALL with +a higher catch rate +than a GREAT BALL." +2,7,9,"A very high-grade BALL that offers +a higher POKéMON catch rate than +a GREAT BALL." +2,8,9,"An ultra-performance Ball that +provides a higher Pokémon catch rate +than a Great Ball." +2,9,9,"An ultra-performance Ball that +provides a higher Pokémon catch rate +than a Great Ball." +2,10,9,"An ultra-performance Ball that +provides a higher Pokémon catch rate +than a Great Ball." +2,11,5,"Une Ball ultraperformante dont le taux +de réussite est supérieur à celui de la +Super Ball." +2,11,9,"An ultra-performance Ball that +provides a higher Pokémon catch rate +than a Great Ball." +2,14,9,"An ultra-performance Ball that +provides a higher Pokémon catch rate +than a Great Ball." +2,15,1,"スーパーボールよりも さらに +ポケモンを つかまえやすくなった +すごく せいのうのいい ボール。" +2,15,3,"수퍼볼보다도 더욱 +포켓몬을 잡기 쉬워진 +매우 성능이 좋은 볼." +2,15,5,"Une Ball ultraperformante dont le taux de +réussite est supérieur à celui de la Super Ball." +2,15,6,"Ein Ball mit hoher Erfolgsquote. Dem Superball in +allen Punkten überlegen." +2,15,7,"Poké Ball de rendimiento superior. Tiene un +índice de éxito mayor al de la Super Ball." +2,15,8,"Poké Ball dalle prestazioni eccellenti: +fornisce maggiori probabilità di cattura rispetto +alla Mega Ball." +2,15,9,"An ultra-high-performance Poké Ball +that provides a higher success rate for +catching Pokémon than a Great Ball." +2,15,11,"スーパーボールよりも さらに +ポケモンを 捕まえやすくなった +すごく 性能のいい ボール。" +3,5,9,"A good BALL with a +higher catch rate +than a POKé BALL." +3,6,9,"A good BALL with a +higher catch rate +than a POKé BALL." +3,7,9,"A good, quality BALL that offers +a higher POKéMON catch rate than +a standard POKé BALL." +3,8,9,"A good, high-performance Ball that +provides a higher Pokémon catch rate +than a standard Poké Ball." +3,9,9,"A good, high-performance Ball that +provides a higher Pokémon catch rate +than a standard Poké Ball." +3,10,9,"A good, high-performance Ball that +provides a higher Pokémon catch rate +than a standard Poké Ball." +3,11,5,"Une Ball très performante dont le taux +de réussite est supérieur à celui de la +Poké Ball." +3,11,9,"A good, high-performance Ball that +provides a higher Pokémon catch rate +than a standard Poké Ball." +3,14,9,"A good, high-performance Ball that +provides a higher Pokémon catch rate +than a standard Poké Ball." +3,15,1,"モンスターボールよりも さらに +ポケモンを つかまえやすくなった +すこし せいのうのいい ボール。" +3,15,3,"몬스터볼보다도 더욱 +포켓몬을 잡기 쉬워진 +약간 성능이 좋은 볼." +3,15,5,"Une Ball très performante dont le taux de +réussite est supérieur à celui de la Poké Ball." +3,15,6,"Ein Ball mit guter Erfolgsquote. Dem Pokéball in +allen Punkten überlegen." +3,15,7,"Poké Ball de alto rendimiento. Tiene un índice de +éxito superior al de la Poké Ball." +3,15,8,"Poké Ball dalle ottime prestazioni: +fornisce maggiori probabilità di cattura rispetto +alla normale Poké Ball." +3,15,9,"A good, high-performance Poké Ball +that provides a higher Pokémon catch +rate than a standard Poké Ball can." +3,15,11,"モンスターボールよりも さらに +ポケモンを 捕まえやすくなった +少し 性能のいい ボール。" +4,5,9,"A tool used for +catching wild +POKéMON." +4,6,9,"A tool used for +catching wild +POKéMON." +4,7,9,"A BALL thrown to catch a wild +POKéMON. It is designed in a +capsule style." +4,8,9,"A device for catching wild Pokémon. +It is thrown like a ball at the target. +It is designed as a capsule system." +4,9,9,"A device for catching wild Pokémon. +It is thrown like a ball at the target. +It is designed as a capsule system." +4,10,9,"A device for catching wild Pokémon. +It is thrown like a ball at the target. +It is designed as a capsule system." +4,11,5,"Un objet pareil à une capsule, qui +capture les Pokémon sauvages. Il suffit +pour cela de le jeter comme une balle." +4,11,9,"A device for catching wild Pokémon. +It is thrown like a ball at the target. +It is designed as a capsule system." +4,14,9,"A device for catching wild Pokémon. +It is thrown like a ball at the target. +It is designed as a capsule system." +4,15,1,"やせいの ポケモンに なげて +つかまえる ための ボール。 +カプセルしきに なっている。" +4,15,3,"야생 포켓몬에게 던져서 +잡기 위한 볼. +캡슐식으로 되어 있다." +4,15,5,"Un objet semblable à une capsule, qui capture +les Pokémon sauvages. Il suffit pour cela de le +jeter comme une balle." +4,15,6,"Damit fängst du wilde Pokémon. Du wirfst ihn wie +einen normalen Ball. Das Design ähnelt dem einer +Kapsel." +4,15,7,"Dispositivo con diseño capsular que atrapa +Pokémon salvajes. Se lanza como una bola +contra el blanco." +4,15,8,"Strumento dotato di capsula usato per catturare +Pokémon selvatici. Si lancia contro il bersaglio +come una palla." +4,15,9,"A device for catching wild Pokémon. +It’s thrown like a ball at a Pokémon, +comfortably encapsulating its target." +4,15,11,"野生の ポケモンに 投げて +捕まえるための ボール。 +カプセル式に なっている。" +5,5,9,"A special BALL that +is used only in the +SAFARI ZONE." +5,6,9,"A special BALL that +is used only in the +SAFARI ZONE." +5,7,9,"A special BALL that is used only in +the SAFARI ZONE. It is finished in +a camouflage pattern." +5,8,9,"A special Poké Ball that is used only in +the Great Marsh. It is decorated in a +camouflage pattern." +5,9,9,"A special Poké Ball that is used only in +the Great Marsh. It is decorated in a +camouflage pattern." +5,10,9,"A special Poké Ball that is used only in +the Great Marsh. It is decorated in a +camouflage pattern." +5,11,5,"Une Poké Ball spéciale dont l’usage +est réservé au Parc Safari. Elle est +décorée d’un motif camouflage." +5,11,9,"A special Poké Ball that is used only in +the Great Marsh. It is decorated in a +camouflage pattern." +5,14,9,"A special Poké Ball that is used only in +the Great Marsh. It is decorated in a +camouflage pattern." +5,15,1,"だいしつげんの なか だけで +つかう とくべつな ボール。 +めいさいがらに なっている。" +5,15,3,"대습초원 안에서만 +쓰는 특별한 볼. +얼룩무늬로 되어 있다." +5,15,5,"Une Poké Ball spéciale dont l’usage est réservé +au Parc Safari. Elle est décorée d’un motif +camouflage." +5,15,6,"Ein Ball, der nur in Safari-Zonen eingesetzt wird. +Er besticht durch sein Tarnfarbenmuster." +5,15,7,"Poké Ball con un diseño de camuflaje que se +utiliza únicamente en el Gran Pantano." +5,15,8,"Poké Ball speciale, usata soltanto nella +Gran Palude. È decorata con un motivo mimetico." +5,15,9,"A special Poké Ball that is used only in +the Great Marsh. It is recognizable by +the camouflage pattern decorating it." +5,15,11,"大湿原の 中だけで +使う 特別な ボール。 +迷彩柄に なっている。" +6,5,9,"A BALL that works +well on WATER- and +BUG-type POKéMON." +6,6,9,"A BALL that works +well on WATER- and +BUG-type POKéMON." +6,7,9,"A somewhat different BALL that +works especially well on WATER- and +BUG-type POKéMON." +6,8,9,"A somewhat different Poké Ball that +works especially well on Water- and +Bug-type Pokémon." +6,9,9,"A somewhat different Poké Ball that +works especially well on Water- and +Bug-type Pokémon." +6,10,9,"A somewhat different Poké Ball that +works especially well on Water- and +Bug-type Pokémon." +6,11,5,"Une Poké Ball un peu spéciale qui +fonctionne particulièrement bien +sur les Pokémon Eau ou Insecte." +6,11,9,"A somewhat different Poké Ball that +works especially well on Water- and +Bug-type Pokémon." +6,14,9,"A somewhat different Poké Ball that +works especially well on Water- and +Bug-type Pokémon." +6,15,1,"みずタイプと むしタイプの +ポケモンが つかまえやすくなる +ちょっと かわった ボール。" +6,15,3,"물타입과 벌레타입의 +포켓몬을 잡기 쉬운 +조금 특이한 볼." +6,15,5,"Une Poké Ball un peu spéciale qui fonctionne +particulièrement bien sur les Pokémon Eau ou +Insecte." +6,15,6,"Ein Ball, der sich besonders gut eignet, +um Wasser- und Käfer-Pokémon zu fangen." +6,15,7,"Es algo distinta a las demás. Funciona +especialmente bien con los Pokémon de tipo +Agua y Bicho." +6,15,8,"Poké Ball un po’ diversa. Risulta particolarmente +efficace sui Pokémon di tipo Acqua e Coleottero." +6,15,9,"A somewhat different Poké Ball that +is more effective when attempting +to catch Water- or Bug-type Pokémon." +6,15,11,"みずタイプと むしタイプの +ポケモンが 捕まえやすくなる +ちょっと 変わった ボール。" +7,5,9,"A BALL that works +better on POKéMON +on the ocean floor." +7,6,9,"A BALL that works +better on POKéMON +on the ocean floor." +7,7,9,"A somewhat different BALL that +works especially well on POKéMON +deep in the sea." +7,8,9,"A somewhat different Poké Ball that +works especially well on Pokémon that +live in the sea." +7,9,9,"A somewhat different Poké Ball that +works especially well on Pokémon that +live in the sea." +7,10,9,"A somewhat different Poké Ball that +works especially well on Pokémon that +live in the sea." +7,11,5,"Une Poké Ball un peu spéciale qui +fonctionne particulièrement bien +sur les Pokémon sous-marins." +7,11,9,"A somewhat different Poké Ball that +works especially well on Pokémon that +live underwater." +7,14,9,"A somewhat different Poké Ball that +works especially well on Pokémon that +live underwater." +7,15,1,"みずの せかいで くらしている +ポケモンが つかまえやすくなる +ちょっと かわった ボール。" +7,15,3,"물의 세계에서 사는 +포켓몬을 잡기 쉬운 +조금 특이한 볼." +7,15,5,"Une Poké Ball un peu spéciale qui fonctionne +particulièrement bien sur les Pokémon +sous-marins." +7,15,6,"Ein Ball, mit dem sich Pokémon, die im Wasser +leben, besser fangen lassen." +7,15,7,"Es algo distinta a las demás. Funciona +especialmente bien con los Pokémon que viven +bajo el agua." +7,15,8,"Poké Ball un po’ diversa. Risulta particolarmente +efficace sui Pokémon che vivono in acqua." +7,15,9,"A somewhat different Poké Ball that +works especially well when catching +Pokémon that live underwater." +7,15,11,"水の 世界で 暮らしている +ポケモンが 捕まえやすくなる +ちょっと 変わった ボール。" +8,5,9,"A BALL that works +better on weaker +POKéMON." +8,6,9,"A BALL that works +better on weaker +POKéMON." +8,7,9,"A somewhat different BALL that +works especially well on weaker +POKéMON." +8,8,9,"A somewhat different Poké Ball that +works especially well on weaker +Pokémon in the wild." +8,9,9,"A somewhat different Poké Ball that +works especially well on weaker +Pokémon in the wild." +8,10,9,"A somewhat different Poké Ball that +works especially well on weaker +Pokémon in the wild." +8,11,5,"Une Poké Ball un peu spéciale qui +fonctionne particulièrement bien +sur les Pokémon les plus faibles." +8,11,9,"A somewhat different Poké Ball that +works especially well on weaker +Pokémon in the wild." +8,14,9,"A somewhat different Poké Ball that +works especially well on weaker +Pokémon in the wild." +8,15,1,"つかまえる やせいの ポケモンが +よわいほど つかまえやすくなる +ちょっと かわった ボール。" +8,15,3,"잡으려는 야생 포켓몬이 +약할수록 잡기 쉬운 +조금 특이한 볼." +8,15,5,"Une Poké Ball un peu spéciale qui fonctionne +particulièrement bien sur les Pokémon les plus +faibles." +8,15,6,"Ein Ball, dessen Erfolgsquote besonders bei +Pokémon mit niedrigem Level sehr hoch ist." +8,15,7,"Es algo distinta a las demás. Funciona +especialmente bien con los Pokémon salvajes +de nivel bajo." +8,15,8,"Poké Ball un po’ diversa. Risulta particolarmente +efficace sui Pokémon selvatici più deboli." +8,15,9,"A somewhat different Poké Ball that +becomes more effective the lower +the level of the wild Pokémon." +8,15,11,"捕まえる 野生の ポケモンが +弱いほど 捕まえやすくなる +ちょっと 変わった ボール。" +9,5,9,"A BALL that works +better on POKéMON +caught before." +9,6,9,"A BALL that works +better on POKéMON +caught before." +9,7,9,"A somewhat different BALL that +works especially well on POKéMON +caught before." +9,8,9,"A somewhat different Poké Ball that +works especially well on Pokémon +species that were previously caught." +9,9,9,"A somewhat different Poké Ball that +works especially well on Pokémon +species that were previously caught." +9,10,9,"A somewhat different Poké Ball that +works especially well on Pokémon +species that were previously caught." +9,11,5,"Une Poké Ball un peu spéciale qui +fonctionne particulièrement bien sur +les espèces de Pokémon déjà capturées." +9,11,9,"A somewhat different Poké Ball that +works especially well on Pokémon +species that were previously caught." +9,14,9,"A somewhat different Poké Ball that +works especially well on Pokémon +species that were previously caught." +9,15,1,"つかまえたことの ある +ポケモンが つかまえやすくなる +ちょっと かわった ボール。" +9,15,3,"잡은 적이 있는 +포켓몬을 잡기 쉬운 +조금 특이한 볼." +9,15,5,"Une Poké Ball un peu spéciale qui fonctionne +particulièrement bien sur les espèces de +Pokémon déjà capturées." +9,15,6,"Ein Ball, der sich besonders dann sehr gut eignet, +wenn man ein Pokémon fangen will, dessen Art +bereits gefangen wurde." +9,15,7,"Es algo distinta a las demás. Funciona +especialmente bien con las especies de Pokémon +que ya has capturado." +9,15,8,"Poké Ball un po’ diversa. Risulta particolarmente +efficace sulle specie di Pokémon già catturate +in precedenza." +9,15,9,"A somewhat different Poké Ball that +works especially well on a Pokémon +species that has been caught before." +9,15,11,"捕まえたことの ある +ポケモンが 捕まえやすくなる +ちょっと 変わった ボール。" +10,5,9,"More effective as +more turns are +taken in battle." +10,6,9,"A BALL that gains +power in battles +taking many turns." +10,7,9,"A somewhat different BALL that +becomes progressively better the +more turns there are in a battle." +10,8,9,"A somewhat different Ball that +becomes progressively better the +more turns there are in a battle." +10,9,9,"A somewhat different Ball that +becomes progressively better the +more turns there are in a battle." +10,10,9,"A somewhat different Ball that +becomes progressively better the +more turns there are in a battle." +10,11,5,"Une Poké Ball un peu spéciale qui +fonctionne de mieux en mieux à +mesure que le combat s’éternise." +10,11,9,"A somewhat different Ball that +becomes progressively better the +more turns there are in a battle." +10,14,9,"A somewhat different Ball that +becomes progressively better the +more turns there are in a battle." +10,15,1,"ターンすうが かかれば かかるほど +ポケモンが つかまえやすくなる +ちょっと かわった ボール。" +10,15,3,"턴 수가 길어지면 길어질수록 +포켓몬을 잡기 쉬운 +조금 특이한 볼." +10,15,5,"Une Poké Ball un peu spéciale qui fonctionne +de mieux en mieux à mesure que le combat +s’éternise." +10,15,6,"Ein Ball, der mit zunehmender Kampfdauer +effektiver wird." +10,15,7,"Una Poké Ball algo distinta que va mejorando +su rendimiento con cada turno de combate." +10,15,8,"Poké Ball un po’ diversa che diventa +progressivamente più efficace con l’aumentare +dei turni in lotta." +10,15,9,"A somewhat different Poké Ball that +becomes progressively more effective +the more turns that are taken in battle." +10,15,11,"ターン数が かかれば かかるほど +ポケモンが 捕まえやすくなる +ちょっと 変わった ボール。" +11,5,9,"A cozy BALL that +makes POKéMON +more friendly." +11,6,9,"A cozy BALL that +makes POKéMON +more friendly." +11,7,9,"A comfortable BALL that makes a +captured wild POKéMON quickly grow +friendly." +11,8,9,"A comfortable Poké Ball that makes a +caught wild Pokémon quickly grow +friendly." +11,9,9,"A comfortable Poké Ball that makes a +caught wild Pokémon quickly grow +friendly." +11,10,9,"A comfortable Poké Ball that makes a +caught wild Pokémon quickly grow +friendly." +11,11,5,"Une Poké Ball pratique qui permet +de gagner rapidement l’amitié d’un +Pokémon sauvage attrapé." +11,11,9,"A comfortable Poké Ball that makes a +caught wild Pokémon quickly grow +friendly." +11,14,9,"A comfortable Poké Ball that makes a +caught wild Pokémon quickly grow +friendly." +11,15,1,"つかまえた やせいポケモンが +とても なつきやすくなる +いごこちの いい ボール。" +11,15,3,"잡은 야생 포켓몬이 +매우 친밀해지기 쉬운 +편안한 볼." +11,15,5,"Une Poké Ball pratique qui permet de gagner +rapidement l’amitié d’un Pokémon sauvage +attrapé." +11,15,6,"Ein behaglicher Ball, der Pokémon veranlasst, +nach dem Fang schneller freundlicher zu werden." +11,15,7,"Acogedora Poké Ball que hace más amistosos a +los Pokémon salvajes capturados." +11,15,8,"Poké Ball graziosa che rende più amichevoli +i Pokémon selvatici catturati." +11,15,9,"A particularly comfortable Poké Ball +that makes a wild Pokémon quickly +grow friendlier after being caught." +11,15,11,"捕まえた 野生ポケモンが +とても なつきやすくなる +いごこちの いい ボール。" +12,5,9,"A rare BALL made +in commemoration +of some event." +12,6,9,"A rare BALL made +in commemoration +of some event." +12,7,9,"A rare BALL that has been +specially made to commemorate an +event of some sort." +12,8,9,"A somewhat rare Poké Ball that has +been specially made to commemorate +an event of some sort." +12,9,9,"A somewhat rare Poké Ball that has +been specially made to commemorate +an event of some sort." +12,10,9,"A somewhat rare Poké Ball that has +been specially made to commemorate +an event of some sort." +12,11,5,"Une Poké Ball assez rare qui fut créée +pour un événement particulier." +12,11,9,"A somewhat rare Poké Ball that has +been specially made to commemorate +an event of some sort." +12,14,9,"A somewhat rare Poké Ball that has +been specially made to commemorate +an event of some sort." +12,15,1,"なにかの きねんの しなとして +とくべつに つくられた +ちょっと めずらしい ボール。" +12,15,3,"무언가의 기념품으로 +특별히 만들어진 +조금 희귀한 볼." +12,15,5,"Une Poké Ball assez rare qui fut créée pour +un événement particulier." +12,15,6,"Ein eher seltener Ball, der als Reminiszenz +an irgendein Ereignis hergestellt wurde." +12,15,7,"Es una Poké Ball algo singular que se creó para +conmemorar algún acontecimiento." +12,15,8,"Poké Ball poco comune realizzata appositamente +per commemorare un particolare evento." +12,15,9,"A somewhat rare Poké Ball that was +made as a commemorative item used +to celebrate an event of some sort." +12,15,11,"なにかの 記念の 品として +特別に つくられた +ちょっと 珍しい ボール。" +13,8,9,"A somewhat different Poké Ball that +makes it easier to catch wild Pokémon +at night or in dark places like caves." +13,9,9,"A somewhat different Poké Ball that +makes it easier to catch wild Pokémon +at night or in dark places like caves." +13,10,9,"A somewhat different Poké Ball that +makes it easier to catch wild Pokémon +at night or in dark places like caves." +13,11,5,"Une Poké Ball efficace pour attraper +les Pokémon de nuit ou dans des +endroits sombres tels que les grottes." +13,11,9,"A somewhat different Poké Ball that +makes it easier to catch wild Pokémon +at night or in dark places like caves." +13,14,9,"A somewhat different Poké Ball that +makes it easier to catch wild Pokémon +at night or in dark places like caves." +13,15,1,"よるや どうくつなど くらいところで +ポケモンが つかまえやすくなる +ちょっと かわった ボール。" +13,15,3,"밤이나 동굴 등 어두운 곳에서 +포켓몬을 잡기 쉬운 +조금 특이한 볼." +13,15,5,"Une Poké Ball efficace de nuit ou dans les +endroits sombres, tels que les grottes." +13,15,6,"Ein mysteriöser Ball, geeignet für Einsätze in der +Nacht oder an dunklen Orten." +13,15,7,"Es algo particular. Hace que sea más fácil +capturar a los Pokémon salvajes por la noche +o en lugares oscuros." +13,15,8,"Poké Ball un po’ diversa che rende più facile +catturare Pokémon selvatici di notte o in luoghi +bui come le grotte." +13,15,9,"A somewhat different Poké Ball that +makes it easier to catch wild Pokémon +at night or in dark places like caves." +13,15,11,"夜や どうくつなど 暗いところで +ポケモンが 捕まえやすくなる +ちょっと 変わった ボール。" +14,8,9,"A remedial Poké Ball that restores the +caught Pokémon’s HP and eliminates +any status problem." +14,9,9,"A remedial Poké Ball that restores the +caught Pokémon’s HP and eliminates +any status problem." +14,10,9,"A remedial Poké Ball that restores the +caught Pokémon’s HP and eliminates +any status problem." +14,11,5,"Une Poké Ball de soin qui rend tous les +PV du Pokémon attrapé et qui soigne +tous les changements de statut." +14,11,9,"A remedial Poké Ball that restores the +caught Pokémon’s HP and eliminates +any status problem." +14,14,9,"A remedial Poké Ball that restores the +caught Pokémon’s HP and eliminates +any status problem." +14,15,1,"つかまえた ポケモンの HPと +じょうたい いじょうを かいふくする +ちょっと やさしい ボール。" +14,15,3,"잡은 포켓몬의 HP와 +상태 이상을 회복시키는 +조금 다정한 볼." +14,15,5,"Une Poké Ball de soin qui rend tous les PV +du Pokémon attrapé et qui soigne tous les +changements de statut." +14,15,6,"Ein wohltuender Ball. Er füllt alle KP des +gefangenen Pokémon auf und behebt alle +Statusprobleme." +14,15,7,"Poké Ball curativa que restaura los PS y cura +todos los problemas de estado de un Pokémon +después de capturarlo." +14,15,8,"Poké Ball curativa che ridà PS al Pokémon +catturato e cura tutti i problemi di stato." +14,15,9,"A remedial Poké Ball that restores +the HP of a Pokémon caught with it +and eliminates any status conditions." +14,15,11,"捕まえた ポケモンの HPと +状態異常を 回復する +ちょっと やさしい ボール。" +15,8,9,"A somewhat different Poké Ball that +provides a better catch rate if it is +used at the start of a wild encounter." +15,9,9,"A somewhat different Poké Ball that +provides a better catch rate if it is +used at the start of a wild encounter." +15,10,9,"A somewhat different Poké Ball that +provides a better catch rate if it is +used at the start of a wild encounter." +15,11,5,"Une Poké Ball qui permet d’attraper un +Pokémon sauvage plus facilement si on +l’utilise au début du combat." +15,11,9,"A somewhat different Poké Ball that +provides a better catch rate if it is +used at the start of a wild encounter." +15,14,9,"A somewhat different Poké Ball that +provides a better catch rate if it is +used at the start of a wild encounter." +15,15,1,"せんとうが はじまって すぐに +つかうと つかまえやすくなる +ちょっと かわった ボール。" +15,15,3,"배틀이 시작되자마자 +사용하면 잡기 쉬워지는 +조금 특이한 볼." +15,15,5,"Une Poké Ball qui permet d’attraper un Pokémon +sauvage plus facilement si on l’utilise au début du +combat." +15,15,6,"Ein ungewöhnlicher Ball, der zu Beginn eines +Kampfes am wirkungsvollsten ist." +15,15,7,"Una Poké Ball algo distinta que potencia el índice +de captura si se usa al inicio de un encuentro con +Pokémon salvajes." +15,15,8,"Poké Ball un po’ diversa che facilita la cattura +di un Pokémon selvatico se usata all’inizio +della lotta." +15,15,9,"A somewhat different Poké Ball that +has a more successful catch rate if +used at the start of a wild encounter." +15,15,11,"戦闘が はじまって すぐに +使うと 捕まえやすくなる +ちょっと 変わった ボール。" +16,8,9,"A quite rare Poké Ball that has been +specially crafted to commemorate +an occasion of some sort." +16,9,9,"A quite rare Poké Ball that has been +specially crafted to commemorate +an occasion of some sort." +16,10,9,"A quite rare Poké Ball that has been +specially crafted to commemorate +an occasion of some sort." +16,11,5,"Une Poké Ball plutôt rare qui fut créée +pour une occasion spéciale." +16,11,9,"A quite rare Poké Ball that has been +specially crafted to commemorate +an occasion of some sort." +16,14,9,"A quite rare Poké Ball that has been +specially crafted to commemorate +an occasion of some sort." +16,15,1,"なにかの きねんの しなとして +とくべつに つくられた +かなり めずらしい ボール。" +16,15,3,"무언가의 기념품으로 +특별히 만들어진 +상당히 진귀한 볼." +16,15,5,"Une Poké Ball plutôt rare qui fut créée pour +une occasion spéciale." +16,15,6,"Ein seltener Ball, der als Reminiszenz an irgendein +Ereignis hergestellt wurde." +16,15,7,"Es una Poké Ball bastante singular que se creó +para conmemorar alguna ocasión especial." +16,15,8,"Poké Ball molto esclusiva creata per +commemorare un evento speciale." +16,15,9,"A quite rare Poké Ball that has been +crafted in order to commemorate +a special occasion of some sort." +16,15,11,"なにかの 記念の 品として +特別に つくられた +かなり 珍しい ボール。" +17,5,9,"Restores the HP of +a POKéMON by +20 points." +17,6,9,"Restores the HP of +a POKéMON by +20 points." +17,7,9,"A spray-type wound medicine. +It restores the HP of one POKéMON +by 20 points." +17,8,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +just 20 points." +17,9,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +just 20 points." +17,10,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +just 20 points." +17,11,5,"Un spray qui soigne les blessures. +Restaure 20 PV à un Pokémon." +17,11,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +just 20 points." +17,14,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +just 20 points." +17,15,1,"スプレーしきの キズぐすり。 +ポケモン 1ひきの HPを +20だけ かいふくする。" +17,15,3,"스프레이식의 상처약. +포켓몬 1마리의 HP를 +20만큼 회복한다." +17,15,5,"Un spray qui soigne les blessures. +Restaure 20 PV d’un Pokémon." +17,15,6,"Hilft bei Wunden. Die KP eines Pokémon werden +um 20 Punkte aufgefüllt." +17,15,7,"Medicina en espray que cura heridas y restaura +20 PS a un Pokémon." +17,15,8,"Rimedio spray per le ferite. +Restituisce 20 PS a un Pokémon." +17,15,9,"A spray-type medicine for treating +wounds. It can be used to restore +20 HP to an injured Pokémon." +17,15,11,"スプレー式の キズぐすり。 +ポケモン 1匹の HPを +20だけ 回復する。" +18,5,9,"Heals a poisoned +POKéMON." +18,6,9,"Heals a poisoned +POKéMON." +18,7,9,"A spray-type medicine. +It heals one POKéMON from a +poisoning." +18,8,9,"A spray-type medicine. +It lifts the effect of poison from one +Pokémon." +18,9,9,"A spray-type medicine. +It lifts the effect of poison from one +Pokémon." +18,10,9,"A spray-type medicine. +It lifts the effect of poison from one +Pokémon." +18,11,5,"Un médicament sous forme de spray. +Guérit un Pokémon empoisonné." +18,11,9,"A spray-type medicine. +It lifts the effect of poison from one +Pokémon." +18,14,9,"A spray-type medicine. +It lifts the effect of poison from one +Pokémon." +18,15,1,"スプレーしきの くすり。 +ポケモン 1ひきの どくの +じょうたいを かいふくする。" +18,15,3,"스프레이식의 약. +포켓몬 1마리의 +독 상태를 회복한다." +18,15,5,"Un médicament sous forme de spray. +Guérit un Pokémon empoisonné." +18,15,6,"Ein Spray, das Vergiftungen eines Pokémon heilt." +18,15,7,"Medicina en espray que contrarresta los efectos +del veneno en un Pokémon." +18,15,8,"Rimedio spray. +Cura un Pokémon dall’avvelenamento." +18,15,9,"A spray-type medicine for poisoning. +It can be used once to lift the effects +of being poisoned from a Pokémon." +18,15,11,"スプレー式の 薬。 +ポケモン 1匹の どくの +状態を 回復する。" +19,5,9,"Heals POKéMON +of a burn." +19,6,9,"Heals POKéMON +of a burn." +19,7,9,"A spray-type medicine. +It heals one POKéMON of a burn." +19,8,9,"A spray-type medicine. +It heals a single Pokémon that is +suffering from a burn." +19,9,9,"A spray-type medicine. +It heals a single Pokémon that is +suffering from a burn." +19,10,9,"A spray-type medicine. +It heals a single Pokémon that is +suffering from a burn." +19,11,5,"Un médicament sous forme de spray. +Soigne les brûlures d’un Pokémon." +19,11,9,"A spray-type medicine. +It heals a single Pokémon that is +suffering from a burn." +19,14,9,"A spray-type medicine. +It heals a single Pokémon that is +suffering from a burn." +19,15,1,"スプレーしきの くすり。 +ポケモン 1ひきの やけどの +じょうたいを かいふくする。" +19,15,3,"스프레이식의 약. +포켓몬 1마리의 +화상 상태를 회복한다." +19,15,5,"Un médicament sous forme de spray. +Soigne les brûlures d’un Pokémon." +19,15,6,"Ein Spray, das Verbrennungen eines Pokémon +heilt." +19,15,7,"Medicina en espray que cura las quemaduras a +un Pokémon." +19,15,8,"Rimedio spray. +Cura un Pokémon dalla scottatura." +19,15,9,"A spray-type medicine for treating +burns. It can be used once to heal +a Pokémon suffering from a burn." +19,15,11,"スプレー式の 薬。 +ポケモン 1匹の やけどの +状態を 回復する。" +20,5,9,"Defrosts a frozen +POKéMON." +20,6,9,"Defrosts a frozen +POKéMON." +20,7,9,"A spray-type medicine. +It defrosts a frozen POKéMON." +20,8,9,"A spray-type medicine. +It defrosts a Pokémon that has been +frozen solid." +20,9,9,"A spray-type medicine. +It defrosts a Pokémon that has been +frozen solid." +20,10,9,"A spray-type medicine. +It defrosts a Pokémon that has been +frozen solid." +20,11,5,"Un médicament sous forme de spray. +Réchauffe un Pokémon gelé." +20,11,9,"A spray-type medicine. +It defrosts a Pokémon that has been +frozen solid." +20,14,9,"A spray-type medicine. +It defrosts a Pokémon that has been +frozen solid." +20,15,1,"スプレーしきの くすり。 +ポケモン 1ひきの こおりの +じょうたいを かいふくする。" +20,15,3,"스프레이식의 약. +포켓몬 1마리의 +얼음 상태를 회복한다." +20,15,5,"Un médicament sous forme de spray. +Réchauffe un Pokémon gelé." +20,15,6,"Ein Spray, das ein eingefrorenes Pokémon +auftaut." +20,15,7,"Medicina en espray que descongela a un +Pokémon." +20,15,8,"Rimedio spray. +Cura un Pokémon dal congelamento." +20,15,9,"A spray-type medicine for freezing. +It can be used once to defrost a +Pokémon that has been frozen solid." +20,15,11,"スプレー式の 薬。 +ポケモン 1匹の こおりの +状態を 回復する。" +21,5,9,"Awakens a sleeping +POKéMON." +21,6,9,"Awakens a sleeping +POKéMON." +21,7,9,"A spray-type medicine. +It awakens a sleeping POKéMON." +21,8,9,"A spray-type medicine. +It awakens a Pokémon from the +clutches of sleep." +21,9,9,"A spray-type medicine. +It awakens a Pokémon from the +clutches of sleep." +21,10,9,"A spray-type medicine. +It awakens a Pokémon from the +clutches of sleep." +21,11,5,"Un médicament sous forme de spray. +Réveille un Pokémon endormi." +21,11,9,"A spray-type medicine. +It awakens a Pokémon from the +clutches of sleep." +21,14,9,"A spray-type medicine. +It awakens a Pokémon from the +clutches of sleep." +21,15,1,"スプレーしきの くすり。 +ポケモン 1ひきの ねむりの +じょうたいを かいふくする。" +21,15,3,"스프레이식의 약. +포켓몬 1마리의 +잠듦 상태를 회복한다." +21,15,5,"Un médicament sous forme de spray. +Réveille un Pokémon endormi." +21,15,6,"Ein Spray, das ein schlafendes Pokémon +aufweckt." +21,15,7,"Medicina en espray que libera a un Pokémon de +las garras del sueño." +21,15,8,"Rimedio spray. +Sveglia un Pokémon addormentato." +21,15,9,"A spray-type medicine used against +sleep. It can be used once to rouse a +Pokémon from the clutches of sleep." +21,15,11,"スプレー式の 薬。 +ポケモン 1匹の ねむりの +状態を 回復する。" +22,5,9,"Heals a paralyzed +POKéMON." +22,6,9,"Heals a paralyzed +POKéMON." +22,7,9,"A spray-type medicine. +It heals one POKéMON from +paralysis." +22,8,9,"A spray-type medicine. +It eliminates paralysis from a single +Pokémon." +22,9,9,"A spray-type medicine. +It eliminates paralysis from a single +Pokémon." +22,10,9,"A spray-type medicine. +It eliminates paralysis from a single +Pokémon." +22,11,5,"Un médicament sous forme de spray. +Soigne un Pokémon de la paralysie." +22,11,9,"A spray-type medicine. +It eliminates paralysis from a single +Pokémon." +22,14,9,"A spray-type medicine. +It eliminates paralysis from a single +Pokémon." +22,15,1,"スプレーしきの くすり。 +ポケモン 1ひきの まひの +じょうたいを かいふくする。" +22,15,3,"스프레이식의 약. +포켓몬 1마리의 +마비 상태를 회복한다." +22,15,5,"Un médicament sous forme de spray. +Soigne un Pokémon de la paralysie." +22,15,6,"Ein Spray, das ein Pokémon von Paralyse heilt." +22,15,7,"Medicina en espray que cura a un Pokémon +paralizado." +22,15,8,"Rimedio spray. +Cura un Pokémon dalla paralisi." +22,15,9,"A spray-type medicine for paralysis. +It can be used once to free a +Pokémon that has been paralyzed." +22,15,11,"スプレー式の 薬。 +ポケモン 1匹の まひの +状態を 回復する。" +23,5,9,"Fully restores the +HP and status of a +POKéMON." +23,6,9,"Fully restores the +HP and status of a +POKéMON." +23,7,9,"A medicine that fully restores the +HP and heals any status problems +of one POKéMON." +23,8,9,"A medicine that fully restores the HP +and heals any status problems of a +single Pokémon." +23,9,9,"A medicine that fully restores the HP +and heals any status problems of a +single Pokémon." +23,10,9,"A medicine that fully restores the HP +and heals any status problems of a +single Pokémon." +23,11,5,"Un médicament qui restaure tous les +PV d’un Pokémon et soigne tous ses +problèmes de statut." +23,11,9,"A medicine that fully restores the HP +and heals any status problems of a +single Pokémon." +23,14,9,"A medicine that fully restores the HP +and heals any status problems of a +single Pokémon." +23,15,1,"ポケモン 1ひきの HPと +じょうたい いじょうを すべて +かいふくする。" +23,15,3,"포켓몬 1마리의 HP와 +상태 이상을 모두 +회복한다." +23,15,5,"Un médicament qui restaure tous les PV +d’un Pokémon et soigne tous ses problèmes +de statut." +23,15,6,"Dieses Item stellt alle KP eines Pokémon +wieder her und behebt alle Statusprobleme." +23,15,7,"Medicina que restaura todos los PS y cura todos +los problemas de estado de un Pokémon." +23,15,8,"Rimedio che restituisce tutti i PS a un Pokémon +e cura i suoi problemi di stato." +23,15,9,"A medicine that can be used to fully +restore the HP of a single Pokémon +and heal any status conditions it has." +23,15,11,"ポケモン 1匹の HPと +状態異常を すべて +回復する。" +24,5,9,"Fully restores the +HP of a POKéMON." +24,6,9,"Fully restores the +HP of a POKéMON." +24,7,9,"A spray-type wound medicine. +It fully restores the HP of one +POKéMON." +24,8,9,"A spray-type medicine for wounds. +It completely restores the HP of a +single Pokémon." +24,9,9,"A spray-type medicine for wounds. +It completely restores the HP of a +single Pokémon." +24,10,9,"A spray-type medicine for wounds. +It completely restores the HP of a +single Pokémon." +24,11,5,"Un spray qui soigne les blessures. +Restaure tous les PV d’un Pokémon." +24,11,9,"A spray-type medicine for wounds. +It completely restores the HP of a +single Pokémon." +24,14,9,"A spray-type medicine for wounds. +It completely restores the HP of a +single Pokémon." +24,15,1,"スプレーしきの キズぐすり。 +ポケモン 1ひきの HPを +すべて かいふくする。" +24,15,3,"스프레이식의 상처약. +포켓몬 1마리의 HP를 +모두 회복한다." +24,15,5,"Un spray qui soigne les blessures. +Restaure tous les PV d’un Pokémon." +24,15,6,"Hilft bei Wunden. Füllt die KP eines Pokémon +wieder vollständig auf." +24,15,7,"Medicina en espray que cura heridas y restaura +todos los PS de un Pokémon." +24,15,8,"Rimedio spray per le ferite. +Restituisce tutti i PS a un Pokémon." +24,15,9,"A spray-type medicine for treating +wounds. It will completely restore +the max HP of a single Pokémon." +24,15,11,"スプレー式の キズぐすり。 +ポケモン 1匹の HPを +すべて 回復する。" +25,5,9,"Restores the HP of +a POKéMON by +200 points." +25,6,9,"Restores the HP of +a POKéMON by +200 points." +25,7,9,"A spray-type wound medicine. +It restores the HP of one POKéMON +by 200 points." +25,8,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +200 points." +25,9,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +200 points." +25,10,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +200 points." +25,11,5,"Un spray qui soigne les blessures. +Restaure 200 PV à un Pokémon." +25,11,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +200 points." +25,14,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +200 points." +25,15,1,"スプレーしきの キズぐすり。 +ポケモン 1ひきの HPを +200だけ かいふくする。" +25,15,3,"스프레이식의 상처약. +포켓몬 1마리의 HP를 +200만큼 회복한다." +25,15,5,"Un spray qui soigne les blessures. +Restaure 200 PV d’un Pokémon." +25,15,6,"Hilft bei Wunden. Füllt die KP eines Pokémon +um 200 Punkte auf." +25,15,7,"Medicina en espray que cura heridas y restaura +200 PS de un Pokémon." +25,15,8,"Rimedio spray per le ferite. +Restituisce 200 PS a un Pokémon." +25,15,9,"A spray-type medicine for treating +wounds. It can be used to restore +200 HP to an injured Pokémon." +25,15,11,"スプレー式の キズぐすり。 +ポケモン 1匹の HPを +200だけ 回復する。" +26,5,9,"Restores the HP of +a POKéMON by +50 points." +26,6,9,"Restores the HP of +a POKéMON by +50 points." +26,7,9,"A spray-type wound medicine. +It restores the HP of one POKéMON +by 50 points." +26,8,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +50 points." +26,9,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +50 points." +26,10,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +50 points." +26,11,5,"Un spray qui soigne les blessures. +Restaure 50 PV à un Pokémon." +26,11,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +50 points." +26,14,9,"A spray-type medicine for wounds. +It restores the HP of one Pokémon by +50 points." +26,15,1,"スプレーしきの キズぐすり。 +ポケモン 1ひきの HPを +50だけ かいふくする。" +26,15,3,"스프레이식의 상처약. +포켓몬 1마리의 HP를 +50만큼 회복한다." +26,15,5,"Un spray qui soigne les blessures. +Restaure 50 PV d’un Pokémon." +26,15,6,"Hilft bei Wunden. Füllt die KP eines Pokémon +um 50 Punkte auf." +26,15,7,"Medicina en espray que cura heridas y restaura +50 PS de un Pokémon." +26,15,8,"Rimedio spray per le ferite. +Restituisce 50 PS a un Pokémon." +26,15,9,"A spray-type medicine for treating +wounds. It can be used to restore +50 HP to an injured Pokémon." +26,15,11,"スプレー式の キズぐすり。 +ポケモン 1匹の HPを +50だけ 回復する。" +27,5,9,"Heals all the status +problems of one +POKéMON." +27,6,9,"Heals all the +status problems of +one POKéMON." +27,7,9,"A spray-type medicine. +It heals all the status problems of +one POKéMON." +27,8,9,"A spray-type medicine. +It heals all the status problems of a +single Pokémon." +27,9,9,"A spray-type medicine. +It heals all the status problems of a +single Pokémon." +27,10,9,"A spray-type medicine. +It heals all the status problems of a +single Pokémon." +27,11,5,"Un médicament sous forme de spray. +Soigne tous les problèmes de statut +d’un Pokémon." +27,11,9,"A spray-type medicine. +It heals all the status problems of a +single Pokémon." +27,14,9,"A spray-type medicine. +It heals all the status problems of a +single Pokémon." +27,15,1,"スプレーしきの くすり。 +ポケモン 1ひきの じょうたいの +いじょうを すべて かいふくする。" +27,15,3,"스프레이식의 약. +포켓몬 1마리의 +상태 이상을 모두 회복한다." +27,15,5,"Un médicament sous forme de spray. +Soigne tous les problèmes de statut +d’un Pokémon." +27,15,6,"Ein Spray, das alle Statusprobleme eines +Pokémon behebt." +27,15,7,"Medicina en espray que cura todos los problemas +de estado de un Pokémon." +27,15,8,"Rimedio spray. +Cura tutti i problemi di stato di un Pokémon." +27,15,9,"A spray-type medicine that is broadly +effective. It can be used once to heal +all the status conditions of a Pokémon." +27,15,11,"スプレー式の 薬。 +ポケモン 1匹の 状態の +異常を すべて 回復する。" +28,5,9,"Revives a fainted +POKéMON with half +its HP." +28,6,9,"Revives a fainted +POKéMON with half +its HP." +28,7,9,"A medicine that revives a fainted +POKéMON, restoring HP by half the +maximum amount." +28,8,9,"A medicine that revives a fainted +Pokémon. It restores half the +Pokémon’s maximum HP." +28,9,9,"A medicine that revives a fainted +Pokémon. It restores half the +Pokémon’s maximum HP." +28,10,9,"A medicine that revives a fainted +Pokémon. It restores half the +Pokémon’s maximum HP." +28,11,5,"Un médicament qui ranime un Pokémon +K.O. et restaure la moitié de ses PV +max." +28,11,9,"A medicine that revives a fainted +Pokémon. It restores half the +Pokémon’s maximum HP." +28,14,9,"A medicine that revives a fainted +Pokémon. It restores half the +Pokémon’s maximum HP." +28,15,1,"ひんしに なった ポケモン +1ひきを げんきに したうえで +HPを はんぶんまで かいふくする。" +28,15,3,"기절해 버린 포켓몬 +1마리를 건강하게 하고 +HP를 절반까지 회복한다." +28,15,5,"Un médicament qui ranime un Pokémon K.O. +et restaure la moitié de ses PV max." +28,15,6,"Eine Medizin, die ein kampfunfähiges Pokémon +wiederbelebt. Die Hälfte der maximalen KP wird +wiederhergestellt." +28,15,7,"Medicina que revive a un Pokémon debilitado y le +devuelve la mitad de sus PS." +28,15,8,"Rimedio che rianima un Pokémon esausto +e gli restituisce metà dei suoi PS massimi." +28,15,9,"A medicine that can revive fainted +Pokémon. It also restores half of +a fainted Pokémon’s maximum HP." +28,15,11,"ひんしに なってしまった ポケモン +1匹を 元気に したうえで +HPを 半分まで 回復する。" +29,5,9,"Revives a fainted +POKéMON with all +its HP." +29,6,9,"Revives a fainted +POKéMON with all +its HP." +29,7,9,"A medicine that revives a fainted +POKéMON, restoring HP fully." +29,8,9,"A medicine that revives a fainted +Pokémon. It fully restores the +Pokémon’s HP." +29,9,9,"A medicine that revives a fainted +Pokémon. It fully restores the +Pokémon’s HP." +29,10,9,"A medicine that revives a fainted +Pokémon. It fully restores the +Pokémon’s HP." +29,11,5,"Un médicament qui ranime un Pokémon +K.O. et restaure tous ses PV." +29,11,9,"A medicine that revives a fainted +Pokémon. It fully restores the +Pokémon’s HP." +29,14,9,"A medicine that revives a fainted +Pokémon. It fully restores the +Pokémon’s HP." +29,15,1,"ひんしに なった ポケモン +1ひきを げんきに したうえで +HPを すべて かいふくする。" +29,15,3,"기절해 버린 포켓몬 +1마리를 건강하게 하고 +HP를 모두 회복한다." +29,15,5,"Un médicament qui ranime un Pokémon K.O. +et restaure tous ses PV." +29,15,6,"Eine Medizin, die ein kampfunfähiges Pokémon +wiederbelebt. Die KP werden vollständig +wiederhergestellt." +29,15,7,"Medicina que revive a un Pokémon debilitado y le +devuelve todos sus PS." +29,15,8,"Rimedio che rianima un Pokémon esausto +restituendogli tutti i PS." +29,15,9,"A medicine that can revive fainted +Pokémon. It also fully restores a +fainted Pokémon’s maximum HP." +29,15,11,"ひんしに なってしまった ポケモン +1匹を 元気に したうえで +HPを すべて 回復する。" +30,5,9,"A mineral water +that restores HP +by 50 points." +30,6,9,"A mineral water +that restores HP +by 50 points." +30,7,9,"Water with a high mineral content. +It restores the HP of one POKéMON +by 50 points." +30,8,9,"Water with a high mineral content. +It restores the HP of one Pokémon by +50 points." +30,9,9,"Water with a high mineral content. +It restores the HP of one Pokémon by +50 points." +30,10,9,"Water with a high mineral content. +It restores the HP of one Pokémon by +50 points." +30,11,5,"Une eau riche en minéraux. +Restaure 50 PV à un Pokémon." +30,11,9,"Water with a high mineral content. +It restores the HP of one Pokémon by +50 points." +30,14,9,"Water with a high mineral content. +It restores the HP of one Pokémon by +50 points." +30,15,1,"ミネラル たっぷりの みず。 +ポケモン 1ひきの HPを +50だけ かいふくする。" +30,15,3,"미네랄이 가득한 물. +포켓몬 1마리의 HP를 +50만큼 회복한다." +30,15,5,"Une eau riche en minéraux. +Restaure 50 PV d’un Pokémon." +30,15,6,"Ein stilles Wasser mit hohem Mineralienanteil, +das die KP eines Pokémon um 50 Punkte auffüllt." +30,15,7,"Agua de alto contenido mineral que restaura +50 PS de un Pokémon." +30,15,8,"Acqua ricca di sostanze minerali. +Restituisce 50 PS a un Pokémon." +30,15,9,"Water with a high mineral content. +When consumed, it restores +50 HP to an injured Pokémon." +30,15,11,"ミネラル たっぷりの 水。 +ポケモン 1匹の HPを +50だけ 回復する。" +31,5,9,"A fizzy soda drink +that restores HP +by 60 points." +31,6,9,"A fizzy soda drink +that restores HP +by 60 points." +31,7,9,"A fizzy soda drink. +It restores the HP of one POKéMON +by 60 points." +31,8,9,"A fizzy soda drink. +It restores the HP of one Pokémon by +60 points." +31,9,9,"A fizzy soda drink. +It restores the HP of one Pokémon by +60 points." +31,10,9,"A fizzy soda drink. +It restores the HP of one Pokémon by +60 points." +31,11,5,"Une boisson pétillante. +Restaure 60 PV à un Pokémon." +31,11,9,"A fizzy soda drink. +It restores the HP of one Pokémon by +60 points." +31,14,9,"A fizzy soda drink. +It restores the HP of one Pokémon by +60 points." +31,15,1,"シュワっと はじける ソーダ。 +ポケモン 1ひきの HPを +60だけ かいふくする。" +31,15,3,"싸하고 톡 쏘는 사이다. +포켓몬 1마리의 HP를 +60만큼 회복한다." +31,15,5,"Une boisson pétillante. +Restaure 60 PV d’un Pokémon." +31,15,6,"Ein sprudelndes Mineralwasser, das die KP +eines Pokémon um 60 Punkte auffüllt." +31,15,7,"Chispeante bebida gaseosa que restaura 60 PS +de un Pokémon." +31,15,8,"Bevanda frizzante. +Restituisce 60 PS a un Pokémon." +31,15,9,"A highly carbonated soda drink. +When consumed, it restores +60 HP to an injured Pokémon." +31,15,11,"シュワっと はじける ソーダ。 +ポケモン 1匹の HPを +60だけ 回復する。" +32,5,9,"A very sweet drink +that restores HP +by 80 points." +32,6,9,"A very sweet drink +that restores HP +by 80 points." +32,7,9,"A very sweet drink. +It restores the HP of one POKéMON +by 80 points." +32,8,9,"A very sweet drink. +It restores the HP of one Pokémon by +80 points." +32,9,9,"A very sweet drink. +It restores the HP of one Pokémon by +80 points." +32,10,9,"A very sweet drink. +It restores the HP of one Pokémon by +80 points." +32,11,5,"Une boisson très sucrée. +Restaure 80 PV à un Pokémon." +32,11,9,"A very sweet drink. +It restores the HP of one Pokémon by +80 points." +32,14,9,"A very sweet drink. +It restores the HP of one Pokémon by +80 points." +32,15,1,"とても あまい ジュース。 +ポケモン 1ひきの HPを +80だけ かいふくする。" +32,15,3,"매우 달콤한 쥬스. +포켓몬 1마리의 HP를 +80만큼 회복한다." +32,15,5,"Une boisson très sucrée. +Restaure 80 PV d’un Pokémon." +32,15,6,"Ein sehr süßes Getränk, das die KP +eines Pokémon um 80 Punkte auffüllt." +32,15,7,"Bebida muy dulce que restaura 80 PS de un +Pokémon." +32,15,8,"Bevanda molto dolce. +Restituisce 80 PS a un Pokémon." +32,15,9,"A very sweet and refreshing drink. +When consumed, it restores +80 HP to an injured Pokémon." +32,15,11,"とても あまい ジュース。 +ポケモン 1匹の HPを +80だけ 回復する。" +33,5,9,"A nutritious milk +that restores HP +by 100 points." +33,6,9,"A nutritious milk +that restores HP +by 100 points." +33,7,9,"Highly nutritious milk. +It restores the HP of one POKéMON +by 100 points." +33,8,9,"Milk with a very high nutrition content. +It restores the HP of one Pokémon by +100 points." +33,9,9,"Milk with a very high nutrition content. +It restores the HP of one Pokémon by +100 points." +33,10,9,"Milk with a very high nutrition content. +It restores the HP of one Pokémon by +100 points." +33,11,5,"Un lait très nourrissant. +Restaure 100 PV à un Pokémon." +33,11,9,"Milk with a very high nutrition content. +It restores the HP of one Pokémon by +100 points." +33,14,9,"Milk with a very high nutrition content. +It restores the HP of one Pokémon by +100 points." +33,15,1,"えいよう まんてんの ミルク。 +ポケモン 1ひきの HPを +100だけ かいふくする。" +33,15,3,"영양 만점의 우유. +포켓몬 1마리의 HP를 +100만큼 회복한다." +33,15,5,"Un lait très nourrissant. +Restaure 100 PV d’un Pokémon." +33,15,6,"Eine äußerst nährstoffreiche Milch, die die KP +eines Pokémon um 100 Punkte auffüllt." +33,15,7,"Leche de alto valor nutritivo que restaura 100 PS +de un Pokémon." +33,15,8,"Latte ricco di sostanze nutrienti. +Restituisce 100 PS a un Pokémon." +33,15,9,"A bottle of highly nutritious milk. +When consumed, it restores +100 HP to an injured Pokémon." +33,15,11,"栄養満点の ミルク。 +ポケモン 1匹の HPを +100だけ 回復する。" +34,5,9,"A bitter powder +that restores HP +by 50 points." +34,6,9,"A bitter powder +that restores HP +by 50 points." +34,7,9,"A very bitter medicine powder. +It restores the HP of one POKéMON +by 50 points." +34,8,9,"A very bitter medicine powder. +It restores the HP of one Pokémon by +50 points." +34,9,9,"A very bitter medicine powder. +It restores the HP of one Pokémon by +50 points." +34,10,9,"A very bitter medicine powder. +It restores the HP of one Pokémon by +50 points." +34,11,5,"Une poudre médicinale très amère. +Restaure 50 PV à un Pokémon." +34,11,9,"A very bitter medicine powder. +It restores the HP of one Pokémon by +50 points." +34,14,9,"A very bitter medicine powder. +It restores the HP of one Pokémon by +50 points." +34,15,1,"とても にがい こなぐすり。 +ポケモン 1ひきの HPを +50だけ かいふくする。" +34,15,3,"매우 쓴 가루약. +포켓몬 1마리의 HP를 +50만큼 회복한다." +34,15,5,"Une poudre médicinale très amère. +Restaure 50 PV d’un Pokémon." +34,15,6,"Ein bitteres medizinisches Pulver, das die KP +eines Pokémon um 50 Punkte auffüllt." +34,15,7,"Polvo medicinal muy amargo que restaura 50 PS +de un Pokémon." +34,15,8,"Rimedio amarissimo in polvere. +Restituisce 50 PS a un Pokémon." +34,15,9,"A bitter medicine powder. +When consumed, it restores +50 HP to an injured Pokémon." +34,15,11,"とても にがい 粉薬。 +ポケモン 1匹の HPを +50だけ 回復する。" +35,5,9,"A bitter root +that restores HP +by 200 points." +35,6,9,"A bitter root +that restores HP +by 200 points." +35,7,9,"A very bitter root. +It restores the HP of one POKéMON +by 200 points." +35,8,9,"A very bitter root. +It restores the HP of one Pokémon by +200 points." +35,9,9,"A very bitter root. +It restores the HP of one Pokémon by +200 points." +35,10,9,"A very bitter root. +It restores the HP of one Pokémon by +200 points." +35,11,5,"Une racine très amère. +Restaure 200 PV à un Pokémon." +35,11,9,"A very bitter root. +It restores the HP of one Pokémon by +200 points." +35,14,9,"A very bitter root. +It restores the HP of one Pokémon by +200 points." +35,15,1,"とても にがい ねっこ。 +ポケモン 1ひきの HPを +200だけ かいふくする。" +35,15,3,"매우 쓴 뿌리. +포켓몬 1마리의 HP를 +200만큼 회복한다." +35,15,5,"Une racine très amère. +Restaure 200 PV d’un Pokémon." +35,15,6,"Eine bittere Wurzel. Sie füllt die KP +eines Pokémon um 200 Punkte auf." +35,15,7,"Raíz muy amarga que restaura 200 PS de un +Pokémon." +35,15,8,"Radice amarissima. +Restituisce 200 PS a un Pokémon." +35,15,9,"An extremely bitter medicinal root. +When consumed, it restores +200 HP to an injured Pokémon." +35,15,11,"とても にがい ねっこ。 +ポケモン 1匹の HPを +200だけ 回復する。" +36,5,9,"A bitter powder +that heals all +status problems." +36,6,9,"A bitter powder +that heals all +status problems." +36,7,9,"A very bitter medicine powder. +It heals all the status problems of +one POKéMON." +36,8,9,"A very bitter medicine powder. +It heals all the status problems of a +single Pokémon." +36,9,9,"A very bitter medicine powder. +It heals all the status problems of a +single Pokémon." +36,10,9,"A very bitter medicine powder. +It heals all the status problems of a +single Pokémon." +36,11,5,"Une poudre médicinale très amère. +Soigne tous les problèmes de statut +d’un Pokémon." +36,11,9,"A very bitter medicine powder. +It heals all the status problems of a +single Pokémon." +36,14,9,"A very bitter medicine powder. +It heals all the status problems of a +single Pokémon." +36,15,1,"とても にがい こなぐすり。 +ポケモン 1ひきの じょうたいの +いじょうを すべて かいふくする。" +36,15,3,"매우 쓴 가루약. +포켓몬 1마리의 +상태 이상을 모두 회복한다." +36,15,5,"Une poudre médicinale très amère. +Soigne tous les problèmes de statut +d’un Pokémon." +36,15,6,"Ein bitteres medizinisches Pulver, das alle +Statusprobleme eines Pokémon aufhebt." +36,15,7,"Polvos medicinales muy amargos que curan todos +los problemas de estado de un Pokémon." +36,15,8,"Rimedio amarissimo in polvere. +Cura tutti i problemi di stato di un Pokémon." +36,15,9,"A very bitter medicine powder. +When consumed, it heals all of +a Pokémon’s status conditions." +36,15,11,"とても にがい 粉薬。 +ポケモン 1匹の 状態の +異常を すべて 回復する。" +37,5,9,"A very bitter herb +that revives a +fainted POKéMON." +37,6,9,"A very bitter herb +that revives a +fainted POKéMON." +37,7,9,"A very bitter medicinal herb. +It revives a fainted POKéMON, +restoring HP fully." +37,8,9,"A very bitter medicinal herb. +It revives a fainted Pokémon, fully +restoring its HP." +37,9,9,"A very bitter medicinal herb. +It revives a fainted Pokémon, fully +restoring its HP." +37,10,9,"A very bitter medicinal herb. +It revives a fainted Pokémon, fully +restoring its HP." +37,11,5,"Une herbe médicinale très amère. +Ranime un Pokémon K.O. et restaure +tous ses PV." +37,11,9,"A very bitter medicinal herb. +It revives a fainted Pokémon, fully +restoring its HP." +37,14,9,"A very bitter medicinal herb. +It revives a fainted Pokémon, fully +restoring its HP." +37,15,1,"とても にがい やくそう。 +ひんしの ポケモン 1ひきの +HPを すべて かいふくする。" +37,15,3,"매우 쓴 약초. +기절한 포켓몬 1마리의 +HP를 모두 회복한다." +37,15,5,"Une herbe médicinale très amère. +Ranime un Pokémon K.O. et restaure tous +ses PV." +37,15,6,"Ein bitteres medizinisches Kraut, das +kampfunfähige Pokémon belebt und die KP +vollständig auffüllt." +37,15,7,"Hierba muy amarga que reanima a un Pokémon +debilitado y restaura todos sus PS." +37,15,8,"Erba medicinale amarissima. +Rianima un Pokémon esausto e gli restituisce +tutti i PS." +37,15,9,"A terribly bitter medicinal herb. +It revives a fainted Pokémon and +fully restores its maximum HP." +37,15,11,"とても にがい 薬草。 +ひんしの ポケモン 1匹の +HPを すべて 回復する。" +38,5,9,"Restores the PP +of a selected move +by 10." +38,6,9,"Restores the PP +of a selected move +by 10." +38,7,9,"Restores a selected move’s PP by +10 points for one POKéMON." +38,8,9,"It restores the PP of a Pokémon’s +selected move by a maximum of +10 points." +38,9,9,"It restores the PP of a Pokémon’s +selected move by a maximum of +10 points." +38,10,9,"It restores the PP of a Pokémon’s +selected move by a maximum of +10 points." +38,11,5,"Restaure jusqu’à 10 PP d’une +capacité sélectionnée." +38,11,9,"It restores the PP of a Pokémon’s +selected move by a maximum of +10 points." +38,14,9,"It restores the PP of a Pokémon’s +selected move by a maximum of +10 points." +38,15,1,"ポケモンが おぼえている +わざのうち 1つの PPを +10だけ かいふくする。" +38,15,3,"포켓몬이 기억하고 있는 +기술 중 1개의 PP를 +10만큼 회복한다." +38,15,5,Restaure 10 PP d’une capacité sélectionnée. +38,15,6,"Füllt die AP einer ausgewählten Attacke +eines Pokémon um 10 Punkte auf." +38,15,7,"Restaura 10 PP del movimiento elegido de un +Pokémon." +38,15,8,"Restituisce un massimo di 10 PP a una mossa +a scelta tra quelle conosciute dal Pokémon." +38,15,9,"This medicine can restore 10 PP +to a single selected move that +has been learned by a Pokémon." +38,15,11,"ポケモンが 覚えている +技のうち 1つの PPを +10だけ 回復する。" +39,5,9,"Fully restores the +PP of a selected +move." +39,6,9,"Fully restores the +PP of a selected +move." +39,7,9,"Fully restores a selected move’s PP +for one POKéMON." +39,8,9,"It fully restores the PP of a single +selected move that has been learned +by the target Pokémon." +39,9,9,"It fully restores the PP of a single +selected move that has been learned +by the target Pokémon." +39,10,9,"It fully restores the PP of a single +selected move that has been learned +by the target Pokémon." +39,11,5,"Restaure tous les PP d’une capacité +sélectionnée." +39,11,9,"It fully restores the PP of a single +selected move that has been learned +by the target Pokémon." +39,14,9,"It fully restores the PP of a single +selected move that has been learned +by the target Pokémon." +39,15,1,"ポケモンが おぼえている +わざのうち 1つの PPを +すべて かいふくする。" +39,15,3,"포켓몬이 기억하고 있는 +기술 중 1개의 PP를 +모두 회복한다." +39,15,5,"Restaure tous les PP d’une capacité +sélectionnée." +39,15,6,"Füllt die AP einer ausgewählten Attacke +eines Pokémon vollständig auf." +39,15,7,"Restaura completamente los PP del movimiento +elegido de un Pokémon." +39,15,8,"Restituisce tutti i PP a una mossa a scelta +tra quelle conosciute dal Pokémon." +39,15,9,"This medicine can fully restore the +PP of a single selected move that +has been learned by a Pokémon." +39,15,11,"ポケモンが 覚えている +技のうち 1つの PPを +すべて 回復する。" +40,5,9,"Restores the PP +of all moves by 10." +40,6,9,"Restores the PP +of all moves by 10." +40,7,9,"Restores the PP of all moves for +one POKéMON by 10 points each." +40,8,9,"It restores the PP of all the +moves learned by the targeted Pokémon +by 10 points each." +40,9,9,"It restores the PP of all the +moves learned by the targeted Pokémon +by 10 points each." +40,10,9,"It restores the PP of all the +moves learned by the targeted Pokémon +by 10 points each." +40,11,5,"Restaure 10 PP de toutes les +capacités d’un Pokémon." +40,11,9,"It restores the PP of all the +moves learned by the targeted Pokémon +by 10 points each." +40,14,9,"It restores the PP of all the +moves learned by the targeted Pokémon +by 10 points each." +40,15,1,"ポケモンが おぼえている +4つの わざの PPを +10ずつ かいふくする。" +40,15,3,"포켓몬이 기억하고 있는 +4개 기술의 PP를 +10씩 회복한다." +40,15,5,"Restaure 10 PP de toutes les capacités +d’un Pokémon." +40,15,6,"Füllt die AP aller Attacken eines Pokémon +um 10 Punkte auf." +40,15,7,"Restaura 10 PP de todos los movimientos +aprendidos por el Pokémon elegido." +40,15,8,"Restituisce 10 PP a ciascuna delle mosse +conosciute dal Pokémon." +40,15,9,"This medicine can restore 10 PP +to each of the moves that have +been learned by a Pokémon." +40,15,11,"ポケモンが 覚えている +4つの 技の PPを +10ずつ 回復する。" +41,5,9,"Fully restores the +PP of a POKéMON’s +moves." +41,6,9,"Fully restores the +PP of a POKéMON’s +moves." +41,7,9,"Fully restores the PP of all moves +for one POKéMON." +41,8,9,"It fully restores the PP of all the +moves learned by the targeted +Pokémon." +41,9,9,"It fully restores the PP of all the +moves learned by the targeted +Pokémon." +41,10,9,"It fully restores the PP of all the +moves learned by the targeted +Pokémon." +41,11,5,"Restaure tous les PP de toutes +les capacités d’un Pokémon." +41,11,9,"It fully restores the PP of all the +moves learned by the targeted +Pokémon." +41,14,9,"It fully restores the PP of all the +moves learned by the targeted +Pokémon." +41,15,1,"ポケモンが おぼえている +4つの わざの PPを +すべて かいふくする。" +41,15,3,"포켓몬이 기억하고 있는 +4개 기술의 PP를 +모두 회복한다." +41,15,5,"Restaure tous les PP de toutes les capacités +d’un Pokémon." +41,15,6,"Füllt alle AP aller Attacken eines Pokémon +vollständig auf." +41,15,7,"Restaura completamente los PP de todos los +movimientos aprendidos por el Pokémon elegido." +41,15,8,"Restituisce tutti i PP a ogni mossa conosciuta +dal Pokémon." +41,15,9,"This medicine can fully restore the +PP of all of the moves that have +been learned by a Pokémon." +41,15,11,"ポケモンが 覚えている +4つの 技の PPを +すべて 回復する。" +42,5,9,"A local specialty +that heals all +status problems." +42,6,9,"A local specialty +that heals all +status problems." +42,7,9,"LAVARIDGE TOWN’s local specialty. +It heals all the status problems of +one POKéMON." +42,8,9,"Lavaridge Town’s local specialty. +It heals all the status problems of +one Pokémon." +42,9,9,"Lavaridge Town’s local specialty. +It heals all the status problems of +one Pokémon." +42,10,9,"Lavaridge Town’s local specialty. +It heals all the status problems of +one Pokémon." +42,11,5,"La spécialité de la ville de Vermilava. +Soigne tous les problèmes de statut +d’un Pokémon." +42,11,9,"Lavaridge Town’s local specialty. +It heals all the status problems of +one Pokémon." +42,14,9,"Lavaridge Town’s local specialty. +It heals all the status problems of +one Pokémon." +42,15,1,"フエンめいぶつの せんべい。 +ポケモン 1ひきの じょうたいの +いじょうを すべて かいふくする。" +42,15,3,"용암마을의 명물인 전병. +포켓몬 1마리의 +상태 이상을 회복한다." +42,15,5,"La spécialité de la ville de Vermilava. +Soigne tous les problèmes de statut +d’un Pokémon." +42,15,6,"Eine Spezialität aus Bad Lavastadt, die alle +Statusprobleme eines Pokémon heilt." +42,15,7,"Dulce típico de Pueblo Lavacalda que cura todos +los problemas de estado de un Pokémon." +42,15,8,"Specialità tipica di Cuordilava. +Cura tutti i problemi di stato di un Pokémon." +42,15,9,"Lavaridge Town’s local specialty. +It can be used once to heal all the +status conditions of a Pokémon." +42,15,11,"フエン名物の せんべい。 +ポケモン 1匹の 状態の +異常を すべて 回復する。" +43,5,9,"A 100% pure juice +that restores HP +by 20 points." +43,6,9,"A 100% pure juice +that restores HP +by 20 points." +43,7,9,"A 100% pure juice. +It restores the HP of one POKéMON +by 20 points." +43,8,9,"A 100% pure juice made of Berries. +It restores the HP of one Pokémon by +just 20 points." +43,9,9,"A 100% pure juice made of Berries. +It restores the HP of one Pokémon by +just 20 points." +43,10,9,"A 100% pure juice made of Berries. +It restores the HP of one Pokémon by +just 20 points." +43,11,5,"Une boisson 100% pur jus de Baies. +Restaure 20 PV à un Pokémon." +43,11,9,"A 100% pure juice made of Berries. +It restores the HP of one Pokémon by +just 20 points." +43,14,9,"A 100% pure juice made of Berries. +It restores the HP of one Pokémon by +just 20 points." +43,15,1,"きのみ 100%の ジュース。 +ポケモン 1ひきの HPを +20だけ かいふくする。" +43,15,3,"나무열매 100% 쥬스. +포켓몬 1마리의 HP를 +20만큼 회복한다." +43,15,5,"Une boisson 100 % pur Jus de Baie. +Restaure 20 PV d’un Pokémon." +43,15,6,"Hundertprozentiger Fruchtsaft, aus Beeren +gekeltert. Füllt die KP eines Pokémon +um 20 KP auf." +43,15,7,"Zumo de bayas 100% natural que restaura 20 PS +de un Pokémon." +43,15,8,"Bevanda di puro succo di bacche. +Restituisce 20 PS a un Pokémon." +43,15,9,"A 100 percent pure juice made of Berries. +When consumed, it restores +20 HP to an injured Pokémon." +43,15,11,"きのみ 100%の ジュース。 +ポケモン 1匹の HPを +20だけ 回復する。" +44,5,9,"Fully revives and +restores all +fainted POKéMON." +44,6,9,"Fully revives and +restores all +fainted POKéMON." +44,7,9,"Revives all fainted POKéMON, +restoring HP fully." +44,8,9,"It revives all fainted Pokémon. +In doing so, it also fully restores +their HP." +44,9,9,"It revives all fainted Pokémon. +In doing so, it also fully restores +their HP." +44,10,9,"It revives all fainted Pokémon. +In doing so, it also fully restores +their HP." +44,11,5,"Ranime tous les Pokémon K.O. et +restaure tous leurs PV." +44,11,9,"It revives all fainted Pokémon. +In doing so, it also fully restores +their HP." +44,14,9,"It revives all fainted Pokémon. +In doing so, it also fully restores +their HP." +44,15,1,"ひんしに なってしまった +ポケモン ぜんいんの HPを +すべて かいふくする。" +44,15,3,"기절해 버린 +포켓몬 전원의 HP를 +모두 회복한다." +44,15,5,"Ranime tous les Pokémon K.O. et restaure tous +leurs PV." +44,15,6,"Belebt und erfrischt alle besiegten Pokémon +und füllt deren KP wieder vollständig auf." +44,15,7,"Reanima completamente a todos los Pokémon +debilitados y restaura todos sus PS." +44,15,8,"Rianima tutti i Pokémon esausti, restituendo loro +anche tutti i PS." +44,15,9,"This rare ash can revive all fainted +Pokémon in a party. In doing so, it +also fully restores their maximum HP." +44,15,11,"ひんしに なってしまった +ポケモン 全員の HPを +すべて 回復する。" +45,5,9,"Raises the HP of +one POKéMON." +45,6,9,"Raises the base HP +of one POKéMON." +45,7,9,"A nutritious drink for POKéMON. +It raises the base HP of one +POKéMON." +45,8,9,"A nutritious drink for Pokémon. +It raises the base HP of a single +Pokémon." +45,9,9,"A nutritious drink for Pokémon. +It raises the base HP of a single +Pokémon." +45,10,9,"A nutritious drink for Pokémon. +It raises the base HP of a single +Pokémon." +45,11,5,"Une boisson très nutritive qui monte +les PV de base d’un Pokémon." +45,11,9,"A nutritious drink for Pokémon. +It raises the base HP of a single +Pokémon." +45,14,9,"A nutritious drink for Pokémon. +It raises the base HP of a single +Pokémon." +45,15,1,"ポケモンの えいようドリンク。 +ポケモン 1ひきの HPの +きそポイントを あげる。" +45,15,3,"포켓몬의 영양 드링크. +포켓몬 1마리의 HP +기초 포인트를 올린다." +45,15,5,"Une boisson très nutritive qui augmente +les PV de base d’un Pokémon." +45,15,6,"Ein gehaltvolles Getränk, das den KP-Basiswert +eines Pokémon dauerhaft erhöht." +45,15,7,"Nutritiva bebida que potencia los PS de base de +un Pokémon." +45,15,8,"Bevanda nutriente per Pokémon. +Aumenta i punti base dei PS." +45,15,9,"A nutritious drink for Pokémon. +When consumed, it raises the +base HP of a single Pokémon." +45,15,11,"ポケモンの 栄養ドリンク。 +ポケモン 1匹の HPの +基礎ポイントを あげる。" +46,5,9,"Raises the stat +ATTACK of one +POKéMON." +46,6,9,"Raises the base +ATTACK stat of one +POKéMON." +46,7,9,"A nutritious drink for POKéMON. +It raises the base ATTACK stat of +one POKéMON." +46,8,9,"A nutritious drink for Pokémon. +It raises the base Attack stat of a +single Pokémon." +46,9,9,"A nutritious drink for Pokémon. +It raises the base Attack stat of a +single Pokémon." +46,10,9,"A nutritious drink for Pokémon. +It raises the base Attack stat of a +single Pokémon." +46,11,5,"Une boisson très nutritive qui monte +l’Attaque de base d’un Pokémon." +46,11,9,"A nutritious drink for Pokémon. +It raises the base Attack stat of a +single Pokémon." +46,14,9,"A nutritious drink for Pokémon. +It raises the base Attack stat of a +single Pokémon." +46,15,1,"ポケモンの えいようドリンク。 +ポケモン 1ひきの こうげきの +きそポイントを あげる。" +46,15,3,"포켓몬의 영양 드링크. +포켓몬 1마리의 공격 +기초 포인트를 올린다." +46,15,5,"Une boisson très nutritive qui augmente +l’Attaque de base d’un Pokémon." +46,15,6,"Ein gehaltvolles Getränk, das den +Angriffs-Basiswert eines Pokémon +dauerhaft erhöht." +46,15,7,"Nutritiva bebida que potencia el Ataque de base +de un Pokémon." +46,15,8,"Bevanda nutriente per Pokémon. +Aumenta i punti base dell’Attacco." +46,15,9,"A nutritious drink for Pokémon. +When consumed, it raises the base +Attack stat of a single Pokémon." +46,15,11,"ポケモンの 栄養ドリンク。 +ポケモン 1匹の 攻撃の +基礎ポイントを あげる。" +47,5,9,"Raises the stat +DEFENSE of one +POKéMON." +47,6,9,"Raises the base +DEFENSE stat of +one POKéMON." +47,7,9,"A nutritious drink for POKéMON. +It raises the base DEFENSE stat of +one POKéMON." +47,8,9,"A nutritious drink for Pokémon. +It raises the base Defense stat of a +single Pokémon." +47,9,9,"A nutritious drink for Pokémon. +It raises the base Defense stat of a +single Pokémon." +47,10,9,"A nutritious drink for Pokémon. +It raises the base Defense stat of a +single Pokémon." +47,11,5,"Une boisson très nutritive qui monte +la Défense de base d’un Pokémon." +47,11,9,"A nutritious drink for Pokémon. +It raises the base Defense stat of a +single Pokémon." +47,14,9,"A nutritious drink for Pokémon. +It raises the base Defense stat of a +single Pokémon." +47,15,1,"ポケモンの えいようドリンク。 +ポケモン 1ひきの ぼうぎょの +きそポイントを あげる。" +47,15,3,"포켓몬의 영양 드링크. +포켓몬 1마리의 방어 +기초 포인트를 올린다." +47,15,5,"Une boisson très nutritive qui augmente +la Défense de base d’un Pokémon." +47,15,6,"Ein gehaltvolles Getränk, das den +Verteidigungs-Basiswert eines Pokémon +dauerhaft erhöht." +47,15,7,"Nutritiva bebida que potencia la Defensa de base +de un Pokémon." +47,15,8,"Bevanda nutriente per Pokémon. +Aumenta i punti base della Difesa." +47,15,9,"A nutritious drink for Pokémon. +When consumed, it raises the base +Defense stat of a single Pokémon." +47,15,11,"ポケモンの 栄養ドリンク。 +ポケモン 1匹の 防御の +基礎ポイントを あげる。" +48,5,9,"Raises the stat +SPEED of one +POKéMON." +48,6,9,"Raises the base +SPEED stat of one +POKéMON." +48,7,9,"A nutritious drink for POKéMON. +It raises the base SPEED stat of +one POKéMON." +48,8,9,"A nutritious drink for Pokémon. +It raises the base Speed stat of a +single Pokémon." +48,9,9,"A nutritious drink for Pokémon. +It raises the base Speed stat of a +single Pokémon." +48,10,9,"A nutritious drink for Pokémon. +It raises the base Speed stat of a +single Pokémon." +48,11,5,"Une boisson très nutritive qui monte +la Vitesse de base d’un Pokémon." +48,11,9,"A nutritious drink for Pokémon. +It raises the base Speed stat of a +single Pokémon." +48,14,9,"A nutritious drink for Pokémon. +It raises the base Speed stat of a +single Pokémon." +48,15,1,"ポケモンの えいようドリンク。 +ポケモン 1ひきの すばやさの +きそポイントを あげる。" +48,15,3,"포켓몬의 영양 드링크. +포켓몬 1마리의 스피드 +기초 포인트를 올린다." +48,15,5,"Une boisson très nutritive qui augmente +la Vitesse de base d’un Pokémon." +48,15,6,"Ein gehaltvolles Getränk, das den +Initiative-Basiswert eines Pokémon +dauerhaft erhöht." +48,15,7,"Nutritiva bebida que potencia la Velocidad de +base de un Pokémon." +48,15,8,"Bevanda nutriente per Pokémon. +Aumenta i punti base della Velocità." +48,15,9,"A nutritious drink for Pokémon. +When consumed, it raises the base +Speed stat of a single Pokémon." +48,15,11,"ポケモンの 栄養ドリンク。 +ポケモン 1匹の 素早さの +基礎ポイントを あげる。" +49,5,9,"Raises the stat +SP. ATK of one +POKéMON." +49,6,9,"Raises the base +SP. ATK stat of one +POKéMON." +49,7,9,"A nutritious drink for POKéMON. +It raises the base SP. ATK stat +of one POKéMON." +49,8,9,"A nutritious drink for Pokémon. +It raises the base Sp. Atk (Special +Attack) stat of a single Pokémon." +49,9,9,"A nutritious drink for Pokémon. +It raises the base Sp. Atk (Special +Attack) stat of a single Pokémon." +49,10,9,"A nutritious drink for Pokémon. +It raises the base Sp. Atk (Special +Attack) stat of a single Pokémon." +49,11,5,"Une boisson très nutritive qui +monte l’Attaque Spéciale de +base d’un Pokémon." +49,11,9,"A nutritious drink for Pokémon. +It raises the base Sp. Atk (Special +Attack) stat of a single Pokémon." +49,14,9,"A nutritious drink for Pokémon. +It raises the base Sp. Atk (Special +Attack) stat of a single Pokémon." +49,15,1,"ポケモンの えいようドリンク。 +ポケモン 1ひきの とくこうの +きそポイントを あげる。" +49,15,3,"포켓몬의 영양 드링크. +포켓몬 1마리의 특수공격 +기초 포인트를 올린다." +49,15,5,"Une boisson très nutritive qui augmente +l’Attaque Spéciale de base d’un Pokémon." +49,15,6,"Ein gehaltvolles Getränk, das den +Spezial-Angriffs-Basiswert eines Pokémon +dauerhaft erhöht." +49,15,7,"Nutritiva bebida que potencia el Ataque Especial +de base de un Pokémon." +49,15,8,"Bevanda nutriente per Pokémon. +Aumenta i punti base dell’Attacco Speciale." +49,15,9,"A nutritious drink for Pokémon. +When consumed, it raises the base +Sp. Atk stat of a single Pokémon." +49,15,11,"ポケモンの 栄養ドリンク。 +ポケモン 1匹の 特攻の +基礎ポイントを あげる。" +50,5,9,"Raises the level +of a POKéMON by +one." +50,6,9,"Raises the level +of a POKéMON by +one." +50,7,9,"A candy that is packed with energy. +It raises the level of a POKéMON +by one." +50,8,9,"A candy that is packed with energy. +It raises the level of a single Pokémon +by one." +50,9,9,"A candy that is packed with energy. +It raises the level of a single Pokémon +by one." +50,10,9,"A candy that is packed with energy. +It raises the level of a single Pokémon +by one." +50,11,5,"Un bonbon plein d’énergie. +Il permet à un Pokémon de gagner +un niveau d’expérience." +50,11,9,"A candy that is packed with energy. +It raises the level of a single Pokémon +by one." +50,14,9,"A candy that is packed with energy. +It raises the level of a single Pokémon +by one." +50,15,1,"エネルギーの つまった アメ。 +あたえると ポケモン 1ひきの +レベルが 1だけ あがる。" +50,15,3,"에너지가 가득한 사탕. +먹이면 포켓몬 1마리의 +레벨이 1만큼 올라간다." +50,15,5,"Un bonbon plein d’énergie. +Il permet à un Pokémon de gagner un niveau +d’expérience." +50,15,6,"Ein energiereiches Bonbon, das den Level +eines Pokémon dauerhaft um 1 erhöht." +50,15,7,"Caramelo energético que sube a un Pokémon de +nivel." +50,15,8,"Caramella altamente energetica. +Fa salire un Pokémon di un livello." +50,15,9,"A candy that is packed with energy. +When consumed, it will instantly raise +the level of a single Pokémon by one." +50,15,11,"エネルギーの つまった アメ。 +あたえると ポケモン 1匹の +レベルが 1だけ あがる。" +51,5,9,"Raises the maximum +PP of a selected +move." +51,6,9,"Raises the maximum +PP of a selected +move." +51,7,9,"Slightly raises the maximum PP of +a selected move for one POKéMON." +51,8,9,"It slightly raises the maximum PP of +a selected move that has been learned +by the target Pokémon." +51,9,9,"It slightly raises the maximum PP of +a selected move that has been learned +by the target Pokémon." +51,10,9,"It slightly raises the maximum PP of +a selected move that has been learned +by the target Pokémon." +51,11,5,"Monte un peu les PP max d’une +capacité sélectionnée." +51,11,9,"It slightly raises the maximum PP of +a selected move that has been learned +by the target Pokémon." +51,14,9,"It slightly raises the maximum PP of +a selected move that has been learned +by the target Pokémon." +51,15,1,"ポケモンが おぼえている +わざのうち 1つの PPの +さいだいちを すこし あげる。" +51,15,3,"포켓몬이 기억하고 있는 +기술 중 1개의 PP +최대치를 조금 올린다." +51,15,5,"Augmente un peu les PP max d’une capacité +sélectionnée." +51,15,6,"Erhöht die maximale Anzahl der AP einer Attacke +eines Pokémon." +51,15,7,"Aumenta ligeramente los PP máximos del +movimiento elegido de un Pokémon." +51,15,8,"Aumenta di poco i PP massimi di una mossa +a scelta tra quelle conosciute dal Pokémon." +51,15,9,"A medicine that can slightly raise the +maximum PP of a single move that has +been learned by the target Pokémon." +51,15,11,"ポケモンが 覚えている +技のうち 1つの PPの +最大値を 少し あげる。" +52,5,9,"Raises the stat +SP. DEF of one +POKéMON." +52,6,9,"Raises the base +SP. DEF stat of one +POKéMON." +52,7,9,"A nutritious drink for POKéMON. +It raises the base SP. DEF stat +of one POKéMON." +52,8,9,"A nutritious drink for Pokémon. +It raises the base Sp. Def (Special +Defense) stat of a single Pokémon." +52,9,9,"A nutritious drink for Pokémon. +It raises the base Sp. Def (Special +Defense) stat of a single Pokémon." +52,10,9,"A nutritious drink for Pokémon. +It raises the base Sp. Def (Special +Defense) stat of a single Pokémon." +52,11,5,"Une boisson très nutritive qui monte +la Défense Spéciale d’un Pokémon." +52,11,9,"A nutritious drink for Pokémon. +It raises the base Sp. Def (Special +Defense) stat of a single Pokémon." +52,14,9,"A nutritious drink for Pokémon. +It raises the base Sp. Def (Special +Defense) stat of a single Pokémon." +52,15,1,"ポケモンの えいようドリンク。 +ポケモン 1ひきの とくぼうの +きそポイントを あげる。" +52,15,3,"포켓몬의 영양 드링크. +포켓몬 1마리의 특수방어 +기초 포인트를 올린다." +52,15,5,"Une boisson très nutritive qui augmente +la Défense Spéciale de base d’un Pokémon." +52,15,6,"Ein gehaltvolles Getränk, das den +Spezial-Verteidigungs-Basiswert eines +Pokémon dauerhaft erhöht." +52,15,7,"Nutritiva bebida que aumenta la Defensa Especial +de base de un Pokémon." +52,15,8,"Bevanda nutriente per Pokémon. +Aumenta i punti base della Difesa Speciale." +52,15,9,"A nutritious drink for Pokémon. +When consumed, it raises the base +Sp. Def stat of a single Pokémon." +52,15,11,"ポケモンの 栄養ドリンク。 +ポケモン 1匹の 特防の +基礎ポイントを あげる。" +53,5,9,"Raises the PP of a +move to its maximum +points." +53,6,9,"Raises the PP of a +move to its maximum +points." +53,7,9,"Raises the PP of a selected move +to its maximum level for one +POKéMON." +53,8,9,"It maximally raises the top PP of a +selected move that has been learned +by the target Pokémon." +53,9,9,"It maximally raises the top PP of a +selected move that has been learned +by the target Pokémon." +53,10,9,"It maximally raises the top PP of a +selected move that has been learned +by the target Pokémon." +53,11,5,"Monte sensiblement les PP max d’une +capacité sélectionnée." +53,11,9,"It maximally raises the top PP of a +selected move that has been learned +by the target Pokémon." +53,14,9,"It maximally raises the top PP of a +selected move that has been learned +by the target Pokémon." +53,15,1,"おぼえている わざのうち +1つの PPの さいだいちを +さいこうまで あげる。" +53,15,3,"기억하고 있는 기술 중 +1개의 PP 최대치를 +최고까지 올린다." +53,15,5,"Augmente sensiblement les PP max d’une +capacité sélectionnée." +53,15,6,"Maximiert die Anzahl der AP einer Attacke +eines Pokémon." +53,15,7,"Aumenta hasta el límite los PP máximos del +movimiento elegido de un Pokémon." +53,15,8,"Porta al limite i PP massimi di una mossa +a scelta tra quelle conosciute dal Pokémon." +53,15,9,"A medicine that can optimally raise the +maximum PP of a single move that has +been learned by the target Pokémon." +53,15,11,"覚えている 技のうち +1つの PPの 最大値を +最高まで あげる。" +54,8,9,"Old Chateau’s hidden specialty. +It heals all the status problems of a +single Pokémon." +54,9,9,"Old Chateau’s hidden specialty. +It heals all the status problems of a +single Pokémon." +54,10,9,"Old Chateau’s hidden specialty. +It heals all the status problems of a +single Pokémon." +54,11,5,"Spécialité du Vieux Château. Il +soigne tous les problèmes de +statut d’un Pokémon." +54,11,9,"Old Chateau’s hidden specialty. +It heals all the status problems of a +single Pokémon." +54,14,9,"Old Chateau’s hidden specialty. +It heals all the status problems of a +single Pokémon." +54,15,1,"ハクタイの かくれた めいぶつ。 +ポケモン 1ひきの じょうたいの +いじょうを すべて かいふくする。" +54,15,3,"영원시티의 숨은 명물. +포켓몬 1마리의 +상태 이상을 모두 회복한다." +54,15,5,"Une spécialité du Vieux Château. +Il soigne tous les problèmes de statut +d’un Pokémon." +54,15,6,"Eine unbekannte Spezialität. Sie behebt +alle Statusprobleme eines Pokémon." +54,15,7,"Especialidad de la Vieja Mansión. Cura todos los +problemas de estado de un Pokémon." +54,15,8,"Specialità segreta dell’Antico Château. +Cura tutti i problemi di stato di un Pokémon." +54,15,9,"The Old Chateau’s hidden specialty. +It can be used once to heal all the +status conditions of a Pokémon." +54,15,11,"ハクタイの 隠れた 名物。 +ポケモン 1匹の 状態の +異常を すべて 回復する。" +55,5,9,"Prevents stat +reduction when +used in battle." +55,6,9,"Prevents stat +reduction when +used in battle." +55,7,9,"An item that prevents stat reduction +among party POKéMON for five turns +after use." +55,8,9,"An item that prevents stat reduction +among the Trainer’s party Pokémon +for five turns after use." +55,9,9,"An item that prevents stat reduction +among the Trainer’s party Pokémon +for five turns after use." +55,10,9,"An item that prevents stat reduction +among the Trainer’s party Pokémon +for five turns after use." +55,11,5,"Empêche la réduction des stats +de tous les Pokémon de l’équipe +pendant 5 tours." +55,11,9,"An item that prevents stat reduction +among the Trainer’s party Pokémon +for five turns after use." +55,14,9,"An item that prevents stat reduction +among the Trainer’s party Pokémon +for five turns after use." +55,15,1,"せんとうちゅう 5ターンの あいだ +みかたの のうりょくを +さげられなくする どうぐ。" +55,15,3,"배틀 중 5턴 동안 +같은 편의 능력을 +떨어뜨리지 않게 하는 도구." +55,15,5,"Empêche la baisse des stats de tous +les Pokémon de l’équipe pendant cinq tours." +55,15,6,"Eine mögliche Statusveränderung der Pokémon +im Team wird für 5 Runden verhindert." +55,15,7,"Evita que bajen las características del equipo +Pokémon durante cinco turnos." +55,15,8,"Per cinque turni dopo l’uso, evita che le +statistiche dei Pokémon della squadra +dell’Allenatore diminuiscano." +55,15,9,"An item that prevents stat reduction +among the Trainer’s party Pokémon +for five turns after it is used in battle." +55,15,11,"戦闘中 5ターンの あいだ +味方の 能力を +さげられなくする 道具。" +56,5,9,"Raises the +critical-hit ratio +during one battle." +56,6,9,"Raises the +critical-hit ratio +during one battle." +56,7,9,"Raises the critical-hit ratio of +POKéMON in battle. Wears off if the +POKéMON is withdrawn." +56,8,9,"An item that raises the critical-hit +ratio of a Pokémon in battle. It wears +off if the Pokémon is withdrawn." +56,9,9,"An item that raises the critical-hit +ratio of a Pokémon in battle. It wears +off if the Pokémon is withdrawn." +56,10,9,"An item that raises the critical-hit +ratio of a Pokémon in battle. It wears +off if the Pokémon is withdrawn." +56,11,5,"Monte fortement le taux de critiques. +Utilisable une seule fois. L’effet +disparaît si le Pokémon se retire." +56,11,9,"It raises the critical-hit ratio greatly. +It can be used only once and wears off +if the Pokémon is withdrawn." +56,14,9,"It raises the critical-hit ratio greatly. +It can be used only once and wears off +if the Pokémon is withdrawn." +56,15,1,"きゅうしょりつが おおきく あがる。 +いちどしか つかうことが できない。 +ひっこめると もとに もどる。" +56,15,3,"급소 명중률이 크게 올라간다. +한 번밖에 쓸 수 없다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +56,15,5,"Augmente fortement le taux de critiques. +Utilisable une seule fois. L’effet disparaît si +le Pokémon se retire." +56,15,6,"Hebt einmalig die Volltrefferquote des Pokémon +im Kampf stark an. Die Wirkung endet mit dem +Austausch des Pokémon." +56,15,7,"Aumenta el índice de golpe crítico en combate. +Al cambiar de Pokémon, el efecto desaparece." +56,15,8,"Aumenta la probabilità di sferrare brutti colpi. +Si può usare una sola volta e l’effetto svanisce +se il Pokémon è sostituito." +56,15,9,"An item that raises the critical-hit ratio +greatly. It can be used only once and +wears off if the Pokémon is withdrawn." +56,15,11,"急所率が 大きく あがる。 +1度しか 使うことが できない。 +ひっこめると 元に 戻る。" +57,5,9,"Raises the stat +ATTACK during one +battle." +57,6,9,"Raises the stat +ATTACK during one +battle." +57,7,9,"Raises the ATTACK stat of POKéMON +in battle. Wears off if the POKéMON +is withdrawn." +57,8,9,"An item that raises the Attack stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +57,9,9,"An item that raises the Attack stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +57,10,9,"An item that raises the Attack stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +57,11,5,"Monte l’Attaque pendant un combat. +L’effet s’estompe si le Pokémon se +retire." +57,11,9,"An item that raises the Attack stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +57,14,9,"An item that raises the Attack stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +57,15,1,"せんとうちゅうの ポケモンの +こうげきを あげる どうぐ。 +ひっこめると もとに もどる。" +57,15,3,"배틀 중인 포켓몬의 공격을 올리는 +도구. 포켓몬을 볼에 넣어버리면 +원래대로 되돌아간다." +57,15,5,"Augmente l’Attaque pendant un combat. +L’effet disparaît si le Pokémon se retire." +57,15,6,"Hebt den Angriffs-Wert eines Pokémon im Kampf. +Die Wirkung wird mit dem Austausch des +Pokémon beendet." +57,15,7,"Aumenta el Ataque en combate. Al cambiar de +Pokémon, el efecto desaparece." +57,15,8,"Aumenta l’Attacco di un Pokémon in una lotta. +L’effetto svanisce se il Pokémon è sostituito." +57,15,9,"An item that boosts the Attack stat +of a Pokémon during a battle. It wears +off once the Pokémon is withdrawn." +57,15,11,"戦闘中の ポケモンの +攻撃を あげる 道具。 +ひっこめると 元に 戻る。" +58,5,9,"Raises the stat +DEFENSE during one +battle." +58,6,9,"Raises the stat +DEFENSE during one +battle." +58,7,9,"Raises the DEFENSE stat of POKéMON +in battle. Wears off if the POKéMON +is withdrawn." +58,8,9,"An item that raises the Defense stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +58,9,9,"An item that raises the Defense stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +58,10,9,"An item that raises the Defense stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +58,11,5,"Monte la Défense pendant un combat. +L’effet s’estompe si le Pokémon se +retire." +58,11,9,"An item that raises the Defense stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +58,14,9,"An item that raises the Defense stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +58,15,1,"せんとうちゅうの ポケモンの +ぼうぎょを あげる どうぐ。 +ひっこめると もとに もどる。" +58,15,3,"배틀 중인 포켓몬의 방어를 올리는 +도구. 포켓몬을 볼에 넣어버리면 +원래대로 되돌아간다." +58,15,5,"Augmente la Défense pendant un combat. +L’effet disparaît si le Pokémon se retire." +58,15,6,"Hebt den Verteidigungs-Wert eines Pokémon im +Kampf. Die Wirkung wird mit dem Austausch des +Pokémon beendet." +58,15,7,"Aumenta la Defensa en combate. Al cambiar de +Pokémon, el efecto desaparece." +58,15,8,"Aumenta la Difesa di un Pokémon in una lotta. +L’effetto svanisce se il Pokémon è sostituito." +58,15,9,"An item that boosts the Defense stat +of a Pokémon during a battle. It wears +off once the Pokémon is withdrawn." +58,15,11,"戦闘中の ポケモンの +防御を あげる 道具。 +ひっこめると 元に 戻る。" +59,5,9,"Raises the stat +SPEED during one +battle." +59,6,9,"Raises the stat +SPEED during one +battle." +59,7,9,"Raises the SPEED stat of POKéMON +in battle. Wears off if the POKéMON +is withdrawn." +59,8,9,"An item that raises the Speed stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +59,9,9,"An item that raises the Speed stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +59,10,9,"An item that raises the Speed stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +59,11,5,"Monte la Vitesse pendant un combat. +L’effet s’estompe si le Pokémon se +retire." +59,11,9,"An item that raises the Speed stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +59,14,9,"An item that raises the Speed stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +59,15,1,"せんとうちゅうの ポケモンの +すばやさを あげる どうぐ。 +ひっこめると もとに もどる。" +59,15,3,"배틀 중인 포켓몬의 스피드를 올리는 +도구. 포켓몬을 볼에 넣어버리면 +원래대로 되돌아간다." +59,15,5,"Augmente la Vitesse pendant un combat. +L’effet disparaît si le Pokémon se retire." +59,15,6,"Hebt den Initiative-Wert eines Pokémon im Kampf. +Die Wirkung wird mit dem Austausch des +Pokémon beendet." +59,15,7,"Aumenta la Velocidad en combate. Al cambiar de +Pokémon, el efecto desaparece." +59,15,8,"Aumenta la Velocità di un Pokémon in una lotta. +L’effetto svanisce se il Pokémon è sostituito." +59,15,9,"An item that boosts the Speed stat +of a Pokémon during a battle. It wears +off once the Pokémon is withdrawn." +59,15,11,"戦闘中の ポケモンの +素早さを あげる 道具。 +ひっこめると 元に 戻る。" +60,5,9,"Raises accuracy +of attack moves +during one battle." +60,6,9,"Raises accuracy +of attack moves +during one battle." +60,7,9,"Raises the accuracy stat of +POKéMON in battle. Wears off if the +POKéMON is withdrawn." +60,8,9,"An item that raises the accuracy +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +60,9,9,"An item that raises the accuracy +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +60,10,9,"An item that raises the accuracy +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +60,11,5,"Monte la Précision pendant un combat. +L’effet s’estompe si le Pokémon se +retire." +60,11,9,"An item that raises the accuracy +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +60,14,9,"An item that raises the accuracy +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +60,15,1,"せんとうちゅうの ポケモンの +めいちゅうを あげる どうぐ。 +ひっこめると もとに もどる。" +60,15,3,"배틀 중인 포켓몬의 명중률을 올리는 +도구. 포켓몬을 볼에 넣어버리면 +원래대로 되돌아간다." +60,15,5,"Augmente la Précision pendant un combat. +L’effet disparaît si le Pokémon se retire." +60,15,6,"Hebt die Genauigkeit eines Pokémon im Kampf. +Die Wirkung wird mit dem Austausch des +Pokémon beendet." +60,15,7,"Aumenta la Precisión de los ataques en combate. +Al cambiar de Pokémon, el efecto desaparece." +60,15,8,"Aumenta la precisione di un Pokémon in una +lotta. L’effetto svanisce se il Pokémon +è sostituito." +60,15,9,"An item that boosts the accuracy of +a Pokémon during a battle. It wears +off once the Pokémon is withdrawn." +60,15,11,"戦闘中の ポケモンの +命中を あげる 道具。 +ひっこめると 元に 戻る。" +61,5,9,"Raises the stat +SP. ATK during one +battle." +61,6,9,"Raises the stat +SP. ATK during one +battle." +61,7,9,"Raises the SP. ATK stat of +POKéMON in battle. Wears off if the +POKéMON is withdrawn." +61,8,9,"An item that raises the Sp. Atk stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +61,9,9,"An item that raises the Sp. Atk stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +61,10,9,"An item that raises the Sp. Atk stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +61,11,5,"Monte l’Attaque Spéciale pendant +un combat. L’effet s’estompe si +le Pokémon se retire." +61,11,9,"An item that raises the Sp. Atk stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +61,14,9,"An item that raises the Sp. Atk stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +61,15,1,"せんとうちゅうの ポケモンの +とくこうを あげる どうぐ。 +ひっこめると もとに もどる。" +61,15,3,"배틀 중인 포켓몬의 특수공격을 올리는 +도구. 포켓몬을 볼에 넣어버리면 +원래대로 되돌아간다." +61,15,5,"Augmente l’Attaque Spéciale pendant un combat. +L’effet disparaît si le Pokémon se retire." +61,15,6,"Hebt den Spezial-Angriff eines Pokémon im +Kampf. Die Wirkung wird mit dem Austausch +des Pokémon beendet." +61,15,7,"Aumenta el Ataque Especial en combate. +Al cambiar de Pokémon, el efecto desaparece." +61,15,8,"Aumenta l’Attacco Speciale di un Pokémon +in una lotta. L’effetto svanisce se il Pokémon +è sostituito." +61,15,9,"An item that boosts the Sp. Atk stat +of a Pokémon during a battle. It wears +off once the Pokémon is withdrawn." +61,15,11,"戦闘中の ポケモンの +特攻を あげる 道具。 +ひっこめると 元に 戻る。" +62,8,9,"An item that raises the Sp. Def stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +62,9,9,"An item that raises the Sp. Def stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +62,10,9,"An item that raises the Sp. Def stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +62,11,5,"Monte la Défense Spéciale pendant +un combat. L’effet s’estompe si le +Pokémon se retire." +62,11,9,"An item that raises the Sp. Def stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +62,14,9,"An item that raises the Sp. Def stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +62,15,1,"せんとうちゅうの ポケモンの +とくぼうを あげる どうぐ。 +ひっこめると もとに もどる。" +62,15,3,"배틀 중인 포켓몬의 특수방어를 올리는 +도구. 포켓몬을 볼에 넣어버리면 +원래대로 되돌아간다." +62,15,5,"Augmente la Défense Spéciale pendant un +combat. L’effet disparaît si le Pokémon se retire." +62,15,6,"Hebt die Spezial-Verteidigung eines Pokémon im +Kampf. Die Wirkung wird mit dem Austausch des +Pokémon beendet." +62,15,7,"Aumenta la Defensa Especial en combate. +Al cambiar de Pokémon, el efecto desaparece." +62,15,8,"Aumenta la Difesa Speciale di un Pokémon +in una lotta. L’effetto svanisce se il Pokémon +è sostituito." +62,15,9,"An item that boosts the Sp. Def stat +of a Pokémon during a battle. It wears +off once the Pokémon is withdrawn." +62,15,11,"戦闘中の ポケモンの +特防を あげる 道具。 +ひっこめると 元に 戻る。" +63,5,9,"Use to flee from +any battle with +a wild POKéMON." +63,6,9,"Use to flee from +any battle with +a wild POKéMON." +63,7,9,"An attractive doll. +Use it to flee from any battle with +a wild POKéMON." +63,8,9,"A doll that attracts Pokémon. +Use it to flee from any battle with a +wild Pokémon." +63,9,9,"A doll that attracts Pokémon. +Use it to flee from any battle with a +wild Pokémon." +63,10,9,"A doll that attracts Pokémon. +Use it to flee from any battle with a +wild Pokémon." +63,11,5,"Poupée qui attire les Pokémon. Permet +de s’enfuir d’un combat contre un +Pokémon sauvage." +63,11,9,"A doll that attracts Pokémon. +Use it to flee from any battle with a +wild Pokémon." +63,14,9,"A doll that attracts Pokémon. +Use it to flee from any battle with a +wild Pokémon." +63,15,1,"ポケモンの きを ひかせる どうぐ。 +やせいポケモンとの せんとうから +ぜったいに にげられる。" +63,15,3,"포켓몬의 관심을 끄는 도구. +야생 포켓몬과의 배틀에서 +반드시 도망칠 수 있다." +63,15,5,"Une poupée qui attire les Pokémon. +Permet de s’enfuir d’un combat contre +un Pokémon sauvage." +63,15,6,"Eine hübsche Puppe. Sie ermöglicht die Flucht +im Kampf gegen wilde Pokémon." +63,15,7,"Un muñeco que atrae a los Pokémon. Es útil para +huir de un combate contra un Pokémon salvaje." +63,15,8,"Bambola che attrae i Pokémon. È utile per fuggire +dalla lotta con Pokémon selvatici." +63,15,9,"A doll that attracts the attention of a +Pokémon. It guarantees escape from +any battle with wild Pokémon." +63,15,11,"ポケモンの 気をひかせる 道具。 +野生ポケモンとの 戦闘から +絶対に 逃げられる。" +64,5,9,"Use to flee from +any battle with +a wild POKéMON." +64,6,9,"Use to flee from +any battle with +a wild POKéMON." +64,7,9,"An attractive item. +Use it to flee from any battle with +a wild POKéMON." +64,8,9,"An item that attracts Pokémon. +Use it to flee from any battle with a +wild Pokémon." +64,9,9,"An item that attracts Pokémon. +Use it to flee from any battle with a +wild Pokémon." +64,10,9,"An item that attracts Pokémon. +Use it to flee from any battle with a +wild Pokémon." +64,11,5,"Objet qui attire les Pokémon. Permet +de s’enfuir d’un combat contre un +Pokémon sauvage." +64,11,9,"An item that attracts Pokémon. +Use it to flee from any battle with a +wild Pokémon." +64,14,9,"An item that attracts Pokémon. +Use it to flee from any battle with a +wild Pokémon." +64,15,1,"ポケモンの きを ひかせる どうぐ。 +やせいポケモンとの せんとうから +ぜったいに にげられる。" +64,15,3,"포켓몬의 관심을 끄는 도구. +야생 포켓몬과의 배틀에서 +반드시 도망칠 수 있다." +64,15,5,"Un objet qui attire les Pokémon. +Permet de s’enfuir d’un combat contre +un Pokémon sauvage." +64,15,6,"Ein hübsches Item. Es ermöglicht die Flucht +im Kampf gegen wilde Pokémon." +64,15,7,"Un objeto que atrae a los Pokémon. Es útil para +huir de un combate contra un Pokémon salvaje." +64,15,8,"Strumento che attrae i Pokémon. È utile +per fuggire dalla lotta con Pokémon selvatici." +64,15,9,"A toy that attracts the attention of a +Pokémon. It guarantees escape from +any battle with wild Pokémon." +64,15,11,"ポケモンの 気をひかせる 道具。 +野生ポケモンとの 戦闘から +絶対に 逃げられる。" +65,5,9,"A glass flute that +awakens sleeping +POKéMON." +65,6,9,"A glass flute that +awakens sleeping +POKéMON." +65,7,9,"A blue glass flute that awakens +a sleeping POKéMON." +65,8,9,"A blue flute made from blown glass. +Its melody awakens a single Pokémon +from sleep." +65,9,9,"A blue flute made from blown glass. +Its melody awakens a single Pokémon +from sleep." +65,10,9,"A blue flute made from blown glass. +Its melody awakens a single Pokémon +from sleep." +65,11,5,"Jouet en forme de flûte en verre +bleu. Les amateurs en donnent +un bon prix." +65,11,9,"A toy flute made from blue glass. +A maniac will buy it for a high price." +65,14,9,"A toy flute made from blue glass. +A maniac will buy it for a high price." +65,15,1,"あおい ガラスで できている +おもちゃの ふえ。" +65,15,3,"파란 유리로 만들어진 +장난감 피리." +65,15,5,Un jouet en forme de flûte en verre bleu. +65,15,6,Eine Spielzeugflöte aus blauem Glas. +65,15,7,Una flauta de juguete de cristal azul. +65,15,8,Flauto giocattolo fatto di vetro blu. +65,15,9,"A lovely toy flute to admire. +It’s made from blue glass." +65,15,11,"青い ガラスで できている +おもちゃの 笛。" +66,5,9,"A glass flute that +snaps POKéMON +out of confusion." +66,6,9,"A glass flute that +snaps POKéMON +out of confusion." +66,7,9,"A yellow glass flute that snaps one +POKéMON out of confusion." +66,8,9,"A yellow flute made from blown glass. +Its melody snaps a single Pokémon out +of confusion." +66,9,9,"A yellow flute made from blown glass. +Its melody snaps a single Pokémon out +of confusion." +66,10,9,"A yellow flute made from blown glass. +Its melody snaps a single Pokémon out +of confusion." +66,11,5,"Jouet en forme de flûte en verre +jaune. Les amateurs en donnent +un bon prix." +66,11,9,"A toy flute made from yellow glass. +A maniac will buy it for a high price." +66,14,9,"A toy flute made from yellow glass. +A maniac will buy it for a high price." +66,15,1,"きいろい ガラスで できている +おもちゃの ふえ。" +66,15,3,"노란 유리로 만들어진 +장난감 피리." +66,15,5,Un jouet en forme de flûte en verre jaune. +66,15,6,Eine Spielzeugflöte aus gelbem Glas. +66,15,7,Una flauta de juguete de cristal amarillo. +66,15,8,Flauto giocattolo fatto di vetro giallo. +66,15,9,"A lovely toy flute to admire. +It’s made from yellow glass." +66,15,11,"黄色い ガラスで できている +おもちゃの 笛。" +67,5,9,"A glass flute that +snaps POKéMON +out of attraction." +67,6,9,"A glass flute that +snaps POKéMON +out of attraction." +67,7,9,"A red glass flute that snaps one +POKéMON out of infatuation." +67,8,9,"A red flute made from blown glass. +Its melody snaps a single Pokémon out +of infatuation." +67,9,9,"A red flute made from blown glass. +Its melody snaps a single Pokémon out +of infatuation." +67,10,9,"A red flute made from blown glass. +Its melody snaps a single Pokémon out +of infatuation." +67,11,5,"Jouet en forme de flûte en verre +rouge. Les amateurs en donnent +un bon prix." +67,11,9,"A toy flute made from red glass. +A maniac will buy it for a high price." +67,14,9,"A toy flute made from red glass. +A maniac will buy it for a high price." +67,15,1,"あかい ガラスで できている +おもちゃの ふえ。" +67,15,3,"빨간 유리로 만들어진 +장난감 피리." +67,15,5,Un jouet en forme de flûte en verre rouge. +67,15,6,Eine Spielzeugflöte aus rotem Glas. +67,15,7,Una flauta de juguete de cristal rojo. +67,15,8,Flauto giocattolo fatto di vetro rosso. +67,15,9,"A lovely toy flute to admire. +It’s made from red glass." +67,15,11,"赤い ガラスで できている +おもちゃの 笛。" +68,5,9,"A glass flute that +keeps away wild +POKéMON." +68,6,9,"A glass flute that +keeps away wild +POKéMON." +68,7,9,"A black glass flute. +When blown, it makes wild POKéMON +less likely to appear." +68,8,9,"A black flute made from blown glass. +Its melody makes wild Pokémon less +likely to appear." +68,9,9,"A black flute made from blown glass. +Its melody makes wild Pokémon less +likely to appear." +68,10,9,"A black flute made from blown glass. +Its melody makes wild Pokémon less +likely to appear." +68,11,5,"Jouet en forme de flûte en verre +noir. Les amateurs en donnent +un bon prix." +68,11,9,"A toy flute made from black glass. +A maniac will buy it for a high price." +68,14,9,"A toy flute made from black glass. +A maniac will buy it for a high price." +68,15,1,"くろい ガラスで できている +おもちゃの ふえ。" +68,15,3,"검은 유리로 만들어진 +장난감 피리." +68,15,5,Un jouet en forme de flûte en verre noir. +68,15,6,Eine Spielzeugflöte aus schwarzem Glas. +68,15,7,Una flauta de juguete de cristal negro. +68,15,8,Flauto giocattolo fatto di vetro nero. +68,15,9,"A lovely toy flute to admire. +It’s made from black glass." +68,15,11,"黒い ガラスで できている +おもちゃの 笛。" +69,5,9,"A glass flute that +lures wild POKéMON." +69,6,9,"A glass flute that +lures wild POKéMON." +69,7,9,"A white glass flute. +When blown, it makes wild POKéMON +more likely to appear." +69,8,9,"A white flute made from blown glass. +Its melody makes wild Pokémon more +likely to appear." +69,9,9,"A white flute made from blown glass. +Its melody makes wild Pokémon more +likely to appear." +69,10,9,"A white flute made from blown glass. +Its melody makes wild Pokémon more +likely to appear." +69,11,5,"Jouet en forme de flûte en verre +blanc. Les amateurs en donnent +un bon prix." +69,11,9,"A toy flute made from white glass. +A maniac will buy it for a high price." +69,14,9,"A toy flute made from white glass. +A maniac will buy it for a high price." +69,15,1,"しろい ガラスで できている +おもちゃの ふえ。" +69,15,3,"하얀 유리로 만들어진 +장난감 피리." +69,15,5,Un jouet en forme de flûte en verre blanc. +69,15,6,Eine Spielzeugflöte aus weißem Glas. +69,15,7,Una flauta de juguete de cristal blanco. +69,15,8,Flauto giocattolo fatto di vetro bianco. +69,15,9,"A lovely toy flute to admire. +It’s made from white glass." +69,15,11,"白い ガラスで できている +おもちゃの 笛。" +70,5,9,"Salt obtained from +deep inside the +SHOAL CAVE." +70,6,9,"Salt obtained from +deep inside the +SHOAL CAVE." +70,7,9,"Pure salt obtained from deep inside +the SHOAL CAVE. It is extremely +salty." +70,8,9,"Pure salt that was discovered deep +inside the Shoal Cave. +It is extremely salty." +70,9,9,"Pure salt that was discovered deep +inside the Shoal Cave. +It is extremely salty." +70,10,9,"Pure salt that was discovered deep +inside the Shoal Cave. +It is extremely salty." +70,11,5,"Sel pur provenant des profondeurs +de la Grotte Tréfonds. Les amateurs +en donnent un bon prix." +70,11,9,"Pure salt that can be discovered deep +inside the Shoal Cave. +A maniac will buy it for a high price." +70,14,9,"Pure salt that can be discovered deep +inside the Shoal Cave. +A maniac will buy it for a high price." +70,15,1,"あさせのほらあな という ばしょで +みつかる きれいな しお。" +70,15,3,"여울의 동굴이라는 장소에서 +발견할 수 있는 깨끗한 소금." +70,15,5,"Du sel pur provenant des profondeurs de +la Grotte Tréfonds." +70,15,6,"Reine Salzkristalle, die sich in der Küstenhöhle +finden lassen." +70,15,7,"Una sal muy fina encontrada en la Cueva +Cardumen." +70,15,8,Sale purissimo rinvenuto nella Grotta Ondosa. +70,15,9,"Pure salt that can be discovered +only deep inside the Shoal Cave." +70,15,11,"浅瀬の洞穴という 場所で +みつかる きれいな 塩。" +71,5,9,"A seashell found +deep inside the +SHOAL CAVE." +71,6,9,"A seashell found +deep inside the +SHOAL CAVE." +71,7,9,"A pretty seashell found deep inside +the SHOAL CAVE. It is striped in +blue and white." +71,8,9,"A pretty seashell that was found deep +inside the Shoal Cave. +It is striped in blue and white." +71,9,9,"A pretty seashell that was found deep +inside the Shoal Cave. +It is striped in blue and white." +71,10,9,"A pretty seashell that was found deep +inside the Shoal Cave. +It is striped in blue and white." +71,11,5,"Joli coquillage provenant des +profondeurs de la Grotte Tréfonds. +Les amateurs en donnent un bon prix." +71,11,9,"A pretty seashell that can be found +deep inside the Shoal Cave. +A maniac will buy it for a high price." +71,14,9,"A pretty seashell that can be found +deep inside the Shoal Cave. +A maniac will buy it for a high price." +71,15,1,"あさせのほらあな という ばしょで +みつかる きれいな かいがら。" +71,15,3,"여울의 동굴이라는 장소에서 +발견할 수 있는 예쁜 조개껍질." +71,15,5,"Un joli coquillage provenant des profondeurs de +la Grotte Tréfonds." +71,15,6,"Eine hübsche Muschelschale, die sich in der +Küstenhöhle finden lässt." +71,15,7,Concha encontrada en la Cueva Cardumen. +71,15,8,Un bel guscio rinvenuto nella Grotta Ondosa. +71,15,9,"A pretty seashell that can be +found deep inside the Shoal Cave." +71,15,11,"浅瀬の洞穴という 場所で +みつかる きれいな 貝殻。" +72,5,9,"A shard from an +ancient item. +Can be sold cheaply." +72,6,9,"A shard from an +ancient item. Can +be sold cheaply." +72,7,9,"A small red shard. +It appears to be from some sort of +a tool made long ago." +72,8,9,"A small red shard. +It appears to be from some sort of +implement made long ago." +72,9,9,"A small red shard. +It appears to be from some sort of +implement made long ago." +72,10,9,"A small red shard. +It appears to be from some sort of +implement made long ago." +72,11,5,"Petit tesson rouge. +Il semble provenir d’un outil très +ancien." +72,11,9,"A small red shard. +It appears to be from some sort of +implement made long ago." +72,14,9,"A small red shard. +It appears to be from some sort of +implement made long ago." +72,15,1,"あかい ちいさな かけら。 +むかしに つくられた なにかの +どうぐの いちぶ らしい。" +72,15,3,"빨간 작은 조각. +옛날에 만들어진 어떤 +도구의 일부인 듯하다." +72,15,5,"Un petit tesson rouge. +Il semble provenir d’un outil très ancien." +72,15,6,"Eine rote Scherbe eines antiken Werkzeugs, +das vor langer Zeit angefertigt wurde." +72,15,7,"Un pequeño fragmento rojo. Parece formar parte +de algún tipo de herramienta antigua." +72,15,8,"Un piccolo coccio rosso che con ogni probabilità +è un frammento di un antico strumento." +72,15,9,"A small red shard. It appears +to be a fragment of some sort +of implement made long ago." +72,15,11,"赤い 小さな かけら。 +昔に つくられた なにかの +道具の 一部らしい。" +73,5,9,"A shard from an +ancient item. +Can be sold cheaply." +73,6,9,"A shard from an +ancient item. Can +be sold cheaply." +73,7,9,"A small blue shard. +It appears to be from some sort of +a tool made long ago." +73,8,9,"A small blue shard. +It appears to be from some sort of +implement made long ago." +73,9,9,"A small blue shard. +It appears to be from some sort of +implement made long ago." +73,10,9,"A small blue shard. +It appears to be from some sort of +implement made long ago." +73,11,5,"Petit tesson bleu. +Il semble provenir d’un outil très +ancien." +73,11,9,"A small blue shard. +It appears to be from some sort of +implement made long ago." +73,14,9,"A small blue shard. +It appears to be from some sort of +implement made long ago." +73,15,1,"あおい ちいさな かけら。 +むかしに つくられた なにかの +どうぐの いちぶ らしい。" +73,15,3,"파란 작은 조각. +옛날에 만들어진 어떤 +도구의 일부인 듯하다." +73,15,5,"Un petit tesson bleu. +Il semble provenir d’un outil très ancien." +73,15,6,"Eine blaue Scherbe eines antiken Werkzeugs, +das vor langer Zeit angefertigt wurde." +73,15,7,"Un pequeño fragmento azul. Parece formar parte +de algún tipo de herramienta antigua." +73,15,8,"Un piccolo coccio blu che con ogni probabilità +è un frammento di un antico strumento." +73,15,9,"A small blue shard. It appears +to be a fragment of some sort +of implement made long ago." +73,15,11,"青い 小さな かけら。 +昔に つくられた なにかの +道具の 一部らしい。" +74,5,9,"A shard from an +ancient item. +Can be sold cheaply." +74,6,9,"A shard from an +ancient item. Can +be sold cheaply." +74,7,9,"A small yellow shard. +It appears to be from some sort of +a tool made long ago." +74,8,9,"A small yellow shard. +It appears to be from some sort of +implement made long ago." +74,9,9,"A small yellow shard. +It appears to be from some sort of +implement made long ago." +74,10,9,"A small yellow shard. +It appears to be from some sort of +implement made long ago." +74,11,5,"Petit tesson jaune. +Il semble provenir d’un outil très +ancien." +74,11,9,"A small yellow shard. +It appears to be from some sort of +implement made long ago." +74,14,9,"A small yellow shard. +It appears to be from some sort of +implement made long ago." +74,15,1,"きいろい ちいさな かけら。 +むかしに つくられた なにかの +どうぐの いちぶ らしい。" +74,15,3,"노란 작은 조각. +옛날에 만들어진 어떤 +도구의 일부인 듯하다." +74,15,5,"Un petit tesson jaune. +Il semble provenir d’un outil très ancien." +74,15,6,"Eine gelbe Scherbe eines antiken Werkzeugs, +das vor langer Zeit angefertigt wurde." +74,15,7,"Un pequeño fragmento amarillo. Parece formar +parte de algún tipo de herramienta antigua." +74,15,8,"Un piccolo coccio giallo che con ogni probabilità +è un frammento di un antico strumento." +74,15,9,"A small yellow shard. It appears +to be a fragment of some sort +of implement made long ago." +74,15,11,"黄色い 小さな かけら。 +昔に つくられた なにかの +道具の 一部らしい。" +75,5,9,"A shard from an +ancient item. +Can be sold cheaply." +75,6,9,"A shard from an +ancient item. Can +be sold cheaply." +75,7,9,"A small green shard. +It appears to be from some sort of +a tool made long ago." +75,8,9,"A small green shard. +It appears to be from some sort of +implement made long ago." +75,9,9,"A small green shard. +It appears to be from some sort of +implement made long ago." +75,10,9,"A small green shard. +It appears to be from some sort of +implement made long ago." +75,11,5,"Petit tesson vert. +Il semble provenir d’un outil très +ancien." +75,11,9,"A small green shard. +It appears to be from some sort of +implement made long ago." +75,14,9,"A small green shard. +It appears to be from some sort of +implement made long ago." +75,15,1,"みどりの ちいさな かけら。 +むかしに つくられた なにかの +どうぐの いちぶ らしい。" +75,15,3,"초록색 작은 조각. +옛날에 만들어진 어떤 +도구의 일부인 듯하다." +75,15,5,"Un petit tesson vert. +Il semble provenir d’un outil très ancien." +75,15,6,"Eine grüne Scherbe eines antiken Werkzeugs, +das vor langer Zeit angefertigt wurde." +75,15,7,"Un pequeño fragmento verde. Parece formar parte +de algún tipo de herramienta antigua." +75,15,8,"Un piccolo coccio verde che con ogni probabilità +è un frammento di un antico strumento." +75,15,9,"A small green shard. It appears +to be a fragment of some sort +of implement made long ago." +75,15,11,"緑の 小さな かけら。 +昔に つくられた なにかの +道具の 一部らしい。" +76,5,9,"Repels weak wild +POKéMON for 200 +steps." +76,6,9,"Repels weak wild +POKéMON for 200 +steps." +76,7,9,"Prevents weak wild POKéMON from +appearing for 200 steps." +76,8,9,"An item that prevents weak wild +Pokémon from appearing for 200 steps +after its use." +76,9,9,"An item that prevents weak wild +Pokémon from appearing for 200 steps +after its use." +76,10,9,"An item that prevents weak wild +Pokémon from appearing for 200 steps +after its use." +76,11,5,"Repousse les Pokémon sauvages +faibles pendant 200 pas." +76,11,9,"An item that prevents weak wild +Pokémon from appearing for 200 steps +after its use." +76,14,9,"An item that prevents weak wild +Pokémon from appearing for 200 steps +after its use." +76,15,1,"200ぽ すすむ あいだ +よわい やせいの ポケモンが +まったく でて こなくなる。" +76,15,3,"200보 걸어가는 동안 +약한 야생 포켓몬이 +전혀 나오지 않게 된다." +76,15,5,"Repousse les Pokémon sauvages faibles pendant +200 pas." +76,15,6,"Hält 200 Schritte lang schwache, wilde +Pokémon ab." +76,15,7,"Repele Pokémon salvajes débiles en un recorrido +de 200 pasos." +76,15,8,"Strumento che evita l’incontro con i Pokémon +selvatici deboli per 200 passi dopo l’utilizzo." +76,15,9,"An item that prevents any low-level +wild Pokémon from jumping out at +you for 200 steps after its use." +76,15,11,"200歩 進む あいだ +弱い 野生の ポケモンが +まったく でて こなくなる。" +77,5,9,"Repels weak wild +POKéMON for 250 +steps." +77,6,9,"Repels weak wild +POKéMON for 250 +steps." +77,7,9,"Prevents weak wild POKéMON from +appearing for 250 steps." +77,8,9,"An item that prevents weak wild +Pokémon from appearing for 250 steps +after its use." +77,9,9,"An item that prevents weak wild +Pokémon from appearing for 250 steps +after its use." +77,10,9,"An item that prevents weak wild +Pokémon from appearing for 250 steps +after its use." +77,11,5,"Repousse les Pokémon sauvages +faibles pendant 250 pas." +77,11,9,"An item that prevents weak wild +Pokémon from appearing for 250 steps +after its use." +77,14,9,"An item that prevents weak wild +Pokémon from appearing for 250 steps +after its use." +77,15,1,"250ぽ すすむ あいだ +よわい やせいの ポケモンが +まったく でて こなくなる。" +77,15,3,"250보 걸어가는 동안 +약한 야생 포켓몬이 +전혀 나오지 않게 된다." +77,15,5,"Repousse les Pokémon sauvages faibles pendant +250 pas." +77,15,6,"Hält 250 Schritte lang schwache, wilde +Pokémon ab." +77,15,7,"Repele Pokémon salvajes débiles en un recorrido +de 250 pasos." +77,15,8,"Strumento che evita l’incontro con i Pokémon +selvatici deboli per 250 passi dopo l’utilizzo." +77,15,9,"An item that prevents any low-level +wild Pokémon from jumping out at +you for 250 steps after its use." +77,15,11,"250歩 進む あいだ +弱い 野生の ポケモンが +まったく でて こなくなる。" +78,5,9,"Use to escape +instantly from a +cave or a dungeon." +78,6,9,"Use to escape +instantly from a +cave or a dungeon." +78,7,9,"A long, durable rope. +Use it to escape instantly from a +cave or a dungeon." +78,8,9,"A long, durable rope. +Use it to escape instantly from a cave +or a dungeon." +78,9,9,"A long, durable rope. +Use it to escape instantly from a cave +or a dungeon." +78,10,9,"A long, durable rope. +Use it to escape instantly from a cave +or a dungeon." +78,11,5,"Une corde longue et solide permettant +de sortir rapidement d’une grotte ou +d’un donjon." +78,11,9,"A long, durable rope. +Use it to escape instantly from a cave +or a dungeon." +78,14,9,"A long, durable rope. +Use it to escape instantly from a cave +or a dungeon." +78,15,1,"ながくて じょうぶな ヒモ。 +どうくつや ダンジョンから +ぬけだすことが できる。" +78,15,3,"길고 튼튼한 끈. +동굴이나 던전에서 +빠져나올 수 있다." +78,15,5,"Une corde longue et solide permettant de sortir +rapidement d’une grotte ou d’un donjon." +78,15,6,"Ein langes, festes Seil, das die sofortige Flucht +aus Höhlen oder Ähnlichem ermöglicht." +78,15,7,"Cuerda larga y resistente que sirve para huir de +cuevas y sitios cerrados en general." +78,15,8,"Corda lunga e resistente che si usa per fuggire +in un batter d’occhio dalle grotte o da certi +luoghi chiusi." +78,15,9,"A long and durable rope. +Use it to escape instantly +from a cave or a dungeon." +78,15,11,"長くて 丈夫な ヒモ。 +洞窟や ダンジョンから +抜け出すことが できる。" +79,5,9,"Repels weak wild +POKéMON for 100 +steps." +79,6,9,"Repels weak wild +POKéMON for 100 +steps." +79,7,9,"Prevents weak wild POKéMON from +appearing for 100 steps." +79,8,9,"An item that prevents weak wild +Pokémon from appearing for 100 steps +after its use." +79,9,9,"An item that prevents weak wild +Pokémon from appearing for 100 steps +after its use." +79,10,9,"An item that prevents weak wild +Pokémon from appearing for 100 steps +after its use." +79,11,5,"Repousse les Pokémon sauvages +faibles pendant 100 pas." +79,11,9,"An item that prevents weak wild +Pokémon from appearing for 100 steps +after its use." +79,14,9,"An item that prevents weak wild +Pokémon from appearing for 100 steps +after its use." +79,15,1,"100ぽ すすむ あいだ +よわい やせいの ポケモンが +まったく でて こなくなる。" +79,15,3,"100보 걸어가는 동안 +약한 야생 포켓몬이 +전혀 나오지 않게 된다." +79,15,5,"Repousse les Pokémon sauvages faibles pendant +100 pas." +79,15,6,"Hält 100 Schritte lang schwache, wilde +Pokémon ab." +79,15,7,"Repele Pokémon salvajes débiles en un recorrido +de 100 pasos." +79,15,8,"Strumento che evita l’incontro con i Pokémon +selvatici deboli per 100 passi dopo l’utilizzo." +79,15,9,"An item that prevents any low-level +wild Pokémon from jumping out at +you for 100 steps after its use." +79,15,11,"100歩 進む あいだ +弱い 野生の ポケモンが +まったく でて こなくなる。" +80,5,9,"Makes certain +species of POKéMON +evolve." +80,6,9,"Makes certain +species of POKéMON +evolve." +80,7,9,"A peculiar stone that makes certain +species of POKéMON evolve. +It is as red as the sun." +80,8,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as red as the sun." +80,9,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as red as the sun." +80,10,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as red as the sun." +80,11,5,"Une pierre étrange qui fait évoluer +certaines espèces de Pokémon. +Elle est rouge comme le soleil." +80,11,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as red as the sun." +80,14,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as red as the sun." +80,15,1,"ある とくていの ポケモンを +しんかさせる ふしぎな いし。 +たいようのように あかい。" +80,15,3,"어느 특정 포켓몬을 +진화시키는 이상한 돌. +태양처럼 빨갛다." +80,15,5,"Une pierre étrange qui fait évoluer certaines +espèces de Pokémon. Elle est rouge comme +le soleil couchant." +80,15,6,"Dieser spezielle Stein löst bei bestimmten +Pokémon die Entwicklung aus. Er ist rot wie +die Abendsonne." +80,15,7,"Curiosa piedra que hace evolucionar a +determinadas especies de Pokémon. Es roja +como el núcleo del sol." +80,15,8,"Pietra particolare che fa evolvere determinate +specie di Pokémon. È rossa come il sole +al tramonto." +80,15,9,"A peculiar stone that can make +certain species of Pokémon evolve. +It burns as red as the evening sun." +80,15,11,"ある 特定の ポケモンを +進化させる 不思議な 石。 +太陽のように 赤い。" +81,5,9,"Makes certain +species of POKéMON +evolve." +81,6,9,"Makes certain +species of POKéMON +evolve." +81,7,9,"A peculiar stone that makes certain +species of POKéMON evolve. +It is as black as the night sky." +81,8,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as black as the night sky." +81,9,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as black as the night sky." +81,10,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as black as the night sky." +81,11,5,"Une pierre étrange qui fait évoluer +certaines espèces de Pokémon. +Elle est noire comme la nuit." +81,11,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as black as the night sky." +81,14,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as black as the night sky." +81,15,1,"ある とくていの ポケモンを +しんかさせる ふしぎな いし。 +よぞらのように くろい。" +81,15,3,"어느 특정 포켓몬을 +진화시키는 이상한 돌. +밤하늘처럼 까맣다." +81,15,5,"Une pierre étrange qui fait évoluer certaines +espèces de Pokémon. Elle est noire comme +la nuit." +81,15,6,"Dieser spezielle Stein löst bei bestimmten +Pokémon die Entwicklung aus. Er ist schwarz +wie die Nacht." +81,15,7,"Curiosa piedra que hace evolucionar a +determinadas especies de Pokémon. Es negra +como el azabache." +81,15,8,"Pietra particolare che fa evolvere determinate +specie di Pokémon. È nera come la notte." +81,15,9,"A peculiar stone that can make +certain species of Pokémon evolve. +It is as black as the night sky." +81,15,11,"ある 特定の ポケモンを +進化させる 不思議な 石。 +夜空のように 黒い。" +82,5,9,"Makes certain +species of POKéMON +evolve." +82,6,9,"Makes certain +species of POKéMON +evolve." +82,7,9,"A peculiar stone that makes certain +species of POKéMON evolve. +It is colored orange." +82,8,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is colored orange." +82,9,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is colored orange." +82,10,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is colored orange." +82,11,5,"Une pierre étrange qui fait évoluer +certaines espèces de Pokémon. +Elle est jaune et orange." +82,11,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is colored orange." +82,14,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is colored orange." +82,15,1,"ある とくていの ポケモンを +しんかさせる ふしぎな いし。 +だいだいいろを している。" +82,15,3,"어느 특정 포켓몬을 +진화시키는 이상한 돌. +주황색을 띠고 있다." +82,15,5,"Une pierre étrange qui fait évoluer certaines +espèces de Pokémon. Elle est jaune et orange." +82,15,6,"Dieser spezielle Stein löst bei bestimmten +Pokémon die Entwicklung aus. Er schimmert +in den Farben Orange und Gelb." +82,15,7,"Curiosa piedra que hace evolucionar a +determinadas especies de Pokémon. Es amarilla +con una marca naranja." +82,15,8,"Pietra particolare che fa evolvere determinate +specie di Pokémon. È gialla e arancione." +82,15,9,"A peculiar stone that can make +certain species of Pokémon evolve. +The stone has a fiery orange heart." +82,15,11,"ある 特定の ポケモンを +進化させる 不思議な 石。 +だいだい色を している。" +83,5,9,"Makes certain +species of POKéMON +evolve." +83,6,9,"Makes certain +species of POKéMON +evolve." +83,7,9,"A peculiar stone that makes certain +species of POKéMON evolve. +It has a thunderbolt pattern." +83,8,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It has a thunderbolt pattern." +83,9,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It has a thunderbolt pattern." +83,10,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It has a thunderbolt pattern." +83,11,5,"Une pierre étrange qui fait évoluer +certaines espèces de Pokémon. +Un éclair est dessiné dessus." +83,11,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It has a thunderbolt pattern." +83,14,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It has a thunderbolt pattern." +83,15,1,"ある とくていの ポケモンを +しんかさせる ふしぎな いし。 +いなずまの もようが ある。" +83,15,3,"어느 특정 포켓몬을 +진화시키는 이상한 돌. +천둥번개 무늬가 있다." +83,15,5,"Une pierre étrange qui fait évoluer certaines +espèces de Pokémon. Un éclair est dessiné +dessus." +83,15,6,"Dieser spezielle Stein löst bei bestimmten +Pokémon die Entwicklung aus. Er hat ein +Blitzmuster." +83,15,7,"Curiosa piedra que hace evolucionar a +determinadas especies de Pokémon. Tiene +grabado un rayo." +83,15,8,"Pietra particolare che fa evolvere determinate +specie di Pokémon. Riporta l’immagine +di un fulmine." +83,15,9,"A peculiar stone that can make +certain species of Pokémon evolve. +It has a distinct thunderbolt pattern." +83,15,11,"ある 特定の ポケモンを +進化させる 不思議な 石。 +稲妻の 模様が ある。" +84,5,9,"Makes certain +species of POKéMON +evolve." +84,6,9,"Makes certain +species of POKéMON +evolve." +84,7,9,"A peculiar stone that makes certain +species of POKéMON evolve. +It is a clear light blue." +84,8,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is a clear, light blue." +84,9,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is a clear, light blue." +84,10,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is a clear, light blue." +84,11,5,"Une pierre étrange qui fait évoluer +certaines espèces de Pokémon. +Elle est de couleur bleue." +84,11,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is a clear, light blue." +84,14,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is a clear, light blue." +84,15,1,"ある とくていの ポケモンを +しんかさせる ふしぎな いし。 +すんだ みずいろを している。" +84,15,3,"어느 특정 포켓몬을 +진화시키는 이상한 돌. +투명한 푸른색을 띠고 있다." +84,15,5,"Une pierre étrange qui fait évoluer certaines +espèces de Pokémon. Elle est de couleur bleue." +84,15,6,"Dieser spezielle Stein löst bei bestimmten +Pokémon die Entwicklung aus. Er ist hellblau." +84,15,7,"Curiosa piedra que hace evolucionar a +determinadas especies de Pokémon. Es de +color azul." +84,15,8,"Pietra particolare che fa evolvere determinate +specie di Pokémon. Ha delle macchioline azzurre." +84,15,9,"A peculiar stone that can make +certain species of Pokémon evolve. +It is the blue of a pool of clear water." +84,15,11,"ある 特定の ポケモンを +進化させる 不思議な 石。 +澄んだ 水色を している。" +85,5,9,"Makes certain +species of POKéMON +evolve." +85,6,9,"Makes certain +species of POKéMON +evolve." +85,7,9,"A peculiar stone that makes certain +species of POKéMON evolve. +It has a leaf pattern." +85,8,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It has a leaf pattern." +85,9,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It has a leaf pattern." +85,10,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It has a leaf pattern." +85,11,5,"Une pierre étrange qui fait évoluer +certaines espèces de Pokémon. +Une feuille est dessinée dessus." +85,11,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It has a leaf pattern." +85,14,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It has a leaf pattern." +85,15,1,"ある とくていの ポケモンを +しんかさせる ふしぎな いし。 +はっぱの もようが ある。" +85,15,3,"어느 특정 포켓몬을 +진화시키는 이상한 돌. +잎사귀 무늬가 있다." +85,15,5,"Une pierre étrange qui fait évoluer certaines +espèces de Pokémon. Une feuille est dessinée +dessus." +85,15,6,"Dieser spezielle Stein löst bei bestimmten +Pokémon die Entwicklung aus. Er hat ein +Blattmuster." +85,15,7,"Curiosa piedra que hace evolucionar a +determinadas especies de Pokémon. Tiene +grabada una hoja." +85,15,8,"Pietra particolare che fa evolvere determinate +specie di Pokémon. Riporta l’immagine +di una foglia." +85,15,9,"A peculiar stone that can make +certain species of Pokémon evolve. +It has an unmistakable leaf pattern." +85,15,11,"ある 特定の ポケモンを +進化させる 不思議な 石。 +はっぱの 模様が ある。" +86,5,9,"A plain, ordinary +mushroom. +Can be sold cheaply." +86,6,9,"A plain mushroom +that would sell +at a cheap price." +86,7,9,"A small and rare mushroom. +It is quite popular among certain +people." +86,8,9,"A small and rare mushroom. +It is quite popular among certain +maniacal fan segments." +86,9,9,"A small and rare mushroom. +It is quite popular among certain +maniacal fan segments." +86,10,9,"A small and rare mushroom. +It is quite popular among certain +maniacal fan segments." +86,11,5,"Un petit champignon plutôt rare. +Il est plutôt populaire parmi +certains fans dévoués." +86,11,9,"A small and rare mushroom. +It is sought after by collectors." +86,14,9,"A small and rare mushroom. +It is sought after by collectors." +86,15,1,"ちいさな めずらしい キノコ。 +いちぶの マニアの あいだでは +けっこう にんきが たかい。" +86,15,3,"작고 진귀한 버섯. +일부 마니아 사이에서는 +매우 인기가 높다." +86,15,5,"Un petit champignon assez rare. +Il est plutôt populaire parmi certains fans +dévoués." +86,15,6,"Ein kleiner und seltener Pilz. Sammler sind ganz +aus dem Häuschen, wenn sie einen finden." +86,15,7,"Una pequeña seta que es poco común y bastante +popular entre determinados grupos de gourmets." +86,15,8,"Fungo piccolo e raro. +È discretamente apprezzato da alcuni intenditori." +86,15,9,"A very small and rare mushroom. +It’s popular with a certain class of +collectors and sought out by them." +86,15,11,"ちいさな 珍しい キノコ。 +一部の マニアの あいだでは +けっこう 人気が 高い。" +87,5,9,"A rare mushroom +that would sell at a +high price." +87,6,9,"A rare mushroom +that would sell at a +high price." +87,7,9,"A large and rare mushroom. +It is very popular among certain +people." +87,8,9,"A large and rare mushroom. +It is very popular among certain +maniacal fan segments." +87,9,9,"A large and rare mushroom. +It is very popular among certain +maniacal fan segments." +87,10,9,"A large and rare mushroom. +It is very popular among certain +maniacal fan segments." +87,11,5,"Un grand champignon plutôt rare. +Il est très populaire parmi +certains fans dévoués." +87,11,9,"A large and rare mushroom. +It is sought after by collectors." +87,14,9,"A large and rare mushroom. +It is sought after by collectors." +87,15,1,"おおきな めずらしい キノコ。 +いちぶの マニアの あいだでは +とても にんきが たかい。" +87,15,3,"크고 진귀한 버섯. +일부 마니아 사이에서는 +매우 인기가 높다." +87,15,5,"Un grand champignon assez rare. +Il est très populaire parmi certains fans +dévoués." +87,15,6,"Ein großer und seltener Pilz. Liebhaber dieses +Pilzes freuen sich ein Loch in den Bauch, +wenn sie einen finden." +87,15,7,"Una gran seta que es poco común y muy popular +entre determinados grupos de gourmets." +87,15,8,"Fungo grande e raro. +È molto apprezzato da alcuni intenditori." +87,15,9,"A very large and rare mushroom. +It’s popular with a certain class of +collectors and sought out by them." +87,15,11,"おおきな 珍しい キノコ。 +一部の マニアの あいだでは +とても 人気が 高い。" +88,5,9,"A pretty pearl. +Can be sold cheaply." +88,6,9,"A pretty pearl +that would sell at a +cheap price." +88,7,9,"A relatively small pearl that +sparkles in a pretty silver color. +It can be sold cheaply." +88,8,9,"A somewhat-small pearl that sparkles +in a pretty silver color. +It can be sold cheaply to shops." +88,9,9,"A somewhat-small pearl that sparkles +in a pretty silver color. +It can be sold cheaply to shops." +88,10,9,"A somewhat-small pearl that sparkles +in a pretty silver color. +It can be sold cheaply to shops." +88,11,5,"Une petite perle qui brille d’une jolie +couleur argent. Peut être vendue +à bas prix aux magasins." +88,11,9,"A somewhat-small pearl that sparkles +in a pretty silver color. +It can be sold cheaply to shops." +88,14,9,"A somewhat-small pearl that sparkles +in a pretty silver color. +It can be sold cheaply to shops." +88,15,1,"きれいな ぎんいろに ひかる +すこし ちいさめの しんじゅ。 +ショップで やすく うれる。" +88,15,3,"예쁜 은색으로 빛나는 +자그마한 진주. +상점에서 싸게 팔린다." +88,15,5,"Une petite perle qui brille d’une jolie couleur +argent. Peut être vendue à bas prix aux magasins." +88,15,6,"Eine relativ kleine Perle, die in schönem +Silber funkelt. Sie ist von geringem Wert." +88,15,7,"Brillante perla pequeña y plateada que no alcanza +un buen precio en las tiendas." +88,15,8,"Perla piuttosto piccola dai graziosi riflessi +argentei. Si può vendere a un prezzo piuttosto +basso nei negozi." +88,15,9,"A rather small pearl that has a +very nice silvery sheen to it. +It can be sold cheaply to shops." +88,15,11,"きれいな 銀色に 光る +少し ちいさめの 真珠。 +ショップで 安く 売れる。" +89,5,9,"A lovely large pearl +that would sell at a +high price." +89,6,9,"A lovely large pearl +that would sell at a +high price." +89,7,9,"A quite-large pearl that sparkles +in a pretty silver color. +It can be sold at a high price." +89,8,9,"A quite-large pearl that sparkles in a +pretty silver color. It can be sold at +a high price to shops." +89,9,9,"A quite-large pearl that sparkles in a +pretty silver color. It can be sold at +a high price to shops." +89,10,9,"A quite-large pearl that sparkles in a +pretty silver color. It can be sold at +a high price to shops." +89,11,5,"Une grande perle qui brille d’une jolie +couleur argent. Peut être vendue à +bon prix aux magasins." +89,11,9,"A quite-large pearl that sparkles in a +pretty silver color. It can be sold at +a high price to shops." +89,14,9,"A quite-large pearl that sparkles in a +pretty silver color. It can be sold at +a high price to shops." +89,15,1,"きれいな ぎんいろに ひかる +かなり おおつぶの しんじゅ。 +ショップで たかく うれる。" +89,15,3,"예쁜 은색으로 빛나는 +상당히 큰 낱알의 진주. +상점에서 비싸게 팔린다." +89,15,5,"Une grosse perle qui brille d’une jolie couleur +argent. Peut être vendue à bon prix aux magasins." +89,15,6,"Eine relativ große Perle, die in schönem +Silber funkelt. Sie ist von hohem Wert." +89,15,7,"Brillante perla plateada de gran tamaño que +puede venderse a buen precio en las tiendas." +89,15,8,"Perla piuttosto grande dai graziosi riflessi +argentei. Si può vendere a un prezzo piuttosto +alto nei negozi." +89,15,9,"A rather large pearl that has a very nice silvery +sheen. It can be sold to shops for a high price." +89,15,11,"きれいな 銀色に 光る +かなり 大粒の 真珠。 +ショップで 高く 売れる。" +90,5,9,"Beautiful red sand. +Can be sold at a +high price." +90,6,9,"Beautiful red sand. +Can be sold at a +high price." +90,7,9,"A pretty red sand with a loose, +silky feel. +It can be sold at a high price." +90,8,9,"Lovely, red-colored sand with a loose, +silky feel. It can be sold at a high +price to shops." +90,9,9,"Lovely, red-colored sand with a loose, +silky feel. It can be sold at a high +price to shops." +90,10,9,"Lovely, red-colored sand with a loose, +silky feel. It can be sold at a high +price to shops." +90,11,5,"Sable rouge ravissant, aux grains très +fins. Peut être vendu à bon prix aux +magasins." +90,11,9,"Lovely, red-colored sand with a loose, +silky feel. It can be sold at a high +price to shops." +90,14,9,"Lovely, red-colored sand with a loose, +silky feel. It can be sold at a high +price to shops." +90,15,1,"てざわりが サラサラの +あかくて きれいな すな。 +ショップで たかく うれる。" +90,15,3,"감촉이 보슬보슬한 +빨갛고 예쁜 모래. +상점에서 비싸게 팔린다." +90,15,5,"Du sable rouge ravissant, aux grains très fins. +Peut être vendu à bon prix aux magasins." +90,15,6,"Schöner, roter Sand, der sich seidenweich +anfühlt. Er ist von hohem Wert." +90,15,7,"Bonita arena roja de tacto sedoso que alcanza un +alto precio en las tiendas." +90,15,8,"Bella sabbia rossa dalla consistenza leggera +e farinosa. Si può vendere a un prezzo piuttosto +alto nei negozi." +90,15,9,"Lovely, red sand that flows between +the fingers with a loose, silky feel. +It can be sold at a high price to shops." +90,15,11,"てざわりが サラサラの +赤くて きれいな 砂。 +ショップで 高く 売れる。" +91,5,9,"A red gem shard. +It would sell for a +very high price." +91,6,9,"A red gem shard. +It would sell for a +very high price." +91,7,9,"A shard of a pretty gem that +sparkles in a red color. +It can be sold at a high price." +91,8,9,"A shard of a pretty gem that sparkles +in a red color. It can be sold at a +high price to shops." +91,9,9,"A shard of a pretty gem that sparkles +in a red color. It can be sold at a +high price to shops." +91,10,9,"A shard of a pretty gem that sparkles +in a red color. It can be sold at a +high price to shops." +91,11,5,"Fragment de gemme qui brille d’un éclat +rouge. Peut se vendre à bon prix aux +magasins." +91,11,9,"A shard of a pretty gem that sparkles +in a red color. It can be sold at a +high price to shops." +91,14,9,"A shard of a pretty gem that sparkles +in a red color. It can be sold at a +high price to shops." +91,15,1,"キラキラと あかく ひかる +きれいな ほうせきの かけら。 +ショップで たかく うれる。" +91,15,3,"반짝반짝 빨갛게 빛나는 +예쁜 보석 조각. +상점에서 비싸게 팔린다." +91,15,5,"Un fragment de gemme, qui brille d’un éclat +rouge. Peut être vendu à bon prix aux magasins." +91,15,6,"Teil eines hübschen Edelsteins, der in rötlicher +Farbe schimmert. Erzielt einen hohen Preis, +wenn man ihn verkauft." +91,15,7,"Fragmento de una bonita gema roja que puede +venderse muy caro en las tiendas." +91,15,8,"Frammento rosso acceso di una gemma. +Si può vendere a un prezzo piuttosto alto +nei negozi." +91,15,9,"A small shard of a beautiful gem that +demonstrates a distinctly red sparkle. +It can be sold at a high price to shops." +91,15,11,"キラキラと 赤く 光る +きれいな 宝石の かけら。 +ショップで 高く 売れる。" +92,5,9,"A nugget of pure +gold. Can be sold at +a high price." +92,6,9,"A nugget of pure +gold. Can be sold at +a high price." +92,7,9,"A nugget of pure gold that gives +off a lustrous gleam. +It can be sold at a high price." +92,8,9,"A nugget of pure gold that gives off a +lustrous gleam. It can be sold at a +high price to shops." +92,9,9,"A nugget of pure gold that gives off a +lustrous gleam. It can be sold at a +high price to shops." +92,10,9,"A nugget of pure gold that gives off a +lustrous gleam. It can be sold at a +high price to shops." +92,11,5,"Pépite d’or pur qui brille +magnifiquement. Peut être vendue +à bon prix aux magasins." +92,11,9,"A nugget of pure gold that gives off a +lustrous gleam. It can be sold at a +high price to shops." +92,14,9,"A nugget of pure gold that gives off a +lustrous gleam. It can be sold at a +high price to shops." +92,15,1,"キラキラと きんいろに ひかる +じゅんきん せいの たま。 +ショップで たかく うれる。" +92,15,3,"금색으로 반짝반짝 빛나는 +순금으로 만들어진 구슬. +상점에서 비싸게 팔린다." +92,15,5,"Une pépite d’or pur qui brille d’un éclat +magnifique. Peut être vendue à bon prix +aux magasins." +92,15,6,"Ein Nugget aus purem Gold, das einen +schimmernden Glanz besitzt. Es ist +von großem Wert." +92,15,7,"Pepita de oro puro que desprende un brillo +espectacular. Puede venderse muy cara en las +tiendas." +92,15,8,"Pepita d’oro puro dal luccichio sfavillante. +Si può vendere a un prezzo piuttosto alto +nei negozi." +92,15,9,"A nugget of the purest gold that gives +off a lustrous gleam in direct light. +It can be sold at a high price to shops." +92,15,11,"キラキラと 金色に 光る +純金製の 玉。 +ショップで 高く 売れる。" +93,5,9,"A lovely scale. +It is coveted by +collectors." +93,6,9,"A lovely scale. +It is coveted by +collectors." +93,7,9,"A pretty, heart-shaped scale that +is extremely rare. It glows faintly +in the colors of a rainbow." +93,8,9,"A pretty, heart-shaped scale that is +extremely rare. It glows faintly in the +colors of the rainbow." +93,9,9,"A pretty, heart-shaped scale that is +extremely rare. It glows faintly in the +colors of the rainbow." +93,10,9,"A pretty, heart-shaped scale that is +extremely rare. It glows faintly in the +colors of the rainbow." +93,11,5,"Une jolie écaille en forme de cœur qui +est très rare. Elle brille légèrement +d’un éclat arc-en-ciel." +93,11,9,"A pretty, heart-shaped scale that is +extremely rare. It glows faintly in the +colors of the rainbow." +93,14,9,"A pretty, heart-shaped scale that is +extremely rare. It glows faintly in the +colors of the rainbow." +93,15,1,"きれいな ハートの かたちの +とても めずらしい ウロコ。 +にじいろに うすく かがやく。" +93,15,3,"예쁜 하트 모양의 +무척 진귀한 비늘. +무지개색으로 연하게 반짝인다." +93,15,5,"Une très rare et jolie écaille en forme de cœur. +Elle brille légèrement d’un éclat arc-en-ciel." +93,15,6,"Eine hübsche, herzförmige und sehr seltene +Schuppe. Sie erstrahlt in den Farben +des Regenbogens." +93,15,7,"Bella escama con forma de corazón que brilla +ligeramente como los colores del arcoíris. Es muy +poco común." +93,15,8,"Squama graziosa, a forma di cuore e molto rara. +Riflette tutti i colori dell’iride." +93,15,9,"A pretty, heart-shaped scale that is +extremely rare. It glows faintly with +all of the colors of the rainbow." +93,15,11,"きれいな ハートの 形の +とても 珍しい ウロコ。 +にじ色に うすく 輝く。" +94,8,9,"A sweet honey with a lush aroma that +attracts wild Pokémon when it is used +in grass, caves, or on special trees." +94,9,9,"A sweet honey with a lush aroma that +attracts wild Pokémon when it is used +in grass, caves, or on special trees." +94,10,9,"A sweet honey with a lush aroma that +attracts wild Pokémon when it is used +in grass, caves, or on special trees." +94,11,5,"Un miel au parfum riche qui, utilisé dans +l’herbe, une grotte ou sur des arbres +spéciaux, attire les Pokémon sauvages." +94,11,9,"A sweet honey with a lush aroma that +attracts wild Pokémon when it is used +in grass, caves, or on special trees." +94,14,9,"A sweet honey with a lush aroma that +attracts wild Pokémon when it is used +in grass, caves, or on special trees." +94,15,1,"くさむらや どうくつ などで +つかうと あまいにおいに さそわれて +やせいポケモンが あらわれる。" +94,15,3,"풀밭이나 동굴 등에서 사용하면 +달콤한 냄새에 이끌려서 +야생 포켓몬이 나타난다." +94,15,5,"Un miel au parfum riche qui, utilisé dans l’herbe, +une grotte ou sur des arbres spéciaux, attire les +Pokémon sauvages." +94,15,6,"Der Duft dieses Honigs lockt wilde Pokémon an. +Verwende ihn in hohem Gras, Höhlen oder an +besonderen Bäumen." +94,15,7,"Su delicioso aroma atrae a Pokémon salvajes si +se usa en zonas de hierba alta, cuevas o árboles +especiales." +94,15,8,"Miele dolce dall’aroma intenso che attrae +i Pokémon selvatici. Si può usare nelle grotte, +nell’erba o su alberi speciali." +94,15,9,"A sweet honey with a lush aroma that +attracts wild Pokémon when it is used +in tall grass, in caves, or on special trees." +94,15,11,"草むらや 洞窟などで +使うと あまいにおいに 誘われて +野生ポケモンが あらわれる。" +95,8,9,"A plant fertilizer spread on soft soil. +It speeds up the growth of Berries. +However, it also dries the soil faster." +95,9,9,"A plant fertilizer spread on soft soil. +It speeds up the growth of Berries. +However, it also dries the soil faster." +95,10,9,"A fertilizer to be spread on soft soil. +It speeds up the growth of Berries. +However, it also dries the soil faster." +95,11,5,"Un engrais utilisé sur sol meuble. +Les amateurs en donnent un bon prix." +95,11,9,"A fertilizer to be spread on soft soil +in regions where Berries are grown. +A maniac will buy it for a high price." +95,14,9,"A fertilizer to be spread on soft soil +in regions where Berries are grown. +A maniac will buy it for a high price." +95,15,1,"きのみを そだてる ちほうでは +ふかふかのつちに まいて つかう。" +95,15,3,"나무열매를 키우는 지방에서는 +푹신푹신한 땅에 뿌려 쓴다." +95,15,5,Un engrais à utiliser sur un sol meuble. +95,15,6,"In Regionen, wo man Beeren anbaut, +mengt man ihn unter weiche Lehmerde." +95,15,7,"Un fertilizante usado en suelo fértil donde crecen +las bayas." +95,15,8,"Viene usato nelle regioni in cui si coltivano +le bacche per concimare il terreno soffice." +95,15,9,"A fertilizer to be spread on soft soil +in regions where Berries are grown." +95,15,11,"きのみを 育てる 地方では +ふかふかのつちに まいて 使う。" +96,8,9,"A plant fertilizer spread on soft soil. +It slows the growth of Berries and +causes the soil to dry slower." +96,9,9,"A plant fertilizer spread on soft soil. +It slows the growth of Berries and +causes the soil to dry slower." +96,10,9,"A fertilizer to be spread on soft soil. +It slows the growth of Berries and +causes the soil to dry slower." +96,11,5,"Un engrais utilisé sur sol meuble. +Les amateurs en donnent un bon prix." +96,11,9,"A fertilizer to be spread on soft soil +in regions where Berries are grown. +A maniac will buy it for a high price." +96,14,9,"A fertilizer to be spread on soft soil +in regions where Berries are grown. +A maniac will buy it for a high price." +96,15,1,"きのみを そだてる ちほうでは +ふかふかのつちに まいて つかう。" +96,15,3,"나무열매를 키우는 지방에서는 +푹신푹신한 땅에 뿌려 쓴다." +96,15,5,Un engrais à utiliser sur un sol meuble. +96,15,6,"In Regionen, wo man Beeren anbaut, +mengt man ihn unter weiche Lehmerde." +96,15,7,"Un fertilizante usado en suelo fértil donde crecen +las bayas." +96,15,8,"Viene usato nelle regioni in cui si coltivano +le bacche per concimare il terreno soffice." +96,15,9,"A fertilizer to be spread on soft soil +in regions where Berries are grown." +96,15,11,"きのみを 育てる 地方では +ふかふかのつちに まいて 使う。" +97,8,9,"A plant fertilizer spread on soft soil. +It extends the time ripened Berries +remain on their plants before falling." +97,9,9,"A plant fertilizer spread on soft soil. +It extends the time ripened Berries +remain on their plants before falling." +97,10,9,"A fertilizer to be spread on soft soil. +It extends the time ripened Berries +remain on their plants before falling." +97,11,5,"Un engrais utilisé sur sol meuble. +Les amateurs en donnent un bon prix." +97,11,9,"A fertilizer to be spread on soft soil +in regions where Berries are grown. +A maniac will buy it for a high price." +97,14,9,"A fertilizer to be spread on soft soil +in regions where Berries are grown. +A maniac will buy it for a high price." +97,15,1,"きのみを そだてる ちほうでは +ふかふかのつちに まいて つかう。" +97,15,3,"나무열매를 키우는 지방에서는 +푹신푹신한 땅에 뿌려 쓴다." +97,15,5,Un engrais à utiliser sur un sol meuble. +97,15,6,"In Regionen, wo man Beeren anbaut, +mengt man ihn unter weiche Lehmerde." +97,15,7,"Un fertilizante usado en suelo fértil donde crecen +las bayas." +97,15,8,"Viene usato nelle regioni in cui si coltivano +le bacche per concimare il terreno soffice." +97,15,9,"A fertilizer to be spread on soft soil +in regions where Berries are grown." +97,15,11,"きのみを 育てる 地方では +ふかふかのつちに まいて 使う。" +98,8,9,"A plant fertilizer spread on soft soil. +It ups the number of times new plants +grow where mature plants withered." +98,9,9,"A plant fertilizer spread on soft soil. +It ups the number of times new plants +grow where mature plants withered." +98,10,9,"A fertilizer to be spread on soft soil. +It ups the number of times new plants +grow where mature plants withered." +98,11,5,"Un engrais utilisé sur sol meuble. +Les amateurs en donnent un bon prix." +98,11,9,"A fertilizer to be spread on soft soil +in regions where Berries are grown. +A maniac will buy it for a high price." +98,14,9,"A fertilizer to be spread on soft soil +in regions where Berries are grown. +A maniac will buy it for a high price." +98,15,1,"きのみを そだてる ちほうでは +ふかふかのつちに まいて つかう。" +98,15,3,"나무열매를 키우는 지방에서는 +푹신푹신한 땅에 뿌려 쓴다." +98,15,5,Un engrais à utiliser sur un sol meuble. +98,15,6,"In Regionen, wo man Beeren anbaut, +mengt man ihn unter weiche Lehmerde." +98,15,7,"Un fertilizante usado en suelo fértil donde crecen +las bayas." +98,15,8,"Viene usato nelle regioni in cui si coltivano +le bacche per concimare il terreno soffice." +98,15,9,"A fertilizer to be spread on soft soil +in regions where Berries are grown." +98,15,11,"きのみを 育てる 地方では +ふかふかのつちに まいて 使う。" +99,5,9,"A fossil of an +ancient, seafloor- +dwelling POKéMON." +99,6,9,"A fossil of an +ancient, seafloor- +dwelling POKéMON." +99,7,9,"A fossil of an ancient, seafloor- +dwelling POKéMON. It appears to be +part of a plant root." +99,8,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a plant root." +99,9,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a plant root." +99,10,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a plant root." +99,11,5,"Fossile d’un ancien Pokémon aquatique. +On dirait un morceau de racine de +plante." +99,11,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a plant root." +99,14,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a plant root." +99,15,1,"おおむかし うみに すんでいた +こだい ポケモンの カセキ。 +ねっこの いちぶ らしい。" +99,15,3,"오랜 옛날 바다에 살았던 +고대 포켓몬의 화석. +뿌리의 일부인 듯하다." +99,15,5,"Le fossile d’un ancien Pokémon aquatique. +On dirait un morceau de racine." +99,15,6,"Das Fossil eines uralten Pokémon, das in der +Tiefsee lebte. Es sieht wie eine Pflanzenwurzel +aus." +99,15,7,"Fósil de un Pokémon ancestral que vivió en el +fondo del mar. Parece ser parte de una raíz." +99,15,8,"Fossile di un Pokémon preistorico che viveva in +mare. Sembra essere parte di una radice." +99,15,9,"A fossil from a prehistoric Pokémon +that once lived in the sea. It looks as +if it could be part of a plant’s root." +99,15,11,"大昔 海に すんでいた +古代ポケモンの カセキ。 +ねっこの 一部らしい。" +100,5,9,"A fossil of an +ancient, seafloor- +dwelling POKéMON." +100,6,9,"A fossil of an +ancient, seafloor- +dwelling POKéMON." +100,7,9,"A fossil of an ancient, seafloor- +dwelling POKéMON. It appears to be +part of a claw." +100,8,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a claw." +100,9,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a claw." +100,10,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a claw." +100,11,5,"Fossile d’un ancien Pokémon aquatique. +On dirait un morceau de griffe." +100,11,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a claw." +100,14,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a claw." +100,15,1,"おおむかし うみに すんでいた +こだい ポケモンの カセキ。 +ツメの いちぶ らしい。" +100,15,3,"오랜 옛날 바다에 살았던 +고대 포켓몬의 화석. +발톱의 일부인 듯하다." +100,15,5,"Le fossile d’un ancien Pokémon aquatique. +On dirait un morceau de griffe." +100,15,6,"Das Fossil eines uralten Pokémon, das in der +Tiefsee lebte. Es sieht wie eine Klaue aus." +100,15,7,"Fósil de un Pokémon ancestral que vivió en el +fondo del mar. Parece ser parte de una garra." +100,15,8,"Fossile di un Pokémon preistorico che viveva in +mare. Sembra essere parte di un artiglio." +100,15,9,"A fossil from a prehistoric Pokémon +that once lived in the sea. It appears +to be a fragment of a claw." +100,15,11,"大昔 海に すんでいた +古代ポケモンの カセキ。 +ツメの 一部らしい。" +101,6,9,"A piece of an +ancient marine +POKéMON’s seashell." +101,7,9,"A fossil of an ancient, seafloor- +dwelling POKéMON. It appears to be +part of a seashell." +101,8,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a seashell." +101,9,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a seashell." +101,10,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a seashell." +101,11,5,"Fossile d’un ancien Pokémon aquatique. +On dirait un morceau de coquillage." +101,11,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a seashell." +101,14,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a seashell." +101,15,1,"おおむかし うみに すんでいた +こだい ポケモンの カセキ。 +かいがらの いちぶ らしい。" +101,15,3,"오랜 옛날 바다에 살았던 +고대 포켓몬의 화석. +조개껍질의 일부인 듯하다." +101,15,5,"Le fossile d’un ancien Pokémon aquatique. +On dirait un morceau de coquillage." +101,15,6,"Das Fossil eines uralten Pokémon, das in der +Tiefsee lebte. Es ähnelt einer Muschelschale." +101,15,7,"Fósil de un Pokémon ancestral que vivió en el +fondo del mar. Parece ser un fragmento de +concha marina." +101,15,8,"Fossile di un Pokémon preistorico che viveva in +mare. Sembra essere parte di una conchiglia." +101,15,9,"A fossil from a prehistoric Pokémon +that once lived in the sea. It might be +a piece of a seashell." +101,15,11,"大昔 海に すんでいた +古代ポケモンの カセキ。 +貝殻の 一部らしい。" +102,6,9,"A piece of an +ancient marine +POKéMON’s shell." +102,7,9,"A fossil of an ancient, seafloor- +dwelling POKéMON. It appears to be +part of a shell." +102,8,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a shell." +102,9,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a shell." +102,10,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a shell." +102,11,5,"Fossile d’un ancien Pokémon aquatique. +On dirait un morceau de carapace." +102,11,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a shell." +102,14,9,"A fossil of an ancient Pokémon that +lived in the sea. It appears to be +part of a shell." +102,15,1,"おおむかし うみに すんでいた +こだい ポケモンの カセキ。 +こうらの いちぶ らしい。" +102,15,3,"오랜 옛날 바다에 살았던 +고대 포켓몬의 화석. +등껍질의 일부인 듯하다." +102,15,5,"Le fossile d’un ancien Pokémon aquatique. +On dirait un morceau de carapace." +102,15,6,"Das Fossil eines uralten Pokémon, das in der +Tiefsee lebte. Es sieht wie eine Muschelschale +oder ein Rückenschild aus." +102,15,7,"Fósil de un Pokémon ancestral que vivió en el +fondo del mar. Parece ser un fragmento de +concha." +102,15,8,"Fossile di un Pokémon preistorico che viveva in +mare. Sembra essere parte di una corazza." +102,15,9,"A fossil from a prehistoric Pokémon +that once lived in the sea. It could +be a shell or carapace." +102,15,11,"大昔 海に すんでいた +古代ポケモンの カセキ。 +こうらの 一部らしい。" +103,6,9,"A stone containing +the genes of an +ancient POKéMON." +103,7,9,"A piece of amber that contains +the genes of an ancient POKéMON. +It is clear with a reddish tint." +103,8,9,"A piece of amber that contains the +genetic material of an ancient Pokémon. +It is clear with a reddish tint." +103,9,9,"A piece of amber that contains the +genetic material of an ancient Pokémon. +It is clear with a reddish tint." +103,10,9,"A piece of amber that contains the +genetic material of an ancient Pokémon. +It is clear with a reddish tint." +103,11,5,"Un morceau d’ambre contenant +l’ADN d’un ancien Pokémon. Il +est de couleur jaune." +103,11,9,"A piece of amber that contains the +genetic material of an ancient Pokémon. +It is clear with a reddish tint." +103,14,9,"A piece of amber that contains the +genetic material of an ancient Pokémon. +It is clear with a reddish tint." +103,15,1,"こだい ポケモンの いでんしが +とじこめられている コハク。 +あかみを おびて すけている。" +103,15,3,"고대 포켓몬의 유전자가 +갇혀 있는 호박. +붉은 기가 돌면서 약간 투명하다." +103,15,5,"Un morceau d’ambre contenant l’ADN d’un +ancien Pokémon. Il est de couleur jaune." +103,15,6,"Ein Stück Bernstein, in dem die Gene eines +uralten Pokémon enthalten sind. Es ist +durchsichtig." +103,15,7,"Fragmento de ámbar que contiene información +genética de un Pokémon ancestral. Es de color +amarillo." +103,15,8,"Pezzo di ambra che contiene il materiale +genetico di un Pokémon antico. È chiaro +e di colore giallastro." +103,15,9,"A piece of amber that still contains the +genetic material of an ancient Pokémon. +It’s clear with a tawny, reddish tint." +103,15,11,"古代ポケモンの 遺伝子が +閉じこめられている コハク。 +赤みを 帯びて 透けている。" +104,8,9,"A fossil from a prehistoric Pokémon +that lived on the land. It appears to +be part of a collar." +104,9,9,"A fossil from a prehistoric Pokémon +that lived on the land. It appears to +be part of a collar." +104,10,9,"A fossil from a prehistoric Pokémon +that lived on the land. It appears to +be part of a collar." +104,11,5,"Fossile d’un Pokémon préhistorique +terrestre. On dirait une partie d’un +collier." +104,11,9,"A fossil from a prehistoric Pokémon +that lived on the land. It appears to +be part of a collar." +104,14,9,"A fossil from a prehistoric Pokémon +that lived on the land. It appears to +be part of a collar." +104,15,1,"おおむかし ちじょうで くらした +こだい ポケモンの カセキ。 +えりかざりの いちぶ らしい。" +104,15,3,"오랜 옛날 지상에서 살았던 +고대 포켓몬의 화석. +깃 장식의 일부인 듯하다." +104,15,5,"Le fossile d’un Pokémon préhistorique terrestre. +On dirait une partie d’un collier." +104,15,6,"Das Fossil eines uralten Pokémon, das an Land +lebte. Es sieht wie ein Schlüsselbein aus." +104,15,7,"Fósil de un Pokémon prehistórico terrestre. +Parece ser parte de una protección ósea del +cuello." +104,15,8,"Fossile di un Pokémon preistorico che viveva +sulla terraferma. Sembra far parte di un collare." +104,15,9,"A fossil from a prehistoric Pokémon +that once lived on the land. It looks to +be from some kind of protective collar." +104,15,11,"大昔 地上で 暮らした +古代ポケモンの カセキ。 +襟飾りの 一部らしい。" +105,8,9,"A fossil from a prehistoric Pokémon +that lived on the land. It appears to +be part of a head." +105,9,9,"A fossil from a prehistoric Pokémon +that lived on the land. It appears to +be part of a head." +105,10,9,"A fossil from a prehistoric Pokémon +that lived on the land. It appears to +be part of a head." +105,11,5,"Fossile d’un Pokémon préhistorique +terrestre. On dirait une partie d’un +crâne." +105,11,9,"A fossil from a prehistoric Pokémon +that lived on the land. It appears to +be part of a head." +105,14,9,"A fossil from a prehistoric Pokémon +that lived on the land. It appears to +be part of a head." +105,15,1,"おおむかし ちじょうで くらした +こだい ポケモンの カセキ。 +あたまの いちぶ らしい。" +105,15,3,"오랜 옛날 지상에서 살았던 +고대 포켓몬의 화석. +머리의 일부인 듯하다." +105,15,5,"Le fossile d’un Pokémon préhistorique terrestre. +On dirait une partie d’un crâne." +105,15,6,"Das Fossil eines uralten Pokémon, das an Land +lebte. Es sieht wie ein Schädel aus." +105,15,7,"Fósil de un Pokémon prehistórico terrestre. +Parece ser parte de una cabeza." +105,15,8,"Fossile di un Pokémon preistorico che viveva +sulla terraferma. Sembra far parte di un teschio." +105,15,9,"A fossil from a prehistoric Pokémon +that once lived on the land. It appears +as though it’s part of a head." +105,15,11,"大昔 地上で 暮らした +古代ポケモンの カセキ。 +頭の 一部らしい。" +106,8,9,"A bone that is extremely valuable for +Pokémon archaeology. It can be sold +for a high price to shops." +106,9,9,"A bone that is extremely valuable for +Pokémon archaeology. It can be sold +for a high price to shops." +106,10,9,"A bone that is extremely valuable for +Pokémon archaeology. It can be sold +for a high price to shops." +106,11,5,"Un os d’une grande valeur pour +l’archéologie Pokémon. Peut être +vendu à bon prix aux magasins." +106,11,9,"A bone that is extremely valuable for +Pokémon archeology. It can be sold +for a high price to shops." +106,14,9,"A bone that is extremely valuable for +Pokémon archeology. It can be sold +for a high price to shops." +106,15,1,"ポケモンこうこがくの うえで +とても きちょうな ホネ。 +ショップで たかく うれる。" +106,15,3,"포켓몬 고고학에 있어 +매우 귀중한 뼈. +상점에서 비싸게 팔린다." +106,15,5,"Un os d’une grande valeur pour l’archéologie +Pokémon. Peut être vendu à bon prix aux +magasins." +106,15,6,"Dieser Knochen erfreut jeden Pokémon- +Archäologen. Er ist von hohem Wert." +106,15,7,"Un hueso de gran valor para la arqueología +Pokémon. Puede alcanzar un alto precio en las +tiendas." +106,15,8,"Osso di grande valore per l’archeologia +Pokémon. Può essere venduto nei negozi +a un prezzo piuttosto alto." +106,15,9,"A rare bone that is extremely valuable +for the study of Pokémon archeology. +It can be sold for a high price to shops." +106,15,11,"ポケモン考古学の うえで +とても 貴重な ホネ。 +ショップで 高く 売れる。" +107,8,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It shines with a dazzling light." +107,9,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It shines with a dazzling light." +107,10,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It shines with a dazzling light." +107,11,5,"Pierre étrange qui fait évoluer +certaines espèces de Pokémon. Elle +brille d’une lumière aveuglante." +107,11,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It shines with a dazzling light." +107,14,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It shines with a dazzling light." +107,15,1,"ある とくていの ポケモンを +しんかさせる ふしぎな いし。 +ひかりのように まぶしい。" +107,15,3,"어느 특정 포켓몬을 +진화시키는 이상한 돌. +빛처럼 눈부시다." +107,15,5,"Une pierre étrange qui fait évoluer certaines +espèces de Pokémon. Elle brille d’une lumière +aveuglante." +107,15,6,"Dieser besondere, hell leuchtende Stein hilft +manchen Pokémon bei ihrer Evolution." +107,15,7,"Una piedra peculiar que hace evolucionar a +algunos Pokémon. Tiene un brillo espectacular." +107,15,8,"Pietra particolare che fa evolvere determinate +specie di Pokémon. Brilla di una luce abbagliante." +107,15,9,"A peculiar stone that can make +certain species of Pokémon evolve. +It shines with a dazzling light." +107,15,11,"ある 特定の ポケモンを +進化させる 不思議な 石。 +ひかりのように まぶしい。" +108,8,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as dark as dark can be." +108,9,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as dark as dark can be." +108,10,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as dark as dark can be." +108,11,5,"Pierre étrange qui fait évoluer +certaines espèces de Pokémon. Elle +est sombre comme une nuit sans lune." +108,11,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as dark as dark can be." +108,14,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is as dark as dark can be." +108,15,1,"ある とくていの ポケモンを +しんかさせる ふしぎな いし。 +やみのように くらい。" +108,15,3,"어느 특정 포켓몬을 +진화시키는 이상한 돌. +칠흑처럼 어둡다." +108,15,5,"Une pierre étrange qui fait évoluer certaines +espèces de Pokémon. Elle est sombre comme +une nuit sans lune." +108,15,6,"Dieser besondere, düstere Stein hilft +manchen Pokémon bei ihrer Evolution." +108,15,7,"Una piedra peculiar que hace evolucionar a +algunos Pokémon. Es oscura como la noche." +108,15,8,"Pietra particolare che fa evolvere determinate +specie di Pokémon. È scura come le tenebre." +108,15,9,"A peculiar stone that can make +certain species of Pokémon evolve. +It holds shadows as dark as can be." +108,15,11,"ある 特定の ポケモンを +進化させる 不思議な 石。 +やみのように 暗い。" +109,8,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It sparkles like eyes." +109,9,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It sparkles like eyes." +109,10,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It sparkles like eyes." +109,11,5,"Pierre étrange qui fait évoluer +certaines espèces de Pokémon. +Elle brille comme un œil." +109,11,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It sparkles like eyes." +109,14,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It sparkles like eyes." +109,15,1,"ある とくていの ポケモンを +しんかさせる ふしぎな いし。 +ひとみのように まばゆい。" +109,15,3,"어느 특정 포켓몬을 +진화시키는 이상한 돌. +눈동자처럼 아름답다." +109,15,5,"Une pierre étrange qui fait évoluer certaines +espèces de Pokémon. Elle brille comme un œil." +109,15,6,"Dieser besondere, glitzernde Stein hilft +manchen Pokémon bei ihrer Evolution." +109,15,7,"Una piedra peculiar que hace evolucionar a +algunos Pokémon. Brilla como un lucero." +109,15,8,"Pietra particolare che fa evolvere determinate +specie di Pokémon. È luccicante come gli occhi." +109,15,9,"A peculiar stone that can make +certain species of Pokémon evolve. +It sparkles like a glittering eye." +109,15,11,"ある 特定の ポケモンを +進化させる 不思議な 石。 +ひとみのように まばゆい。" +110,8,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is shaped like an egg." +110,9,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is shaped like an egg." +110,10,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is shaped like an egg." +110,11,5,"Pierre étrange qui fait évoluer +certaines espèces de Pokémon. +Elle a la forme d’un œuf." +110,11,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is shaped like an egg." +110,14,9,"A peculiar stone that makes certain +species of Pokémon evolve. +It is shaped like an egg." +110,15,1,"ある とくていの ポケモンを +しんかさせる ふしぎな いし。 +たまのように まるい。" +110,15,3,"어느 특정 포켓몬을 +진화시키는 이상한 돌. +구슬처럼 둥글다." +110,15,5,"Une pierre étrange qui fait évoluer certaines +espèces de Pokémon. Elle a la forme d’un œuf." +110,15,6,"Dieser besondere, eiförmige Stein hilft +manchen Pokémon bei ihrer Evolution." +110,15,7,"Una piedra peculiar que hace evolucionar a +algunos Pokémon. Tiene forma de huevo." +110,15,8,"Pietra particolare che fa evolvere determinate +specie di Pokémon. È a forma di uovo." +110,15,9,"A peculiar stone that can make +certain species of Pokémon evolve. +It’s as round as a Pokémon Egg." +110,15,11,"ある 特定の ポケモンを +進化させる 不思議な 石。 +たまのように まるい。" +111,8,9,"A vital item that is needed to keep a +stone tower from collapsing. Voices +can be heard from it occasionally." +111,9,9,"A vital item that is needed to keep a +stone tower from collapsing. Voices +can be heard from it occasionally." +111,10,9,"A vital item that is needed to keep a +stone tower from collapsing. Voices +can be heard from it occasionally." +111,11,5,"Objet très important qui empêche une +tour en pierre de s’écrouler. Des +bruits de voix en sortent parfois." +111,11,9,"A vital item that is needed to keep a +stone tower from collapsing. Voices +can be heard from it occasionally." +111,14,9,"A vital item that is needed to keep a +stone tower from collapsing. Voices +can be heard from it occasionally." +111,15,1,"これがないと いしのとうが +くずれてしまう だいじないし。 +ときどき いしから こえがきこえる。" +111,15,3,"이것이 없으면 돌탑이 +무너져버리는 중요한 돌. +가끔 돌에서 목소리가 들린다." +111,15,5,"Un objet très important qui empêche une tour +en pierre de s’écrouler. Des bruits de voix +en sortent parfois." +111,15,6,"Ein wichtiges Item, mit dem ein Steinturm +repariert werden kann." +111,15,7,"Vital para impedir que una torre de piedra se +derrumbe. A veces se oyen voces en su interior." +111,15,8,"Strumento importante che impedisce il crollo +di un pozzo di pietra. A volte dal suo interno +provengono delle voci." +111,15,9,"A vital item that is needed to keep a +stone tower from collapsing. Voices +can be heard from it occasionally." +111,15,11,"これがないと 石の塔が +崩れてしまう 大事な石。 +ときどき 石から 声が聞こえる。" +112,8,9,"A brightly gleaming orb to be held by +DIALGA. It boosts the power of Dragon-​ +and Steel-type moves." +112,9,9,"A brightly gleaming orb to be held by +DIALGA. It boosts the power of Dragon-​ +and Steel-type moves." +112,10,9,"A brightly gleaming orb to be held by +DIALGA. It boosts the power of Dragon-​ +and Steel-type moves." +112,11,5,"Orbe très brillant destiné à Dialga. +Augmente la puissance des capacités +de type Dragon et Acier." +112,11,9,"A brightly gleaming orb to be held by +Dialga. It boosts the power of Dragon-​ +and Steel-type moves." +112,14,9,"A brightly gleaming orb to be held by +Dialga. It boosts the power of Dragon-​ +and Steel-type moves." +112,15,1,"ディアルガに もたせると ドラゴンと +はがねタイプの わざの いりょくが +あがる ひかり かがやく たま。" +112,15,3,"디아루가에게 지니게 하면 드래곤과 +강철타입 기술의 위력이 올라가는 +반짝반짝 빛나는 구슬." +112,15,5,"Un orbe très brillant destiné à Dialga. +Augmente la puissance des capacités de type +Dragon et Acier." +112,15,6,"Ein hell leuchtender Orb. Verstärkt Attacken vom +Typ Drache und Stahl, wenn Dialga ihn trägt." +112,15,7,"Los Pokémon pueden llevarla o usarla para +curarse las quemaduras." +112,15,8,"Sfera molto luminosa da dare a Dialga. +Potenzia le mosse di tipo Drago e Acciaio." +112,15,9,"A brightly gleaming orb to be held by +Dialga. It boosts the power of Dragon-​ +and Steel-type moves when it is held." +112,15,11,"ディアルガに 持たせると ドラゴンと +はがねタイプの 技の 威力が +あがる 光り 輝く 珠。" +113,8,9,"A beautifully glowing orb to be held by +PALKIA. It boosts the power of Dragon-​ +and Water-type moves." +113,9,9,"A beautifully glowing orb to be held by +PALKIA. It boosts the power of Dragon-​ +and Water-type moves." +113,10,9,"A beautifully glowing orb to be held by +PALKIA. It boosts the power of Dragon-​ +and Water-type moves." +113,11,5,"Bel orbe luisant destiné à Palkia. +Augmente la puissance des capacités +de type Dragon et Eau." +113,11,9,"A beautifully glowing orb to be held by +Palkia. It boosts the power of Dragon-​ +and Water-type moves." +113,14,9,"A beautifully glowing orb to be held by +Palkia. It boosts the power of Dragon-​ +and Water-type moves." +113,15,1,"パルキアに もたせると ドラゴンと +みずタイプの わざの いりょくが +あがる うつくしく かがやく たま。" +113,15,3,"펄기아에게 지니게 하면 드래곤과 +물타입 기술의 위력이 올라가는 +아름답게 반짝이는 구슬." +113,15,5,"Un bel orbe luisant destiné à Palkia. +Augmente la puissance des capacités de type +Dragon et Eau." +113,15,6,"Ein hell leuchtender Orb. Verstärkt Attacken vom +Typ Drache und Wasser, wenn Palkia ihn trägt." +113,15,7,"Los Pokémon pueden llevarla o usarla para +descongelarse." +113,15,8,"Sfera splendente da dare a Palkia. +Potenzia le mosse di tipo Drago e Acqua." +113,15,9,"A beautifully glowing orb to be held by +Palkia. It boosts the power of Dragon-​ +and Water-type moves when it is held." +113,15,11,"パルキアに 持たせると ドラゴンと +みずタイプの 技の 威力が +あがる 美しく 輝く 珠。" +114,8,9,"Stationery featuring a print of a +refreshingly green field. +Let a Pokémon hold it for delivery." +114,9,9,"Stationery featuring a print of a +refreshingly green field. +Let a Pokémon hold it for delivery." +114,10,9,"Stationery featuring a print of a +refreshingly green field. +Let a Pokémon hold it for delivery." +115,8,9,"Stationery featuring a print of flames +in blazing red. +Let a Pokémon hold it for delivery." +115,9,9,"Stationery featuring a print of flames +in blazing red. +Let a Pokémon hold it for delivery." +115,10,9,"Stationery featuring a print of flames +in blazing red. +Let a Pokémon hold it for delivery." +116,8,9,"Stationery featuring a print of a blue +world underwater. +Let a Pokémon hold it for delivery." +116,9,9,"Stationery featuring a print of a blue +world underwater. +Let a Pokémon hold it for delivery." +116,10,9,"Stationery featuring a print of a blue +world underwater. +Let a Pokémon hold it for delivery." +117,8,9,"Stationery featuring a print of pretty +floral patterns. +Let a Pokémon hold it for delivery." +117,9,9,"Stationery featuring a print of pretty +floral patterns. +Let a Pokémon hold it for delivery." +117,10,9,"Stationery featuring a print of pretty +floral patterns. +Let a Pokémon hold it for delivery." +118,8,9,"Stationery featuring a print of a dimly +lit coal mine. +Let a Pokémon hold it for delivery." +118,9,9,"Stationery featuring a print of a dimly +lit coal mine. +Let a Pokémon hold it for delivery." +118,10,9,"Stationery featuring a print of a dimly +lit coal mine. +Let a Pokémon hold it for delivery." +119,8,9,"Stationery featuring a print of cool +mechanical designs. +Let a Pokémon hold it for delivery." +119,9,9,"Stationery featuring a print of cool +mechanical designs. +Let a Pokémon hold it for delivery." +119,10,9,"Stationery featuring a print of cool +mechanical designs. +Let a Pokémon hold it for delivery." +120,8,9,"Stationery featuring a print of giant +heart patterns. +Let a Pokémon hold it for delivery." +120,9,9,"Stationery featuring a print of giant +heart patterns. +Let a Pokémon hold it for delivery." +120,10,9,"Stationery featuring a print of giant +heart patterns. +Let a Pokémon hold it for delivery." +121,8,9,"Stationery featuring a print of a +chilly, snow-covered world. +Let a Pokémon hold it for delivery." +121,9,9,"Stationery featuring a print of a +chilly, snow-covered world. +Let a Pokémon hold it for delivery." +121,10,9,"Stationery featuring a print of a +chilly, snow-covered world. +Let a Pokémon hold it for delivery." +122,8,9,"Stationery featuring a print depicting +the huge expanse of space. +Let a Pokémon hold it for delivery." +122,9,9,"Stationery featuring a print depicting +the huge expanse of space. +Let a Pokémon hold it for delivery." +122,10,9,"Stationery featuring a print depicting +the huge expanse of space. +Let a Pokémon hold it for delivery." +123,8,9,"Stationery featuring a print of +colorful letter sets. +Let a Pokémon hold it for delivery." +123,9,9,"Stationery featuring a print of +colorful letter sets. +Let a Pokémon hold it for delivery." +123,10,9,"Stationery featuring a print of +colorful letter sets. +Let a Pokémon hold it for delivery." +124,8,9,"Stationery featuring a print of a vivid +rainbow pattern. +Let a Pokémon hold it for delivery." +124,9,9,"Stationery featuring a print of a vivid +rainbow pattern. +Let a Pokémon hold it for delivery." +124,10,9,"Stationery featuring a print of a vivid +rainbow pattern. +Let a Pokémon hold it for delivery." +125,8,9,"Stationery featuring a print of a +tough-looking brick pattern. +Let a Pokémon hold it for delivery." +125,9,9,"Stationery featuring a print of a +tough-looking brick pattern. +Let a Pokémon hold it for delivery." +125,10,9,"Stationery featuring a print of a +tough-looking brick pattern. +Let a Pokémon hold it for delivery." +126,5,9,"A hold item that +heals paralysis +in battle." +126,6,9,"A hold item that +heals paralysis +in battle." +126,7,9,"When held by a POKéMON, it will be +used in battle to heal paralysis." +126,8,9,"A Poffin ingredient. It may be used +or held by a Pokémon to recover from +paralysis." +126,9,9,"A Poffin ingredient. It may be used +or held by a Pokémon to recover from +paralysis." +126,10,9,"It may be used or held by a Pokémon to +recover from paralysis." +126,11,5,"Baie qui soigne la paralysie lorsqu’elle +est tenue par un Pokémon." +126,11,9,"If held by a Pokémon, +it recovers from paralysis." +126,14,9,"If held by a Pokémon, +it recovers from paralysis." +126,15,1,"ポケモンに もたせると +まひを かいふくする。 +" +126,15,3,"포켓몬에게 지니게 하면 +마비를 회복한다." +126,15,5,"Une Baie qui soigne la paralysie lorsqu’elle est +tenue par un Pokémon." +126,15,6,"Gibst du die Beere einem Pokémon zum Tragen, +heilt diese es von Paralyse." +126,15,7,Una baya muy rara en la región de Teselia. +126,15,8,"Se un Pokémon ha questa bacca, guarisce dalla +paralisi." +126,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, it can recover +from paralysis on its own in battle." +126,15,11,"ポケモンに 持たせると +まひを 回復する。 +" +127,5,9,"A hold item that +awakens POKéMON +in battle." +127,6,9,"A hold item that +awakens POKéMON +in battle." +127,7,9,"When held by a POKéMON, it will be +used in battle to wake up." +127,8,9,"A Poffin ingredient. It may be used +or held by a Pokémon to recover from +sleep." +127,9,9,"A Poffin ingredient. It may be used +or held by a Pokémon to recover from +sleep." +127,10,9,"It may be used or held by a Pokémon to +recover from sleep." +127,11,5,"Baie qui soigne le sommeil lorsqu’elle +est tenue par un Pokémon." +127,11,9,"If held by a Pokémon, +it recovers from sleep." +127,14,9,"If held by a Pokémon, +it recovers from sleep." +127,15,1,"ポケモンに もたせると +ねむりを かいふくする。 +" +127,15,3,"포켓몬에게 지니게 하면 +잠듦을 회복한다." +127,15,5,"Une Baie qui soigne le sommeil lorsqu’elle est +tenue par un Pokémon." +127,15,6,"Gibst du die Beere einem Pokémon zum Tragen, +erwacht es dadurch aus dem Schlaf." +127,15,7,Una baya muy rara en la región de Teselia. +127,15,8,"Se un Pokémon ha questa bacca, si risveglia +dal sonno." +127,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, it can recover +from sleep on its own in battle." +127,15,11,"ポケモンに 持たせると +眠りを 回復する。 +" +128,5,9,"A hold item that +heals poisoning +in battle." +128,6,9,"A hold item that +heals poisoning +in battle." +128,7,9,"When held by a POKéMON, it will be +used in battle to cure poison." +128,8,9,"A Poffin ingredient. It may be used +or held by a Pokémon to recover from +poison." +128,9,9,"A Poffin ingredient. It may be used +or held by a Pokémon to recover from +poison." +128,10,9,"It may be used or held by a Pokémon to +recover from poison." +128,11,5,"Baie qui soigne l’empoisonnement +lorsqu’elle est tenue par un Pokémon." +128,11,9,"If held by a Pokémon, +it recovers from poison." +128,14,9,"If held by a Pokémon, +it recovers from poison." +128,15,1,"ポケモンに もたせると +どくを かいふくする。 +" +128,15,3,"포켓몬에게 지니게 하면 +독을 회복한다." +128,15,5,"Une Baie qui soigne l’empoisonnement lorsqu’elle +est tenue par un Pokémon." +128,15,6,"Gibst du die Beere einem Pokémon zum Tragen, +heilt diese es von Vergiftung." +128,15,7,Una baya muy rara en la región de Teselia. +128,15,8,"Se un Pokémon ha questa bacca, guarisce +dall’avvelenamento." +128,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, it can recover +from poisoning on its own in battle." +128,15,11,"ポケモンに 持たせると +毒を 回復する。 +" +129,5,9,"A hold item that +heals a burn in +battle." +129,6,9,"A hold item that +heals a burn in +battle." +129,7,9,"When held by a POKéMON, it will be +used in battle to heal a burn." +129,8,9,"A Poffin ingredient. It may be used +or held by a Pokémon to recover from +a burn." +129,9,9,"A Poffin ingredient. It may be used +or held by a Pokémon to recover from +a burn." +129,10,9,"It may be used or held by a Pokémon to +recover from a burn." +129,11,5,"Baie qui soigne les brûlures lorsqu’elle +est tenue par un Pokémon." +129,11,9,"If held by a Pokémon, +it recovers from a burn." +129,14,9,"If held by a Pokémon, +it recovers from a burn." +129,15,1,"ポケモンに もたせると +やけどを かいふくする。 +" +129,15,3,"포켓몬에게 지니게 하면 +화상을 회복한다." +129,15,5,"Une Baie qui soigne les brûlures lorsqu’elle est +tenue par un Pokémon." +129,15,6,"Gibst du die Beere einem Pokémon zum Tragen, +heilt diese es von Verbrennungen." +129,15,7,"Al usarla con un Pokémon, se gana su amistad, +pero también reduce sus PS de base." +129,15,8,"Se un Pokémon ha questa bacca, guarisce dalle +scottature." +129,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, it can recover +from a burn on its own in battle." +129,15,11,"ポケモンに 持たせると +やけどを 回復する。 +" +130,5,9,"A hold item that +defrosts POKéMON +in battle." +130,6,9,"A hold item that +defrosts POKéMON +in battle." +130,7,9,"When held by a POKéMON, it will be +used in battle for defrosting." +130,8,9,"A Poffin ingredient. It may be used +or held by a Pokémon to defrost it. +" +130,9,9,"A Poffin ingredient. It may be used +or held by a Pokémon to defrost it. +" +130,10,9,"It may be used or held by a Pokémon to +defrost it. +" +130,11,5,"Baie qui soigne le gel lorsqu’elle +est tenue par un Pokémon." +130,11,9,"If held by a Pokémon, +it defrosts it." +130,14,9,"If held by a Pokémon, +it defrosts it." +130,15,1,"ポケモンに もたせると +こおりを かいふくする。 +" +130,15,3,"포켓몬에게 지니게 하면 +얼음을 회복한다." +130,15,5,"Une Baie qui soigne le gel lorsqu’elle est +tenue par un Pokémon." +130,15,6,"Gibst du die Beere einem Pokémon zum Tragen, +heilt diese es von Frost." +130,15,7,"Al usarla con un Pokémon, se gana su amistad, +pero también reduce su Ataque de base." +130,15,8,"Se un Pokémon ha questa bacca, guarisce +dal congelamento." +130,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, it can recover +from being frozen on its own in battle." +130,15,11,"ポケモンに 持たせると +こおりを 回復する。 +" +131,5,9,"A hold item that +restores 10 PP in +battle." +131,6,9,"A hold item that +restores 10 PP in +battle." +131,7,9,"When held by a POKéMON, it will be +used in battle to restore 10 PP." +131,8,9,"A Poffin ingredient. It may be used +or held by a Pokémon to restore a +move’s PP by 10." +131,9,9,"A Poffin ingredient. It may be used +or held by a Pokémon to restore a +move’s PP by 10." +131,10,9,"It may be used or held by a Pokémon to +restore a move’s PP by 10." +131,11,5,"Baie qui restaure 10 PP lorsqu’elle +est tenue par un Pokémon." +131,11,9,"If held by a Pokémon, +it restores a move’s PP by 10." +131,14,9,"If held by a Pokémon, +it restores a move’s PP by 10." +131,15,1,"ポケモンに もたせると +PPを 10だけ かいふくする。 +" +131,15,3,"포켓몬에게 지니게 하면 +PP를 10만큼 회복한다." +131,15,5,"Une Baie qui restaure 10 PP lorsqu’elle +est tenue par un Pokémon." +131,15,6,"Gibst du die Beere einem Pokémon zum Tragen, +füllt sie die AP einer Attacke um 10 Punkte auf." +131,15,7,"Al usarla con un Pokémon, se gana su amistad, +pero también reduce su Defensa de base." +131,15,8,"Se un Pokémon ha questa bacca, può restituire +10 PP a una mossa." +131,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, it can restore +10 PP to a depleted move during battle." +131,15,11,"ポケモンに 持たせると +PPを 10だけ 回復する。 +" +132,5,9,"A hold item that +restores 10 HP in +battle." +132,6,9,"A hold item that +restores 10 HP in +battle." +132,7,9,"When held by a POKéMON, it will be +used in battle to restore 10 HP." +132,8,9,"A Poffin ingredient. It may be used +or held by a Pokémon to heal the +user by just 10 HP." +132,9,9,"A Poffin ingredient. It may be used +or held by a Pokémon to heal the +user by just 10 HP." +132,10,9,"It may be used or held by a Pokémon to +heal the user by just 10 HP." +132,11,5,"Baie qui restaure 10 PV lorsqu’elle +est tenue par un Pokémon." +132,11,9,"If held by a Pokémon, +it heals the user by just 10 HP." +132,14,9,"If held by a Pokémon, +it heals the user by just 10 HP." +132,15,1,"ポケモンに もたせると +HPを 10だけ かいふくする。 +" +132,15,3,"포켓몬에게 지니게 하면 +HP를 10만큼 회복한다." +132,15,5,"Une Baie qui restaure 10 PV lorsqu’elle est +tenue par un Pokémon." +132,15,6,"Gibst du die Beere einem Pokémon zum Tragen, +füllt sie seine KP um 10 Punkte auf." +132,15,7,"Al usarla con un Pokémon, se gana su amistad, +pero también reduce su Ataque Especial de base." +132,15,8,"Se un Pokémon ha questa bacca, recupera +10 PS." +132,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, it can restore its +own HP by 10 points during battle." +132,15,11,"ポケモンに 持たせると +HPを 10だけ 回復する。 +" +133,5,9,"A hold item that +heals confusion +in battle." +133,6,9,"A hold item that +heals confusion +in battle." +133,7,9,"When held by a POKéMON, it will be +used in battle to lift confusion." +133,8,9,"A Poffin ingredient. It may be used +or held by a Pokémon to recover from +confusion." +133,9,9,"A Poffin ingredient. It may be used +or held by a Pokémon to recover from +confusion." +133,10,9,"It may be used or held by a Pokémon to +recover from confusion." +133,11,5,"Baie qui soigne la confusion lorsqu’elle +est tenue par un Pokémon." +133,11,9,"If held by a Pokémon, +it recovers from confusion." +133,14,9,"If held by a Pokémon, +it recovers from confusion." +133,15,1,"ポケモンに もたせると +こんらんを かいふくする。 +" +133,15,3,"포켓몬에게 지니게 하면 +혼란을 회복한다." +133,15,5,"Une Baie qui soigne la confusion lorsqu’elle est +tenue par un Pokémon." +133,15,6,"Gibst du die Beere einem Pokémon zum Tragen, +heilt diese es von Verwirrung." +133,15,7,"Al usarla con un Pokémon, se gana su amistad, +pero también reduce su Defensa Especial de +base." +133,15,8,"Se un Pokémon ha questa bacca, guarisce +dalla confusione." +133,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, it can recover +from confusion on its own in battle." +133,15,11,"ポケモンに 持たせると +混乱を 回復する。 +" +134,5,9,"A hold item that +heals status in +battle." +134,6,9,"A hold item that +heals any status +problem in battle." +134,7,9,"When held by a POKéMON, it will be +used in battle to heal any problem." +134,8,9,"A Poffin ingredient. It may be used +or held by a Pokémon to recover from +any status problem." +134,9,9,"A Poffin ingredient. It may be used +or held by a Pokémon to recover from +any status problem." +134,10,9,"It may be used or held by a Pokémon to +recover from any status problem." +134,11,5,"Baie qui soigne tous les problèmes +de statut lorsqu’elle est tenue +par un Pokémon." +134,11,9,"If held by a Pokémon, +it recovers from any status problem." +134,14,9,"If held by a Pokémon, +it recovers from any status problem." +134,15,1,"ポケモンに もたせると +すべての じょうたい いじょうを +かいふくする。" +134,15,3,"포켓몬에게 지니게 하면 +모든 상태 이상을 +회복한다." +134,15,5,"Une Baie qui soigne tous les problèmes de statut +lorsqu’elle est tenue par un Pokémon." +134,15,6,"Gibst du die Beere einem Pokémon zum Tragen, +hebt sie alle seine Statusprobleme auf." +134,15,7,"Al usarla con un Pokémon, se gana su amistad, +pero también reduce su Velocidad de base." +134,15,8,"Se un Pokémon ha questa bacca, guarisce +da qualsiasi problema di stato." +134,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, it can recover +from any status condition during battle." +134,15,11,"ポケモンに 持たせると +すべての 状態異常を +回復する。" +135,5,9,"A hold item that +restores 30 HP in +battle." +135,6,9,"A hold item that +restores 30 HP in +battle." +135,7,9,"When held by a POKéMON, it will be +used in battle to restore 30 HP." +135,8,9,"A Poffin ingredient. It may be used +or held by a Pokémon to heal the +user’s HP a little." +135,9,9,"A Poffin ingredient. It may be used +or held by a Pokémon to heal the +user’s HP a little." +135,10,9,"It may be used or held by a Pokémon to +heal the user’s HP a little." +135,11,5,"Baie qui restaure quelques PV +lorsqu’elle est tenue par un Pokémon." +135,11,9,"If held by a Pokémon, +it heals the user’s HP a little." +135,14,9,"If held by a Pokémon, +it heals the user’s HP a little." +135,15,1,"ポケモンに もたせると +HPを すこしだけ かいふくする。 +" +135,15,3,"포켓몬에게 지니게 하면 +HP를 조금 회복한다." +135,15,5,"Une Baie qui restaure quelques PV lorsqu’elle est +tenue par un Pokémon." +135,15,6,"Gibst du die Beere einem Pokémon zum Tragen, +füllt diese seine KP ein wenig auf." +135,15,7,Una baya muy rara en la región de Teselia. +135,15,8,"Se un Pokémon ha questa bacca, recupera +un po’ di PS." +135,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, it can restore its +own HP by a small amount during battle." +135,15,11,"ポケモンに 持たせると +HPを 少しだけ 回復する。 +" +136,5,9,"A hold item that +restores HP but +may confuse." +136,6,9,"A hold item that +restores HP but +may confuse." +136,7,9,"A hold item that restores HP but +may cause confusion when used." +136,8,9,"A Poffin ingredient. If held by a +Pokémon, it restores the user’s HP in +a pinch, but may also cause confusion." +136,9,9,"A Poffin ingredient. If held by a +Pokémon, it restores the user’s HP in +a pinch, but may also cause confusion." +136,10,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates spicy food." +136,11,5,"Tenue, cette Baie restaure des PV en +cas de besoin, mais rend confus si +le Pokémon n’aime pas son goût." +136,11,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates the taste." +136,14,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates the taste." +136,15,1,"ポケモンに もたせると +ピンチのとき HPを かいふくする。 +きらいな あじだと こんらん する。" +136,15,3,"포켓몬에게 지니게 하면 +위급할 때 HP를 회복한다. +싫어하는 맛이면 혼란에 빠진다." +136,15,5,"Tenue, cette Baie restaure des PV en cas +de besoin, mais rend le Pokémon confus si +son goût lui déplaît." +136,15,6,"Als getragenes Item füllt die Beere die KP eines +Pokémon auf, doch ihr Aroma verwirrt jene, +die es nicht mögen." +136,15,7,Una baya muy rara en la región de Teselia. +136,15,8,"Se un Pokémon in difficoltà ha questa bacca, +recupera dei PS. Se al Pokémon non piace +il suo sapore, può causare confusione." +136,15,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but it will cause +confusion if the user hates the taste." +136,15,11,"ポケモンに 持たせると +ピンチのとき HPを 回復する。 +きらいな味だと 混乱する。" +137,5,9,"A hold item that +restores HP but +may confuse." +137,6,9,"A hold item that +restores HP but +may confuse." +137,7,9,"A hold item that restores HP but +may cause confusion when used." +137,8,9,"A Poffin ingredient. If held by a +Pokémon, it restores the user’s HP in +a pinch, but may also cause confusion." +137,9,9,"A Poffin ingredient. If held by a +Pokémon, it restores the user’s HP in +a pinch, but may also cause confusion." +137,10,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates dry food." +137,11,5,"Tenue, cette Baie restaure des PV en +cas de besoin, mais rend confus si +le Pokémon n’aime pas son goût." +137,11,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates the taste." +137,14,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates the taste." +137,15,1,"ポケモンに もたせると +ピンチのとき HPを かいふくする。 +きらいな あじだと こんらん する。" +137,15,3,"포켓몬에게 지니게 하면 +위급할 때 HP를 회복한다. +싫어하는 맛이면 혼란에 빠진다." +137,15,5,"Tenue, cette Baie restaure des PV en cas +de besoin, mais rend le Pokémon confus si +son goût lui déplaît." +137,15,6,"Als getragenes Item füllt die Beere die KP eines +Pokémon auf, doch ihr Aroma verwirrt jene, +die es nicht mögen." +137,15,7,Una baya muy rara en la región de Teselia. +137,15,8,"Se un Pokémon in difficoltà ha questa bacca, +recupera dei PS. Se al Pokémon non piace +il suo sapore, può causare confusione." +137,15,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but it will cause +confusion if the user hates the taste." +137,15,11,"ポケモンに 持たせると +ピンチのとき HPを 回復する。 +きらいな味だと 混乱する。" +138,5,9,"A hold item that +restores HP but +may confuse." +138,6,9,"A hold item that +restores HP but +may confuse." +138,7,9,"A hold item that restores HP but +may cause confusion when used." +138,8,9,"A Poffin ingredient. If held by a +Pokémon, it restores the user’s HP in +a pinch, but may also cause confusion." +138,9,9,"A Poffin ingredient. If held by a +Pokémon, it restores the user’s HP in +a pinch, but may also cause confusion." +138,10,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates sweet food." +138,11,5,"Tenue, cette Baie restaure des PV en +cas de besoin, mais rend confus si +le Pokémon n’aime pas son goût." +138,11,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates the taste." +138,14,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates the taste." +138,15,1,"ポケモンに もたせると +ピンチのとき HPを かいふくする。 +きらいな あじだと こんらん する。" +138,15,3,"포켓몬에게 지니게 하면 +위급할 때 HP를 회복한다. +싫어하는 맛이면 혼란에 빠진다." +138,15,5,"Tenue, cette Baie restaure des PV en cas +de besoin, mais rend le Pokémon confus si +son goût lui déplaît." +138,15,6,"Als getragenes Item füllt die Beere die KP eines +Pokémon auf, doch ihr Aroma verwirrt jene, +die es nicht mögen." +138,15,7,Una baya muy rara en la región de Teselia. +138,15,8,"Se un Pokémon in difficoltà ha questa bacca, +recupera dei PS. Se al Pokémon non piace +il suo sapore, può causare confusione." +138,15,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but it will cause +confusion if the user hates the taste." +138,15,11,"ポケモンに 持たせると +ピンチのとき HPを 回復する。 +きらいな味だと 混乱する。" +139,5,9,"A hold item that +restores HP but +may confuse." +139,6,9,"A hold item that +restores HP but +may confuse." +139,7,9,"A hold item that restores HP but +may cause confusion when used." +139,8,9,"A Poffin ingredient. If held by a +Pokémon, it restores the user’s HP in +a pinch, but may also cause confusion." +139,9,9,"A Poffin ingredient. If held by a +Pokémon, it restores the user’s HP in +a pinch, but may also cause confusion." +139,10,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates bitter food." +139,11,5,"Tenue, cette Baie restaure des PV en +cas de besoin, mais rend confus si +le Pokémon n’aime pas son goût." +139,11,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates the taste." +139,14,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates the taste." +139,15,1,"ポケモンに もたせると +ピンチのとき HPを かいふくする。 +きらいな あじだと こんらん する。" +139,15,3,"포켓몬에게 지니게 하면 +위급할 때 HP를 회복한다. +싫어하는 맛이면 혼란에 빠진다." +139,15,5,"Tenue, cette Baie restaure des PV en cas +de besoin, mais rend le Pokémon confus si +son goût lui déplaît." +139,15,6,"Als getragenes Item füllt die Beere die KP eines +Pokémon auf, doch ihr Aroma verwirrt jene, +die es nicht mögen." +139,15,7,Una baya muy rara en la región de Teselia. +139,15,8,"Se un Pokémon in difficoltà ha questa bacca, +recupera dei PS. Se al Pokémon non piace +il suo sapore, può causare confusione." +139,15,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but it will cause +confusion if the user hates the taste." +139,15,11,"ポケモンに 持たせると +ピンチのとき HPを 回復する。 +きらいな味だと 混乱する。" +140,5,9,"A hold item that +restores HP but +may confuse." +140,6,9,"A hold item that +restores HP but +may confuse." +140,7,9,"A hold item that restores HP but +may cause confusion when used." +140,8,9,"A Poffin ingredient. If held by a +Pokémon, it restores the user’s HP in +a pinch, but may also cause confusion." +140,9,9,"A Poffin ingredient. If held by a +Pokémon, it restores the user’s HP in +a pinch, but may also cause confusion." +140,10,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but may cause +confusion if it hates sour food." +140,11,5,"Tenue, cette Baie restaure des PV en +cas de besoin, mais rend confus si +le Pokémon n’aime pas son goût." +140,11,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates the taste." +140,14,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but will cause +confusion if it hates the taste." +140,15,1,"ポケモンに もたせると +ピンチのとき HPを かいふくする。 +きらいな あじだと こんらん する。" +140,15,3,"포켓몬에게 지니게 하면 +위급할 때 HP를 회복한다. +싫어하는 맛이면 혼란에 빠진다." +140,15,5,"Tenue, cette Baie restaure des PV en cas +de besoin, mais rend le Pokémon confus si +son goût lui déplaît." +140,15,6,"Als getragenes Item füllt die Beere die KP eines +Pokémon auf, doch ihr Aroma verwirrt jene, +die es nicht mögen." +140,15,7,Una baya muy rara en la región de Teselia. +140,15,8,"Se un Pokémon in difficoltà ha questa bacca, +recupera dei PS. Se al Pokémon non piace +il suo sapore, può causare confusione." +140,15,9,"If held by a Pokémon, it restores the +user’s HP in a pinch, but it will cause +confusion if the user hates the taste." +140,15,11,"ポケモンに 持たせると +ピンチのとき HPを 回復する。 +きらいな味だと 混乱する。" +141,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow RAZZ." +141,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow RAZZ." +141,7,9,"Can be ground up into a powder as +an ingredient for medicine." +141,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Razz Plant." +141,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Razz Plant." +141,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +141,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +141,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +141,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +141,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +141,15,3,"하나지방에서는 매우 +희귀한 나무열매." +141,15,5,Une Baie très rare à Unys. +141,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +141,15,7,Una baya muy rara en la región de Teselia. +141,15,8,Bacca molto rara a Unima. +141,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +141,15,11,"イッシュ地方では とても +珍しい きのみ。" +142,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow BLUK." +142,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow BLUK." +142,7,9,"Can be ground up into a powder as +an ingredient for medicine." +142,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Bluk Plant." +142,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Bluk Plant." +142,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +142,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +142,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +142,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +142,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +142,15,3,"하나지방에서는 매우 +희귀한 나무열매." +142,15,5,Une Baie très rare à Unys. +142,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +142,15,7,Una baya muy rara en la región de Teselia. +142,15,8,Bacca molto rara a Unima. +142,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +142,15,11,"イッシュ地方では とても +珍しい きのみ。" +143,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow NANAB." +143,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow NANAB." +143,7,9,"Can be ground up into a powder as +an ingredient for medicine." +143,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Nanab Plant." +143,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Nanab Plant." +143,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +143,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +143,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +143,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +143,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +143,15,3,"하나지방에서는 매우 +희귀한 나무열매." +143,15,5,Une Baie très rare à Unys. +143,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +143,15,7,Una baya muy rara en la región de Teselia. +143,15,8,Bacca molto rara a Unima. +143,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +143,15,11,"イッシュ地方では とても +珍しい きのみ。" +144,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow WEPEAR." +144,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow WEPEAR." +144,7,9,"Can be ground up into a powder as +an ingredient for medicine." +144,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Wepear Plant." +144,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Wepear Plant." +144,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +144,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +144,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +144,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +144,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +144,15,3,"하나지방에서는 매우 +희귀한 나무열매." +144,15,5,Une Baie très rare à Unys. +144,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +144,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Fuego de un enemigo." +144,15,8,Bacca molto rara a Unima. +144,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +144,15,11,"イッシュ地方では とても +珍しい きのみ。" +145,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow PINAP." +145,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow PINAP." +145,7,9,"Can be ground up into a powder as +an ingredient for medicine." +145,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Pinap Plant." +145,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Pinap Plant." +145,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +145,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +145,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +145,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +145,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +145,15,3,"하나지방에서는 매우 +희귀한 나무열매." +145,15,5,Une Baie très rare à Unys. +145,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +145,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Agua de un enemigo." +145,15,8,Bacca molto rara a Unima. +145,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +145,15,11,"イッシュ地方では とても +珍しい きのみ。" +146,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow POMEG." +146,6,9,"Makes a POKéMON +friendly but lowers +base HP." +146,7,9,"Can be ground up into a powder as +an ingredient for medicine." +146,8,9,"A Poffin ingredient. Using it on a +Pokémon makes it more friendly, but +it also lowers its base HP." +146,9,9,"A Poffin ingredient. Using it on a +Pokémon makes it more friendly, but +it also lowers its base HP." +146,10,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base HP." +146,11,5,"Rend les Pokémon plus amicaux, mais +baisse leurs PV de base." +146,11,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base HP." +146,14,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base HP." +146,15,1,"ポケモンに あげると +とても なつき やすくなるが +HPの きそポイントは さがる。" +146,15,3,"포켓몬에게 주면 +매우 친밀해지기 쉬워지지만 +HP의 기초 포인트가 떨어진다." +146,15,5,"Une Baie qui rend les Pokémon plus amicaux, +mais baisse leurs PV de base." +146,15,6,"Isst ein Pokémon diese Beere, stärkt dies eure +Freundschaft, verringert aber seinen KP-Basiswert." +146,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Eléctrico de un enemigo." +146,15,8,"Usata su un Pokémon, lo rende più amichevole, +ma ne riduce i punti base dei PS." +146,15,9,"A Berry to be consumed by Pokémon. +Using it on a Pokémon makes it more +friendly but lowers its base HP." +146,15,11,"ポケモンに あげると +とても なつき やすくなるが +HPの 基礎ポイントは さがる。" +147,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow KELPSY." +147,6,9,"Makes a POKéMON +friendly but lowers +base ATTACK." +147,7,9,"Can be ground up into a powder as +an ingredient for medicine." +147,8,9,"A Poffin ingredient. Using it on a +Pokémon makes it more friendly, but +it also lowers its base Attack stat." +147,9,9,"A Poffin ingredient. Using it on a +Pokémon makes it more friendly, but +it also lowers its base Attack stat." +147,10,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Attack stat." +147,11,5,"Rend les Pokémon plus amicaux, mais +baisse leur stat Attaque de base." +147,11,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Attack stat." +147,14,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Attack stat." +147,15,1,"ポケモンに あげると +とても なつき やすくなるが +こうげきの きそポイントは さがる。" +147,15,3,"포켓몬에게 주면 +매우 친밀해지기 쉬워지지만 +공격의 기초 포인트가 떨어진다." +147,15,5,"Une Baie qui rend les Pokémon plus amicaux, +mais baisse leur Attaque de base." +147,15,6,"Isst ein Pokémon diese Beere, stärkt dies +eure Freundschaft, verringert aber seinen +Angriffs-Basiswert." +147,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Planta de un enemigo." +147,15,8,"Usata su un Pokémon, lo rende più amichevole, +ma ne diminuisce i punti base dell’Attacco." +147,15,9,"A Berry to be consumed by Pokémon. +Using it on a Pokémon makes it more +friendly but lowers its base Attack." +147,15,11,"ポケモンに あげると +とても なつき やすくなるが +攻撃の 基礎ポイントは さがる。" +148,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow QUALOT." +148,6,9,"Makes a POKéMON +friendly but lowers +base DEFENSE." +148,7,9,"Can be ground up into a powder as +an ingredient for medicine." +148,8,9,"A Poffin ingredient. Using it on a +Pokémon makes it more friendly, but +it also lowers its base Defense stat." +148,9,9,"A Poffin ingredient. Using it on a +Pokémon makes it more friendly, but +it also lowers its base Defense stat." +148,10,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Defense stat." +148,11,5,"Rend les Pokémon plus amicaux, mais +baisse leur stat Défense de base." +148,11,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Defense stat." +148,14,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Defense stat." +148,15,1,"ポケモンに あげると +とても なつき やすくなるが +ぼうぎょの きそポイントは さがる。" +148,15,3,"포켓몬에게 주면 +매우 친밀해지기 쉬워지지만 +방어의 기초 포인트가 떨어진다." +148,15,5,"Une Baie qui rend les Pokémon plus amicaux, +mais baisse leur Défense de base." +148,15,6,"Isst ein Pokémon diese Beere, stärkt dies +eure Freundschaft, verringert aber seinen +Verteidigungs-Basiswert." +148,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Hielo de un enemigo." +148,15,8,"Usata su un Pokémon, lo rende più amichevole, +ma ne diminuisce i punti base della Difesa." +148,15,9,"A Berry to be consumed by Pokémon. +Using it on a Pokémon makes it more +friendly but lowers its base Defense." +148,15,11,"ポケモンに あげると +とても なつき やすくなるが +防御の 基礎ポイントは さがる。" +149,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow HONDEW." +149,6,9,"Makes a POKéMON +friendly but lowers +base SP. ATK." +149,7,9,"Can be ground up into a powder as +an ingredient for medicine." +149,8,9,"A Poffin ingredient. Using it on a +Pokémon makes it more friendly, but +it also lowers its base Sp. Atk stat." +149,9,9,"A Poffin ingredient. Using it on a +Pokémon makes it more friendly, but +it also lowers its base Sp. Atk stat." +149,10,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Sp. Atk stat." +149,11,5,"Rend les Pokémon plus amicaux, mais +baisse leur stat Attaque Spéciale de +base." +149,11,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Sp. Atk stat." +149,14,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Sp. Atk stat." +149,15,1,"ポケモンに あげると +とても なつき やすくなるが +とくこうの きそポイントは さがる。" +149,15,3,"포켓몬에게 주면 +매우 친밀해지기 쉬워지지만 +특수공격의 기초 포인트가 떨어진다." +149,15,5,"Une Baie qui rend les Pokémon plus amicaux, +mais baisse leur Attaque Spéciale de base." +149,15,6,"Isst ein Pokémon diese Beere, stärkt dies +eure Freundschaft, verringert aber seinen +Spezial-Angriffs-Basiswert." +149,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Lucha de un enemigo." +149,15,8,"Usata su un Pokémon, lo rende più amichevole, +ma ne diminuisce i punti base dell’Attacco +Speciale." +149,15,9,"A Berry to be consumed by Pokémon. +Using it on a Pokémon makes it more +friendly but lowers its base Sp. Atk." +149,15,11,"ポケモンに あげると +とても なつき やすくなるが +特攻の 基礎ポイントは さがる。" +150,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow GREPA." +150,6,9,"Makes a POKéMON +friendly but lowers +base SP. DEF." +150,7,9,"Can be ground up into a powder as +an ingredient for medicine." +150,8,9,"A Poffin ingredient. Using it on a +Pokémon makes it more friendly, but +it also lowers its base Sp. Def stat." +150,9,9,"A Poffin ingredient. Using it on a +Pokémon makes it more friendly, but +it also lowers its base Sp. Def stat." +150,10,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Sp. Def stat." +150,11,5,"Rend les Pokémon plus amicaux, mais +baisse leur stat Défense Spéciale de +base." +150,11,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Sp. Def stat." +150,14,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Sp. Def stat." +150,15,1,"ポケモンに あげると +とても なつき やすくなるが +とくぼうの きそポイントは さがる。" +150,15,3,"포켓몬에게 주면 +매우 친밀해지기 쉬워지지만 +특수방어의 기초 포인트가 떨어진다." +150,15,5,"Une Baie qui rend les Pokémon plus amicaux, +mais baisse leur Défense Spéciale de base." +150,15,6,"Isst ein Pokémon diese Beere, stärkt dies +eure Freundschaft, verringert aber seinen +Spezial-Verteidigungs-Basiswert." +150,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Veneno de un enemigo." +150,15,8,"Usata su un Pokémon, lo rende più amichevole, +ma ne diminuisce i punti base della Difesa +Speciale." +150,15,9,"A Berry to be consumed by Pokémon. +Using it on a Pokémon makes it more +friendly but lowers its base Sp. Def." +150,15,11,"ポケモンに あげると +とても なつき やすくなるが +特防の 基礎ポイントは さがる。" +151,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow TAMATO." +151,6,9,"Makes a POKéMON +friendly but lowers +base SPEED." +151,7,9,"Can be ground up into a powder as +an ingredient for medicine." +151,8,9,"A Poffin ingredient. Using it on a +Pokémon makes it more friendly, but +it also lowers its base Speed stat." +151,9,9,"A Poffin ingredient. Using it on a +Pokémon makes it more friendly, but +it also lowers its base Speed stat." +151,10,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Speed stat." +151,11,5,"Rend les Pokémon plus amicaux, mais +baisse leur stat Vitesse de base." +151,11,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Speed stat." +151,14,9,"Using it on a Pokémon makes it more +friendly, but it also lowers its base +Speed stat." +151,15,1,"ポケモンに あげると +とても なつき やすくなるが +すばやさの きそポイントは さがる。" +151,15,3,"포켓몬에게 주면 +매우 친밀해지기 쉬워지지만 +스피드의 기초 포인트가 떨어진다." +151,15,5,"Une Baie qui rend les Pokémon plus amicaux, +mais baisse leur Vitesse de base." +151,15,6,"Isst ein Pokémon diese Beere, stärkt dies +eure Freundschaft, verringert aber seinen +Initiative-Basiswert." +151,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Tierra de un enemigo." +151,15,8,"Usata su un Pokémon, lo rende più amichevole, +ma ne diminuisce i punti base della Velocità." +151,15,9,"A Berry to be consumed by Pokémon. +Using it on a Pokémon makes it more +friendly but lowers its base Speed." +151,15,11,"ポケモンに あげると +とても なつき やすくなるが +素早さの 基礎ポイントは さがる。" +152,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow CORNN." +152,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow CORNN." +152,7,9,"Can be ground up into a powder as +an ingredient for medicine." +152,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Cornn Plant." +152,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Cornn Plant." +152,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +152,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +152,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +152,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +152,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +152,15,3,"하나지방에서는 매우 +희귀한 나무열매." +152,15,5,Une Baie très rare à Unys. +152,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +152,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Volador de un enemigo." +152,15,8,Bacca molto rara a Unima. +152,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +152,15,11,"イッシュ地方では とても +珍しい きのみ。" +153,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow MAGOST." +153,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow MAGOST." +153,7,9,"Can be ground up into a powder as +an ingredient for medicine." +153,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Magost Plant." +153,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Magost Plant." +153,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +153,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +153,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +153,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +153,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +153,15,3,"하나지방에서는 매우 +희귀한 나무열매." +153,15,5,Une Baie très rare à Unys. +153,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +153,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Psíquico de un enemigo." +153,15,8,Bacca molto rara a Unima. +153,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +153,15,11,"イッシュ地方では とても +珍しい きのみ。" +154,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow RABUTA." +154,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow RABUTA." +154,7,9,"Can be ground up into a powder as +an ingredient for medicine." +154,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Rabuta Plant." +154,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Rabuta Plant." +154,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +154,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +154,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +154,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +154,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +154,15,3,"하나지방에서는 매우 +희귀한 나무열매." +154,15,5,Une Baie très rare à Unys. +154,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +154,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Bicho de un enemigo." +154,15,8,Bacca molto rara a Unima. +154,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +154,15,11,"イッシュ地方では とても +珍しい きのみ。" +155,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow NOMEL." +155,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow NOMEL." +155,7,9,"Can be ground up into a powder as +an ingredient for medicine." +155,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Nomel Plant." +155,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Nomel Plant." +155,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +155,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +155,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +155,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +155,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +155,15,3,"하나지방에서는 매우 +희귀한 나무열매." +155,15,5,Une Baie très rare à Unys. +155,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +155,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Roca de un enemigo." +155,15,8,Bacca molto rara a Unima. +155,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +155,15,11,"イッシュ地方では とても +珍しい きのみ。" +156,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow SPELON." +156,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow SPELON." +156,7,9,"Can be ground up into a powder as +an ingredient for medicine." +156,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Spelon Plant." +156,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Spelon Plant." +156,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +156,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +156,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +156,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +156,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +156,15,3,"하나지방에서는 매우 +희귀한 나무열매." +156,15,5,Une Baie très rare à Unys. +156,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +156,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Fantasma de un enemigo." +156,15,8,Bacca molto rara a Unima. +156,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +156,15,11,"イッシュ地方では とても +珍しい きのみ。" +157,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow PAMTRE." +157,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow PAMTRE." +157,7,9,"Can be ground up into a powder as +an ingredient for medicine." +157,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Pamtre Plant." +157,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Pamtre Plant." +157,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +157,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +157,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +157,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +157,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +157,15,3,"하나지방에서는 매우 +희귀한 나무열매." +157,15,5,Une Baie très rare à Unys. +157,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +157,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Dragón de un enemigo." +157,15,8,Bacca molto rara a Unima. +157,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +157,15,11,"イッシュ地方では とても +珍しい きのみ。" +158,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow WATMEL." +158,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow WATMEL." +158,7,9,"Can be ground up into a powder as +an ingredient for medicine." +158,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Watmel Plant." +158,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Watmel Plant." +158,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +158,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +158,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +158,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +158,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +158,15,3,"하나지방에서는 매우 +희귀한 나무열매." +158,15,5,Une Baie très rare à Unys. +158,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +158,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Siniestro de un enemigo." +158,15,8,Bacca molto rara a Unima. +158,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +158,15,11,"イッシュ地方では とても +珍しい きのみ。" +159,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow DURIN." +159,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow DURIN." +159,7,9,"Can be ground up into a powder as +an ingredient for medicine." +159,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Durin Plant." +159,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Durin Plant." +159,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +159,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +159,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +159,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +159,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +159,15,3,"하나지방에서는 매우 +희귀한 나무열매." +159,15,5,Une Baie très rare à Unys. +159,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +159,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Acero de un enemigo." +159,15,8,Bacca molto rara a Unima. +159,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +159,15,11,"イッシュ地方では とても +珍しい きのみ。" +160,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow BELUE." +160,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow BELUE." +160,7,9,"Can be ground up into a powder as +an ingredient for medicine." +160,8,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Belue Plant." +160,9,9,"A Poffin ingredient. +Bury it in soft soil to grow a +Belue Plant." +160,10,9,"In the Sinnoh region, they like to make +sweets known as Poffins with this Berry +and feed them to their Pokémon." +160,11,5,"Baie très rare à Unys. +Les amateurs en donnent un bon prix." +160,11,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +160,14,9,"A Berry which is very rare in the +Unova region. +A maniac will buy it for a high price." +160,15,1,"イッシュちほうでは とても +めずらしい きのみ。" +160,15,3,"하나지방에서는 매우 +희귀한 나무열매." +160,15,5,Une Baie très rare à Unys. +160,15,6,"Eine Beerensorte, die in der Einall-Region +ganz besonders selten ist." +160,15,7,"Si la lleva un Pokémon, debilita un ataque de tipo +Normal de un enemigo." +160,15,8,Bacca molto rara a Unima. +160,15,9,"A Berry to be used in cooking. +This Berry is very rare and hard +to obtain in the Unova region." +160,15,11,"イッシュ地方では とても +珍しい きのみ。" +161,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Fire-type attack." +161,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Fire-type attack." +161,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Fire-type attack." +161,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Feu." +161,11,9,"Weakens a supereffective Fire-type +attack against the holding Pokémon." +161,14,9,"Weakens a supereffective Fire-type +attack against the holding Pokémon." +161,15,1,"ポケモンに もたせると +こうかばつぐんの ほのお わざを +うけたとき いりょくが よわまる。" +161,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 불꽃 기술을 +당했을 때 위력이 약해진다." +161,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Feu." +161,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Feuer." +161,15,7,"Si la lleva un Pokémon, le sube el Ataque en un +momento de apuro." +161,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Fuoco del nemico +viene indebolito." +161,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Fire-type attack." +161,15,11,"ポケモンに 持たせると +効果バツグンの ほのお技を +受けたとき 威力が 弱まる。" +162,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Water-type attack." +162,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Water-type attack." +162,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Water-type attack." +162,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Eau." +162,11,9,"Weakens a supereffective Water-type +attack against the holding Pokémon." +162,14,9,"Weakens a supereffective Water-type +attack against the holding Pokémon." +162,15,1,"ポケモンに もたせると +こうかばつぐんの みず わざを +うけたとき いりょくが よわまる。" +162,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 물 기술을 +당했을 때 위력이 약해진다." +162,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Eau." +162,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Wasser." +162,15,7,"Si la lleva un Pokémon, le sube la Defensa en un +momento de apuro." +162,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Acqua del nemico +viene indebolito." +162,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Water-type attack." +162,15,11,"ポケモンに 持たせると +効果バツグンの みず技を +受けたとき 威力が 弱まる。" +163,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Electric-type attack." +163,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Electric-type attack." +163,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Electric-type attack." +163,11,5,"Tenue, cette Baie affaiblit une +attaque ennemie super efficace +de type Électrik." +163,11,9,"Weakens a supereffective Electric-type +attack against the holding Pokémon." +163,14,9,"Weakens a supereffective Electric-type +attack against the holding Pokémon." +163,15,1,"ポケモンに もたせると +こうかばつぐんの でんき わざを +うけたとき いりょくが よわまる。" +163,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 전기 기술을 +당했을 때 위력이 약해진다." +163,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Électrik." +163,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Elektro." +163,15,7,"Si la lleva un Pokémon, le sube la Velocidad en +un momento de apuro." +163,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Elettro del nemico +viene indebolito." +163,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Electric-type attack." +163,15,11,"ポケモンに 持たせると +効果バツグンの でんき技を +受けたとき 威力が 弱まる。" +164,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Grass-type attack." +164,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Grass-type attack." +164,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Grass-type attack." +164,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Plante." +164,11,9,"Weakens a supereffective Grass-type +attack against the holding Pokémon." +164,14,9,"Weakens a supereffective Grass-type +attack against the holding Pokémon." +164,15,1,"ポケモンに もたせると +こうかばつぐんの くさ わざを +うけたとき いりょくが よわまる。" +164,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 풀 기술을 +당했을 때 위력이 약해진다." +164,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Plante." +164,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Pflanze." +164,15,7,"Si la lleva un Pokémon, le sube el Ataque +Especial en un momento de apuro." +164,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Erba del nemico +viene indebolito." +164,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Grass-type attack." +164,15,11,"ポケモンに 持たせると +効果バツグンの くさ技を +受けたとき 威力が 弱まる。" +165,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Ice-type attack." +165,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Ice-type attack." +165,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Ice-type attack." +165,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Glace." +165,11,9,"Weakens a supereffective Ice-type +attack against the holding Pokémon." +165,14,9,"Weakens a supereffective Ice-type +attack against the holding Pokémon." +165,15,1,"ポケモンに もたせると +こうかばつぐんの こおり わざを +うけたとき いりょくが よわまる。" +165,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 얼음 기술을 +당했을 때 위력이 약해진다." +165,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Glace." +165,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Eis." +165,15,7,"Si la lleva un Pokémon, le sube la Defensa +Especial en un momento de apuro." +165,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Ghiaccio del nemico +viene indebolito." +165,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Ice-type attack." +165,15,11,"ポケモンに 持たせると +効果バツグンの こおり技を +受けたとき 威力が 弱まる。" +166,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Fighting-type attack." +166,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Fighting-type attack." +166,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Fighting-type attack." +166,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Combat." +166,11,9,"Weakens a supereffective Fighting-type +attack against the holding Pokémon." +166,14,9,"Weakens a supereffective Fighting-type +attack against the holding Pokémon." +166,15,1,"ポケモンに もたせると +こうかばつぐんの かくとう わざを +うけたとき いりょくが よわまる。" +166,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 격투 기술을 +당했을 때 위력이 약해진다." +166,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Combat." +166,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Kampf." +166,15,7,"Si la lleva un Pokémon, aumenta la probabilidad +de dar un golpe crítico en un momento de apuro." +166,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Lotta del nemico +viene indebolito." +166,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Fighting-type attack." +166,15,11,"ポケモンに 持たせると +効果バツグンの かくとう技を +受けたとき 威力が 弱まる。" +167,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Poison-type attack." +167,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Poison-type attack." +167,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Poison-type attack." +167,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Poison." +167,11,9,"Weakens a supereffective Poison-type +attack against the holding Pokémon." +167,14,9,"Weakens a supereffective Poison-type +attack against the holding Pokémon." +167,15,1,"ポケモンに もたせると +こうかばつぐんの どく わざを +うけたとき いりょくが よわまる。" +167,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 독 기술을 +당했을 때 위력이 약해진다." +167,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Poison." +167,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Gift." +167,15,7,"Si la lleva un Pokémon, aumenta mucho una +característica en un momento de apuro." +167,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Veleno del nemico +viene indebolito." +167,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Poison-type attack." +167,15,11,"ポケモンに 持たせると +効果バツグンの どく技を +受けたとき 威力が 弱まる。" +168,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Ground-type attack." +168,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Ground-type attack." +168,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Ground-type attack." +168,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Sol." +168,11,9,"Weakens a supereffective Ground-type +attack against the holding Pokémon." +168,14,9,"Weakens a supereffective Ground-type +attack against the holding Pokémon." +168,15,1,"ポケモンに もたせると +こうかばつぐんの じめん わざを +うけたとき いりょくが よわまる。" +168,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 땅 기술을 +당했을 때 위력이 약해진다." +168,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Sol." +168,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Boden." +168,15,7,"Restaura los PS de un Pokémon si la lleva cuando +le alcanza un ataque supereficaz." +168,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Terra del nemico +viene indebolito." +168,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Ground-type attack." +168,15,11,"ポケモンに 持たせると +効果バツグンの じめん技を +受けたとき 威力が 弱まる。" +169,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Flying-type attack." +169,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Flying-type attack." +169,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Flying-type attack." +169,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Vol." +169,11,9,"Weakens a supereffective Flying-type +attack against the holding Pokémon." +169,14,9,"Weakens a supereffective Flying-type +attack against the holding Pokémon." +169,15,1,"ポケモンに もたせると +こうかばつぐんの ひこう わざを +うけたとき いりょくが よわまる。" +169,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 비행 기술을 +당했을 때 위력이 약해진다." +169,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Vol." +169,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Flug." +169,15,7,"Cuando la lleva un Pokémon, le sube la Precisión +de un movimiento en un momento de apuro." +169,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Volante del nemico +viene indebolito." +169,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Flying-type attack." +169,15,11,"ポケモンに 持たせると +効果バツグンの ひこう技を +受けたとき 威力が 弱まる。" +170,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Psychic-type attack." +170,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Psychic-type attack." +170,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Psychic-type attack." +170,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Psy." +170,11,9,"Weakens a supereffective Psychic-type +attack against the holding Pokémon." +170,14,9,"Weakens a supereffective Psychic-type +attack against the holding Pokémon." +170,15,1,"ポケモンに もたせると +こうかばつぐんの エスパー わざを +うけたとき いりょくが よわまる。" +170,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 에스퍼 기술을 +당했을 때 위력이 약해진다." +170,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Psy." +170,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Psycho." +170,15,7,"El Pokémon que la lleva puede actuar en primer +lugar una vez cuando se encuentra en un +momento de apuro." +170,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Psico del nemico +viene indebolito." +170,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Psychic-type attack." +170,15,11,"ポケモンに 持たせると +効果バツグンの エスパー技を +受けたとき 威力が 弱まる。" +171,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Bug-type attack." +171,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Bug-type attack." +171,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Bug-type attack." +171,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Insecte." +171,11,9,"Weakens a supereffective Bug-type +attack against the holding Pokémon." +171,14,9,"Weakens a supereffective Bug-type +attack against the holding Pokémon." +171,15,1,"ポケモンに もたせると +こうかばつぐんの むし わざを +うけたとき いりょくが よわまる。" +171,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 벌레 기술을 +당했을 때 위력이 약해진다." +171,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Insecte." +171,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Käfer." +171,15,7,"Si la lleva un Pokémon cuando otro lanza un +ataque físico, este último también recibe daño." +171,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Coleottero del nemico +viene indebolito." +171,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Bug-type attack." +171,15,11,"ポケモンに 持たせると +効果バツグンの むし技を +受けたとき 威力が 弱まる。" +172,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Rock-type attack." +172,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Rock-type attack." +172,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Rock-type attack." +172,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Roche." +172,11,9,"Weakens a supereffective Rock-type +attack against the holding Pokémon." +172,14,9,"Weakens a supereffective Rock-type +attack against the holding Pokémon." +172,15,1,"ポケモンに もたせると +こうかばつぐんの いわ わざを +うけたとき いりょくが よわまる。" +172,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 바위 기술을 +당했을 때 위력이 약해진다." +172,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Roche." +172,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Gestein." +172,15,7,"Si la lleva un Pokémon cuando otro lanza un +ataque especial, este último también recibe daño." +172,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Roccia del nemico +viene indebolito." +172,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Rock-type attack." +172,15,11,"ポケモンに 持たせると +効果バツグンの いわ技を +受けたとき 威力が 弱まる。" +173,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Ghost-type attack." +173,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Ghost-type attack." +173,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Ghost-type attack." +173,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Spectre." +173,11,9,"Weakens a supereffective Ghost-type +attack against the holding Pokémon." +173,14,9,"Weakens a supereffective Ghost-type +attack against the holding Pokémon." +173,15,1,"ポケモンに もたせると +こうかばつぐんの ゴースト わざを +うけたとき いりょくが よわまる。" +173,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 고스트 기술을 +당했을 때 위력이 약해진다." +173,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Spectre." +173,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Geist." +173,15,7,"Lanza un destello que baja la Precisión del +enemigo. Debe llevarlo un Pokémon." +173,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Spettro del nemico +viene indebolito." +173,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Ghost-type attack." +173,15,11,"ポケモンに 持たせると +効果バツグンの ゴースト技を +受けたとき 威力が 弱まる。" +174,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Dragon-type attack." +174,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Dragon-type attack." +174,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Dragon-type attack." +174,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Dragon." +174,11,9,"Weakens a supereffective Dragon-type +attack against the holding Pokémon." +174,14,9,"Weakens a supereffective Dragon-type +attack against the holding Pokémon." +174,15,1,"ポケモンに もたせると +こうかばつぐんの ドラゴン わざを +うけたとき いりょくが よわまる。" +174,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 드래곤 기술을 +당했을 때 위력이 약해진다." +174,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Dragon." +174,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Drache." +174,15,7,"Restaura cualquier característica reducida en +combate. Solo se puede usar una vez. Debe +llevarla un Pokémon." +174,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Drago del nemico +viene indebolito." +174,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Dragon-type attack." +174,15,11,"ポケモンに 持たせると +効果バツグンの ドラゴン技を +受けたとき 威力が 弱まる。" +175,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Dark-type attack." +175,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Dark-type attack." +175,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Dark-type attack." +175,11,5,"Tenue, cette Baie affaiblit une +attaque ennemie super efficace +de type Ténèbres." +175,11,9,"Weakens a supereffective Dark-type +attack against the holding Pokémon." +175,14,9,"Weakens a supereffective Dark-type +attack against the holding Pokémon." +175,15,1,"ポケモンに もたせると +こうかばつぐんの あく わざを +うけたとき いりょくが よわまる。" +175,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 악 기술을 +당했을 때 위력이 약해진다." +175,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Ténèbres." +175,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Unlicht." +175,15,7,"Sólido y pesado brazal. Sube más las +características al subir de nivel, pero +baja la Velocidad de quien lo lleva." +175,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Buio del nemico +viene indebolito." +175,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Dark-type attack." +175,15,11,"ポケモンに 持たせると +効果バツグンの あく技を +受けたとき 威力が 弱まる。" +176,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Steel-type attack." +176,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +supereffective Steel-type attack." +176,10,9,"If held by a Pokémon, it weakens a foe’s +supereffective Steel-type attack." +176,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie super efficace de type Acier." +176,11,9,"Weakens a supereffective Steel-type +attack against the holding Pokémon." +176,14,9,"Weakens a supereffective Steel-type +attack against the holding Pokémon." +176,15,1,"ポケモンに もたせると +こうかばつぐんの はがね わざを +うけたとき いりょくが よわまる。" +176,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 강철 기술을 +당했을 때 위력이 약해진다." +176,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Acier." +176,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Attacken des Angreifers +vom Typ Stahl." +176,15,7,"Al activar el dispositivo, todos los Pokémon de tu +equipo ganan Puntos de Experiencia tras los +combates, aunque no salgan a luchar." +176,15,8,"Se un Pokémon ha questa bacca, l’attacco +superefficace di tipo Acciaio del nemico +viene indebolito." +176,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Steel-type attack." +176,15,11,"ポケモンに 持たせると +効果バツグンの はがね技を +受けたとき 威力が 弱まる。" +177,8,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +Normal-type attack." +177,9,9,"A Poffin ingredient. If held by a +Pokémon, it weakens a foe’s +Normal-type attack." +177,10,9,"If held by a Pokémon, it weakens a foe’s +Normal-type attack." +177,11,5,"Tenue, cette Baie affaiblit une attaque +ennemie de type Normal." +177,11,9,"Weakens a Normal-type attack against +the Pokémon holding this berry." +177,14,9,"Weakens a Normal-type attack against +the Pokémon holding this berry." +177,15,1,"ポケモンに もたせると +ノーマル わざを うけたとき +いりょくが よわまる。" +177,15,3,"포켓몬에게 지니게 하면 +노말 기술을 당했을 때 +위력이 약해진다." +177,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +de type Normal." +177,15,6,"Als getragenes Item schwächt diese Beere +Attacken des Angreifers vom Typ Normal." +177,15,7,"Garra ligera y afilada que permite que el Pokémon +que la lleve ataque a veces el primero." +177,15,8,"Se un Pokémon ha questa bacca, l’attacco +di tipo Normale del nemico viene indebolito." +177,15,9,"If held by a Pokémon, this Berry +will lessen the damage taken +from one Normal-type attack." +177,15,11,"ポケモンに 持たせると +ノーマル技を 受けたとき +威力が 弱まる。" +178,5,9,"A hold item that +raises ATTACK in +a pinch." +178,6,9,"A hold item that +raises ATTACK in +a pinch." +178,7,9,"When held by a POKéMON, it raises +the ATTACK stat in a pinch." +178,8,9,"A Poffin ingredient. +If held by a Pokémon, it raises its +Attack stat in a pinch." +178,9,9,"A Poffin ingredient. +If held by a Pokémon, it raises its +Attack stat in a pinch." +178,10,9,"If held by a Pokémon, it raises its +Attack stat in a pinch." +178,11,5,"Tenue, cette Baie monte l’Attaque +en cas de besoin." +178,11,9,"If held by a Pokémon, it raises its +Attack stat in a pinch." +178,14,9,"If held by a Pokémon, it raises its +Attack stat in a pinch." +178,15,1,"ポケモンに もたせると +ピンチのとき じぶんの +こうげきが あがる。" +178,15,3,"포켓몬에게 지니게 하면 +위급할 때 자신의 +공격이 올라간다." +178,15,5,"Tenue, cette Baie augmente l’Attaque en cas +de besoin." +178,15,6,"Als getragenes Item erhöht diese Beere den +Angriffs-Wert eines Pokémon, sobald es in +einer Notlage steckt." +178,15,7,"Una campana con un tañido calmante que +reconforta al Pokémon que la lleva y lo vuelve +más amistoso." +178,15,8,"Se il Pokémon che ha questa bacca si trova +in difficoltà, il suo Attacco aumenta." +178,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, its Attack +stat will increase when it’s in a pinch." +178,15,11,"ポケモンに 持たせると +ピンチのとき 自分の +攻撃が あがる。" +179,5,9,"A hold item that +raises DEFENSE in +a pinch." +179,6,9,"A hold item that +raises DEFENSE in +a pinch." +179,7,9,"When held by a POKéMON, it raises +the DEFENSE stat in a pinch." +179,8,9,"A Poffin ingredient. +If held by a Pokémon, it raises its +Defense stat in a pinch." +179,9,9,"A Poffin ingredient. +If held by a Pokémon, it raises its +Defense stat in a pinch." +179,10,9,"If held by a Pokémon, it raises its +Defense stat in a pinch." +179,11,5,"Tenue, cette Baie monte la Défense +en cas de besoin." +179,11,9,"If held by a Pokémon, it raises its +Defense stat in a pinch." +179,14,9,"If held by a Pokémon, it raises its +Defense stat in a pinch." +179,15,1,"ポケモンに もたせると +ピンチのとき じぶんの +ぼうぎょが あがる。" +179,15,3,"포켓몬에게 지니게 하면 +위급할 때 자신의 +방어가 올라간다." +179,15,5,"Tenue, cette Baie augmente la Défense en cas +de besoin." +179,15,6,"Als getragenes Item erhöht diese Beere den +Verteidigungs-Wert eines Pokémon, sobald es in +einer Notlage steckt." +179,15,7,"El Pokémon que la lleva se libera del +enamoramiento. Solo puede usarse una vez." +179,15,8,"Se il Pokémon che ha questa bacca si trova +in difficoltà, la sua Difesa aumenta." +179,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, its Defense +stat will increase when it’s in a pinch." +179,15,11,"ポケモンに 持たせると +ピンチのとき 自分の +防御が あがる。" +180,5,9,"A hold item that +raises SPEED in +a pinch." +180,6,9,"A hold item that +raises SPEED in +a pinch." +180,7,9,"When held by a POKéMON, it raises +the SPEED stat in a pinch." +180,8,9,"A Poffin ingredient. +If held by a Pokémon, it raises its +Speed stat in a pinch." +180,9,9,"A Poffin ingredient. +If held by a Pokémon, it raises its +Speed stat in a pinch." +180,10,9,"If held by a Pokémon, it raises its +Speed stat in a pinch." +180,11,5,"Tenue, cette Baie monte la Vitesse +en cas de besoin." +180,11,9,"If held by a Pokémon, it raises its +Speed stat in a pinch." +180,14,9,"If held by a Pokémon, it raises its +Speed stat in a pinch." +180,15,1,"ポケモンに もたせると +ピンチのとき じぶんの +すばやさが あがる。" +180,15,3,"포켓몬에게 지니게 하면 +위급할 때 자신의 +스피드가 올라간다." +180,15,5,"Tenue, cette Baie augmente la Vitesse en cas +de besoin." +180,15,6,"Als getragenes Item erhöht diese Beere den +Initiative-Wert eines Pokémon, sobald es in +einer Notlage steckt." +180,15,7,"Aumenta el Ataque, pero solo permite usar un +movimiento. Debe llevarla un Pokémon." +180,15,8,"Se il Pokémon che ha questa bacca si trova +in difficoltà, la sua Velocità aumenta." +180,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, its Speed +stat will increase when it’s in a pinch." +180,15,11,"ポケモンに 持たせると +ピンチのとき 自分の +素早さが あがる。" +181,5,9,"A hold item that +raises SP. ATK in +a pinch." +181,6,9,"A hold item that +raises SP. ATK in +a pinch." +181,7,9,"When held by a POKéMON, it raises +the SP. ATK stat in a pinch." +181,8,9,"A Poffin ingredient. +If held by a Pokémon, it raises its +Sp. Atk stat in a pinch." +181,9,9,"A Poffin ingredient. +If held by a Pokémon, it raises its +Sp. Atk stat in a pinch." +181,10,9,"If held by a Pokémon, it raises its +Sp. Atk stat in a pinch." +181,11,5,"Tenue, cette Baie monte l’Atq. Spé. +en cas de besoin." +181,11,9,"If held by a Pokémon, it raises its +Sp. Atk stat in a pinch." +181,14,9,"If held by a Pokémon, it raises its +Sp. Atk stat in a pinch." +181,15,1,"ポケモンに もたせると +ピンチのとき じぶんの +とくこうが あがる。" +181,15,3,"포켓몬에게 지니게 하면 +위급할 때 자신의 +특수공격이 올라간다." +181,15,5,"Tenue, cette Baie augmente l’Attaque Spéciale +en cas de besoin." +181,15,6,"Als getragenes Item erhöht diese Beere den +Spezial-Angriffs-Wert eines Pokémon, +sobald es in einer Notlage steckt." +181,15,7,"El Pokémon que la lleva puede hacer retroceder +al Pokémon al que le inflige daño." +181,15,8,"Se il Pokémon che ha questa bacca si trova +in difficoltà, il suo Attacco Speciale aumenta." +181,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, its Sp. Atk +stat will increase when it’s in a pinch." +181,15,11,"ポケモンに 持たせると +ピンチのとき 自分の +特攻が あがる。" +182,5,9,"A hold item that +raises SP. DEF in +a pinch." +182,6,9,"A hold item that +raises SP. DEF in +a pinch." +182,7,9,"When held by a POKéMON, it raises +the SP. DEF stat in a pinch." +182,8,9,"A Poffin ingredient. +If held by a Pokémon, it raises its +Sp. Def stat in a pinch." +182,9,9,"A Poffin ingredient. +If held by a Pokémon, it raises its +Sp. Def stat in a pinch." +182,10,9,"If held by a Pokémon, it raises its +Sp. Def stat in a pinch." +182,11,5,"Tenue, cette Baie monte la Déf. Spé. +en cas de besoin." +182,11,9,"If held by a Pokémon, it raises its +Sp. Def stat in a pinch." +182,14,9,"If held by a Pokémon, it raises its +Sp. Def stat in a pinch." +182,15,1,"ポケモンに もたせると +ピンチのとき じぶんの +とくぼうが あがる。" +182,15,3,"포켓몬에게 지니게 하면 +위급할 때 자신의 +특수방어가 올라간다." +182,15,5,"Tenue, cette Baie augmente la Défense Spéciale +en cas de besoin." +182,15,6,"Als getragenes Item erhöht diese Beere den +Spezial-Verteidigungs-Wert eines Pokémon, +sobald es in einer Notlage steckt." +182,15,7,"Polvo de brillo argénteo que fortalece los ataques +de tipo Bicho. Debe llevarlo un Pokémon." +182,15,8,"Se il Pokémon che ha questa bacca si trova +in difficoltà, la sua Difesa Speciale aumenta." +182,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, its Sp. Def +stat will increase when it’s in a pinch." +182,15,11,"ポケモンに 持たせると +ピンチのとき 自分の +特防が あがる。" +183,5,9,"A hold item that +ups the critical- +hit rate in a pinch." +183,6,9,"A hold item that +ups the critical- +hit rate in a pinch." +183,7,9,"When held by a POKéMON, it raises +the critical-hit ratio in a pinch." +183,8,9,"A Poffin ingredient. +If held by a Pokémon, it raises its +critical-hit ratio in a pinch." +183,9,9,"A Poffin ingredient. +If held by a Pokémon, it raises its +critical-hit ratio in a pinch." +183,10,9,"If held by a Pokémon, it raises its +critical-hit ratio in a pinch." +183,11,5,"Tenue, cette Baie monte le taux de +critiques en cas de besoin." +183,11,9,"If held by a Pokémon, it raises its +critical-hit ratio in a pinch." +183,14,9,"If held by a Pokémon, it raises its +critical-hit ratio in a pinch." +183,15,1,"ポケモンに もたせると +ピンチのとき こうげきが +きゅうしょに あたりやすくなる。" +183,15,3,"포켓몬에게 지니게 하면 +위급할 때 공격이 +급소를 맞히기 쉬워진다." +183,15,5,"Tenue, cette Baie augmente le taux de critiques +en cas de besoin." +183,15,6,"Als getragenes Item erhöht diese Beere die +Volltrefferquote eines Pokémon, sobald es in +einer Notlage steckt." +183,15,7,"Si el Pokémon que la lleva lucha en un combate, +duplica las ganancias." +183,15,8,"Se il Pokémon che ha questa bacca si trova +in difficoltà, la probabilità di sferrare brutti colpi +aumenta." +183,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, its critical-hit +ratio will increase when it’s in a pinch." +183,15,11,"ポケモンに 持たせると +ピンチのとき 攻撃が +急所に 当たりやすくなる。" +184,5,9,"A hold item that +sharply boosts a +stat in a pinch." +184,6,9,"A hold item that +sharply boosts a +stat in a pinch." +184,7,9,"When held by a POKéMON, it sharply +raises one stat in a pinch." +184,8,9,"A Poffin ingredient. +If held by a Pokémon, it sharply raises +one of its stats in a pinch." +184,9,9,"A Poffin ingredient. +If held by a Pokémon, it sharply raises +one of its stats in a pinch." +184,10,9,"If held by a Pokémon, it sharply raises +one of its stats in a pinch." +184,11,5,"Tenue, cette Baie monte beaucoup une +des stats en cas de besoin." +184,11,9,"If held by a Pokémon, it sharply raises +one of its stats in a pinch." +184,14,9,"If held by a Pokémon, it sharply raises +one of its stats in a pinch." +184,15,1,"ポケモンに もたせると +ピンチのとき どれか 1つの +のうりょくが ぐーんと あがる。" +184,15,3,"포켓몬에게 지니게 하면 +위급할 때 능력 중의 하나가 +크게 올라간다." +184,15,5,"Tenue, cette Baie augmente beaucoup une +des stats en cas de besoin." +184,15,6,"Als getragenes Item erhöht diese Beere einen +Statuswert des Pokémon stark, sobald es in +einer Notlage steckt." +184,15,7,"Si lo lleva el primer Pokémon del equipo, se +reduce la probabilidad de que se acerquen +Pokémon salvajes." +184,15,8,"Se il Pokémon che ha questa bacca si trova +in difficoltà, una delle sue statistiche aumenta +di molto." +184,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, one of its stats +will sharply increase when it’s in a pinch." +184,15,11,"ポケモンに 持たせると +ピンチのとき どれか 1つの +能力が ぐーんと あがる。" +185,5,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow a mystery." +185,6,9,"POKéBLOCK ingredient. +Plant in loamy soil +to grow a mystery." +185,7,9,"Can be ground up into a powder as +an ingredient for medicine." +185,8,9,"A Poffin ingredient. If held by a +Pokémon, it restores its HP if it is +hit by a foe’s supereffective attack." +185,9,9,"A Poffin ingredient. If held by a +Pokémon, it restores its HP if it is +hit by a foe’s supereffective attack." +185,10,9,"If held by a Pokémon, it restores +its HP if it is hit by a foe’s +supereffective attack." +185,11,5,"Tenue, cette Baie restaure les PV +du Pokémon s’il subit une attaque +super efficace." +185,11,9,"If held by a Pokémon, it restores +its HP if it is hit by any +supereffective attack." +185,14,9,"If held by a Pokémon, it restores +its HP if it is hit by any +supereffective attack." +185,15,1,"ポケモンに もたせると +こうかばつぐんの わざを +うけたとき HPを かいふくする。" +185,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 공격을 +받았을 때 HP를 회복한다." +185,15,5,"Tenue, cette Baie restaure les PV du Pokémon +s’il subit une attaque super efficace." +185,15,6,"Als getragenes Item füllt diese Beere die KP +eines Pokémon auf, wenn es von sehr effektiven +Attacken getroffen wird." +185,15,7,"Un orbe fantástico que debe llevar Latios o Latias. +Sube su Ataque Especial y su Defensa Especial." +185,15,8,"Se il Pokémon che ha questa bacca è colpito da +un attacco superefficace, i suoi PS vengono +ripristinati." +185,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, being hit by a +supereffective attack will restore its HP." +185,15,11,"ポケモンに 持たせると +効果バツグンの 技を +受けたとき HPを 回復する。" +186,8,9,"A Poffin ingredient. If held by a +Pokémon, it raises the accuracy of a +move just once in a pinch." +186,9,9,"A Poffin ingredient. If held by a +Pokémon, it raises the accuracy of a +move just once in a pinch." +186,10,9,"If held by a Pokémon, it raises the +accuracy of a move just once in a pinch." +186,11,5,"Tenue, cette Baie augmente une fois +la Précision d’une capacité en cas de +besoin." +186,11,9,"If held by a Pokémon, it raises the +accuracy of a move just once in a pinch." +186,14,9,"If held by a Pokémon, it raises the +accuracy of a move just once in a pinch." +186,15,1,"ポケモンに もたせると +ピンチのとき いちどだけ +わざの めいちゅうりつが あがる。" +186,15,3,"포켓몬에게 지니게 하면 +위급할 때 한 번만 +기술의 명중률이 올라간다." +186,15,5,"Tenue, cette Baie augmente une fois la Précision +d’une capacité en cas de besoin." +186,15,6,"Als getragenes Item erhöht diese Beere die +Genauigkeit eines Pokémon, sobald es in +einer Notlage steckt." +186,15,7,"Tiene el brillo afilado de la plata y debe llevarlo +Clamperl. Sube el Ataque Especial." +186,15,8,"Se il Pokémon che ha questa bacca si trova +in difficoltà, la precisione della sua +mossa successiva aumenta." +186,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, its accuracy will +increase just once when it’s in a pinch." +186,15,11,"ポケモンに 持たせると +ピンチのとき 1度だけ +技の 命中率が あがる。" +187,8,9,"A Poffin ingredient. If held by a +Pokémon, it gets to move first just +once in a pinch." +187,9,9,"A Poffin ingredient. If held by a +Pokémon, it gets to move first just +once in a pinch." +187,10,9,"If held by a Pokémon, it gets to move +first just once in a pinch." +187,11,5,"Tenue, cette Baie permet d’attaquer +en premier une fois en cas de besoin." +187,11,9,"If held by a Pokémon, it gets to move +first just once in a pinch." +187,14,9,"If held by a Pokémon, it gets to move +first just once in a pinch." +187,15,1,"ポケモンに もたせると +ピンチのとき いちどだけ +こうどうが はやくなる。" +187,15,3,"포켓몬에게 지니게 하면 +위급할 때 한 번만 +행동이 빨라진다." +187,15,5,"Tenue, cette Baie permet d’attaquer en premier +une fois en cas de besoin." +187,15,6,"Als getragenes Item ermöglicht diese Beere dem +Träger in einer Notlage den Erstschlag." +187,15,7,"Tiene un débil brillo rosado y debe llevarla +Clamperl. Sube la Defensa Especial." +187,15,8,"Se il Pokémon che ha questa bacca si trova +in difficoltà, sferra la sua mossa per primo. +Funziona una sola volta." +187,15,9,"A Berry to be consumed by Pokémon. +If a Pokémon holds one, it will be able to +move first just once when it’s in a pinch." +187,15,11,"ポケモンに 持たせると +ピンチのとき 1度だけ +行動が 早くなる。" +188,8,9,"A Poffin ingredient. If held by a +Pokémon, and if a foe’s physical attack +lands, the foe also takes damage." +188,9,9,"A Poffin ingredient. If held by a +Pokémon, and if a foe’s physical attack +lands, the foe also takes damage." +188,10,9,"If held by a Pokémon and a foe’s +physical attack lands, the foe also +takes damage." +188,11,5,"Tenue, cette Baie inflige des dégâts +à l’ennemi s’il utilise une attaque +physique qui atteint son but." +188,11,9,"If held by a Pokémon and a physical +attack lands, the attacker also +takes damage." +188,14,9,"If held by a Pokémon and a physical +attack lands, the attacker also +takes damage." +188,15,1,"ポケモンに もたせると +ぶつりわざを うけたとき +あいてにも ダメージを あたえる。" +188,15,3,"포켓몬에게 지니게 하면 +물리 기술을 당했을 때 +상대에게도 데미지를 준다." +188,15,5,"Tenue, cette Baie inflige des dégâts à +l’attaquant s’il utilise une attaque physique +qui atteint son but." +188,15,6,"Als getragenes Item bewirkt diese Beere +Schaden bei jenen, die den Träger mit einer +physischen Attacke treffen." +188,15,7,"Debe llevarla un Pokémon. Permite huir siempre +de combates contra Pokémon salvajes." +188,15,8,"Se un Pokémon ha questa bacca, chi attacca +subirà danni se la sua mossa fisica va a segno." +188,15,9,"A Berry to be consumed by Pokémon. +If a physical attack hits the Pokémon +holding it, the attacker will also be hurt." +188,15,11,"ポケモンに 持たせると +物理技を 受けたとき +相手にも ダメージを あたえる。" +189,8,9,"A Poffin ingredient. If held by a +Pokémon, and if a foe’s special attack +lands, the foe also takes damage." +189,9,9,"A Poffin ingredient. If held by a +Pokémon, and if a foe’s special attack +lands, the foe also takes damage." +189,10,9,"If held by a Pokémon and a foe’s +special attack lands, the foe also +takes damage." +189,11,5,"Tenue, cette Baie inflige des dégâts +à l’ennemi s’il utilise une attaque +spéciale qui atteint son but." +189,11,9,"If held by a Pokémon and a special +attack lands, the attacker also +takes damage." +189,14,9,"If held by a Pokémon and a special +attack lands, the attacker also +takes damage." +189,15,1,"ポケモンに もたせると +とくしゅわざを うけたとき +あいてにも ダメージを あたえる。" +189,15,3,"포켓몬에게 지니게 하면 +특수 기술을 당했을 때 +상대에게도 데미지를 준다." +189,15,5,"Tenue, cette Baie inflige des dégâts à +l’attaquant s’il utilise une attaque spéciale +qui atteint son but." +189,15,6,"Als getragenes Item bewirkt diese Beere +Schaden bei jenen, die den Träger mit einer +Spezial-Attacke treffen." +189,15,7,"El Pokémon que lleva esta piedra mágica no +evoluciona." +189,15,8,"Se un Pokémon ha questa bacca, chi attacca +subirà danni se la sua mossa speciale va a segno." +189,15,9,"A Berry to be consumed by Pokémon. +If a special attack hits the Pokémon +holding it, the attacker will also be hurt." +189,15,11,"ポケモンに 持たせると +特殊技を 受けたとき +相手にも ダメージを あたえる。" +190,5,9,"A hold item that +casts a glare to +reduce accuracy." +190,6,9,"A hold item that +casts a glare to +reduce accuracy." +190,7,9,"An item to be held by a POKéMON. +It casts a tricky glare that lowers +the opponent’s accuracy." +190,8,9,"An item to be held by a Pokémon. +It casts a tricky glare that lowers +the opponent’s accuracy." +190,9,9,"An item to be held by a Pokémon. +It casts a tricky glare that lowers +the opponent’s accuracy." +190,10,9,"An item to be held by a Pokémon. +It casts a tricky glare that lowers +the opponent’s accuracy." +190,11,5,"Objet à tenir qui intimide et baisse +la Précision de l’ennemi." +190,11,9,"An item to be held by a Pokémon. +It casts a tricky glare that lowers +the opponent’s accuracy." +190,14,9,"An item to be held by a Pokémon. +It casts a tricky glare that lowers +the opponent’s accuracy." +190,15,1,"キラキラ ひかるこな。 もたせると +ひかりが あいてを まどわして +わざが めいちゅう しにくくなる。" +190,15,3,"반짝반짝 빛나는 가루. 지니게 하면 +빛이 상대를 혼란시켜 +기술이 명중되기 어려워진다." +190,15,5,"Objet à tenir. Intimide et baisse la Précision +de l’ennemi." +190,15,6,"Ein Item, das einem Pokémon zum Tragen +gegeben werden kann. Es senkt die Genauigkeit +des Gegners." +190,15,7,"El Pokémon que la lleva puede resistir un golpe +que potencialmente lo dejaría K.O. y se queda +con 1 PS." +190,15,8,"Strumento da dare a un Pokémon. +Emette un bagliore insidioso che riduce +la precisione del nemico." +190,15,9,"An item to be held by a Pokémon. +It casts a tricky glare that lowers +the opposing Pokémon’s accuracy." +190,15,11,"キラキラ 光る粉。 持たせると +光が 相手を 惑わして +技が 命中しにくくなる。" +191,5,9,"A hold item that +restores any +lowered stat." +191,6,9,"A hold item that +restores any +lowered stat." +191,7,9,"An item to be held by a POKéMON. +It restores any lowered stat in +battle. It can be used only once." +191,8,9,"An item to be held by a Pokémon. +It restores any lowered stat in +battle. It can be used only once." +191,9,9,"An item to be held by a Pokémon. +It restores any lowered stat in +battle. It can be used only once." +191,10,9,"An item to be held by a Pokémon. +It restores any lowered stat in +battle. It can be used only once." +191,11,5,"Objet à tenir qui restaure les stats +baissées. Ne peut être utilisé qu’une +fois." +191,11,9,"An item to be held by a Pokémon. +It restores any lowered stat in +battle. It can be used only once." +191,14,9,"An item to be held by a Pokémon. +It restores any lowered stat in +battle. It can be used only once." +191,15,1,"もたせた ポケモンの のうりょくが +さがったとき いちどだけ もとの +じょうたいに もどす。" +191,15,3,"지니게 한 포켓몬의 능력이 +떨어졌을 때 한 번만 원래 +상태로 돌아온다." +191,15,5,"Objet à tenir. Restaure les stats qui ont subi une +baisse. Ne peut être utilisé qu’une fois." +191,15,6,"Ein Item, das einem Pokémon zum Tragen +gegeben werden kann. Es hebt einmalig jede +negative Statusveränderung auf." +191,15,7,"Es un huevo lleno de felicidad que te hace ganar +Puntos de Experiencia extra en combate. Debe +llevarlo un Pokémon." +191,15,8,"Strumento da dare a un Pokémon. +Ripristina le statistiche ridotte in lotta. +Si può usare una sola volta." +191,15,9,"An item to be held by a Pokémon. +It will restore any lowered stat in +battle. It can be used only once." +191,15,11,"持たせた ポケモンの 能力が +さがったとき 1度だけ もとの +状態に 戻す。" +192,5,9,"A hold item that +promotes growth, +but reduces SPEED." +192,6,9,"A hold item that +promotes growth, +but reduces SPEED." +192,7,9,"An item to be held by a POKéMON. +It promotes strong growth but +lowers SPEED while it is held." +192,8,9,"An item to be held by a Pokémon. It is +a stiff and heavy brace that promotes +strong growth but lowers Speed." +192,9,9,"An item to be held by a Pokémon. It is +a stiff and heavy brace that promotes +strong growth but lowers Speed." +192,10,9,"An item to be held by a Pokémon. It is +a stiff and heavy brace that promotes +strong growth but lowers Speed." +192,11,5,"Objet à tenir. C’est un bracelet dur +et lourd qui rend le porteur plus fort, +mais baisse sa Vitesse." +192,11,9,"An item to be held by a Pokémon. It is +a stiff and heavy brace that promotes +strong growth but lowers Speed." +192,14,9,"An item to be held by a Pokémon. It is +a stiff and heavy brace that promotes +strong growth but lowers Speed." +192,15,1,"かたくて おもい ギプス。 +もたせると すばやさは さがるが +ふつうより つよく そだちやすい。" +192,15,3,"단단하고 무거운 깁스. +지니게 하면 스피드는 떨어지지만 +여느 때보다 강하게 키우기 쉽다." +192,15,5,"Objet à tenir. Un bracelet dur et lourd qui rend +le porteur plus fort, mais baisse sa Vitesse." +192,15,6,"Ein Item, das ein Pokémon tragen kann. +Der Initiative-Wert sinkt zwar, aber es wird +dafür umso stärker." +192,15,7,"Su lente aumenta la probabilidad que tiene el +Pokémon que lo lleva de conseguir un golpe +crítico." +192,15,8,"Strumento da dare a un Pokémon. +Attrezzo pesante che riduce la Velocità ma aiuta +la crescita delle statistiche." +192,15,9,"An item to be held by a Pokémon. +This stiff, heavy brace helps Pokémon +grow strong but cuts Speed in battle." +192,15,11,"硬くて 重い ギプス。 +持たせると 素早さは さがるが +ふつうより 強く 育ちやすい。" +193,5,9,"A hold item that +gets EXP. points +from battles." +193,6,9,"A hold item that +gets EXP. points +from battles." +193,7,9,"An item to be held by a POKéMON. +The holder gets a share of EXP. +points without having to battle." +193,8,9,"An item to be held by a Pokémon. +The holder gets a share of a battle’s +Exp. Points without battling." +193,9,9,"An item to be held by a Pokémon. +The holder gets a share of a battle’s +Exp. Points without battling." +193,10,9,"An item to be held by a Pokémon. +The holder gets a share of a battle’s +Exp. Points without battling." +193,11,5,"Objet à tenir. Le porteur reçoit une +partie des points Exp. du combat sans +avoir à combattre." +193,11,9,"An item to be held by a Pokémon. +The holder gets a share of a battle’s +Exp. Points without battling." +193,14,9,"An item to be held by a Pokémon. +The holder gets a share of a battle’s +Exp. Points without battling." +193,15,1,"スイッチを いれると +てもちの ポケモン すべてが +けいけんちを もらえる そうち。" +193,15,3,"스위치를 켜면 +지닌 포켓몬 모두가 +경험치를 받을 수 있는 장치." +193,15,5,"Objet à activer. Permet de faire gagner des +Points Exp. à tous les Pokémon de l’équipe, +même à ceux qui n’ont pas participé au combat." +193,15,6,"Solange der EP-Teiler angeschaltet ist, erhält +jedes Team-Pokémon nach einem Sieg +Erfahrungspunkte." +193,15,7,"Película metálica que fortalece los ataques de +tipo Acero. Debe llevarlo un Pokémon." +193,15,8,"Se attivato, tutti i Pokémon della squadra +ricevono Punti Esperienza dalla lotta anche +se non vi hanno partecipato." +193,15,9,"Turning on this special device will +allow all the Pokémon on your team +to receive Exp. Points from battles." +193,15,11,"スイッチを いれると +手持ちの ポケモン すべてが +経験値を もらえる 装置。" +194,5,9,"A hold item that +occasionally allows +the first strike." +194,6,9,"A hold item that +occasionally allows +the first strike." +194,7,9,"An item to be held by a POKéMON. +A light and sharp claw. The holder +may be able to strike first." +194,8,9,"An item to be held by a Pokémon. +A light, sharp claw that lets the +bearer move first occasionally." +194,9,9,"An item to be held by a Pokémon. +A light, sharp claw that lets the +bearer move first occasionally." +194,10,9,"An item to be held by a Pokémon. +A light, sharp claw that lets the +bearer move first occasionally." +194,11,5,"Objet à tenir. Griffe légère mais +tranchante qui permet parfois de +frapper le premier." +194,11,9,"An item to be held by a Pokémon. +A light, sharp claw that lets the +bearer move first occasionally." +194,14,9,"An item to be held by a Pokémon. +A light, sharp claw that lets the +bearer move first occasionally." +194,15,1,"かるくて するどい ツメ。 +もたせると あいてより さきに +こうどう できることが ある。" +194,15,3,"가볍고 날카로운 손톱. +지니게 하면 상대보다 먼저 +행동할 수도 있다." +194,15,5,"Objet à tenir. Une griffe légère mais tranchante +qui permet parfois de frapper le premier." +194,15,6,"Ein Item, das einem Pokémon zum Tragen +gegeben werden kann. Es hebt gelegentlich +die Erstschlagquote." +194,15,7,"Restaura gradualmente los PS del Pokémon que +lo lleva durante el combate." +194,15,8,"Strumento da dare a un Pokémon. +Leggero e affilato, ogni tanto permette di fare +la prima mossa." +194,15,9,"An item to be held by a Pokémon. +This light, sharp claw lets the +bearer move first occasionally." +194,15,11,"軽くて 鋭い ツメ。 +持たせると 相手より 先に +行動できることが ある。" +195,5,9,"A hold item that +calms spirits and +fosters friendship." +195,6,9,"A hold item that +calms spirits and +fosters friendship." +195,7,9,"An item to be held by a POKéMON. +A bell with a comforting chime that +makes the holder calm and friendly." +195,8,9,"An item to be held by a Pokémon. It is +a bell with a comforting chime that +calms the holder and makes it friendly." +195,9,9,"An item to be held by a Pokémon. It is +a bell with a comforting chime that +calms the holder and makes it friendly." +195,10,9,"An item to be held by a Pokémon. It is +a bell with a comforting chime that +calms the holder and makes it friendly." +195,11,5,"Objet à tenir. Grelot dont le carillon +calme le porteur et favorise l’amitié." +195,11,9,"An item to be held by a Pokémon. It is +a bell with a comforting chime that +calms the holder and makes it friendly." +195,14,9,"An item to be held by a Pokémon. It is +a bell with a comforting chime that +calms the holder and makes it friendly." +195,15,1,"ここちよい ねいろの すず。 +もたせた ポケモンは こころが +やすらぎ なつきやすくなる。" +195,15,3,"기분 좋은 소리의 방울. +지니게 한 포켓몬은 마음이 +편안해져 친밀해지기 쉬워진다." +195,15,5,"Objet à tenir. Un grelot dont le carillon calme +le porteur et favorise l’amitié." +195,15,6,"Ein Item, das einem Pokémon zum Tragen +gegeben werden kann. Es besänftigt und +fördert Sympathie." +195,15,7,"Una gruesa y resistente escama que pueden +llevar los Pokémon de tipo Dragón cuando son +capturados." +195,15,8,"Strumento da dare a un Pokémon. +Campanella dal suono rassicurante che +calma chi la usa rendendolo amichevole." +195,15,9,"An item to be held by a Pokémon. +The comforting chime of this bell +calms the holder, making it friendly." +195,15,11,"心地よい 音色の 鈴。 +持たせた ポケモンは こころが +やすらぎ なつきやすくなる。" +196,5,9,"A hold item that +snaps POKéMON out +of infatuation." +196,6,9,"A hold item that +snaps POKéMON out +of infatuation." +196,7,9,"An item to be held by a POKéMON. +It snaps the holder out of +infatuation. It can be used once." +196,8,9,"An item to be held by a Pokémon. It +snaps the holder out of infatuation. +It can be used only once." +196,9,9,"An item to be held by a Pokémon. It +snaps the holder out of infatuation. +It can be used only once." +196,10,9,"An item to be held by a Pokémon. It +snaps the holder out of infatuation. +It can be used only once." +196,11,5,"Objet à tenir qui annule l’attirance +d’un Pokémon. Ne peut être utilisé +qu’une fois." +196,11,9,"An item to be held by a Pokémon. It +snaps the holder out of infatuation. +It can be used only once." +196,14,9,"An item to be held by a Pokémon. It +snaps the holder out of infatuation. +It can be used only once." +196,15,1,"もたせた ポケモンが じゆうに +わざを だせなくなったときに +いちどだけ かいふくする。" +196,15,3,"지니게 한 포켓몬은 +헤롱헤롱 상태가 되었을 때 +한 번만 회복한다." +196,15,5,"Objet à tenir. Empêche le Pokémon +de tomber amoureux. +Ne peut être utilisé qu’une fois." +196,15,6,"Ein Item, das einem Pokémon zum Tragen +gegeben werden kann. Hilft einmalig bei +eingeschränktem Handlungsspielraum." +196,15,7,"Asombrosa esfera que debe llevar Pikachu y que +aumenta su Ataque y su Ataque Especial." +196,15,8,"Strumento monouso da dare a un +Pokémon. Ne annulla l’infatuazione." +196,15,9,"An item to be held by a Pokémon. +It snaps the holder out of infatuation. +It can be used only once." +196,15,11,"持たせた ポケモンが 自由に +技を だせなくなったときに +1度だけ 回復する。" +197,5,9,"Raises a move’s +power, but permits +only that move." +197,6,9,"Raises a move’s +power, but permits +only that move." +197,7,9,"An item to be held by a POKéMON. +It powers up one move, which +becomes the only usable one." +197,8,9,"An item to be held by a Pokémon. +This headband ups Attack, but allows +the use of only one kind of move." +197,9,9,"An item to be held by a Pokémon. +This headband ups Attack, but allows +the use of only one kind of move." +197,10,9,"An item to be held by a Pokémon. +This headband ups Attack, but allows +the use of only one kind of move." +197,11,5,"Objet à tenir. Ce bandeau monte +l’Attaque, mais ne permet d’utiliser +qu’une seule capacité par combat." +197,11,9,"An item to be held by a Pokémon. +This headband ups Attack, but allows +the use of only one of its moves." +197,14,9,"An item to be held by a Pokémon. +This headband ups Attack, but allows +the use of only one of its moves." +197,15,1,"ちょっと こだわった ハチマキ。 +もたせると こうげきは あがるが +おなじ わざしか だせなくなる。" +197,15,3,"기술을 구애받는 머리띠. +지니게 하면 공격은 올라가지만 +똑같은 기술밖에 쓰지 못한다." +197,15,5,"Objet à tenir. Ce bandeau augmente l’Attaque, +mais ne permet d’utiliser qu’une seule capacité +par combat." +197,15,6,"Ein Item, das von einem Pokémon getragen +werden kann. Es stärkt den Angriffs-Wert, +aber nur eine Attacke ist einsetzbar." +197,15,7,"Debe llevarla un Pokémon. La suavidad de la +arena fortalece los movimientos de tipo Tierra." +197,15,8,"Strumento da dare a un Pokémon. +Questa benda aumenta l’Attacco, ma permette +l’uso di una sola mossa." +197,15,9,"An item to be held by a Pokémon. +This curious headband boosts Attack +but only allows the use of one move." +197,15,11,"ちょっと こだわった ハチマキ。 +持たせると 攻撃は あがるが +同じ 技しか だせなくなる。" +198,5,9,"A hold item that +may cause flinching +when the foe is hit." +198,6,9,"A hold item that +may cause flinching +when the foe is hit." +198,7,9,"An item to be held by a POKéMON. +It may cause the foe to flinch +upon taking damage." +198,8,9,"An item to be held by a Pokémon. +It may cause the foe to flinch when +the holder inflicts damage." +198,9,9,"An item to be held by a Pokémon. +It may cause the foe to flinch when +the holder inflicts damage." +198,10,9,"An item to be held by a Pokémon. +It may cause the foe to flinch when +the holder inflicts damage." +198,11,5,"Objet à tenir. Peut apeurer l’ennemi +lorsque le porteur lui inflige des +dégâts." +198,11,9,"An item to be held by a Pokémon. +When the holder inflicts damage, +the target may flinch." +198,14,9,"An item to be held by a Pokémon. +When the holder inflicts damage, +the target may flinch." +198,15,1,"もたせると こうげきして +ダメージを あたえたときに +あいてを ひるませることが ある。" +198,15,3,"지니게 하면 +공격해서 데미지를 줄 때 +상대를 풀죽이기도 한다." +198,15,5,"Objet à tenir. Peut apeurer l’ennemi lorsque +le porteur lui inflige des dégâts." +198,15,6,"Gibst du es einem Pokémon zum Tragen, +lässt es mit seinem Angriff das Ziel gelegentlich +zurückschrecken." +198,15,7,"Debe llevarla un Pokémon. La robustez de la +piedra fortalece los movimientos de tipo Roca." +198,15,8,"Strumento da dare a un Pokémon. +Se chi lo usa arreca danni, può far tentennare +il nemico." +198,15,9,"An item to be held by a Pokémon. +When the holder successfully inflicts +damage, the target may also flinch." +198,15,11,"持たせると 攻撃して +ダメージを 与えたときに +相手を ひるませることが ある。" +199,5,9,"A hold item that +raises the power of +BUG-type moves." +199,6,9,"A hold item that +raises the power of +BUG-type moves." +199,7,9,"An item to be held by a POKéMON. +A shiny silver powder that boosts +the power of BUG-type moves." +199,8,9,"An item to be held by a Pokémon. +It is a shiny, silver powder that ups +the power of Bug-type moves." +199,9,9,"An item to be held by a Pokémon. +It is a shiny, silver powder that ups +the power of Bug-type moves." +199,10,9,"An item to be held by a Pokémon. +It is a shiny, silver powder that ups +the power of Bug-type moves." +199,11,5,"Objet à tenir. Poudre d’argent +brillante qui monte la puissance +des capacités de type Insecte." +199,11,9,"An item to be held by a Pokémon. +It is a shiny, silver powder that ups +the power of Bug-type moves." +199,14,9,"An item to be held by a Pokémon. +It is a shiny, silver powder that ups +the power of Bug-type moves." +199,15,1,"ぎんいろに かがやく こな。 +もたせると むしタイプの +わざの いりょくが あがる。" +199,15,3,"은색으로 반짝이는 가루. +지니게 하면 벌레타입 +기술의 위력이 올라간다." +199,15,5,"Objet à tenir. De la poudre d’argent brillante qui +augmente la puissance des capacités de type +Insecte." +199,15,6,"Ein Item, das einem Pokémon zum Tragen +gegeben werden kann. Es verstärkt Attacken +vom Typ Käfer." +199,15,7,"Debe llevarla un Pokémon. La vitalidad de la +semilla fortalece los movimientos de tipo Planta." +199,15,8,"Strumento da dare a un Pokémon. +Polvere argentea e brillante che potenzia +le mosse di tipo Coleottero." +199,15,9,"An item to be held by a Pokémon. +It is a shiny, silver powder that will +boost the power of Bug-type moves." +199,15,11,"銀色に 輝く 粉。 +持たせると むしタイプの +技の 威力が あがる。" +200,5,9,"Doubles money in +battle if the holder +takes part." +200,6,9,"Doubles money in +battle if the +holder takes part." +200,7,9,"An item to be held by a POKéMON. +It doubles the battle money if the +holding POKéMON takes part." +200,8,9,"An item to be held by a Pokémon. +It doubles a battle’s prize money if +the holding Pokémon joins in." +200,9,9,"An item to be held by a Pokémon. +It doubles a battle’s prize money if +the holding Pokémon joins in." +200,10,9,"An item to be held by a Pokémon. +It doubles a battle’s prize money if +the holding Pokémon joins in." +200,11,5,"Objet à tenir. Double l’argent gagné +si le porteur se joint au combat." +200,11,9,"An item to be held by a Pokémon. +It doubles a battle’s prize money if +the holding Pokémon joins in." +200,14,9,"An item to be held by a Pokémon. +It doubles a battle’s prize money if +the holding Pokémon joins in." +200,15,1,"もたせた ポケモンが いちどでも +せんとうに かおを だすと +おかねが 2ばい もらえる。" +200,15,3,"지니게 한 포켓몬이 +한 번이라도 배틀에 나가면 +돈을 2배로 받을 수 있다." +200,15,5,"Objet à tenir. Double l’argent gagné si le porteur +se joint au combat." +200,15,6,"Ein Item, das von einem Pokémon getragen wird +und das doppeltes Preisgeld bringt, wenn der +Träger am Kampf teilnimmt." +200,15,7,"Debe llevarlas un Pokémon. Fortalecen los +movimientos de tipo Siniestro." +200,15,8,"Strumento da dare a un Pokémon. +Se chi ce l’ha partecipa alla lotta, i guadagni +raddoppiano." +200,15,9,"An item to be held by a Pokémon. +It doubles any prize money received +if the holding Pokémon joins a battle." +200,15,11,"持たせた ポケモンが 1度でも +戦闘に 顔を だすと +お金が 2倍 もらえる。" +201,5,9,"A hold item that +helps repel wild +POKéMON." +201,6,9,"A hold item that +helps repel wild +POKéMON." +201,7,9,"An item to be held by a POKéMON. +It repels wild POKéMON if the +holder is first in the party." +201,8,9,"An item to be held by a Pokémon. +It helps keep wild Pokémon away if the +holder is the first one in the party." +201,9,9,"An item to be held by a Pokémon. +It helps keep wild Pokémon away if the +holder is the first one in the party." +201,10,9,"An item to be held by a Pokémon. +It helps keep wild Pokémon away if the +holder is the first one in the party." +201,11,5,"Objet à tenir. Aide à repousser les +Pokémon sauvages si le porteur est +le premier Pokémon de l’équipe." +201,11,9,"An item to be held by a Pokémon. +It helps keep wild Pokémon away if the +holder is the first one in the party." +201,14,9,"An item to be held by a Pokémon. +It helps keep wild Pokémon away if the +holder is the first one in the party." +201,15,1,"いちばん まえの ポケモンに +もたせると やせいポケモンが +でて きにくくなる。" +201,15,3,"맨 앞의 포켓몬에게 +지니게 하면 야생 포켓몬이 +나타날 확률이 낮아진다." +201,15,5,"Objet à tenir. Aide à repousser les Pokémon +sauvages si le porteur est le premier Pokémon +de l’équipe." +201,15,6,"Ein Item zum Tragen. Reduziert Begegnungen mit +wilden Pokémon, wenn der Träger an erster Stelle +steht." +201,15,7,"Debe llevarlo un Pokémon. Aumenta la +concentración y fortalece los movimientos +de tipo Lucha." +201,15,8,"Strumento da dare a un Pokémon. +Se chi ce l’ha è il primo della squadra, aiuta +ad allontanare i Pokémon selvatici." +201,15,9,"An item to be held by a Pokémon. +It helps keep wild Pokémon away if +the holder is the head of the party." +201,15,11,"1番 前の ポケモンに +持たせると 野生ポケモンが +でて きにくくなる。" +202,5,9,"Hold item: Raises +SP. ATK & SP. DEF +of LATIOS & LATIAS." +202,6,9,"Hold item: raises +SP. ATK & SP. DEF of +LATIOS & LATIAS." +202,7,9,"An orb to be held by a LATIOS or +LATIAS. It raises the SP. ATK +and SP. DEF stats." +202,8,9,"A wondrous orb to be held by LATIOS or +LATIAS. It raises both the Sp. Atk and +Sp. Def stats." +202,9,9,"A wondrous orb to be held by LATIOS or +LATIAS. It raises both the Sp. Atk and +Sp. Def stats." +202,10,9,"A wondrous orb to be held by LATIOS +or LATIAS. It raises both the +Sp. Atk and Sp. Def stats." +202,11,5,"Orbe prodigieux à faire tenir à Latios +ou Latias qui monte leur Attaque +Spéciale et leur Défense Spéciale." +202,11,9,"A wondrous orb to be held by Latios +or Latias. It raises both the +Sp. Atk and Sp. Def stats." +202,14,9,"A wondrous orb to be held by Latios +or Latias. It raises both the +Sp. Atk and Sp. Def stats." +202,15,1,"ラティオス または ラティアスに +もたせると とくこうと とくぼうが +あがる ふしぎな たま。" +202,15,3,"라티오스 혹은 라티아스에게 +지니게 하면 특수공격과 특수방어가 +올라가는 이상한 구슬." +202,15,5,"Objet à faire tenir à Latios ou Latias. +Un orbe prodigieux qui augmente leur Attaque +Spéciale et leur Défense Spéciale." +202,15,6,"Ein Item, das von Latios oder Latias getragen +werden kann. Es hebt Spezial-Angriff und +Spezial-Verteidigung." +202,15,7,"Debe llevarlo un Pokémon. Su potente +magnetismo fortalece los movimientos de tipo +Eléctrico." +202,15,8,"Sfera miracolosa da dare a Latios o Latias. +Aumenta l’Attacco Speciale e la Difesa Speciale." +202,15,9,"A wondrous orb to be held by either +Latios or Latias. It raises both the +Sp. Atk and Sp. Def stats." +202,15,11,"ラティオス または ラティアスに +持たせると 特攻と 特防が +あがる 不思議な 珠。" +203,5,9,"A hold item that +raises the SP. ATK +of CLAMPERL." +203,6,9,"A hold item that +raises the SP. ATK +of CLAMPERL." +203,7,9,"An item to be held by a POKéMON. +A fang that gleams a sharp silver. +It raises the SP. ATK stat." +203,8,9,"An item to be held by CLAMPERL. +A fang that gleams a sharp silver, it +raises the Sp. Atk stat." +203,9,9,"An item to be held by CLAMPERL. +A fang that gleams a sharp silver, it +raises the Sp. Atk stat." +203,10,9,"An item to be held by CLAMPERL. +A fang that gleams a sharp silver, it +raises the Sp. Atk stat." +203,11,5,"Objet à faire tenir à Coquiperl. +Dent de couleur argent montant +son Attaque Spéciale." +203,11,9,"An item to be held by Clamperl. +A fang that gleams a sharp silver, it +raises the Sp. Atk stat." +203,14,9,"An item to be held by Clamperl. +A fang that gleams a sharp silver, it +raises the Sp. Atk stat." +203,15,1,"パールルに もたせると +とくこうが あがる キバ。 +するどく ぎんいろに ひかる。" +203,15,3,"진주몽에게 지니게 하면 +특수공격이 올라가는 이빨. +날카로운 은색으로 빛난다." +203,15,5,"Objet à faire tenir à Coquiperl. +Une dent de couleur argent qui augmente +son Attaque Spéciale." +203,15,6,"Ein Item, das von Perlu getragen werden kann. +Es schimmert silbern und hebt den Spezial-Angriff." +203,15,7,"Gema con forma de gota de agua que fortalece +los movimientos de tipo Agua. Debe llevarla un +Pokémon." +203,15,8,"Strumento da dare a Clamperl. +Dente dai bagliori argentei che aumenta +l’Attacco Speciale." +203,15,9,"An item to be held by Clamperl. +This fang gleams a sharp silver and +raises the holder’s Sp. Atk stat." +203,15,11,"パールルに 持たせると +特攻が あがる キバ。 +鋭く 銀色に 光る。" +204,5,9,"A hold item that +raises the SP. DEF +of CLAMPERL." +204,6,9,"A hold item that +raises the SP. DEF +of CLAMPERL." +204,7,9,"An item to be held by a POKéMON. +A scale that shines a faint pink. +It raises the SP. DEF stat." +204,8,9,"An item to be held by CLAMPERL. +A scale that shines a faint pink, it +raises the Sp. Def stat." +204,9,9,"An item to be held by CLAMPERL. +A scale that shines a faint pink, it +raises the Sp. Def stat." +204,10,9,"An item to be held by CLAMPERL. +A scale that shines a faint pink, it +raises the Sp. Def stat." +204,11,5,"Objet à faire tenir à Coquiperl. +Écaille de couleur rose montant +sa Défense Spéciale." +204,11,9,"An item to be held by Clamperl. +A scale that shines a faint pink, it +raises the Sp. Def stat." +204,14,9,"An item to be held by Clamperl. +A scale that shines a faint pink, it +raises the Sp. Def stat." +204,15,1,"パールルに もたせると +とくぼうが あがる ウロコ。 +うすい ピンクいろに ひかる。" +204,15,3,"진주몽에게 지니게 하면 +특수방어가 올라가는 비늘. +연한 분홍색으로 빛난다." +204,15,5,"Objet à faire tenir à Coquiperl. +Une écaille de couleur rose qui augmente +sa Défense Spéciale." +204,15,6,"Ein Item, das von Perlu getragen werden kann. +Es schimmert pink und hebt die +Spezial-Verteidigung." +204,15,7,"Pico largo y afilado que aumenta la potencia de +los movimientos de tipo Volador. Debe llevarlo un +Pokémon." +204,15,8,"Strumento da dare a Clamperl. +Squama dai bagliori rosei che aumenta +la Difesa Speciale." +204,15,9,"An item to be held by Clamperl. +This scale shines with a faint pink and +raises the holder’s Sp. Def stat." +204,15,11,"パールルに 持たせると +特防が あがる ウロコ。 +うすい ピンク色に 光る。" +205,5,9,"A hold item that +can be used to flee +from a wild POKéMON." +205,6,9,"A hold item that +assures fleeing +from wild POKéMON." +205,7,9,"An item to be held by a POKéMON. +The holding POKéMON can flee from +any wild POKéMON for sure." +205,8,9,"An item to be held by a Pokémon. +It enables the holder to flee from any +wild Pokémon without fail." +205,9,9,"An item to be held by a Pokémon. +It enables the holder to flee from any +wild Pokémon without fail." +205,10,9,"An item to be held by a Pokémon. +It enables the holder to flee from any +wild Pokémon without fail." +205,11,5,"Objet à tenir. Permet au porteur de +s’enfuir à coup sûr face à un Pokémon +sauvage." +205,11,9,"An item to be held by a Pokémon. +It enables the holder to flee from any +wild Pokémon without fail." +205,14,9,"An item to be held by a Pokémon. +It enables the holder to flee from any +wild Pokémon without fail." +205,15,1,"もたせた ポケモンは やせいの +ポケモンとの せんとうから +ぜったいに にげられる。" +205,15,3,"지니게 한 포켓몬은 +야생 포켓몬과의 배틀에서 +반드시 도망칠 수 있다." +205,15,5,"Objet à tenir. Permet au porteur de s’enfuir à +coup sûr face à un Pokémon sauvage." +205,15,6,"Ein Pokémon kann dieses Item tragen. +Es ermöglicht die garantierte Flucht aus +dem Kampf mit einem wilden Pokémon." +205,15,7,"Flecha venenosa que refuerza los movimientos de +tipo Veneno. Debe llevarla un Pokémon." +205,15,8,"Strumento da dare a un Pokémon. +Permette di fuggire con successo da un +Pokémon selvatico." +205,15,9,"An item to be held by a Pokémon. +It enables the holder to flee from any +wild Pokémon encounter without fail." +205,15,11,"持たせた ポケモンは 野生の +ポケモンとの 戦闘から +絶対に 逃げられる。" +206,5,9,"A wondrous stone +& a hold item that +prevents evolution." +206,6,9,"A wondrous hold +item that prevents +evolution." +206,7,9,"An item to be held by a POKéMON. +The holding POKéMON is prevented +from evolving." +206,8,9,"An item to be held by a Pokémon. +The Pokémon holding this peculiar stone +is prevented from evolving." +206,9,9,"An item to be held by a Pokémon. +The Pokémon holding this peculiar stone +is prevented from evolving." +206,10,9,"An item to be held by a Pokémon. +The Pokémon holding this peculiar stone +is prevented from evolving." +206,11,5,"Objet à tenir. Pierre merveilleuse +empêchant l’évolution." +206,11,9,"An item to be held by a Pokémon. +The Pokémon holding this peculiar stone +is prevented from evolving." +206,14,9,"An item to be held by a Pokémon. +The Pokémon holding this peculiar stone +is prevented from evolving." +206,15,1,"ポケモンに もたせると +そのあいだ しんか しなくなる +ふしぎな いし。" +206,15,3,"포켓몬에게 지니게 하면 +지닌 동안에는 진화하지 않게 되는 +이상한 돌." +206,15,5,"Objet à tenir. Une pierre merveilleuse empêchant +l’évolution." +206,15,6,"Ein Item, das einem Pokémon zum Tragen +gegeben werden kann. Es bewirkt einen +Entwicklungsstopp." +206,15,7,"Fragmento de hielo que repele el calor y fortalece +los movimientos de tipo Hielo. Debe llevarlo un +Pokémon." +206,15,8,"Strumento da dare a un Pokémon. +Chi ha questa pietra particolare evita l’evoluzione." +206,15,9,"An item to be held by a Pokémon. +A Pokémon holding this peculiar +stone is prevented from evolving." +206,15,11,"ポケモンに 持たせると +そのあいだ 進化しなくなる +不思議な 石。" +207,5,9,"A hold item that +occasionally +prevents fainting." +207,6,9,"A hold item that +occasionally +prevents fainting." +207,7,9,"An item to be held by a POKéMON. +The holding POKéMON may endure an +attack, leaving just 1 HP." +207,8,9,"An item to be held by a Pokémon. +The holder may endure a potential KO +attack, leaving it with just 1 HP." +207,9,9,"An item to be held by a Pokémon. +The holder may endure a potential KO +attack, leaving it with just 1 HP." +207,10,9,"An item to be held by a Pokémon. +The holder may endure a potential KO +attack, leaving it with just 1 HP." +207,11,5,"Objet à tenir pouvant parfois empêcher +d’être mis K.O., ne laissant qu’un PV." +207,11,9,"An item to be held by a Pokémon. +The holder may endure a potential KO +attack, leaving it with just 1 HP." +207,14,9,"An item to be held by a Pokémon. +The holder may endure a potential KO +attack, leaving it with just 1 HP." +207,15,1,"もたせると ひんしに なりそうな +わざを うけても HPを 1だけ +のこして たえることが ある。" +207,15,3,"지니게 하면 +기절할 듯한 기술을 받아도 +HP를 1 남겨서 견디기도 한다." +207,15,5,"Objet à tenir pouvant parfois empêcher d’être +mis K.O., ne laissant qu’un seul PV." +207,15,6,"Ein Item, das die Kampfunfähigkeit verhindern +kann, da dem Träger 1 KP bleibt." +207,15,7,"Misterioso y siniestro objeto que potencia los +movimientos de tipo Fantasma. Debe llevarlo un +Pokémon." +207,15,8,"Strumento da dare a un Pokémon. +Chi ce l’ha può evitare un potenziale KO +e rimanere con un solo PS." +207,15,9,"An item to be held by a Pokémon. +The holder may endure a potential +KO attack, leaving it with just 1 HP." +207,15,11,"持たせると ひんしに なりそうな +技を 受けても HPを 1だけ +残して 耐えることが ある。" +208,5,9,"A hold item that +boosts EXP. points +earned in battle." +208,6,9,"A hold item that +boosts EXP. points +earned in battle." +208,7,9,"An item to be held by a POKéMON. +An egg filled with happiness that +earns extra EXP. points in battle." +208,8,9,"An item to be held by a Pokémon. +It is an egg filled with happiness that +earns extra Exp. Points in battle." +208,9,9,"An item to be held by a Pokémon. +It is an egg filled with happiness that +earns extra Exp. Points in battle." +208,10,9,"An item to be held by a Pokémon. +It is an egg filled with happiness that +earns extra Exp. Points in battle." +208,11,5,"Objet à tenir. Œuf rempli de joie qui +augmente le nombre de points Exp. +gagnés au combat." +208,11,9,"An item to be held by a Pokémon. +It is an egg filled with happiness that +earns extra Exp. Points in battle." +208,14,9,"An item to be held by a Pokémon. +It is an egg filled with happiness that +earns extra Exp. Points in battle." +208,15,1,"しあわせが つまった タマゴ。 +もたせた ポケモンは もらえる +けいけんちが すこし ふえる。" +208,15,3,"행복이 가득한 알. +지니게 한 포켓몬은 받을 수 있는 +경험치가 조금 늘어난다." +208,15,5,"Objet à tenir. Un œuf rempli de joie qui augmente +le nombre de Points Exp. gagnés au combat." +208,15,6,"Ein Item zum Tragen, das mit Glück gefüllt ist und +für zusätzliche Erfahrungspunkte im Kampf sorgt." +208,15,7,"Cuchara imbuida de energía telequinética que +potencia los movimientos de tipo Psíquico. +Debe llevarla un Pokémon." +208,15,8,"Strumento da dare a un Pokémon. +Uovo pieno di felicità che aumenta +i Punti Esperienza in lotta." +208,15,9,"An item to be held by a Pokémon. +It’s an egg filled with happiness that +earns extra Exp. Points in battle." +208,15,11,"しあわせが つまった タマゴ。 +持たせた ポケモンは もらえる +経験値が 少し 増える。" +209,5,9,"A hold item that +raises the critical- +hit rate." +209,6,9,"A hold item that +improves the +critical-hit rate." +209,7,9,"An item to be held by a POKéMON. +A lens that boosts the critical-hit +ratio of the holding POKéMON." +209,8,9,"An item to be held by a Pokémon. +It is a lens that boosts the holder’s +critical-hit ratio." +209,9,9,"An item to be held by a Pokémon. +It is a lens that boosts the holder’s +critical-hit ratio." +209,10,9,"An item to be held by a Pokémon. +It is a lens that boosts the holder’s +critical-hit ratio." +209,11,5,"Objet à tenir. Lentille qui augmente le +taux de critiques du porteur." +209,11,9,"An item to be held by a Pokémon. +It is a lens that boosts the holder’s +critical-hit ratio." +209,14,9,"An item to be held by a Pokémon. +It is a lens that boosts the holder’s +critical-hit ratio." +209,15,1,"じゃくてんが みえる レンズ。 +もたせた ポケモンの わざが +きゅうしょに あたりやすくなる。" +209,15,3,"약점이 보이는 렌즈. +지니게 한 포켓몬의 기술이 +급소에 맞기 쉬워진다." +209,15,5,"Objet à tenir. Une lentille qui augmente le taux +de critiques du porteur." +209,15,6,"Ein Item, das einem Pokémon zum Tragen +gegeben werden kann. Es erhöht die +Volltrefferquote." +209,15,7,"Actúa como combustible y potencia los +movimientos de tipo Fuego. Debe llevarlo +un Pokémon." +209,15,8,"Strumento da dare a un Pokémon. +Lente che aumenta la probabilità di sferrare +brutti colpi." +209,15,9,"An item to be held by a Pokémon. +It’s a lens for scoping out weak points. +It boosts the holder’s critical-hit ratio." +209,15,11,"弱点が みえる レンズ。 +持たせた ポケモンの 技が +急所に 当たりやすくなる。" +210,5,9,"A hold item that +raises the power of +STEEL-type moves." +210,6,9,"A hold item that +raises the power of +STEEL-type moves." +210,7,9,"An item to be held by a POKéMON. +A special metallic film that boosts +the power of STEEL-type moves." +210,8,9,"An item to be held by a Pokémon. +It is a special metallic film that ups +the power of Steel-type moves." +210,9,9,"An item to be held by a Pokémon. +It is a special metallic film that ups +the power of Steel-type moves." +210,10,9,"An item to be held by a Pokémon. +It is a special metallic film that ups +the power of Steel-type moves." +210,11,5,"Objet à tenir. Pellicule métallique +spéciale qui monte la puissance des +capacités de type Acier." +210,11,9,"An item to be held by a Pokémon. +It is a special metallic film that ups +the power of Steel-type moves." +210,14,9,"An item to be held by a Pokémon. +It is a special metallic film that ups +the power of Steel-type moves." +210,15,1,"とくしゅな きんぞくの まく。 +もたせると はがねタイプの +わざの いりょくが あがる。" +210,15,3,"특수한 금속 장막. +지니게 하면 강철타입 +기술의 위력이 올라간다." +210,15,5,"Objet à tenir. Une pellicule métallique spéciale +qui augmente la puissance des capacités de type +Acier." +210,15,6,"Ein Item, das einem Pokémon zum Tragen +gegeben werden kann. Es verstärkt Attacken +vom Typ Stahl." +210,15,7,"Colmillo de gran dureza que refuerza los +movimientos de tipo Dragón. Debe llevarlo +un Pokémon." +210,15,8,"Strumento da dare a un Pokémon. +Speciale pellicola metallica che potenzia le mosse +di tipo Acciaio." +210,15,9,"An item to be held by a Pokémon. +It is a special metallic film that can +boost the power of Steel-type moves." +210,15,11,"特殊な 金属の 膜。 +持たせると はがねタイプの +技の 威力が あがる。" +211,5,9,"A hold item that +gradually restores +HP in battle." +211,6,9,"A hold item that +gradually restores +HP in battle." +211,7,9,"An item to be held by a POKéMON. +The holding POKéMON gradually +regains HP during battle." +211,8,9,"An item to be held by a Pokémon. +The holder’s HP is gradually restored +during battle." +211,9,9,"An item to be held by a Pokémon. +The holder’s HP is gradually restored +during battle." +211,10,9,"An item to be held by a Pokémon. +The holder’s HP is gradually restored +during battle." +211,11,5,"Objet à tenir permettant de restaurer +les PV du porteur graduellement durant +le combat." +211,11,9,"An item to be held by a Pokémon. +The holder’s HP is gradually restored +during battle." +211,14,9,"An item to be held by a Pokémon. +The holder’s HP is gradually restored +during battle." +211,15,1,"もたせると ポケモンの HPが +せんとうの あいだ すこしずつ +かいふくする。" +211,15,3,"지니게 하면 포켓몬의 HP가 +배틀을 하는 동안 조금씩 +회복된다." +211,15,5,"Objet à tenir. Permet de restaurer graduellement +les PV du porteur durant le combat." +211,15,6,"Ein Item, das einem Pokémon zum Tragen +gegeben werden kann. Es füllt im Kampf +stetig KP auf." +211,15,7,"La delicadeza del pañuelo fortalece los +movimientos de tipo Normal. Debe llevarlo +un Pokémon." +211,15,8,"Strumento da dare a un Pokémon. +Fa recuperare gradualmente i PS durante la lotta." +211,15,9,"An item to be held by a Pokémon. +The holder’s HP is slowly but steadily +restored throughout every battle." +211,15,11,"持たせると ポケモンの HPが +戦闘の あいだ 少しずつ +回復する。" +212,5,9,"A strange scale +held by DRAGON- +type POKéMON." +212,6,9,"A strange scale +held by DRAGON- +type POKéMON." +212,7,9,"A thick and tough scale. +A DRAGON-type POKéMON may be +holding it." +212,8,9,"A thick and tough scale. +Dragon-type Pokémon may be holding +this item when caught." +212,9,9,"A thick and tough scale. +Dragon-type Pokémon may be holding +this item when caught." +212,10,9,"A thick and tough scale. +Dragon-type Pokémon may be holding +this item when caught." +212,11,5,"Une écaille épaisse et dure tenue +parfois par les Pokémon de type Dragon +quand ils sont attrapés." +212,11,9,"A thick and tough scale. +Dragon-type Pokémon may be holding +this item when caught." +212,14,9,"A thick and tough scale. +Dragon-type Pokémon may be holding +this item when caught." +212,15,1,"かたくて じょうぶな ウロコ。 +ドラゴンタイプの ポケモンが +もっていることが ある。" +212,15,3,"단단하고 튼튼한 비늘. +드래곤타입의 포켓몬이 +지니고 있는 경우가 있다." +212,15,5,"Une écaille épaisse et dure, parfois tenue par +les Pokémon de type Dragon quand ils sont +attrapés." +212,15,6,"Eine dicke und starke Haut. Drachen-Pokémon +tragen dieses Item gern bei sich." +212,15,7,"Peculiar dispositivo fabricado en Silph S. A. que +contiene todo tipo de datos." +212,15,8,"Squama spessa e dura. +Può averla un Pokémon di tipo Drago quando +viene catturato." +212,15,9,"A very tough and inflexible scale. +Dragon-type Pokémon may be +holding this item when caught." +212,15,11,"硬くて 丈夫な ウロコ。 +ドラゴンタイプの ポケモンが +持っていることが ある。" +213,5,9,"A hold item that +raises the SP. ATK +of PIKACHU." +213,6,9,"A hold item that +raises the SP. ATK +of PIKACHU." +213,7,9,"An orb to be held by a PIKACHU +that raises the SP. ATK stat. +Touching it may cause a shock." +213,8,9,"An item to be held by PIKACHU. +It is a puzzling orb that raises the +Sp. Atk stat." +213,9,9,"An item to be held by PIKACHU. +It is a puzzling orb that raises +the Attack and Sp. Atk stat." +213,10,9,"An item to be held by PIKACHU. +It is a puzzling orb that raises +the Attack and Sp. Atk stat." +213,11,5,"Objet à faire tenir par Pikachu. Orbe +énigmatique qui monte son Attaque et +son Attaque Spéciale." +213,11,9,"An item to be held by Pikachu. +It is a puzzling orb that raises +the Attack and Sp. Atk stat." +213,14,9,"An item to be held by Pikachu. +It is a puzzling orb that raises +the Attack and Sp. Atk stat." +213,15,1,"ピカチュウに もたせると +こうげきと とくこうの いりょくが +あがる ふしぎな たま。" +213,15,3,"피카츄에게 지니게 하면 +공격과 특수공격의 위력이 +올라가는 이상한 구슬." +213,15,5,"Objet à faire tenir à Pikachu. +Un orbe énigmatique qui augmente son Attaque +et son Attaque Spéciale." +213,15,6,"Ein Item, das von Pikachu getragen werden +kann. Es erhöht den Angriffs-Wert und +Spezial-Angriffs-Wert." +213,15,7,"Debe llevarla un Pokémon. Cada vez que este +inflige daño, recupera algunos PS." +213,15,8,"Strumento da dare a Pikachu. +Sfera insolita che aumenta l’Attacco e l’Attacco +Speciale." +213,15,9,"An item to be held by Pikachu. +It’s a puzzling orb that boosts +its Attack and Sp. Atk stats." +213,15,11,"ピカチュウに 持たせると +攻撃と 特攻の 威力が +あがる 不思議な 玉。" +214,5,9,"A hold item that +raises the power of +GROUND-type moves." +214,6,9,"A hold item that +raises the power of +GROUND-type moves." +214,7,9,"An item to be held by a POKéMON. +A loose, silky sand that boosts the +power of GROUND-type moves." +214,8,9,"An item to be held by a Pokémon. +It is a loose, silky sand that boosts +the power of Ground-type moves." +214,9,9,"An item to be held by a Pokémon. +It is a loose, silky sand that boosts +the power of Ground-type moves." +214,10,9,"An item to be held by a Pokémon. +It is a loose, silky sand that boosts +the power of Ground-type moves." +214,11,5,"Objet à tenir. Sable fin et soyeux +montant la puissance des capacités +de type Sol." +214,11,9,"An item to be held by a Pokémon. +It is a loose, silky sand that boosts +the power of Ground-type moves." +214,14,9,"An item to be held by a Pokémon. +It is a loose, silky sand that boosts +the power of Ground-type moves." +214,15,1,"さわると サラサラする すな。 +もたせると じめんタイプの +わざの いりょくが あがる。" +214,15,3,"만지면 보슬보슬한 모래. +지니게 하면 땅타입 +기술의 위력이 올라간다." +214,15,5,"Objet à tenir. Du sable fin et soyeux qui +augmente la puissance des capacités de +type Sol." +214,15,6,"Ein Item zum Tragen. Samtiger Sand, +der Attacken vom Typ Boden verstärkt." +214,15,7,"Tiene un curioso aroma que potencia los +movimientos de tipo Agua. Debe llevarlo un +Pokémon." +214,15,8,"Strumento da dare a un Pokémon. +Sabbia leggera e farinosa che potenzia le mosse +di tipo Terra." +214,15,9,"An item to be held by a Pokémon. +It is a loose, silky sand that boosts +the power of Ground-type moves." +214,15,11,"さわると サラサラする 砂。 +持たせると じめんタイプの +技の 威力が あがる。" +215,5,9,"A hold item that +raises the power of +ROCK-type moves." +215,6,9,"A hold item that +raises the power of +ROCK-type moves." +215,7,9,"An item to be held by a POKéMON. +An unbreakable stone that boosts +the power of ROCK-type moves." +215,8,9,"An item to be held by a Pokémon. +It is an unbreakable stone that ups +the power of Rock-type moves." +215,9,9,"An item to be held by a Pokémon. +It is an unbreakable stone that ups +the power of Rock-type moves." +215,10,9,"An item to be held by a Pokémon. +It is an unbreakable stone that ups +the power of Rock-type moves." +215,11,5,"Objet à tenir. Pierre incassable qui +monte la puissance des capacités de +type Roche." +215,11,9,"An item to be held by a Pokémon. +It is an unbreakable stone that ups +the power of Rock-type moves." +215,14,9,"An item to be held by a Pokémon. +It is an unbreakable stone that ups +the power of Rock-type moves." +215,15,1,"ぜったいに われない いし。 +もたせると いわタイプの +わざの いりょくが あがる。" +215,15,3,"절대 깨지지 않는 돌. +지니게 하면 바위타입 +기술의 위력이 올라간다." +215,15,5,"Objet à tenir. Une pierre incassable qui augmente +la puissance des capacités de type Roche." +215,15,6,"Ein Item zum Tragen. Ein unzerbrechlicher Stein, +der Attacken vom Typ Gestein verstärkt." +215,15,7,"Debe llevarlo un Pokémon. Su peculiar aroma +reduce la Precisión del objetivo." +215,15,8,"Strumento da dare a un Pokémon. +Pietra indistruttibile che potenzia le mosse +di tipo Roccia." +215,15,9,"An item to be held by a Pokémon. +It is a durable stone that boosts +the power of Rock-type moves." +215,15,11,"絶対に 割れない 石。 +持たせると いわタイプの +技の 威力が あがる。" +216,5,9,"A hold item that +raises the power of +GRASS-type moves." +216,6,9,"A hold item that +raises the power of +GRASS-type moves." +216,7,9,"An item to be held by a POKéMON. +A seed imbued with life that boosts +the power of GRASS-type moves." +216,8,9,"An item to be held by a Pokémon. +It is a seed imbued with life that ups +the power of Grass-type moves." +216,9,9,"An item to be held by a Pokémon. +It is a seed imbued with life that ups +the power of Grass-type moves." +216,10,9,"An item to be held by a Pokémon. +It is a seed imbued with life that ups +the power of Grass-type moves." +216,11,5,"Objet à tenir. Graine remplie de vie qui +monte la puissance des capacités de +type Plante." +216,11,9,"An item to be held by a Pokémon. +It is a seed imbued with life that ups +the power of Grass-type moves." +216,14,9,"An item to be held by a Pokémon. +It is a seed imbued with life that ups +the power of Grass-type moves." +216,15,1,"せいめいが やどる タネ。 +もたせると くさタイプの +わざの いりょくが あがる。" +216,15,3,"생명이 깃든 씨앗. +지니게 하면 풀타입 +기술의 위력이 올라간다." +216,15,5,"Objet à tenir. Une graine remplie de vie qui +augmente la puissance des capacités de +type Plante." +216,15,6,"Ein Item zum Tragen. Ein Samen voller +Lebenskraft, der Attacken vom Typ Pflanze +verstärkt." +216,15,7,"Un par de guantes que debe llevar Chansey. +Potencian mucho su índice de golpe crítico." +216,15,8,"Strumento da dare a un Pokémon. +Seme intriso di vita che potenzia le mosse +di tipo Erba." +216,15,9,"An item to be held by a Pokémon. +It is a seed imbued with life force that +boosts the power of Grass-type moves." +216,15,11,"生命が 宿る タネ。 +持たせると くさタイプの +技の 威力が あがる。" +217,5,9,"A hold item that +raises the power of +DARK-type moves." +217,6,9,"A hold item that +raises the power of +DARK-type moves." +217,7,9,"An item to be held by a POKéMON. +A shady-looking pair of glasses +that boosts DARK-type moves." +217,8,9,"An item to be held by a Pokémon. +It is a shady-looking pair of glasses +that boosts Dark-type moves." +217,9,9,"An item to be held by a Pokémon. +It is a shady-looking pair of glasses +that boosts Dark-type moves." +217,10,9,"An item to be held by a Pokémon. +It is a shady-looking pair of glasses +that boosts Dark-type moves." +217,11,5,"Objet à tenir. Paire de lunettes à +l’aspect louche qui monte la puissance +des capacités de type Ténèbres." +217,11,9,"An item to be held by a Pokémon. +It is a shady-looking pair of glasses +that boosts Dark-type moves." +217,14,9,"An item to be held by a Pokémon. +It is a shady-looking pair of glasses +that boosts Dark-type moves." +217,15,1,"あやしく みえる メガネ。 +もたせると あくタイプの +わざの いりょくが あがる。" +217,15,3,"괴상하게 보이는 안경. +지니게 하면 악타입 +기술의 위력이 올라간다." +217,15,5,"Objet à tenir. Une paire de lunettes à l’aspect +louche qui augmente la puissance des capacités +de type Ténèbres." +217,15,6,"Ein Item zum Tragen. Eine dunkle Brille, +die Attacken vom Typ Unlicht verstärkt." +217,15,7,"Debe llevarlo Ditto. Es un polvo muy fino, pero a +la vez resistente, que aumenta su Defensa." +217,15,8,"Strumento da dare a un Pokémon. +Inquietante paio di occhiali che potenzia le mosse +di tipo Buio." +217,15,9,"An item to be held by a Pokémon. +A pair of shady-looking glasses that +boost the power of Dark-type moves." +217,15,11,"怪しく みえる メガネ。 +持たせると あくタイプの +技の 威力が あがる。" +218,5,9,"A hold item that +boosts FIGHTING- +type moves." +218,6,9,"A hold item that +boosts FIGHTING- +type moves." +218,7,9,"An item to be held by a POKéMON. +A belt that boosts determination +and FIGHTING-type moves." +218,8,9,"An item to be held by a Pokémon. +It is a belt that boosts determination +and Fighting-type moves." +218,9,9,"An item to be held by a Pokémon. +It is a belt that boosts determination +and Fighting-type moves." +218,10,9,"An item to be held by a Pokémon. +It is a belt that boosts determination +and Fighting-type moves." +218,11,5,"Objet à tenir. Ceinture qui augmente +la détermination et la puissance des +capacités de type Combat." +218,11,9,"An item to be held by a Pokémon. +It is a belt that boosts determination +and Fighting-type moves." +218,14,9,"An item to be held by a Pokémon. +It is a belt that boosts determination +and Fighting-type moves." +218,15,1,"きが ひきしまる おび。 +もたせると かくとうタイプの +わざの いりょくが あがる。" +218,15,3,"마음을 긴장시키는 띠. +지니게 하면 격투타입 +기술의 위력이 올라간다." +218,15,5,"Objet à tenir. Une ceinture qui augmente +la détermination et la puissance des capacités +de type Combat." +218,15,6,"Ein Item zum Tragen. Ein Gürtel, der die +Entschlossenheit sowie Attacken vom +Typ Kampf verstärkt." +218,15,7,"Un extraño tipo de hueso que potencia el Ataque. +Deben llevarlo Cubone o Marowak." +218,15,8,"Strumento da dare a un Pokémon. +Cintura che potenzia la determinazione +e le mosse di tipo Lotta." +218,15,9,"An item to be held by a Pokémon. +This belt helps the wearer to focus and +boosts the power of Fighting-type moves." +218,15,11,"気が ひきしまる 帯。 +持たせると かくとうタイプの +技の 威力が あがる。" +219,5,9,"A hold item that +boosts ELECTRIC- +type moves." +219,6,9,"A hold item that +boosts ELECTRIC- +type moves." +219,7,9,"An item to be held by a POKéMON. +A powerful magnet that boosts the +power of ELECTRIC-type moves." +219,8,9,"An item to be held by a Pokémon. +It is a powerful magnet that boosts +the power of Electric-type moves." +219,9,9,"An item to be held by a Pokémon. +It is a powerful magnet that boosts +the power of Electric-type moves." +219,10,9,"An item to be held by a Pokémon. +It is a powerful magnet that boosts +the power of Electric-type moves." +219,11,5,"Objet à tenir. Aimant puissant montant +la puissance des capacités de type +Électrik." +219,11,9,"An item to be held by a Pokémon. +It is a powerful magnet that boosts +the power of Electric-type moves." +219,14,9,"An item to be held by a Pokémon. +It is a powerful magnet that boosts +the power of Electric-type moves." +219,15,1,"きょうりょくな じしゃく。 +もたせると でんきタイプの +わざの いりょくが あがる。" +219,15,3,"강력한 자석. +지니게 하면 전기타입 +기술의 위력이 올라간다." +219,15,5,"Objet à tenir. Un aimant puissant qui augmente +la puissance des capacités de type Électrik." +219,15,6,"Ein Item zum Tragen, dessen magnetische +Kraft Attacken vom Typ Elektro verstärkt." +219,15,7,"Es un puerro muy largo que debe llevar +Farfetch’d. Aumenta mucho la probabilidad +de que logre un golpe crítico." +219,15,8,"Strumento da dare a un Pokémon. +Potente magnete che potenzia le mosse +di tipo Elettro." +219,15,9,"An item to be held by a Pokémon. +It is a powerful magnet that boosts +the power of Electric-type moves." +219,15,11,"強力な 磁石。 +持たせると でんきタイプの +技の 威力が あがる。" +220,5,9,"A hold item that +raises the power of +WATER-type moves." +220,6,9,"A hold item that +raises the power of +WATER-type moves." +220,7,9,"An item to be held by a POKéMON. +A teardrop-shaped gem that boosts +the power of WATER-type moves." +220,8,9,"An item to be held by a Pokémon. +It is a teardrop-shaped gem that ups +the power of Water-type moves." +220,9,9,"An item to be held by a Pokémon. +It is a teardrop-shaped gem that ups +the power of Water-type moves." +220,10,9,"An item to be held by a Pokémon. +It is a teardrop-shaped gem that ups +the power of Water-type moves." +220,11,5,"Objet à tenir. Gemme en forme de +goutte d’eau montant la puissance +des capacités de type Eau." +220,11,9,"An item to be held by a Pokémon. +It is a teardrop-shaped gem that ups +the power of Water-type moves." +220,14,9,"An item to be held by a Pokémon. +It is a teardrop-shaped gem that ups +the power of Water-type moves." +220,15,1,"しずくの かたちの ほうせき。 +もたせると みずタイプの +わざの いりょくが あがる。" +220,15,3,"물방울 모양의 보석. +지니게 하면 물타입 +기술의 위력이 올라간다." +220,15,5,"Objet à tenir. Une gemme en forme de goutte +d’eau qui augmente la puissance des capacités +de type Eau." +220,15,6,"Ein Item zum Tragen. Ein tränenförmiger +Edelstein, der Attacken vom Typ Wasser verstärkt." +220,15,7,"Debe llevarlo un Pokémon. Aumenta el carisma +en los concursos." +220,15,8,"Strumento da dare a un Pokémon. +Gemma a forma di goccia che potenzia le mosse +di tipo Acqua." +220,15,9,"An item to be held by a Pokémon. +This teardrop-shaped gem boosts +the power of Water-type moves." +220,15,11,"しずくの 形の 宝石。 +持たせると みずタイプの +技の 威力が あがる。" +221,5,9,"A hold item that +raises the power of +FLYING-type moves." +221,6,9,"A hold item that +raises the power of +FLYING-type moves." +221,7,9,"An item to be held by a POKéMON. +A long, sharp beak that boosts the +power of FLYING-type moves." +221,8,9,"An item to be held by a Pokémon. +It is a long, sharp beak that boosts +the power of Flying-type moves." +221,9,9,"An item to be held by a Pokémon. +It is a long, sharp beak that boosts +the power of Flying-type moves." +221,10,9,"An item to be held by a Pokémon. +It is a long, sharp beak that boosts +the power of Flying-type moves." +221,11,5,"Objet à tenir. Bec long et pointu +montant la puissance des capacités +de type Vol." +221,11,9,"An item to be held by a Pokémon. +It is a long, sharp beak that boosts +the power of Flying-type moves." +221,14,9,"An item to be held by a Pokémon. +It is a long, sharp beak that boosts +the power of Flying-type moves." +221,15,1,"ながく とがった くちばし。 +もたせると ひこうタイプの +わざの いりょくが あがる。" +221,15,3,"길고 뾰족한 부리. +지니게 하면 비행타입 +기술의 위력이 올라간다." +221,15,5,"Objet à tenir. Un bec long et pointu qui augmente +la puissance des capacités de type Vol." +221,15,6,"Ein Item zum Tragen. Ein langer, scharfer +Schnabel verstärkt Attacken vom Typ Flug." +221,15,7,"Debe llevarlo un Pokémon. Aumenta la belleza en +los concursos." +221,15,8,"Strumento da dare a un Pokémon. +Becco lungo e affilato che potenzia le mosse +di tipo Volante." +221,15,9,"An item to be held by a Pokémon. +It’s a long, sharp beak that boosts +the power of Flying-type moves." +221,15,11,"長く とがった くちばし。 +持たせると ひこうタイプの +技の 威力が あがる。" +222,5,9,"A hold item that +raises the power of +POISON-type moves." +222,6,9,"A hold item that +raises the power of +POISON-type moves." +222,7,9,"An item to be held by a POKéMON. +A small, poisonous barb that boosts +the power of POISON-type moves." +222,8,9,"An item to be held by a Pokémon. +It is a small, poisonous barb that ups +the power of Poison-type moves." +222,9,9,"An item to be held by a Pokémon. +It is a small, poisonous barb that ups +the power of Poison-type moves." +222,10,9,"An item to be held by a Pokémon. +It is a small, poisonous barb that ups +the power of Poison-type moves." +222,11,5,"Objet à tenir. Petit pic empoisonné +montant la puissance des capacités +de type Poison." +222,11,9,"An item to be held by a Pokémon. +It is a small, poisonous barb that ups +the power of Poison-type moves." +222,14,9,"An item to be held by a Pokémon. +It is a small, poisonous barb that ups +the power of Poison-type moves." +222,15,1,"どくのある ちいさな ハリ。 +もたせると どくタイプの +わざの いりょくが あがる。" +222,15,3,"독이 있는 작은 침. +지니게 하면 독타입 +기술의 위력이 올라간다." +222,15,5,"Objet à tenir. Un petit pic empoisonné qui +augmente la puissance des capacités de +type Poison." +222,15,6,"Ein Item zum Tragen. Ein schmaler und giftiger +Widerhaken, der Attacken vom Typ Gift verstärkt." +222,15,7,"Debe llevarlo un Pokémon. Aumenta la dulzura en +los concursos." +222,15,8,"Strumento da dare a un Pokémon. +Aculeo piccolo e tossico che potenzia le mosse +di tipo Veleno." +222,15,9,"An item to be held by a Pokémon. +This small, poisonous barb boosts +the power of Poison-type moves." +222,15,11,"どくのある ちいさな ハリ。 +持たせると どくタイプの +技の 威力が あがる。" +223,5,9,"A hold item that +raises the power of +ICE-type moves." +223,6,9,"A hold item that +raises the power of +ICE-type moves." +223,7,9,"An item to be held by a POKéMON. +A piece of ice that repels heat +and boosts ICE-type moves." +223,8,9,"An item to be held by a Pokémon. +It is a piece of ice that repels heat +and boosts Ice-type moves." +223,9,9,"An item to be held by a Pokémon. +It is a piece of ice that repels heat +and boosts Ice-type moves." +223,10,9,"An item to be held by a Pokémon. +It is a piece of ice that repels heat +and boosts Ice-type moves." +223,11,5,"Objet à tenir. Morceau de glace qui +réfléchit la chaleur et monte la +puissance des capacités de type Glace." +223,11,9,"An item to be held by a Pokémon. +It is a piece of ice that repels heat +and boosts Ice-type moves." +223,14,9,"An item to be held by a Pokémon. +It is a piece of ice that repels heat +and boosts Ice-type moves." +223,15,1,"ねつを よせつけない こおり。 +もたせると こおりタイプの +わざの いりょくが あがる。" +223,15,3,"열을 가까이하지 않게 하는 얼음. +지니게 하면 얼음타입 +기술의 위력이 올라간다." +223,15,5,"Objet à tenir. Un morceau de glace qui réfléchit +la chaleur et augmente la puissance des +capacités de type Glace." +223,15,6,"Ein Item zum Tragen. Ein Stück Eis, das Hitze +fernhält und Attacken vom Typ Eis verstärkt." +223,15,7,"Debe llevarlo un Pokémon. Aumenta el ingenio en +los concursos." +223,15,8,"Strumento da dare a un Pokémon. +Pezzo di ghiaccio che respinge il calore +e potenzia le mosse di tipo Ghiaccio." +223,15,9,"An item to be held by a Pokémon. +It’s a piece of ice that repels heat +effects and boosts Ice-type moves." +223,15,11,"熱を よせつけない 氷。 +持たせると こおりタイプの +技の 威力が あがる。" +224,5,9,"A hold item that +raises the power of +GHOST-type moves." +224,6,9,"A hold item that +raises the power of +GHOST-type moves." +224,7,9,"An item to be held by a POKéMON. +A sinister, eerie tag that boosts +GHOST-type moves." +224,8,9,"An item to be held by a Pokémon. +It is a sinister, eerie tag that boosts +the power of Ghost-type moves." +224,9,9,"An item to be held by a Pokémon. +It is a sinister, eerie tag that boosts +the power of Ghost-type moves." +224,10,9,"An item to be held by a Pokémon. +It is a sinister, eerie tag that boosts +the power of Ghost-type moves." +224,11,5,"Objet à tenir. Plaque sinistre et +étrange montant la puissance des +capacités de type Spectre." +224,11,9,"An item to be held by a Pokémon. +It is a sinister, eerie tag that boosts +the power of Ghost-type moves." +224,14,9,"An item to be held by a Pokémon. +It is a sinister, eerie tag that boosts +the power of Ghost-type moves." +224,15,1,"あやしくて ぶきみな おふだ。 +もたせると ゴーストタイプの +わざの いりょくが あがる。" +224,15,3,"괴상하고 으스스한 부적. +지니게 하면 고스트타입 +기술의 위력이 올라간다." +224,15,5,"Objet à tenir. Une plaque sinistre et étrange +qui augmente la puissance des capacités de +type Spectre." +224,15,6,"Ein Item zum Tragen. Ein fieser, unheimlicher +Sticker, der Attacken vom Typ Geist verstärkt." +224,15,7,"Debe llevarlo un Pokémon. Aumenta la dureza en +los concursos." +224,15,8,"Strumento da dare a un Pokémon. +Targa sinistra e inquietante che potenzia le mosse +di tipo Spettro." +224,15,9,"An item to be held by a Pokémon. +It’s a sinister, eerie tag that boosts +the power of Ghost-type moves." +224,15,11,"怪しくて 不気味な お札。 +持たせると ゴーストタイプの +技の 威力が あがる。" +225,5,9,"A hold item that +boosts PSYCHIC- +type moves." +225,6,9,"A hold item that +boosts PSYCHIC- +type moves." +225,7,9,"An item to be held by a POKéMON. +A spoon imbued with telekinetic +power boosts PSYCHIC-type moves." +225,8,9,"An item to be held by a Pokémon. It is +a spoon imbued with telekinetic power +that boosts Psychic-type moves." +225,9,9,"An item to be held by a Pokémon. It is +a spoon imbued with telekinetic power +that boosts Psychic-type moves." +225,10,9,"An item to be held by a Pokémon. It is +a spoon imbued with telekinetic power +that boosts Psychic-type moves." +225,11,5,"Objet à tenir. Cuillère contenant un +pouvoir télékinésique montant la +puissance des capacités de type Psy." +225,11,9,"An item to be held by a Pokémon. It is +a spoon imbued with telekinetic power +that boosts Psychic-type moves." +225,14,9,"An item to be held by a Pokémon. It is +a spoon imbued with telekinetic power +that boosts Psychic-type moves." +225,15,1,"ねんりきを こめた スプーン。 +もたせると エスパータイプの +わざの いりょくが あがる。" +225,15,3,"염동력을 담은 숟가락. +지니게 하면 에스퍼타입 +기술의 위력이 올라간다." +225,15,5,"Objet à tenir. Une cuiller contenant un pouvoir +télékinésique qui augmente la puissance des +capacités de type Psy." +225,15,6,"Ein Item zum Tragen. Ein Löffel voller +telekinetischer Energie, der Attacken vom +Typ Psycho verstärkt." +225,15,7,"Debe llevarla un Pokémon. Aumenta ligeramente +la Precisión de los movimientos." +225,15,8,"Strumento da dare a un Pokémon. +Cucchiaio dotato di potere telecinetico che +potenzia le mosse di tipo Psico." +225,15,9,"An item to be held by a Pokémon. +This spoon is imbued with telekinetic +power and boosts Psychic-type moves." +225,15,11,"念力を こめた スプーン。 +持たせると エスパータイプの +技の 威力が あがる。" +226,5,9,"A hold item that +raises the power of +FIRE-type moves." +226,6,9,"A hold item that +raises the power of +FIRE-type moves." +226,7,9,"An item to be held by a POKéMON. +A combustible fuel that boosts the +power of FIRE-type moves." +226,8,9,"An item to be held by a Pokémon. +It is a combustible fuel that boosts +the power of Fire-type moves." +226,9,9,"An item to be held by a Pokémon. +It is a combustible fuel that boosts +the power of Fire-type moves." +226,10,9,"An item to be held by a Pokémon. +It is a combustible fuel that boosts +the power of Fire-type moves." +226,11,5,"Objet à tenir. Combustible montant la +puissance des capacités de type Feu." +226,11,9,"An item to be held by a Pokémon. +It is a combustible fuel that boosts +the power of Fire-type moves." +226,14,9,"An item to be held by a Pokémon. +It is a combustible fuel that boosts +the power of Fire-type moves." +226,15,1,"ものを もやす ねんりょう。 +もたせると ほのおタイプの +わざの いりょくが あがる。" +226,15,3,"물건을 태우는 연료. +지니게 하면 불꽃타입 +기술의 위력이 올라간다." +226,15,5,"Objet à tenir. Un combustible qui augmente +la puissance des capacités de type Feu." +226,15,6,"Ein Item zum Tragen. Ein Brennstoff, der Attacken +vom Typ Feuer verstärkt." +226,15,7,"Cinta de pelo que aumenta ligeramente la +potencia de los movimientos físicos. Debe +llevarla un Pokémon." +226,15,8,"Strumento da dare a un Pokémon. +Sostanza combustibile che potenzia le mosse +di tipo Fuoco." +226,15,9,"An item to be held by a Pokémon. +It is a combustible fuel that boosts +the power of Fire-type moves." +226,15,11,"ものを 燃やす 燃料。 +持たせると ほのおタイプの +技の 威力が あがる。" +227,5,9,"A hold item that +raises the power of +DRAGON-type moves." +227,6,9,"A hold item that +raises the power of +DRAGON-type moves." +227,7,9,"An item to be held by a POKéMON. +A hard and sharp fang that boosts +the power of DRAGON-type moves." +227,8,9,"An item to be held by a Pokémon. +It is a hard and sharp fang that ups +the power of Dragon-type moves." +227,9,9,"An item to be held by a Pokémon. +It is a hard and sharp fang that ups +the power of Dragon-type moves." +227,10,9,"An item to be held by a Pokémon. +It is a hard and sharp fang that ups +the power of Dragon-type moves." +227,11,5,"Objet à tenir. Croc dur et pointu +montant la puissance des capacités +de type Dragon." +227,11,9,"An item to be held by a Pokémon. +It is a hard and sharp fang that ups +the power of Dragon-type moves." +227,14,9,"An item to be held by a Pokémon. +It is a hard and sharp fang that ups +the power of Dragon-type moves." +227,15,1,"かたくて するどい キバ。 +もたせると ドラゴンタイプの +わざの いりょくが あがる。" +227,15,3,"단단하고 날카로운 이빨. +지니게 하면 드래곤타입 +기술의 위력이 올라간다." +227,15,5,"Objet à tenir. Un croc dur et pointu qui augmente +la puissance des capacités de type Dragon." +227,15,6,"Ein Item zum Tragen. Ein harter und scharfer +Reißzahn, der Attacken vom Typ Drache +verstärkt." +227,15,7,"Potencian ligeramente los movimientos +especiales. Debe llevarlas un Pokémon." +227,15,8,"Strumento da dare a un Pokémon. +Dente duro e affilato che potenzia le mosse +di tipo Drago." +227,15,9,"An item to be held by a Pokémon. +This hard and sharp fang boosts +the power of Dragon-type moves." +227,15,11,"硬くて 鋭い キバ。 +持たせると ドラゴンタイプの +技の 威力が あがる。" +228,5,9,"A hold item that +raises the power of +NORMAL-type moves." +228,6,9,"A hold item that +raises the power of +NORMAL-type moves." +228,7,9,"An item to be held by a POKéMON. +A sumptuous scarf that boosts the +power of NORMAL-type moves." +228,8,9,"An item to be held by a Pokémon. +It is a sumptuous scarf that boosts +the power of Normal-type moves." +228,9,9,"An item to be held by a Pokémon. +It is a sumptuous scarf that boosts +the power of Normal-type moves." +228,10,9,"An item to be held by a Pokémon. +It is a sumptuous scarf that boosts +the power of Normal-type moves." +228,11,5,"Objet à tenir. Mouchoir somptueux +montant la puissance des capacités +de type Normal." +228,11,9,"An item to be held by a Pokémon. +It is a sumptuous scarf that boosts +the power of Normal-type moves." +228,14,9,"An item to be held by a Pokémon. +It is a sumptuous scarf that boosts +the power of Normal-type moves." +228,15,1,"はだざわりの よい スカーフ。 +もたせると ノーマルタイプの +わざの いりょくが あがる。" +228,15,3,"감촉이 좋은 스카프. +지니게 하면 노말타입 +기술의 위력이 올라간다." +228,15,5,"Objet à tenir. Un mouchoir somptueux qui +augmente la puissance des capacités de +type Normal." +228,15,6,"Ein Item zum Tragen. Ein kostbarer Schal, +der Attacken vom Typ Normal verstärkt." +228,15,7,"Potencia ligeramente los movimientos +supereficaces. Debe llevarla un Pokémon." +228,15,8,"Strumento da dare a un Pokémon. +Sciarpa raffinata che potenzia le mosse +di tipo Normale." +228,15,9,"An item to be held by a Pokémon. +It’s a sumptuous scarf that boosts +the power of Normal-type moves." +228,15,11,"はだざわりの よい スカーフ。 +持たせると ノーマルタイプの +技の 威力が あがる。" +229,5,9,"A peculiar box made +by SILPH CO." +229,6,9,"A peculiar box made +by SILPH CO." +229,7,9,"A transparent device filled with all +sorts of data. +It is made by SILPH CO." +229,8,9,"A transparent device filled with all +sorts of data. +It was produced by Silph Co." +229,9,9,"A transparent device filled with all +sorts of data. +It was produced by Silph Co." +229,10,9,"A transparent device filled with all +sorts of data. +It was produced by Silph Co." +229,11,5,"Dispositif transparent rempli de +données diverses et variées. +Fabriqué par la Sylphe SARL." +229,11,9,"A transparent device filled with all +sorts of data. +It was produced by Silph Co." +229,14,9,"A transparent device filled with all +sorts of data. +It was produced by Silph Co." +229,15,1,"なかに いろんな じょうほうが +つまった とうめいな きかい。 +シルフ カンパニーせい。" +229,15,3,"안에 여러 가지 정보가 +가득한 투명한 기계다. +실프주식회사 제품." +229,15,5,"Un dispositif transparent rempli de données +diverses et variées. Fabriqué par la Sylphe SARL." +229,15,6,"Ein durchsichtiges Gerät. Es enthält alle +möglichen Daten. Hergestellt von Silph Co." +229,15,7,"Prolonga la duración de barreras como Reflejo y +Pantalla de Luz. Debe llevarla un Pokémon." +229,15,8,"Apparecchio trasparente pieno zeppo di dati +di ogni tipo. È un prodotto della Silph SpA." +229,15,9,"A transparent device somehow +filled with all sorts of data. +It was produced by Silph Co." +229,15,11,"中に いろんな 情報が +つまった 透明な 機械。 +シルフ カンパニー製。" +230,5,9,"A hold item that +restores HP upon +striking the foe." +230,6,9,"A hold item that +restores HP upon +striking the foe." +230,7,9,"An item to be held by a POKéMON. +The holding POKéMON regains some +HP upon striking the foe." +230,8,9,"An item to be held by a Pokémon. +The holder’s HP is restored a little +every time it inflicts damage." +230,9,9,"An item to be held by a Pokémon. +The holder’s HP is restored a little +every time it inflicts damage." +230,10,9,"An item to be held by a Pokémon. +The holder’s HP is restored a little +every time it inflicts damage." +230,11,5,"Objet à tenir. Restaure un peu les PV +du porteur à chaque fois qu’il inflige +des dégâts." +230,11,9,"An item to be held by a Pokémon. +The holder’s HP is restored a little +every time it inflicts damage." +230,14,9,"An item to be held by a Pokémon. +The holder’s HP is restored a little +every time it inflicts damage." +230,15,1,"もたせた ポケモンが こうげきして +あいてに ダメージを あたえたとき +HPを すこし かいふく できる。" +230,15,3,"지니게 한 포켓몬이 공격하여 +상대에게 데미지를 줬을 때 +HP를 조금 회복할 수 있다." +230,15,5,"Objet à tenir. Restaure un peu les PV du porteur +à chaque fois qu’il inflige des dégâts." +230,15,6,"Ein Item zum Tragen. Es stellt einige KP des +Trägers immer dann wieder her, wenn dieser +dem Ziel Schaden zufügt." +230,15,7,"Potencia los movimientos, pero consume PS con +cada ataque. Debe llevarla un Pokémon." +230,15,8,"Strumento da dare a un Pokémon. +Chi ce l’ha recupera un po’ di PS ogni volta +che infligge danni." +230,15,9,"An item to be held by a Pokémon. +The holder regains a little HP every +time it inflicts damage on others." +230,15,11,"持たせた ポケモンが 攻撃して +相手に ダメージを あたえたとき +HPを 少し 回復できる。" +231,5,9,"A hold item that +slightly boosts +WATER-type moves." +231,6,9,"A hold item that +slightly boosts +WATER-type moves." +231,7,9,"An item to be held by a POKéMON. +It slightly boosts the power of +WATER-type moves." +231,8,9,"An item to be held by a Pokémon. It is +incense with a curious aroma that +boosts the power of Water-type moves." +231,9,9,"An item to be held by a Pokémon. It is +incense with a curious aroma that +boosts the power of Water-type moves." +231,10,9,"An item to be held by a Pokémon. It is +incense with a curious aroma that +boosts the power of Water-type moves." +231,11,5,"Objet à tenir. Encens au parfum curieux +qui augmente la puissance des capacités +de type Eau." +231,11,9,"An item to be held by a Pokémon. It is +incense with a curious aroma that +boosts the power of Water-type moves." +231,14,9,"An item to be held by a Pokémon. It is +incense with a curious aroma that +boosts the power of Water-type moves." +231,15,1,"ふしぎな かおりの おこう。 +もたせると みずタイプの +わざの いりょくが あがる。" +231,15,3,"이상한 향기의 향로. +지니게 하면 물타입 +기술의 위력이 올라간다." +231,15,5,"Objet à tenir. Un encens au parfum curieux +augmentant la puissance des capacités de +type Eau." +231,15,6,"Ein Item zum Tragen. Sein ausgefallenes Aroma +verstärkt Attacken vom Typ Wasser." +231,15,7,"Permite el uso inmediato de cualquier movimiento +en el primer turno. Es de un solo uso y debe +llevarla un Pokémon." +231,15,8,"Strumento da dare a un Pokémon. +Incenso dal curioso aroma che potenzia le mosse +di tipo Acqua." +231,15,9,"An item to be held by a Pokémon. +This incense has a curious aroma that +boosts the power of Water-type moves." +231,15,11,"不思議な 香りの 御香。 +持たせると みずタイプの +技の 威力が あがる。" +232,5,9,"A hold item that +slightly lowers the +foe’s accuracy." +232,6,9,"A hold item that +slightly lowers the +foe’s accuracy." +232,7,9,"An item to be held by a POKéMON. +Its tricky aroma slightly reduces +the foe’s accuracy." +232,8,9,"An item to be held by a Pokémon. The +tricky aroma of this incense lowers the +foe’s accuracy." +232,9,9,"An item to be held by a Pokémon. The +tricky aroma of this incense lowers the +foe’s accuracy." +232,10,9,"An item to be held by a Pokémon. The +tricky aroma of this incense lowers the +foe’s accuracy." +232,11,5,"Objet à tenir. Le parfum trompeur +de cet encens baisse la Précision de +l’ennemi." +232,11,9,"An item to be held by a Pokémon. The +tricky aroma of this incense may make +attacks miss the holder." +232,14,9,"An item to be held by a Pokémon. The +tricky aroma of this incense may make +attacks miss the holder." +232,15,1,"もたせると おこうの ふしぎな +かおりが あいてを まどわせて +わざが めいちゅう しにくくなる。" +232,15,3,"지니게 하면 향로의 이상한 +향기가 상대를 혼란시켜 +기술이 명중하기 어려워진다." +232,15,5,"Objet à tenir. Le parfum trompeur de cet encens +baisse la Précision de l’ennemi." +232,15,6,"Ein Item zum Tragen. Das verwirrende Aroma +senkt die Genauigkeit des Gegners." +232,15,7,"Extraña esfera que envenena gravemente al +Pokémon que la lleva en combate." +232,15,8,"Strumento da dare a un Pokémon. +Il suo aroma intenso riduce la precisione +del nemico." +232,15,9,"An item to be held by a Pokémon. +The beguiling aroma of this incense +may cause attacks to miss its holder." +232,15,11,"持たせると 御香の 不思議な +香りが 相手を まどわせて +技が 命中 しにくくなる。" +233,5,9,"A hold item that +raises CHANSEY’s +critical-hit rate." +233,6,9,"A hold item that +raises CHANSEY’s +critical-hit rate." +233,7,9,"A glove to be held by a CHANSEY. +It raises CHANSEY’s critical-hit +ratio." +233,8,9,"An item to be held by CHANSEY. It is a +pair of gloves that boosts CHANSEY’s +critical-hit ratio." +233,9,9,"An item to be held by CHANSEY. It is a +pair of gloves that boosts CHANSEY’s +critical-hit ratio." +233,10,9,"An item to be held by CHANSEY. It is a +pair of gloves that boosts CHANSEY’s +critical-hit ratio." +233,11,5,"Objet à faire tenir à Leveinard. Paire +de gants montant son taux de critiques." +233,11,9,"An item to be held by Chansey. It is a +pair of gloves that boosts Chansey’s +critical-hit ratio." +233,14,9,"An item to be held by Chansey. It is a +pair of gloves that boosts Chansey’s +critical-hit ratio." +233,15,1,"こううんを よぶ グローブ。 +ラッキーに もたせると わざが +きゅうしょに あたりやすくなる。" +233,15,3,"행운을 부르는 글러브다. +럭키에게 지니게 하면 기술이 +급소에 맞기 쉬워진다." +233,15,5,"Objet à faire tenir à Leveinard. +Une paire de gants qui augmente son taux +de critiques." +233,15,6,"Ein Item, das von Chaneira getragen werden kann. +Diese Handschuhe erhöhen die Volltrefferquote +des Trägers." +233,15,7,"Extraña esfera que causa quemaduras al Pokémon +que la lleva en combate." +233,15,8,"Strumento da dare a Chansey. +Guanti che aumentano molto la probabilità +di sferrare brutti colpi." +233,15,9,"An item to be held by Chansey. +This pair of lucky boxing gloves will +boost Chansey’s critical-hit ratio." +233,15,11,"幸運を よぶ グローブ。 +ラッキーに 持たせると 技が +急所に 当たりやすくなる。" +234,5,9,"A hold item that +raises DEFENSE." +234,6,9,"A hold item that +raises DITTO’s +DEFENSE." +234,7,9,"A fine, hard powder to be held by +a DITTO. +It raises DITTO’s DEFENSE stat." +234,8,9,"An item to be held by DITTO. +Extremely fine yet hard, this odd +powder boosts the Defense stat." +234,9,9,"An item to be held by DITTO. +Extremely fine yet hard, this odd +powder boosts the Defense stat." +234,10,9,"An item to be held by DITTO. +Extremely fine yet hard, this odd +powder boosts the Defense stat." +234,11,5,"Objet à faire tenir à Métamorph. Cette +poudre étrange, très fine mais +résistante, booste sa Défense." +234,11,9,"An item to be held by Ditto. +Extremely fine yet hard, this odd +powder boosts the Defense stat." +234,14,9,"An item to be held by Ditto. +Extremely fine yet hard, this odd +powder boosts the Defense stat." +234,15,1,"メタモンに もたせると ぼうぎょが +あがる ふしぎなこな。 +とても こまかくて かたい。" +234,15,3,"메타몽에게 지니게 하면 +방어가 올라가는 이상한 가루. +매우 잘고 단단하다." +234,15,5,"Objet à faire tenir à Métamorph. +Cette poudre étrange, très fine mais résistante, +augmente sa Défense." +234,15,6,"Ein Item, das von Ditto getragen werden kann. +Es erhöht seinen Verteidigungs-Wert." +234,15,7,"Debe llevarlo Ditto. Es un polvo muy fino, pero +a la vez resistente, que aumenta su Velocidad." +234,15,8,"Strumento da dare a Ditto. +Strana polvere finissima e al tempo stesso dura +che migliora la Difesa." +234,15,9,"An item to be held by Ditto. +Extremely fine yet hard, this odd +powder boosts the Defense stat." +234,15,11,"メタモンに 持たせると 防御が +あがる 不思議な粉。 +とても こまかくて 硬い。" +235,5,9,"A bone of some +sort. It can be sold +cheaply." +235,6,9,"A hold item that +raises CUBONE or +MAROWAK’s ATTACK." +235,7,9,"A hard bone of some sort to be +held by a CUBONE or MAROWAK. +It raises the ATTACK stat." +235,8,9,"An item to be held by CUBONE or +MAROWAK. It is a hard bone of some +sort that boosts the Attack stat." +235,9,9,"An item to be held by CUBONE or +MAROWAK. It is a hard bone of some +sort that boosts the Attack stat." +235,10,9,"An item to be held by CUBONE or +MAROWAK. It is a hard bone of some +sort that boosts the Attack stat." +235,11,5,"Objet à faire tenir à Osselait ou +Ossatueur. Os dur qui monte leur +Attaque." +235,11,9,"An item to be held by Cubone or +Marowak. It is a hard bone of some +sort that boosts the Attack stat." +235,14,9,"An item to be held by Cubone or +Marowak. It is a hard bone of some +sort that boosts the Attack stat." +235,15,1,"なにかの かたい ホネ。 +カラカラ または ガラガラに +もたせると こうげきが あがる。" +235,15,3,"무언가의 단단한 뼈. +탕구리 혹은 텅구리에게 +지니게 하면 공격이 올라간다." +235,15,5,"Objet à faire tenir à Osselait ou Ossatueur. +Un os dur qui augmente leur Attaque." +235,15,6,"Ein harter Knochen, der den Angriffs-Wert +von Tragosso oder Knogga erhöht, wenn sie +ihn tragen." +235,15,7,"Si el Pokémon que la lleva tiene los PS al +máximo, puede resistir un golpe que lo dejaría +K.O. y se queda con 1 PS." +235,15,8,"Strumento da dare a Cubone o Marowak. +Osso duro che migliora l’Attacco." +235,15,9,"An item to be held by Cubone or +Marowak. It is a hard bone of some +sort that boosts the Attack stat." +235,15,11,"なにかの 硬い ホネ。 +カラカラ または ガラガラに +持たせると 攻撃が あがる。" +236,5,9,"A stick of leek. +It can be sold +cheaply." +236,6,9,"A hold item that +raises FARFETCH’D’s +critical-hit ratio." +236,7,9,"A stick of leek to be held by a +FARFETCH’D. It raises FARFETCH’D’s +critical-hit ratio." +236,8,9,"An item to be held by FARFETCH’D. It is +a very long and stiff stalk of leek +that boosts the critical-hit ratio." +236,9,9,"An item to be held by FARFETCH’D. It is +a very long and stiff stalk of leek +that boosts the critical-hit ratio." +236,10,9,"An item to be held by FARFETCH’D. It is +a very long and stiff stalk of leek +that boosts the critical-hit ratio." +236,11,5,"Objet à faire tenir à Canarticho. +Poireau très long et solide qui +monte son taux de critiques." +236,11,9,"An item to be held by Farfetch’d. It is +a very long and stiff stalk of leek +that boosts the critical-hit ratio." +236,14,9,"An item to be held by Farfetch’d. It is +a very long and stiff stalk of leek +that boosts the critical-hit ratio." +236,15,1,"とても ながくて かたい クキ。 +カモネギに もたせると わざが +きゅうしょに あたりやすくなる。" +236,15,3,"매우 길고 단단한 줄기. +파오리에게 지니게 하면 기술이 +급소에 맞기 쉬워진다." +236,15,5,"Objet à faire tenir à Canarticho. +Un poireau très long et solide qui augmente +son taux de critiques." +236,15,6,"Ein Item, das von Porenta getragen werden +kann. Diese lange Lauchstange erhöht die +Volltrefferquote stark." +236,15,7,"Debe llevarlo un Pokémon. Si se mueve después +del enemigo, aumenta la Precisión del Pokémon." +236,15,8,"Strumento da dare a Farfetch’d. +Lungo gambo di porro che aumenta molto +la probabilità di sferrare brutti colpi." +236,15,9,"An item to be held by Farfetch’d. +This very long and stiff stalk of +leek boosts its critical-hit ratio." +236,15,11,"とても 長くて 硬い クキ。 +カモネギに 持たせると 技が +急所に 当たりやすくなる。" +237,5,9,"A hold item that +raises COOL in +CONTESTS." +237,6,9,"A hold item that +raises COOL in +CONTESTS." +237,7,9,"An item to be held by a POKéMON. +It boosts the holding POKéMON’s +COOL condition in CONTESTS." +237,8,9,"An item to be held by a Pokémon. +It boosts the “Cool” aspect of the +holder in a Contest." +237,9,9,"An item to be held by a Pokémon. +It boosts the “Cool” aspect of the +holder in a Contest." +237,10,9,"An item to be held by a Pokémon. +It boosts the “Cool” aspect of the +holder in a Contest in Sinnoh." +237,11,5,"Objet à tenir. Augmente le Sang-froid +d’un Pokémon dans les Concours." +237,11,9,"An item to be held by a Pokémon. +It boosts the Cool aspect of the +holder in a Contest." +237,14,9,"An item to be held by a Pokémon. +It boosts the Cool aspect of the +holder in a Contest." +237,15,1,"もたせて コンテストに さんかすると +その ポケモンは いつもより +かっこよく みられる。" +237,15,3,"지니게 하여 콘테스트에 참가하면 +그 포켓몬은 여느 때보다 +근사하게 보인다." +237,15,5,"Objet à tenir. Augmente le Sang-froid +d’un Pokémon dans les Concours." +237,15,6,"Ein Item zum Tragen. Trainer erhöhen damit in +Wettbewerben die „Coolness“ ihres Pokémon." +237,15,7,"Potencia un movimiento que se use de forma +consecutiva. Pero el efecto se pierde si se +emplea otro movimiento." +237,15,8,"Strumento da dare a un Pokémon. +Aumenta la “Classe” di chi l’indossa in una Gara." +237,15,9,"An item to be held by a Pokémon. +During a Contest, it raises the Cool +aspect of the Pokémon holding it." +237,15,11,"持たせて コンテストに 参加すると +その ポケモンは いつもより +かっこよく みられる。" +238,5,9,"A hold item that +raises BEAUTY in +CONTESTS." +238,6,9,"A hold item that +raises BEAUTY in +CONTESTS." +238,7,9,"An item to be held by a POKéMON. +It boosts the holding POKéMON’s +BEAUTY condition in CONTESTS." +238,8,9,"An item to be held by a Pokémon. +It boosts the “Beauty” aspect of the +holder in a Contest." +238,9,9,"An item to be held by a Pokémon. +It boosts the “Beauty” aspect of the +holder in a Contest." +238,10,9,"An item to be held by a Pokémon. +It boosts the “Beauty” aspect of the +holder in a Contest in Sinnoh." +238,11,5,"Objet à tenir. Augmente la Beauté +d’un Pokémon dans les Concours." +238,11,9,"An item to be held by a Pokémon. +It boosts the Beauty aspect of the +holder in a Contest." +238,14,9,"An item to be held by a Pokémon. +It boosts the Beauty aspect of the +holder in a Contest." +238,15,1,"もたせて コンテストに さんかすると +その ポケモンは いつもより +うつくしく みられる。" +238,15,3,"지니게 하여 콘테스트에 참가하면 +그 포켓몬은 여느 때보다 +아름답게 보인다." +238,15,5,"Objet à tenir. Augmente la Beauté d’un Pokémon +dans les Concours." +238,15,6,"Ein Item zum Tragen. Trainer erhöhen damit in +Wettbewerben die „Schönheit“ ihres Pokémon." +238,15,7,"Reduce la Velocidad. Los Pokémon que levitan y +los de tipo Volador se tornan sensibles a +movimientos de tipo Tierra." +238,15,8,"Strumento da dare a un Pokémon. +Aumenta la “Bellezza” di chi l’indossa +in una Gara." +238,15,9,"An item to be held by a Pokémon. +During a Contest, it raises the Beauty +aspect of the Pokémon holding it." +238,15,11,"持たせて コンテストに 参加すると +その ポケモンは いつもより +うつくしく みられる。" +239,5,9,"A hold item that +raises CUTE in +CONTESTS." +239,6,9,"A hold item that +raises CUTE in +CONTESTS." +239,7,9,"An item to be held by a POKéMON. +It boosts the holding POKéMON’s +CUTE condition in CONTESTS." +239,8,9,"An item to be held by a Pokémon. +It boosts the “Cute” aspect of the +holder in a Contest." +239,9,9,"An item to be held by a Pokémon. +It boosts the “Cute” aspect of the +holder in a Contest." +239,10,9,"An item to be held by a Pokémon. +It boosts the “Cute” aspect of the +holder in a Contest in Sinnoh." +239,11,5,"Objet à tenir. Augmente la Grâce +d’un Pokémon dans les Concours." +239,11,9,"An item to be held by a Pokémon. +It boosts the Cute aspect of the +holder in a Contest." +239,14,9,"An item to be held by a Pokémon. +It boosts the Cute aspect of the +holder in a Contest." +239,15,1,"もたせて コンテストに さんかすると +その ポケモンは いつもより +かわいく みられる。" +239,15,3,"지니게 하여 콘테스트에 참가하면 +그 포켓몬은 여느 때보다 +귀엽게 보인다." +239,15,5,"Objet à tenir. Augmente la Grâce d’un Pokémon +dans les Concours." +239,15,6,"Ein Item zum Tragen. Trainer erhöhen damit in +Wettbewerben die „Anmut“ ihres Pokémon." +239,15,7,"Es muy pesada y hace que el Pokémon que la +lleva se mueva más lento de lo normal." +239,15,8,"Strumento da dare a un Pokémon. +Aumenta la “Grazia” di chi l’indossa in una Gara." +239,15,9,"An item to be held by a Pokémon. +During a Contest, it raises the Cute +aspect of the Pokémon holding it." +239,15,11,"持たせて コンテストに 参加すると +その ポケモンは いつもより +かわいく みられる。" +240,5,9,"A hold item that +raises SMART in +CONTESTS." +240,6,9,"A hold item that +raises SMART in +CONTESTS." +240,7,9,"An item to be held by a POKéMON. +It boosts the holding POKéMON’s +SMART condition in CONTESTS." +240,8,9,"An item to be held by a Pokémon. +It boosts the “Smart” aspect of the +holder in a Contest." +240,9,9,"An item to be held by a Pokémon. +It boosts the “Smart” aspect of the +holder in a Contest." +240,10,9,"An item to be held by a Pokémon. +It boosts the “Smart” aspect of the +holder in a Contest in Sinnoh." +240,11,5,"Objet à tenir. Augmente l’Intelligence +d’un Pokémon dans les Concours." +240,11,9,"An item to be held by a Pokémon. +It boosts the Smart aspect of the +holder in a Contest." +240,14,9,"An item to be held by a Pokémon. +It boosts the Smart aspect of the +holder in a Contest." +240,15,1,"もたせて コンテストに さんかすると +その ポケモンは いつもより +かしこく みられる。" +240,15,3,"지니게 하여 콘테스트에 참가하면 +그 포켓몬은 여느 때보다 +슬기롭게 보인다." +240,15,5,"Objet à tenir. Augmente l’Intelligence +d’un Pokémon dans les Concours." +240,15,6,"Ein Item zum Tragen. Trainer erhöhen damit in +Wettbewerben die „Klugheit“ ihres Pokémon." +240,15,7,"Un hilo largo y delgado de color rojo que +transmite el enamoramiento del Pokémon que +lo lleva a su objetivo." +240,15,8,"Strumento da dare a un Pokémon. +Aumenta l’“Acume” di chi l’indossa in una Gara." +240,15,9,"An item to be held by a Pokémon. +During a Contest, it raises the Smart +aspect of the Pokémon holding it." +240,15,11,"持たせて コンテストに 参加すると +その ポケモンは いつもより +かしこく みられる。" +241,5,9,"A hold item that +raises TOUGH in +CONTESTS." +241,6,9,"A hold item that +raises TOUGH in +CONTESTS." +241,7,9,"An item to be held by a POKéMON. +It boosts the holding POKéMON’s +TOUGH condition in CONTESTS." +241,8,9,"An item to be held by a Pokémon. +It boosts the “Tough” aspect of the +holder in a Contest." +241,9,9,"An item to be held by a Pokémon. +It boosts the “Tough” aspect of the +holder in a Contest." +241,10,9,"An item to be held by a Pokémon. +It boosts the “Tough” aspect of the +holder in a Contest in Sinnoh." +241,11,5,"Objet à tenir. Augmente la Robustesse +d’un Pokémon dans les Concours." +241,11,9,"An item to be held by a Pokémon. +It boosts the Tough aspect of the +holder in a Contest." +241,14,9,"An item to be held by a Pokémon. +It boosts the Tough aspect of the +holder in a Contest." +241,15,1,"もたせて コンテストに さんかすると +その ポケモンは いつもより +たくましく みられる。" +241,15,3,"지니게 하여 콘테스트에 참가하면 +그 포켓몬은 여느 때보다 +강인하게 보인다." +241,15,5,"Objet à tenir. Augmente la Robustesse +d’un Pokémon dans les Concours." +241,15,6,"Ein Item zum Tragen. Trainer erhöhen damit in +Wettbewerben die „Stärke“ ihres Pokémon." +241,15,7,"Restaura gradualmente los PS de los Pokémon +de tipo Veneno y daña a todos los demás." +241,15,8,"Strumento da dare a un Pokémon. +Aumenta la “Grinta” di chi l’indossa in una Gara." +241,15,9,"An item to be held by a Pokémon. +During a Contest, it raises the Tough +aspect of the Pokémon holding it." +241,15,11,"持たせて コンテストに 参加すると +その ポケモンは いつもより +たくましく みられる。" +242,8,9,"An item to be held by a Pokémon. +It is a magnifying lens that slightly +boosts the accuracy of moves." +242,9,9,"An item to be held by a Pokémon. +It is a magnifying lens that slightly +boosts the accuracy of moves." +242,10,9,"An item to be held by a Pokémon. +It is a magnifying lens that slightly +boosts the accuracy of moves." +242,11,5,"Objet à tenir. Magnifique loupe +augmentant un peu la Précision +des capacités." +242,11,9,"An item to be held by a Pokémon. +It is a magnifying lens that slightly +boosts the accuracy of moves." +242,14,9,"An item to be held by a Pokémon. +It is a magnifying lens that slightly +boosts the accuracy of moves." +242,15,1,"ものが おおきく みえる レンズ。 +もたせると わざの めいちゅうりつが +すこし あがる。" +242,15,3,"물건이 크게 보이는 렌즈. +지니게 하면 기술의 명중률이 +조금 올라간다." +242,15,5,"Objet à tenir. Une magnifique loupe augmentant +un peu la Précision des capacités." +242,15,6,"Ein Item zum Tragen. Dieses Vergrößerungsglas +erhöht die Genauigkeit etwas." +242,15,7,"Prolonga la duración del movimiento Granizo que +use el Pokémon que la lleva." +242,15,8,"Strumento da dare a un Pokémon. +Lente d’ingrandimento che aumenta di poco +la precisione delle mosse." +242,15,9,"An item to be held by a Pokémon. +It’s a magnifying lens that slightly +boosts the accuracy of moves." +242,15,11,"ものが 大きく みえる レンズ。 +持たせると 技の 命中率が +少し あがる。" +243,8,9,"An item to be held by a Pokémon. +It is a headband that slightly boosts +the power of physical moves." +243,9,9,"An item to be held by a Pokémon. +It is a headband that slightly boosts +the power of physical moves." +243,10,9,"An item to be held by a Pokémon. +It is a headband that slightly boosts +the power of physical moves." +243,11,5,"Objet à tenir. Bandeau augmentant +légèrement la puissance des attaques +physiques." +243,11,9,"An item to be held by a Pokémon. +It is a headband that slightly boosts +the power of physical moves." +243,14,9,"An item to be held by a Pokémon. +It is a headband that slightly boosts +the power of physical moves." +243,15,1,"ちからが わいてくる ハチマキ。 +もたせると ぶつりわざの +いりょくが すこし あがる。" +243,15,3,"힘이 끓어오르는 머리띠. +지니게 하면 물리 기술의 +위력이 조금 올라간다." +243,15,5,"Objet à tenir. Un bandeau augmentant +légèrement la puissance des attaques physiques." +243,15,6,"Ein Item zum Tragen. Dieses Stirnband verstärkt +physische Attacken etwas." +243,15,7,"Prolonga la duración del movimiento Tormenta +de Arena que use el Pokémon que la lleva." +243,15,8,"Strumento da dare a un Pokémon. +Fascia che potenzia di poco le mosse fisiche." +243,15,9,"An item to be held by a Pokémon. +This headband exudes strength, slightly +boosting the power of physical moves." +243,15,11,"ちからが わいてくる ハチマキ。 +持たせると 物理技の +威力が 少し あがる。" +244,8,9,"An item to be held by a Pokémon. It is +a thick pair of glasses that slightly +boosts the power of special moves." +244,9,9,"An item to be held by a Pokémon. It is +a thick pair of glasses that slightly +boosts the power of special moves." +244,10,9,"An item to be held by a Pokémon. It is +a thick pair of glasses that slightly +boosts the power of special moves." +244,11,5,"Objet à tenir. Paire de lunettes +épaisses augmentant un peu la +puissance des attaques spéciales." +244,11,9,"An item to be held by a Pokémon. It is +a thick pair of glasses that slightly +boosts the power of special moves." +244,14,9,"An item to be held by a Pokémon. It is +a thick pair of glasses that slightly +boosts the power of special moves." +244,15,1,"ぶあつい レンズの ついた メガネ。 +もたせると とくしゅわざの +いりょくが すこし あがる。" +244,15,3,"두꺼운 렌즈를 붙인 안경. +지니게 하면 특수 기술의 +위력이 조금 올라간다." +244,15,5,"Objet à tenir. Une paire de lunettes épaisses +augmentant un peu la puissance des attaques +spéciales." +244,15,6,"Ein Item zum Tragen. Diese dicke Brille verstärkt +auf Spezial-Angriff basierende Attacken." +244,15,7,"Prolonga la duración del movimiento Día Soleado +que use el Pokémon que la lleva." +244,15,8,"Strumento da dare a un Pokémon. +Paio di occhiali dalle lenti spesse che potenzia +di poco le mosse speciali." +244,15,9,"An item to be held by a Pokémon. +This thick pair of glasses slightly +boosts the power of special moves." +244,15,11,"ぶあつい レンズの ついた メガネ。 +持たせると 特殊技の +威力が 少し あがる。" +245,8,9,"An item to be held by a Pokémon. It is +a well-worn belt that slightly boosts +the power of supereffective moves." +245,9,9,"An item to be held by a Pokémon. It is +a well-worn belt that slightly boosts +the power of supereffective moves." +245,10,9,"An item to be held by a Pokémon. It is +a well-worn belt that slightly boosts +the power of supereffective moves." +245,11,5,"Objet à tenir. Ceinture usée +augmentant légèrement la puissance +des capacités super efficaces." +245,11,9,"An item to be held by a Pokémon. It is +a well-worn belt that slightly boosts +the power of supereffective moves." +245,14,9,"An item to be held by a Pokémon. It is +a well-worn belt that slightly boosts +the power of supereffective moves." +245,15,1,"つかいこまれた くろい おび。 +もたせると こうかばつぐんの とき +わざの いりょくが すこし あがる。" +245,15,3,"오래 사용한 까만 띠. +지니게 하면 효과가 뛰어날 때 +기술의 위력이 조금 올라간다." +245,15,5,"Objet à tenir. Une ceinture usée augmentant +légèrement la puissance des capacités super +efficaces." +245,15,6,"Ein Item zum Tragen. Dieser alte Gürtel verstärkt +sehr effektive Attacken." +245,15,7,"Prolonga la duración del movimiento Danza Lluvia +que use el Pokémon que la lleva." +245,15,8,"Strumento da dare a un Pokémon. +Cintura consumata che potenzia di poco +le mosse superefficaci." +245,15,9,"An item to be held by a Pokémon. +It’s a well-worn belt that slightly boosts +the power of supereffective moves." +245,15,11,"使いこまれた 黒い 帯。 +持たせると 効果バツグンの とき +技の 威力が 少し あがる。" +246,8,9,"A Pokémon hold item that extends the +duration of barrier moves like Light +Screen and Reflect used by the holder." +246,9,9,"A Pokémon hold item that extends the +duration of barrier moves like Light +Screen and Reflect used by the holder." +246,10,9,"A Pokémon held item that extends the +duration of barrier moves like Light +Screen and Reflect used by the holder." +246,11,5,"Objet à tenir augmentant la durée +de capacités barrières telles que +Mur Lumière et Protection." +246,11,9,"A Pokémon held item that extends the +duration of barrier moves like Light +Screen and Reflect used by the holder." +246,14,9,"A Pokémon held item that extends the +duration of barrier moves like Light +Screen and Reflect used by the holder." +246,15,1,"もたせた ポケモンが ひかりのかべや +リフレクターを つかったとき +いつもよりも ながく のこる。" +246,15,3,"지니게 한 포켓몬이 빛의장막이나 +리플렉터를 사용했을 때 +여느 때보다 긴 시간 동안 지속된다." +246,15,5,"Objet à tenir. Augmente la durée des capacités +barrières telles que Mur Lumière et Protection." +246,15,6,"Ein Item zum Tragen. Verlängert die Dauer von +Lichtschild, Reflektor etc." +246,15,7,"Prolonga la duración de ataques multiturno como +Atadura y Constricción si la lleva un Pokémon." +246,15,8,"Strumento da dare a un Pokémon. +Allunga la durata delle mosse barriera come +Schermoluce e Riflesso." +246,15,9,"An item to be held by a Pokémon. +Protective moves like Light Screen +and Reflect will be effective longer." +246,15,11,"持たせた ポケモンが ひかりのかべや +リフレクターを 使ったとき +いつもよりも 長く 残る。" +247,8,9,"An item to be held by a Pokémon. +It boosts the power of moves, but at +the cost of some HP on each hit." +247,9,9,"An item to be held by a Pokémon. +It boosts the power of moves, but at +the cost of some HP on each hit." +247,10,9,"An item to be held by a Pokémon. +It boosts the power of moves, but at +the cost of some HP on each hit." +247,11,5,"Objet à tenir augmentant la puissance +des capacités, mais qui dépense des +PV à chaque coup." +247,11,9,"An item to be held by a Pokémon. +It boosts the power of moves, but at +the cost of some HP on each hit." +247,14,9,"An item to be held by a Pokémon. +It boosts the power of moves, but at +the cost of some HP on each hit." +247,15,1,"もたせると こうげきする たびに +HPが すこし へってしまうが +わざの いりょくが あがる。" +247,15,3,"지니게 하면 공격할 때마다 +HP가 조금씩 줄지만 +기술의 위력이 올라간다." +247,15,5,"Objet à tenir. Augmente la puissance des +capacités, mais dépense des PV à chaque coup." +247,15,6,"Ein Item zum Tragen. Verstärkt Attacken, +aber jede Attacke kostet den Träger KP." +247,15,7,"Debe llevarlo un Pokémon. Potencia la Velocidad, +pero solo permite usar un movimiento." +247,15,8,"Strumento da dare a un Pokémon. +Potenzia le mosse a scapito di alcuni PS +per ogni colpo." +247,15,9,"An item to be held by a Pokémon. +It boosts the power of moves, but +at the cost of some HP on each hit." +247,15,11,"持たせると 攻撃する たびに +HPが 少し 減ってしまうが +技の 威力が あがる。" +248,8,9,"A single-use item to be held by a +Pokémon. It allows the immediate use of +a move that charges on the first turn." +248,9,9,"A single-use item to be held by a +Pokémon. It allows the immediate use of +a move that charges on the first turn." +248,10,9,"A single-use item to be held by a +Pokémon. It allows the immediate use of +a move that charges on the first turn." +248,11,5,"Objet à tenir et à usage unique. Permet +d’utiliser immédiatement une capacité +qui devrait se charger au premier tour." +248,11,9,"A single-use item to be held by a +Pokémon. It allows the immediate use of +a move that charges on the first turn." +248,14,9,"A single-use item to be held by a +Pokémon. It allows the immediate use of +a move that charges on the first turn." +248,15,1,"もたせた ポケモンは いちどだけ +1ターンめに ちからを ためるわざを +すぐに つかうことが できる。" +248,15,3,"지니게 한 포켓몬은 한 번만 +1턴째에 힘을 모으는 기술을 +바로 사용할 수가 있다." +248,15,5,"Objet à tenir et à usage unique. Permet d’utiliser +immédiatement une capacité qui devrait se +charger au premier tour." +248,15,6,"Ein Item zum einmaligen Tragen. Der Träger kann +dadurch eine Attacke sofort einsetzen, die sonst +aufgeladen werden muss." +248,15,7,"Daña en cada turno al Pokémon que la lleva. +Puede adherirse al Pokémon que alcance con su +ataque al portador." +248,15,8,"Strumento monouso da dare a un Pokémon. +Permette l’uso immediato di una mossa che in +genere richiede un turno prima di essere eseguita." +248,15,9,"A single-use item to be held by a Pokémon. +It allows the holder to immediately use a +move that normally requires a turn to charge." +248,15,11,"持たせた ポケモンは 1度だけ +1ターン目に ちからを ためる技を +すぐに 使うことが できる。" +249,8,9,"An item to be held by a Pokémon. +It is a bizarre orb that badly poisons +the holder in battle." +249,9,9,"An item to be held by a Pokémon. +It is a bizarre orb that badly poisons +the holder in battle." +249,10,9,"An item to be held by a Pokémon. +It is a bizarre orb that badly poisons +the holder in battle." +249,11,5,"Objet à tenir. Orbe bizarre +empoisonnant gravement son +porteur durant le combat." +249,11,9,"An item to be held by a Pokémon. +It is a bizarre orb that badly poisons +the holder in battle." +249,14,9,"An item to be held by a Pokémon. +It is a bizarre orb that badly poisons +the holder in battle." +249,15,1,"さわると どくをだす ふしぎなたま。 +もたせると せんとうちゅうに +もうどくの じょうたいに なる。" +249,15,3,"만지면 독을 발산하는 이상한 구슬. +지니게 하면 배틀 중에 +맹독 상태가 된다." +249,15,5,"Objet à tenir. Un orbe bizarre empoisonnant +gravement son porteur durant le combat." +249,15,6,"Ein Item zum Tragen. Dieser bizarre Orb vergiftet +seinen Träger im Kampf schwer." +249,15,7,"Potencia el Ataque de base, pero reduce la +Velocidad en combate. Debe llevarlo un +Pokémon." +249,15,8,"Strumento da dare a un Pokémon. +Sfera bizzarra che iperavvelena chi l’ha con sé +in una lotta." +249,15,9,"An item to be held by a Pokémon. +It is a bizarre orb that will badly +poison the holder during battle." +249,15,11,"触ると 毒をだす 不思議な玉。 +持たせると 戦闘中に +猛毒の 状態に なる。" +250,8,9,"An item to be held by a Pokémon. +It is a bizarre orb that inflicts a +burn on the holder in battle." +250,9,9,"An item to be held by a Pokémon. +It is a bizarre orb that inflicts a +burn on the holder in battle." +250,10,9,"An item to be held by a Pokémon. +It is a bizarre orb that inflicts a +burn on the holder in battle." +250,11,5,"Objet à tenir. Orbe bizarre brûlant +son porteur durant le combat." +250,11,9,"An item to be held by a Pokémon. +It is a bizarre orb that inflicts a +burn on the holder in battle." +250,14,9,"An item to be held by a Pokémon. +It is a bizarre orb that inflicts a +burn on the holder in battle." +250,15,1,"さわると ねつをだす ふしぎなたま。 +もたせると せんとうちゅうに +やけどの じょうたいに なる。" +250,15,3,"만지면 열을 내는 이상한 구슬. +지니게 하면 배틀 중에 +화상 상태가 된다." +250,15,5,"Objet à tenir. Un orbe bizarre brûlant son porteur +durant le combat." +250,15,6,"Ein Item zum Tragen. Dieser bizarre Orb fügt +seinem Träger Verbrennungen zu." +250,15,7,"Potencia la Defensa de base, pero reduce la +Velocidad en combate. Debe llevarlo un +Pokémon." +250,15,8,"Strumento da dare a un Pokémon. +Sfera bizzarra che procura una scottatura +a chi l’ha con sé in una lotta." +250,15,9,"An item to be held by a Pokémon. +It is a bizarre orb that will afflict the +holder with a burn during battle." +250,15,11,"触ると 熱をだす 不思議な玉。 +持たせると 戦闘中に +やけどの 状態に なる。" +251,8,9,"An item to be held by DITTO. +Extremely fine yet hard, this odd +powder boosts the Speed stat." +251,9,9,"An item to be held by DITTO. +Extremely fine yet hard, this odd +powder boosts the Speed stat." +251,10,9,"An item to be held by DITTO. +Extremely fine yet hard, this odd +powder boosts the Speed stat." +251,11,5,"Objet à faire tenir à Métamorph. Cette +poudre étrange, très fine mais +résistante, augmente sa Vitesse." +251,11,9,"An item to be held by Ditto. +Extremely fine yet hard, this odd +powder boosts the Speed stat." +251,14,9,"An item to be held by Ditto. +Extremely fine yet hard, this odd +powder boosts the Speed stat." +251,15,1,"メタモンに もたせると すばやさが +あがる ふしぎなこな。 +とても こまかくて かたい。" +251,15,3,"메타몽에게 지니게 하면 스피드가 +올라가는 이상한 가루. +매우 곱고 단단하다." +251,15,5,"Objet à faire tenir à Métamorph. +Cette poudre étrange, très fine mais résistante, +augmente sa Vitesse." +251,15,6,"Ein Item, das Ditto zum Tragen gegeben +werden kann. Fein und doch hart, erhöht +es den Initiative-Wert." +251,15,7,"Potencia el Ataque Especial de base, pero reduce +la Velocidad en combate. Debe llevarla un +Pokémon." +251,15,8,"Strumento da dare a Ditto. +Questa strana polvere, fine e al contempo dura, +aumenta la Velocità." +251,15,9,"An item to be held by Ditto. +Extremely fine yet hard, this odd +powder boosts the Speed stat." +251,15,11,"メタモンに 持たせると 素早さが +あがる 不思議な粉。 +とても こまかくて 硬い。" +252,8,9,"An item to be held by a Pokémon. If it +has full HP, the holder will endure one +potential KO attack, leaving 1 HP." +252,9,9,"An item to be held by a Pokémon. If it +has full HP, the holder will endure one +potential KO attack, leaving 1 HP." +252,10,9,"An item to be held by a Pokémon. If it +has full HP, the holder will endure one +potential KO attack, leaving 1 HP." +252,11,5,"Objet à tenir permettant au porteur, +s’il a ses PV pleins, d’éviter un +potentiel K.O. en conservant un PV." +252,11,9,"An item to be held by a Pokémon. If it +has full HP, the holder will endure one +potential KO attack, leaving 1 HP." +252,14,9,"An item to be held by a Pokémon. If it +has full HP, the holder will endure one +potential KO attack, leaving 1 HP." +252,15,1,"もたせると HPが まんたんのとき +ひんしになりそうな わざを うけても +HP1で いちどだけ たえる。" +252,15,3,"지니게 하면 HP가 꽉 찼을 때 +기절할 듯한 기술을 당해도 +HP 1로 한 번은 버틴다." +252,15,5,"Objet à tenir. S’il a encore tous ses PV, +le porteur pourra éviter d’être mis K.O. en +un coup. Il ne conserva alors qu’un seul PV." +252,15,6,"Ein Item zum Tragen. Bei vollen KP bleibt +der Träger nach einer K.O.-Attacke einmalig +mit 1 KP im Kampf." +252,15,7,"Potencia la Defensa Especial de base, pero +reduce la Velocidad en combate. Debe llevarla +un Pokémon." +252,15,8,"Strumento da dare a un Pokémon. +Se il Pokémon ha tutti i PS, eviterà un +potenziale KO, rimanendo con un PS." +252,15,9,"An item to be held by a Pokémon. If the holder +has full HP, it will endure a potential KO +attack with 1 HP. The item then disappears." +252,15,11,"持たせると HPが 満タンのとき +ひんしになりそうな 技を 受けても +HP1で 1度だけ 耐える。" +253,8,9,"An item to be held by a Pokémon. +If the holder moves after the foe, its +critical-hit ratio will be boosted." +253,9,9,"An item to be held by a Pokémon. +If the holder moves after the foe, its +accuracy will be boosted." +253,10,9,"An item to be held by a Pokémon. +If the holder moves after the foe, its +accuracy will be boosted." +253,11,5,"Objet à tenir. Augmente la Précision +du porteur s’il attaque après l’ennemi." +253,11,9,"An item to be held by a Pokémon. +If the holder moves after its +target, its accuracy will be boosted." +253,14,9,"An item to be held by a Pokémon. +If the holder moves after its +target, its accuracy will be boosted." +253,15,1,"もたせた ポケモンが あいてよりも +こうどうするのが おそいとき +わざが めいちゅう しやすくなる。" +253,15,3,"지니게 한 포켓몬이 상대보다도 +행동하는 것이 늦을 때 +기술이 명중하기 쉬워진다." +253,15,5,"Objet à tenir. Augmente la Précision du porteur +s’il attaque après l’ennemi." +253,15,6,"Ein Item zum Tragen. Agiert das Ziel zuerst, +erhöht sich die Genauigkeit des Trägers." +253,15,7,"Potencia la Velocidad de base, pero reduce la +Velocidad en combate. Debe llevarla un +Pokémon." +253,15,8,"Strumento da dare a un Pokémon. +Se chi ce l’ha attacca dopo il nemico, +la sua precisione aumenta." +253,15,9,"An item to be held by a Pokémon. +If the holder moves after its target +moves, its accuracy will be boosted." +253,15,11,"持たせた ポケモンが 相手よりも +行動するのが 遅いとき +技が 命中しやすくなる。" +254,8,9,"A Pokémon hold item that boosts a move +used consecutively. Its effect is +reset if another move is used." +254,9,9,"A Pokémon hold item that boosts a move +used consecutively. Its effect is +reset if another move is used." +254,10,9,"A Pokémon held item that boosts a move +used consecutively. Its effect is +reset if another move is used." +254,11,5,"Objet à tenir boostant une capacité +utilisée à répétition. L’effet s’annule +si une autre capacité est utilisée." +254,11,9,"A Pokémon held item that boosts a move +used consecutively. Its effect is +reset if another move is used." +254,14,9,"A Pokémon held item that boosts a move +used consecutively. Its effect is +reset if another move is used." +254,15,1,"もたせると おなじわざを れんぞくで +つかったとき いりょくが あがる。 +やめると いりょくは もどる。" +254,15,3,"지니게 하면 똑같은 기술을 연속으로 +사용했을 때 위력이 올라간다. +그만두면 위력이 되돌아간다." +254,15,5,"Objet à tenir. Booste une capacité utilisée +à répétition. L’effet s’annule si une autre +capacité est utilisée." +254,15,6,"Ein Item zum Tragen. Verstärkt eine Attacke, +je öfter sie in Folge ausgeführt wird." +254,15,7,"Mejora los PS de base, pero reduce la +Velocidad en combate. Debe llevarla un +Pokémon." +254,15,8,"Strumento da dare a un Pokémon. +Potenzia una mossa usata più volte di seguito. +Il potenziamento svanisce al cambio di mossa." +254,15,9,"An item to be held by a Pokémon. +It boosts moves used consecutively, +but only until a different move is used." +254,15,11,"持たせると 同じ技を 連続で +使ったとき 威力が あがる。 +やめると 威力は もどる。" +255,8,9,"A Pokémon hold item that cuts Speed. +It makes Flying-type and levitating +holders susceptible to Ground moves." +255,9,9,"A Pokémon hold item that cuts Speed. +It makes Flying-type and levitating +holders susceptible to Ground moves." +255,10,9,"A Pokémon held item that cuts Speed. +It makes Flying-type and levitating +holders susceptible to Ground moves." +255,11,5,"Objet à tenir réduisant la Vitesse. Rend +les porteurs de type Vol et lévitant +sensibles aux capacités de type Sol." +255,11,9,"A Pokémon held item that cuts Speed. +It makes Flying-type and levitating +holders susceptible to Ground moves." +255,14,9,"A Pokémon held item that cuts Speed. +It makes Flying-type and levitating +holders susceptible to Ground moves." +255,15,1,"もたせると すばやさが さがる。 +ひこうタイプや ふゆう ポケモンは +じめんわざが あたって しまう。" +255,15,3,"지니게 하면 스피드가 떨어진다. +비행타입이나 부유포켓몬은 +땅 기술에 맞아 버린다." +255,15,5,"Objet à tenir. Réduit la Vitesse. Rend les porteurs +de type Vol, ainsi que ceux en lévitation, +sensibles aux capacités de type Sol." +255,15,6,"Ein Item zum Tragen. Macht Pokémon des Typs +Flug oder mit der Fähigkeit Schwebe anfällig für +Boden-Attacken. Senkt den Initiative-Wert." +255,15,7,"En combate, esta concha desechada sirve para +que un Pokémon se cambie por otro que no esté +combatiendo." +255,15,8,"Riduce la Velocità e rende vulnerabili +alle mosse di tipo Terra se chi ce l’ha è +di tipo Volante o ha l’abilità Levitazione." +255,15,9,"An item to be held by a Pokémon. +It lowers Speed and allows Ground-type +moves to hit Flying-type and levitating holders." +255,15,11,"持たせると 素早さが さがる。 +ひこうタイプや ふゆう ポケモンは +じめん技が 当たってしまう。" +256,8,9,"An item to be held by a Pokémon. +It is tremendously heavy and makes +the holder move slower than usual." +256,9,9,"An item to be held by a Pokémon. +It is tremendously heavy and makes +the holder move slower than usual." +256,10,9,"An item to be held by a Pokémon. +It is tremendously heavy and makes +the holder move slower than usual." +256,11,5,"Objet à tenir extrêmement lourd qui +ralentit le porteur." +256,11,9,"An item to be held by a Pokémon. +It is tremendously heavy and makes +the holder move slower than usual." +256,14,9,"An item to be held by a Pokémon. +It is tremendously heavy and makes +the holder move slower than usual." +256,15,1,"とても おもたい なにかの しっぽ。 +もたせると いつもより こうどうが +おそくなる。" +256,15,3,"매우 무거운 무언가의 꼬리. +지니게 하면 여느 때보다 +행동이 느려진다." +256,15,5,"Objet à tenir extrêmement lourd qui ralentit +le porteur." +256,15,6,"Ein Item zum Tragen. Es ist immens schwer +und senkt die Geschwindigkeit des Trägers." +256,15,7,"El Pokémon que la lleva recupera más PS al usar +movimientos que drenan al objetivo." +256,15,8,"Strumento da dare a un Pokémon. +È tremendamente pesante e rende più lenti +del normale." +256,15,9,"An item to be held by a Pokémon. +It is tremendously heavy and makes +the holder move slower than usual." +256,15,11,"とても 重たい なにかの しっぽ。 +持たせると いつもより 行動が +遅くなる。" +257,8,9,"A long, thin, bright red string to +be held by a Pokémon. If the holder +becomes infatuated, the foe does too." +257,9,9,"A long, thin, bright red string to +be held by a Pokémon. If the holder +becomes infatuated, the foe does too." +257,10,9,"A long, thin, bright red string to +be held by a Pokémon. If the holder +becomes infatuated, the foe does too." +257,11,5,"Un long fil rouge vif à faire tenir à un +Pokémon. Si le porteur succombe à +l’attirance, l’ennemi aussi." +257,11,9,"A long, thin, bright-red string to +be held by a Pokémon. If the holder +becomes infatuated, the foe does too." +257,14,9,"A long, thin, bright-red string to +be held by a Pokémon. If the holder +becomes infatuated, the foe does too." +257,15,1,"ほそくて ながい まっかな いと。 +もたせると メロメロに なったとき +あいても メロメロに できる。" +257,15,3,"가늘고 긴 새빨간 실. +지니게 하면 자신이 헤롱헤롱해졌을 때 +상대도 헤롱헤롱해지게 된다." +257,15,5,"Un long fil rouge vif à faire tenir à un Pokémon. +Si le porteur tombe amoureux, l’ennemi +aussi." +257,15,6,"Ein Item zum Tragen. Wird der Träger betört, +gilt dies auch für den Angreifer." +257,15,7,"Potencian el Ataque Especial, pero solo permiten +usar un movimiento. Debe llevarlas un Pokémon." +257,15,8,"Gomitolo di filo rosso sottile da dare a un +Pokémon. Se il Pokémon rimane infatuato, +contagia anche il nemico." +257,15,9,"An item to be held by a Pokémon. +If the holder becomes infatuated, +the opposing Pokémon will be, too." +257,15,11,"細くて 長い 真っ赤な 糸。 +持たせると メロメロに なったとき +相手も メロメロに できる。" +258,8,9,"A hold item that gradually restores +the HP of Poison-type Pokémon. +It inflicts damage on all other types." +258,9,9,"A hold item that gradually restores +the HP of Poison-type Pokémon. +It inflicts damage on all other types." +258,10,9,"A held item that gradually restores +the HP of Poison-type Pokémon. +It inflicts damage on all other types." +258,11,5,"Objet à tenir restaurant peu à peu les +PV des Pokémon de type Poison. Inflige +des dégâts à tous les autres types." +258,11,9,"A held item that gradually restores +the HP of Poison-type Pokémon. +It inflicts damage on all other types." +258,14,9,"A held item that gradually restores +the HP of Poison-type Pokémon. +It inflicts damage on all other types." +258,15,1,"もたせると どくタイプの ポケモンは +すこしずつ HPを かいふくする。 +それいがいは HPが へってしまう。" +258,15,3,"지니게 하면 독타입의 포켓몬은 +조금씩 HP를 회복한다. +그 이외의 타입은 HP가 줄어 버린다." +258,15,5,"Objet à tenir. Restaure peu à peu les PV des +Pokémon de type Poison. Inflige des dégâts +à tous les autres types." +258,15,6,"Ein Item zum Tragen, das einem Gift-Pokémon +KP zurückgibt, anderen Pokémon aber Schaden +zufügt." +258,15,7,"Tabla de piedra que potencia los movimientos de +tipo Fuego. Debe llevarla un Pokémon." +258,15,8,"Strumento da dare a un Pokémon. +Restituisce gradualmente PS ai Pokémon di tipo +Veleno, ma danneggia tutti gli altri." +258,15,9,"An item to be held by a Pokémon. +It gradually restores HP to Poison-type +Pokémon. It damages any other type." +258,15,11,"持たせると どくタイプの ポケモンは +少しずつ HPを 回復する。 +それ以外は HPが 減ってしまう。" +259,8,9,"A Pokémon hold item that extends the +duration of the move Hail used by the +holder." +259,9,9,"A Pokémon hold item that extends the +duration of the move Hail used by the +holder." +259,10,9,"A Pokémon held item that extends the +duration of the move Hail used by the +holder." +259,11,5,"Objet à tenir augmentant la durée +de la capacité Grêle utilisée par le +porteur." +259,11,9,"A Pokémon held item that extends the +duration of the move Hail used by the +holder." +259,14,9,"A Pokémon held item that extends the +duration of the move Hail used by the +holder." +259,15,1,"もたせた ポケモンが あられを +つかうと いつもより あられの +じかんが ながくなる。" +259,15,3,"지니게 한 포켓몬이 싸라기눈을 +쓰면 여느 때보다 싸라기눈의 +시간이 길어진다." +259,15,5,"Objet à tenir. Augmente la durée de la capacité +Grêle utilisée par le porteur." +259,15,6,"Ein Item zum Tragen. Verlängert die Dauer von +Hagelsturm, wenn der Träger es einsetzt." +259,15,7,"Tabla de piedra que potencia los movimientos de +tipo Agua. Debe llevarla un Pokémon." +259,15,8,"Strumento da dare a un Pokémon. +Allunga la durata della mossa Grandine." +259,15,9,"An item to be held by a Pokémon. +It extends the duration of the move +Hail when it’s used by the holder." +259,15,11,"持たせた ポケモンが あられを +使うと いつもより あられの +時間が 長くなる。" +260,8,9,"A Pokémon hold item that extends the +duration of the move Sandstorm used +by the holder." +260,9,9,"A Pokémon hold item that extends the +duration of the move Sandstorm used +by the holder." +260,10,9,"A Pokémon held item that extends the +duration of the move Sandstorm used +by the holder." +260,11,5,"Objet à tenir augmentant la durée de +la capacité Tempêtesable utilisée par +le porteur." +260,11,9,"A Pokémon held item that extends the +duration of the move Sandstorm used +by the holder." +260,14,9,"A Pokémon held item that extends the +duration of the move Sandstorm used +by the holder." +260,15,1,"もたせた ポケモンが すなあらしを +つかうと いつもより すなあらしの +じかんが ながくなる。" +260,15,3,"지니게 한 포켓몬이 모래바람을 +쓰면 여느 때보다 모래바람의 +시간이 길어진다." +260,15,5,"Objet à tenir. Augmente la durée de la capacité +Tempête de Sable utilisée par le porteur." +260,15,6,"Ein Item zum Tragen. Verlängert die Dauer +von Sandsturm, wenn der Träger es einsetzt." +260,15,7,"Tabla de piedra que potencia los movimientos de +tipo Eléctrico. Debe llevarla un Pokémon." +260,15,8,"Strumento da dare a un Pokémon. +Allunga la durata della mossa Terrempesta." +260,15,9,"An item to be held by a Pokémon. +It extends the duration of the move +Sandstorm when used by the holder." +260,15,11,"持たせた ポケモンが すなあらしを +使うと いつもより すなあらしの +時間が 長くなる。" +261,8,9,"A Pokémon hold item that extends the +duration of the move Sunny Day used +by the holder." +261,9,9,"A Pokémon hold item that extends the +duration of the move Sunny Day used +by the holder." +261,10,9,"A Pokémon held item that extends the +duration of the move Sunny Day used +by the holder." +261,11,5,"Objet à tenir augmentant la durée +de la capacité Zénith utilisée par le +porteur." +261,11,9,"A Pokémon held item that extends the +duration of the move Sunny Day used +by the holder." +261,14,9,"A Pokémon held item that extends the +duration of the move Sunny Day used +by the holder." +261,15,1,"もたせた ポケモンが にほんばれを +つかうと いつもより はれの +じかんが ながくなる。" +261,15,3,"지니게 한 포켓몬이 쾌청을 +쓰면 여느 때보다 쾌청의 +시간이 길어진다." +261,15,5,"Objet à tenir. Augmente la durée de la capacité +Zénith utilisée par le porteur." +261,15,6,"Ein Item zum Tragen. Verlängert die Dauer von +Sonnentag, wenn der Träger es einsetzt." +261,15,7,"Tabla de piedra que potencia los movimientos de +tipo Planta. Debe llevarla un Pokémon." +261,15,8,"Strumento da dare a un Pokémon. +Allunga la durata della mossa Giornodisole." +261,15,9,"An item to be held by a Pokémon. +It extends the duration of the move +Sunny Day when used by the holder." +261,15,11,"持たせた ポケモンが にほんばれを +使うと いつもより はれの +時間が 長くなる。" +262,8,9,"A Pokémon hold item that extends the +duration of the move Rain Dance used +by the holder." +262,9,9,"A Pokémon hold item that extends the +duration of the move Rain Dance used +by the holder." +262,10,9,"A Pokémon held item that extends the +duration of the move Rain Dance used +by the holder." +262,11,5,"Objet à tenir augmentant la durée +de la capacité Danse Pluie utilisée +par le porteur." +262,11,9,"A Pokémon held item that extends the +duration of the move Rain Dance used +by the holder." +262,14,9,"A Pokémon held item that extends the +duration of the move Rain Dance used +by the holder." +262,15,1,"もたせた ポケモンが あまごいを +つかうと いつもより あめの +じかんが ながくなる。" +262,15,3,"지니게 한 포켓몬이 비바라기를 +쓰면 여느 때보다 비 내리는 +시간이 길어진다." +262,15,5,"Objet à tenir. Augmente la durée de la capacité +Danse Pluie utilisée par le porteur." +262,15,6,"Ein Item zum Tragen. Verlängert die Dauer +von Regentanz, wenn der Träger es einsetzt." +262,15,7,"Tabla de piedra que potencia los movimientos de +tipo Hielo. Debe llevarla un Pokémon." +262,15,8,"Strumento da dare a un Pokémon. +Allunga la durata della mossa Pioggiadanza." +262,15,9,"An item to be held by a Pokémon. +It extends the duration of the move +Rain Dance when used by the holder." +262,15,11,"持たせた ポケモンが あまごいを +使うと いつもより あめの +時間が 長くなる。" +263,8,9,"A Pokémon hold item that extends the +duration of multiturn attacks like +Bind and Wrap." +263,9,9,"A Pokémon hold item that extends the +duration of multiturn attacks like +Bind and Wrap." +263,10,9,"A Pokémon held item that extends the +duration of multiturn attacks like +Bind and Wrap." +263,11,5,"Objet à tenir augmentant la durée des +attaques à tours multiples telles que +Ligotage et Étreinte." +263,11,9,"A Pokémon held item that extends the +duration of multiturn attacks like +Bind and Wrap." +263,14,9,"A Pokémon held item that extends the +duration of multiturn attacks like +Bind and Wrap." +263,15,1,"もたせると しめつける まきつくなど +ダメージを あたえつづける わざの +ターンすうが ふえる。" +263,15,3,"지니게 하면 조이기나 김밥말이 등 +데미지를 계속 주는 기술의 +턴 수가 늘어난다." +263,15,5,"Objet à tenir. Augmente la durée des attaques +à tours multiples telles que Ligotage et Étreinte." +263,15,6,"Ein Item zum Tragen. Verlängert die Dauer +von Klammergriff, Wickel etc." +263,15,7,"Tabla de piedra que potencia los movimientos de +tipo Lucha. Debe llevarla un Pokémon." +263,15,8,"Strumento da dare a un Pokémon. +Prolunga gli attacchi multiturno come +Avvolgibotta e Legatutto." +263,15,9,"An item to be held by a Pokémon. +It extends the duration of multi-turn +attacks like Bind and Wrap." +263,15,11,"持たせると しめつける まきつくなど +ダメージを あたえつづける 技の +ターン数が 増える。" +264,8,9,"An item to be held by a Pokémon. +This scarf boosts Speed, but allows +the use of only one kind of move." +264,9,9,"An item to be held by a Pokémon. +This scarf boosts Speed, but allows +the use of only one kind of move." +264,10,9,"An item to be held by a Pokémon. +This scarf boosts Speed, but allows +the use of only one kind of move." +264,11,5,"Objet à tenir augmentant la Vitesse, +mais ne permettant d’utiliser qu’une +seule capacité par combat." +264,11,9,"An item to be held by a Pokémon. +This scarf boosts Speed, but allows +the use of only one of its moves." +264,14,9,"An item to be held by a Pokémon. +This scarf boosts Speed, but allows +the use of only one of its moves." +264,15,1,"ちょっと こだわった スカーフ。 +もたせると すばやさは あがるが +おなじ わざしか だせなくなる。" +264,15,3,"기술을 구애받는 스카프. +지니게 하면 스피드는 올라가지만 +같은 기술밖에 쓸 수 없다." +264,15,5,"Objet à tenir. Augmente la Vitesse, mais ne +permet d’utiliser qu’une seule capacité par +combat." +264,15,6,"Ein Item zum Tragen. Der Schal erhöht +den Initiative-Wert, aber nur eine Attacke +ist einsetzbar." +264,15,7,"Tabla de piedra que potencia los movimientos de +tipo Veneno. Debe llevarla un Pokémon." +264,15,8,"Strumento da dare a un Pokémon. +Stola che aumenta la Velocità, ma consente +l’uso di una sola mossa." +264,15,9,"An item to be held by a Pokémon. +This curious scarf boosts Speed +but only allows the use of one move." +264,15,11,"ちょっと こだわった スカーフ。 +持たせると 素早さは あがるが +同じ 技しか だせなくなる。" +265,8,9,"A hold item that damages the holder on +every turn. It may latch on to foes +that touch the holder." +265,9,9,"A hold item that damages the holder on +every turn. It may latch on to foes +that touch the holder." +265,10,9,"A held item that damages the holder on +every turn. It may latch on to foes +that touch the holder." +265,11,5,"Objet à tenir blessant le porteur à +chaque tour. Peut s’accrocher aux +ennemis qui attaquent le porteur." +265,11,9,"A held item that damages the holder on +every turn. It may latch on to foes and +allies that touch the holder." +265,14,9,"A held item that damages the holder on +every turn. It may latch on to foes and +allies that touch the holder." +265,15,1,"もたせると まいターン ダメージを +うける。 じぶんに ふれてきた +あいてに くっつくことも ある。" +265,15,3,"지니게 하면 매 턴 데미지를 입는다. +자신에게 접촉해온 상대에게 +들러붙기도 한다." +265,15,5,"Objet à tenir. Blesse le porteur à chaque tour. +Peut s’accrocher aux ennemis qui attaquent +le porteur." +265,15,6,"Schadet dem Träger in jeder Runde, kann aber +an Angreifern haften bleiben, die ihn berühren." +265,15,7,"Tabla de piedra que potencia los movimientos de +tipo Tierra. Debe llevarla un Pokémon." +265,15,8,"Strumento che danneggia chi ce l’ha a ogni +turno. Può attaccarsi al nemico che lancia +un attacco fisico." +265,15,9,"An item to be held by a Pokémon. +It damages the holder every turn and may +latch on to Pokémon that touch the holder." +265,15,11,"持たせると 毎ターン ダメージを +受ける。 自分に ふれてきた +相手に くっつくことも ある。" +266,8,9,"A Pokémon hold item that promotes +Attack gain on leveling, but reduces +the Speed stat." +266,9,9,"A Pokémon hold item that promotes +Attack gain on leveling, but reduces +the Speed stat." +266,10,9,"A Pokémon held item that promotes +Attack gain on leveling, but reduces +the Speed stat." +266,11,5,"Objet à tenir augmentant l’Attaque +lors des montées de niveau, mais +réduisant la Vitesse pendant le combat." +266,11,9,"A Pokémon held item that promotes +Attack gain on leveling, but reduces +the Speed stat." +266,14,9,"A Pokémon held item that promotes +Attack gain on leveling, but reduces +the Speed stat." +266,15,1,"もたせると すばやさが さがるが +ふつうよりも ポケモンの こうげきが +たかく そだちやすい。" +266,15,3,"지니게 하면 스피드는 떨어지지만 +여느 때보다 포켓몬의 공격을 +올리면서 키우기가 쉽다." +266,15,5,"Objet à tenir. Permet à l’Attaque de progresser +plus vite, mais réduit la Vitesse pendant le +combat." +266,15,6,"Ein Item zum Tragen. Erhöht bei Levelaufstieg +den Angriffs-Wert, senkt aber die Initiative." +266,15,7,"Tabla de piedra que potencia los movimientos de +tipo Volador. Debe llevarla un Pokémon." +266,15,8,"Strumento da dare a un Pokémon. +Riduce la Velocità nella lotta ma permette ai punti +base dell’Attacco di crescere più rapidamente." +266,15,9,"An item to be held by a Pokémon. +It reduces Speed but allows the holder’s +Attack stat to grow more after battling." +266,15,11,"持たせると 素早さが さがるが +ふつうよりも ポケモンの 攻撃が +高く 育ちやすい。" +267,8,9,"A Pokémon hold item that promotes +Defense gain on leveling, but reduces +the Speed stat." +267,9,9,"A Pokémon hold item that promotes +Defense gain on leveling, but reduces +the Speed stat." +267,10,9,"A Pokémon held item that promotes +Defense gain on leveling, but reduces +the Speed stat." +267,11,5,"Objet à tenir augmentant la Défense +lors des montées de niveau, mais +réduisant la Vitesse pendant le combat." +267,11,9,"A Pokémon held item that promotes +Defense gain on leveling, but reduces +the Speed stat." +267,14,9,"A Pokémon held item that promotes +Defense gain on leveling, but reduces +the Speed stat." +267,15,1,"もたせると すばやさが さがるが +ふつうよりも ポケモンの ぼうぎょが +たかく そだちやすい。" +267,15,3,"지니게 하면 스피드는 떨어지지만 +여느 때보다 포켓몬의 방어를 +올리면서 키우기가 쉽다." +267,15,5,"Objet à tenir. Permet à la Défense de progresser +plus vite, mais réduit la Vitesse pendant le +combat." +267,15,6,"Ein Item zum Tragen. Erhöht bei Levelaufstieg +den Verteidigungs-Wert, senkt aber die Initiative." +267,15,7,"Tabla de piedra que potencia los movimientos de +tipo Psíquico. Debe llevarla un Pokémon." +267,15,8,"Strumento da dare a un Pokémon. +Riduce la Velocità nella lotta ma permette ai punti +base della Difesa di crescere più rapidamente." +267,15,9,"An item to be held by a Pokémon. +It reduces Speed but allows the holder’s +Defense stat to grow more after battling." +267,15,11,"持たせると 素早さが さがるが +ふつうよりも ポケモンの 防御が +高く 育ちやすい。" +268,8,9,"A Pokémon hold item that promotes +Sp. Atk gain on leveling, but reduces +the Speed stat." +268,9,9,"A Pokémon hold item that promotes +Sp. Atk gain on leveling, but reduces +the Speed stat." +268,10,9,"A Pokémon held item that promotes +Sp. Atk gain on leveling, but reduces +the Speed stat." +268,11,5,"Objet à tenir augmentant l’Attaque +Spéciale lors des montées de niveau mais +réduisant la Vitesse pendant le combat." +268,11,9,"A Pokémon held item that promotes +Sp. Atk gain on leveling, but reduces +the Speed stat." +268,14,9,"A Pokémon held item that promotes +Sp. Atk gain on leveling, but reduces +the Speed stat." +268,15,1,"もたせると すばやさが さがるが +ふつうよりも ポケモンの とくこうが +たかく そだちやすい。" +268,15,3,"지니게 하면 스피드는 떨어지지만 +여느 때보다 포켓몬의 특수공격을 +올리면서 키우기가 쉽다." +268,15,5,"Objet à tenir. Permet à l’Attaque Spéciale de +progresser plus vite, mais réduit la Vitesse +pendant le combat." +268,15,6,"Ein Item zum Tragen. Erhöht bei Levelaufstieg +den Spezial-Angriffs-Wert, senkt aber die +Initiative." +268,15,7,"Tabla de piedra que potencia los movimientos de +tipo Bicho. Debe llevarla un Pokémon." +268,15,8,"Strumento da dare a un Pokémon. Riduce la +Velocità nella lotta ma permette ai punti base +dell’Attacco Speciale di crescere più rapidamente." +268,15,9,"An item to be held by a Pokémon. +It reduces Speed but allows the holder’s +Sp. Atk stat to grow more after battling." +268,15,11,"持たせると 素早さが さがるが +ふつうよりも ポケモンの 特攻が +高く 育ちやすい。" +269,8,9,"A Pokémon hold item that promotes +Sp. Def gain on leveling, but reduces +the Speed stat." +269,9,9,"A Pokémon hold item that promotes +Sp. Def gain on leveling, but reduces +the Speed stat." +269,10,9,"A Pokémon held item that promotes +Sp. Def gain on leveling, but reduces +the Speed stat." +269,11,5,"Objet à tenir augmentant la Défense +Spéciale lors des montées de niveau mais +réduisant la Vitesse pendant le combat." +269,11,9,"A Pokémon held item that promotes +Sp. Def gain on leveling, but reduces +the Speed stat." +269,14,9,"A Pokémon held item that promotes +Sp. Def gain on leveling, but reduces +the Speed stat." +269,15,1,"もたせると すばやさが さがるが +ふつうよりも ポケモンの とくぼうが +たかく そだちやすい。" +269,15,3,"지니게 하면 스피드는 떨어지지만 +여느 때보다 포켓몬의 특수방어를 +올리면서 키우기가 쉽다." +269,15,5,"Objet à tenir. Permet à la Défense Spéciale de +progresser plus vite, mais réduit la Vitesse +pendant le combat." +269,15,6,"Ein Item zum Tragen. Erhöht bei Levelaufstieg +den Spezial-Verteidigungs-Wert, senkt aber +die Initiative." +269,15,7,"Tabla de piedra que potencia los movimientos de +tipo Roca. Debe llevarla un Pokémon." +269,15,8,"Strumento da dare a un Pokémon. Riduce la +Velocità nella lotta ma permette ai punti base +della Difesa Speciale di crescere più rapidamente." +269,15,9,"An item to be held by a Pokémon. +It reduces Speed but allows the holder’s +Sp. Def stat to grow more after battling." +269,15,11,"持たせると 素早さが さがるが +ふつうよりも ポケモンの 特防が +高く 育ちやすい。" +270,8,9,"A Pokémon hold item that promotes +Speed gain on leveling, but reduces +the Speed stat." +270,9,9,"A Pokémon hold item that promotes +Speed gain on leveling, but reduces +the Speed stat." +270,10,9,"A Pokémon held item that promotes +Speed gain on leveling, but reduces +the Speed stat." +270,11,5,"Objet à tenir. Il augmente la Vitesse +lors des montées de niveau mais réduit +la Vitesse pendant le combat." +270,11,9,"A Pokémon held item that promotes +Speed gain on leveling, but reduces +the Speed stat." +270,14,9,"A Pokémon held item that promotes +Speed gain on leveling, but reduces +the Speed stat." +270,15,1,"もたせると すばやさが さがるが +ふつうよりも ポケモンの すばやさが +たかく そだちやすい。" +270,15,3,"지니게 하면 스피드는 떨어지지만 +여느 때보다 포켓몬의 스피드를 +올리면서 키우기가 쉽다." +270,15,5,"Objet à tenir. Permet à la Vitesse de progresser +plus vite, mais la réduit pendant le combat." +270,15,6,"Ein Item zum Tragen. Erhöht bei Levelaufstieg +den Initiative-Wert, senkt aber die Initiative +allgemein." +270,15,7,"Tabla de piedra que potencia los movimientos de +tipo Fantasma. Debe llevarla un Pokémon." +270,15,8,"Strumento da dare a un Pokémon. +Riduce la Velocità nella lotta ma permette ai punti +base della Velocità di crescere più rapidamente." +270,15,9,"An item to be held by a Pokémon. +It reduces Speed but allows the holder’s +Speed stat to grow more after battling." +270,15,11,"持たせると 素早さが さがるが +ふつうよりも ポケモンの 素早さが +高く 育ちやすい。" +271,8,9,"A Pokémon hold item that promotes +HP gain on leveling, but reduces the +Speed stat." +271,9,9,"A Pokémon hold item that promotes +HP gain on leveling, but reduces the +Speed stat." +271,10,9,"A Pokémon held item that promotes +HP gain on leveling, but reduces the +Speed stat." +271,11,5,"Objet à tenir augmentant les PV lors +des montées de niveau, mais réduisant +la Vitesse pendant le combat." +271,11,9,"A Pokémon held item that promotes +HP gain on leveling, but reduces the +Speed stat." +271,14,9,"A Pokémon held item that promotes +HP gain on leveling, but reduces the +Speed stat." +271,15,1,"もたせると すばやさが さがるが +ふつうよりも ポケモンの HPが +たかく そだちやすい。" +271,15,3,"지니게 하면 스피드는 떨어지지만 +여느 때보다 포켓몬의 HP를 +올리면서 키우기가 쉽다." +271,15,5,"Objet à tenir. Permet aux PV max de progresser +plus vite, mais réduit la Vitesse pendant le +combat." +271,15,6,"Ein Item zum Tragen. Erhöht bei Levelaufstieg +die maximalen KP, senkt aber die Initiative." +271,15,7,"Tabla de piedra que potencia los movimientos de +tipo Dragón. Debe llevarla un Pokémon." +271,15,8,"Strumento da dare a un Pokémon. +Riduce la Velocità nella lotta ma permette ai punti +base dei PS di crescere più rapidamente." +271,15,9,"An item to be held by a Pokémon. +It reduces Speed but allows the holder’s +maximum HP to grow more after battling." +271,15,11,"持たせると 素早さが さがるが +ふつうよりも ポケモンの HPが +高く 育ちやすい。" +272,8,9,"A tough, discarded carapace to be held +by a Pokémon. It enables the holder to +switch with a waiting Pokémon in battle." +272,9,9,"A tough, discarded carapace to be held +by a Pokémon. It enables the holder to +switch with a waiting Pokémon in battle." +272,10,9,"A tough, discarded carapace to be held +by a Pokémon. It enables the holder to +switch with a waiting Pokémon in battle." +272,11,5,"Objet à tenir. Carapace dure qui permet +au porteur de se retirer même s’il est +affecté par une attaque immobilisante." +272,11,9,"A tough, discarded carapace to be held +by a Pokémon. It enables the holder to +switch with a waiting Pokémon in battle." +272,14,9,"A tough, discarded carapace to be held +by a Pokémon. It enables the holder to +switch with a waiting Pokémon in battle." +272,15,1,"じょうぶで かたい ぬけがら。 +もたせた ポケモンは ひかえの +ポケモンと かならず いれかわれる。" +272,15,3,"튼튼하고 단단한 허물. +지니게 한 포켓몬은 교대 +포켓몬과 반드시 교체할 수 있다." +272,15,5,"Objet à tenir. Une carapace dure qui permet au +porteur de se retirer même s’il est affecté par +une attaque immobilisante." +272,15,6,"Ein Item zum Tragen. Dieser harte Panzer +ermöglicht den Austausch des Trägers gegen +ein wartendes Pokémon." +272,15,7,"Tabla de piedra que potencia los movimientos de +tipo Siniestro. Debe llevarla un Pokémon." +272,15,8,"Un Pokémon con questo robusto guscio può +sfuggire al nemico anche se questi ha usato +mosse o abilità intrappolanti." +272,15,9,"An item to be held by a Pokémon. +This discarded carapace enables the +holder to switch out of battle without fail." +272,15,11,"丈夫で 硬い ぬけがら。 +持たせた ポケモンは 控えの +ポケモンと 必ず いれかわれる。" +273,8,9,"A Pokémon hold item that boosts the +power of HP-stealing moves to let the +holder recover more HP." +273,9,9,"A Pokémon hold item that boosts the +power of HP-stealing moves to let the +holder recover more HP." +273,10,9,"A Pokémon held item that boosts the +power of HP-stealing moves to let the +holder recover more HP." +273,11,5,"Objet à tenir augmentant la puissance +des attaques volant des PV." +273,11,9,"A Pokémon held item that boosts the +power of HP-stealing moves to let the +holder recover more HP." +273,14,9,"A Pokémon held item that boosts the +power of HP-stealing moves to let the +holder recover more HP." +273,15,1,"もたせると HPを すいとる わざで +いつもより おおく じぶんの HPを +かいふくできる。" +273,15,3,"지니게 하면 HP 흡수 기술을 썼을 때 +여느 때보다 많은 HP를 +자신이 회복할 수 있다." +273,15,5,"Objet à tenir. Augmente la puissance +des attaques volant des PV." +273,15,6,"Ein Item zum Tragen. +Verstärkt KP-stehlende Attacken." +273,15,7,"Tabla de piedra que potencia los movimientos de +tipo Acero. Debe llevarla un Pokémon." +273,15,8,"Strumento da dare a un Pokémon. +Potenzia le mosse ruba-PS facendo recuperare +un maggior numero di PS." +273,15,9,"An item to be held by a Pokémon. +It boosts the power of HP-stealing +moves so the holder recovers more HP." +273,15,11,"持たせると HPを 吸いとる 技で +いつもより おおく 自分の HPを +回復できる。" +274,8,9,"An item to be held by a Pokémon. These +distinctive glasses boost Sp. Atk, but +allow only one kind of move to be used." +274,9,9,"An item to be held by a Pokémon. These +distinctive glasses boost Sp. Atk, but +allow only one kind of move to be used." +274,10,9,"An item to be held by a Pokémon. These +distinctive glasses boost Sp. Atk, but +allow only one kind of move to be used." +274,11,5,"Objet à tenir augmentant l’Attaque +Spéciale, mais ne permettant d’utiliser +qu’une seule capacité par combat." +274,11,9,"An item to be held by a Pokémon. These +distinctive glasses boost Sp. Atk but +allow the use of only one of its moves." +274,14,9,"An item to be held by a Pokémon. These +distinctive glasses boost Sp. Atk but +allow the use of only one of its moves." +274,15,1,"ちょっと こだわった メガネ。 +もたせると とくこうは あがるが +おなじ わざしか だせなくなる。" +274,15,3,"기술을 구애받는 안경. +지니게 하면 특수공격이 올라가지만 +같은 기술밖에 쓸 수 없다." +274,15,5,"Objet à tenir. Augmente l’Attaque Spéciale, +mais ne permet d’utiliser qu’une seule capacité +par combat." +274,15,6,"Ein Item zum Tragen. Die Brille erhöht den +Spezial-Angriff, aber nur eine Attacke +ist einsetzbar." +274,15,7,"Incienso de exótico aroma que fortalece los +movimientos de tipo Psíquico. Debe llevarlo un +Pokémon." +274,15,8,"Strumento da dare a un Pokémon. +Questi occhiali aumentano l’Attacco Speciale, +ma permettono l’uso di una sola mossa." +274,15,9,"An item to be held by a Pokémon. +These curious glasses boost Sp. Atk +but only allow the use of one move." +274,15,11,"ちょっと こだわった メガネ。 +持たせると 特攻は あがるが +同じ 技しか だせなくなる。" +275,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Fire-type moves." +275,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Fire-type moves." +275,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Fire-type moves." +275,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Feu." +275,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Fire-type moves." +275,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Fire-type moves." +275,15,1,"ほのおの タイプの せきばん。 +もたせると ほのおタイプの +わざの いりょくが つよまる。" +275,15,3,"불꽃타입의 석판. +지니게 하면 불꽃타입 +기술의 위력이 강해진다." +275,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Feu." +275,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Feuer." +275,15,7,"Incienso de exótico aroma que fortalece los +movimientos de tipo Roca. Debe llevarlo un +Pokémon." +275,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Fuoco." +275,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Fire-type moves." +275,15,11,"ほのおの タイプの 石盤。 +持たせると ほのおタイプの +技の 威力が 強まる。" +276,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Water-type moves." +276,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Water-type moves." +276,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Water-type moves." +276,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Eau." +276,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Water-type moves." +276,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Water-type moves." +276,15,1,"みずの タイプの せきばん。 +もたせると みずタイプの +わざの いりょくが つよまる。" +276,15,3,"물타입의 석판. +지니게 하면 물타입 +기술의 위력이 강해진다." +276,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Eau." +276,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Wasser." +276,15,7,"Incienso de exótico aroma que hace que el +Pokémon que lo lleve esté aturdido y se mueva +más despacio." +276,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Acqua." +276,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Water-type moves." +276,15,11,"みずの タイプの 石盤。 +持たせると みずタイプの +技の 威力が 強まる。" +277,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Electric-type moves." +277,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Electric-type moves." +277,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Electric-type moves." +277,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Électrik." +277,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Electric-type moves." +277,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Electric-type moves." +277,15,1,"でんきの タイプの せきばん。 +もたせると でんきタイプの +わざの いりょくが つよまる。" +277,15,3,"전기타입의 석판. +지니게 하면 전기타입 +기술의 위력이 강해진다." +277,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Électrik." +277,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Elektro." +277,15,7,"Tiene un curioso aroma que potencia los +movimientos de tipo Agua. Debe llevarlo un +Pokémon." +277,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Elettro." +277,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Electric-type moves." +277,15,11,"でんきの タイプの 石盤。 +持たせると でんきタイプの +技の 威力が 強まる。" +278,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Grass-type moves." +278,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Grass-type moves." +278,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Grass-type moves." +278,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Plante." +278,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Grass-type moves." +278,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Grass-type moves." +278,15,1,"くさの タイプの せきばん。 +もたせると くさタイプの +わざの いりょくが つよまる。" +278,15,3,"풀타입의 석판. +지니게 하면 풀타입 +기술의 위력이 강해진다." +278,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Plante." +278,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Pflanze." +278,15,7,"Incienso de exótico aroma que fortalece los +movimientos de tipo Planta. Debe llevarlo un +Pokémon." +278,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Erba." +278,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Grass-type moves." +278,15,11,"くさの タイプの 石盤。 +持たせると くさタイプの +技の 威力が 強まる。" +279,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ice-type moves." +279,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ice-type moves." +279,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ice-type moves." +279,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Glace." +279,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ice-type moves." +279,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ice-type moves." +279,15,1,"こおりの タイプの せきばん。 +もたせると こおりタイプの +わざの いりょくが つよまる。" +279,15,3,"얼음타입의 석판. +지니게 하면 얼음타입 +기술의 위력이 강해진다." +279,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Glace." +279,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Eis." +279,15,7,"Si el Pokémon que lo lleva lucha en un combate, +duplica las ganancias." +279,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Ghiaccio." +279,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Ice-type moves." +279,15,11,"こおりの タイプの 石盤。 +持たせると こおりタイプの +技の 威力が 強まる。" +280,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Fighting-type moves." +280,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Fighting-type moves." +280,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Fighting-type moves." +280,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Combat." +280,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Fighting-type moves." +280,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Fighting-type moves." +280,15,1,"かくとうの タイプの せきばん。 +もたせると かくとうタイプの +わざの いりょくが つよまる。" +280,15,3,"격투타입의 석판. +지니게 하면 격투타입 +기술의 위력이 강해진다." +280,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Combat." +280,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Kampf." +280,15,7,"Si lo lleva el primer Pokémon del equipo, se +reduce la probabilidad de que se acerquen +Pokémon salvajes." +280,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Lotta." +280,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Fighting-type moves." +280,15,11,"かくとうの タイプの 石盤。 +持たせると かくとうタイプの +技の 威力が 強まる。" +281,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Poison-type moves." +281,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Poison-type moves." +281,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Poison-type moves." +281,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Poison." +281,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Poison-type moves." +281,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Poison-type moves." +281,15,1,"どくの タイプの せきばん。 +もたせると どくタイプの +わざの いりょくが つよまる。" +281,15,3,"독타입의 석판. +지니게 하면 독타입 +기술의 위력이 강해진다." +281,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Poison." +281,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Gift." +281,15,7,"Dispositivo de protección muy pesado. Cierto +Pokémon lo adora." +281,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Veleno." +281,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Poison-type moves." +281,15,11,"どくの タイプの 石盤。 +持たせると どくタイプの +技の 威力が 強まる。" +282,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ground-type moves." +282,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ground-type moves." +282,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ground-type moves." +282,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Sol." +282,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ground-type moves." +282,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ground-type moves." +282,15,1,"じめんの タイプの せきばん。 +もたせると じめんタイプの +わざの いりょくが つよまる。" +282,15,3,"땅타입의 석판. +지니게 하면 땅타입 +기술의 위력이 강해진다." +282,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Sol." +282,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Boden." +282,15,7,"Este dispositivo contiene una gran cantidad de +energía eléctrica. Cierto Pokémon lo adora." +282,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Terra." +282,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Ground-type moves." +282,15,11,"じめんの タイプの 石盤。 +持たせると じめんタイプの +技の 威力が 強まる。" +283,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Flying-type moves." +283,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Flying-type moves." +283,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Flying-type moves." +283,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Vol." +283,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Flying-type moves." +283,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Flying-type moves." +283,15,1,"ひこうの タイプの せきばん。 +もたせると ひこうタイプの +わざの いりょくが つよまる。" +283,15,3,"비행타입의 석판. +지니게 하면 비행타입 +기술의 위력이 강해진다." +283,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Vol." +283,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Flug." +283,15,7,"Esta caja contiene una enorme cantidad de +energía magmática. Cierto Pokémon lo adora." +283,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Volante." +283,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Flying-type moves." +283,15,11,"ひこうの タイプの 石盤。 +持たせると ひこうタイプの +技の 威力が 強まる。" +284,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Psychic-type moves." +284,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Psychic-type moves." +284,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Psychic-type moves." +284,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Psy." +284,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Psychic-type moves." +284,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Psychic-type moves." +284,15,1,"エスパーの タイプの せきばん。 +もたせると エスパータイプの +わざの いりょくが つよまる。" +284,15,3,"에스퍼타입의 석판. +지니게 하면 에스퍼타입 +기술의 위력이 강해진다." +284,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Psy." +284,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Psycho." +284,15,7,"Dispositivo transparente que contiene datos +misteriosos. Es de fabricante desconocido." +284,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Psico." +284,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Psychic-type moves." +284,15,11,"エスパーの タイプの 石盤。 +持たせると エスパータイプの +技の 威力が 強まる。" +285,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Bug-type moves." +285,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Bug-type moves." +285,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Bug-type moves." +285,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Insecte." +285,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Bug-type moves." +285,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Bug-type moves." +285,15,1,"むしの タイプの せきばん。 +もたせると むしタイプの +わざの いりょくが つよまる。" +285,15,3,"벌레타입의 석판. +지니게 하면 벌레타입 +기술의 위력이 강해진다." +285,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Insecte." +285,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Käfer." +285,15,7,"Tela imbuida de una energía espiritual muy +potente. Cierto Pokémon la adora." +285,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Coleottero." +285,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Bug-type moves." +285,15,11,"むしの タイプの 石盤。 +持たせると むしタイプの +技の 威力が 強まる。" +286,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Rock-type moves." +286,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Rock-type moves." +286,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Rock-type moves." +286,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Roche." +286,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Rock-type moves." +286,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Rock-type moves." +286,15,1,"いわの タイプの せきばん。 +もたせると いわタイプの +わざの いりょくが つよまる。" +286,15,3,"바위타입의 석판. +지니게 하면 바위타입 +기술의 위력이 강해진다." +286,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Roche." +286,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Gestein." +286,15,7,"Aumenta la probabilidad de que el Pokémon que +la lleve consiga un golpe crítico." +286,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Roccia." +286,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Rock-type moves." +286,15,11,"いわの タイプの 石盤。 +持たせると いわタイプの +技の 威力が 強まる。" +287,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ghost-type moves." +287,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ghost-type moves." +287,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ghost-type moves." +287,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Spectre." +287,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ghost-type moves." +287,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Ghost-type moves." +287,15,1,"ゴーストの タイプの せきばん。 +もたせると ゴーストタイプの +わざの いりょくが つよまる。" +287,15,3,"고스트타입의 석판. +지니게 하면 고스트타입 +기술의 위력이 강해진다." +287,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Spectre." +287,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Geist." +287,15,7,"Si lo lleva un Pokémon cuando inflige daño a +otro, puede hacer retroceder a este último." +287,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Spettro." +287,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Ghost-type moves." +287,15,11,"ゴーストの タイプの 石盤。 +持たせると ゴーストタイプの +技の 威力が 強まる。" +288,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Dragon-type moves." +288,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Dragon-type moves." +288,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Dragon-type moves." +288,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Dragon." +288,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Dragon-type moves." +288,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Dragon-type moves." +288,15,1,"ドラゴンの タイプの せきばん。 +もたせると ドラゴンタイプの +わざの いりょくが つよまる。" +288,15,3,"드래곤타입의 석판. +지니게 하면 드래곤타입 +기술의 위력이 강해진다." +288,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Dragon." +288,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Drache." +288,15,7,"Lima y afila las garras. Aumenta el Ataque y la +Precisión." +288,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Drago." +288,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Dragon-type moves." +288,15,11,"ドラゴンの タイプの 石盤。 +持たせると ドラゴンタイプの +技の 威力が 強まる。" +289,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Dark-type moves." +289,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Dark-type moves." +289,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Dark-type moves." +289,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Ténèbres." +289,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Dark-type moves." +289,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Dark-type moves." +289,15,1,"あくの タイプの せきばん。 +もたせると あくタイプの +わざの いりょくが つよまる。" +289,15,3,"악타입의 석판. +지니게 하면 악타입 +기술의 위력이 강해진다." +289,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Ténèbres." +289,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Unlicht." +289,15,7,"Engancha y araña al objetivo con unas potentes +y enormes garras afiladas." +289,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Buio." +289,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Dark-type moves." +289,15,11,"あくの タイプの 石盤。 +持たせると あくタイプの +技の 威力が 強まる。" +290,8,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Steel-type moves." +290,9,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Steel-type moves." +290,10,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Steel-type moves." +290,11,5,"Objet à tenir. Tablette en pierre +augmentant la puissance des capacités +de type Acier." +290,11,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Steel-type moves." +290,14,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Steel-type moves." +290,15,1,"はがねの タイプの せきばん。 +もたせると はがねタイプの +わざの いりょくが つよまる。" +290,15,3,"강철타입의 석판. +지니게 하면 강철타입 +기술의 위력이 강해진다." +290,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Acier." +290,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Stahl." +290,15,7,"Crea una onda psíquica que causa daño físico al +objetivo." +290,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Acciaio." +290,15,9,"An item to be held by a Pokémon. +It’s a stone tablet that boosts the +power of Steel-type moves." +290,15,11,"はがねの タイプの 石盤。 +持たせると はがねタイプの +技の 威力が 強まる。" +291,8,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Psychic-type moves." +291,9,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Psychic-type moves." +291,10,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Psychic-type moves." +291,11,5,"Objet à tenir. Encens au parfum +exotique augmentant la puissance +des capacités de type Psy." +291,11,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Psychic-type moves." +291,14,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Psychic-type moves." +291,15,1,"ふしぎな かおりの おこう。 +もたせると エスパータイプの +わざの いりょくが あがる。" +291,15,3,"이상한 향기의 향로. +지니게 하면 에스퍼타입 +기술의 위력이 올라간다." +291,15,5,"Objet à tenir. Un encens au parfum exotique +augmentant la puissance des capacités de +type Psy." +291,15,6,"Ein Item zum Tragen. Dieses exotische Duftkraut +verstärkt Attacken vom Typ Psycho." +291,15,7,"Quien lo usa concentra su energía mental y calma +su espíritu para aumentar su Ataque Especial y su +Defensa Especial." +291,15,8,"Strumento da dare a un Pokémon. +Incenso dal profumo esotico che potenzia +le mosse di tipo Psico." +291,15,9,"An item to be held by a Pokémon. +This exotic-smelling incense boosts +the power of Psychic-type moves." +291,15,11,"不思議な 香りの 御香。 +持たせると エスパータイプの +技の 威力が あがる。" +292,8,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Rock-type moves." +292,9,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Rock-type moves." +292,10,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Rock-type moves." +292,11,5,"Objet à tenir. Encens au parfum +exotique augmentant la puissance +des capacités de type Roche." +292,11,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Rock-type moves." +292,14,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Rock-type moves." +292,15,1,"ふしぎな かおりの おこう。 +もたせると いわタイプの +わざの いりょくが あがる。" +292,15,3,"이상한 향기의 향로. +지니게 하면 바위타입 +기술의 위력이 올라간다." +292,15,5,"Objet à tenir. Un encens au parfum exotique +augmentant la puissance des capacités de +type Roche." +292,15,6,"Ein Item zum Tragen. Dieses exotische Duftkraut +verstärkt Attacken vom Typ Gestein." +292,15,7,"Asusta tanto al objetivo que tiene que cambiarse +por otro de su grupo. Si es un Pokémon salvaje, +el combate acaba." +292,15,8,"Strumento da dare a un Pokémon. +Incenso dal profumo esotico che potenzia +le mosse di tipo Roccia." +292,15,9,"An item to be held by a Pokémon. +This exotic-smelling incense boosts +the power of Rock-type moves." +292,15,11,"不思議な 香りの 御香。 +持たせると いわタイプの +技の 威力が あがる。" +293,8,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that makes +the holder bloated and slow moving." +293,9,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that makes +the holder bloated and slow moving." +293,10,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that makes +the holder bloated and slow moving." +293,11,5,"Objet à tenir. Encens au parfum +exotique gonflant son porteur et +le faisant se déplacer lentement." +293,11,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that makes +the holder bloated and slow moving." +293,14,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that makes +the holder bloated and slow moving." +293,15,1,"ふしぎな かおりの おこう。 +もたせた ポケモンは いつもより +こうどうが おそくなる。" +293,15,3,"이상한 향기의 향로. +지니게 한 포켓몬은 여느 때보다 +행동이 느려진다." +293,15,5,"Objet à tenir. Un encens au parfum exotique +qui fait enfler son porteur et le fait se déplacer +lentement." +293,15,6,"Ein Item zum Tragen. Dieses exotische Duftkraut +macht den Träger benommen und langsam." +293,15,7,"Un movimiento altamente tóxico que envenena +gravemente al objetivo y causa un daño mayor +en cada turno." +293,15,8,"Strumento da dare a un Pokémon. +Incenso dal profumo esotico che rende gonfi +e lenti." +293,15,9,"An item to be held by a Pokémon. +This exotic-smelling incense makes +the holder bloated and slow moving." +293,15,11,"不思議な 香りの 御香。 +持たせた ポケモンは いつもより +行動が 遅くなる。" +294,8,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Water-type moves." +294,9,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Water-type moves." +294,10,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Water-type moves." +294,11,5,"Objet à tenir. Encens au parfum +exotique augmentant la puissance +des capacités de type Eau." +294,11,9,"An item to be held by a Pokémon. It is +incense with a curious aroma that +boosts the power of Water-type moves." +294,14,9,"An item to be held by a Pokémon. It is +incense with a curious aroma that +boosts the power of Water-type moves." +294,15,1,"ふしぎな かおりの おこう。 +もたせると みずタイプの +わざの いりょくが あがる。" +294,15,3,"이상한 향기의 향로. +지니게 하면 물타입 +기술의 위력이 올라간다." +294,15,5,"Objet à tenir. Un encens au parfum curieux +augmentant la puissance des capacités de +type Eau." +294,15,6,"Ein Item zum Tragen. Sein ausgefallenes Aroma +verstärkt Attacken vom Typ Wasser." +294,15,7,"Invoca una tormenta de granizo que dura cinco +turnos y daña a todos los Pokémon excepto a los +de tipo Hielo." +294,15,8,"Strumento da dare a un Pokémon. +Incenso dal curioso aroma che potenzia le mosse +di tipo Acqua." +294,15,9,"An item to be held by a Pokémon. +This exotic-smelling incense boosts +the power of Water-type moves." +294,15,11,"不思議な 香りの 御香。 +持たせると みずタイプの +技の 威力が あがる。" +295,8,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Grass-type moves." +295,9,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Grass-type moves." +295,10,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Grass-type moves." +295,11,5,"Objet à tenir. Encens au parfum +exotique augmentant la puissance +des capacités de type Plante." +295,11,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Grass-type moves." +295,14,9,"An item to be held by a Pokémon. It is +an exotic-smelling incense that boosts +the power of Grass-type moves." +295,15,1,"ふしぎな かおりの おこう。 +もたせると くさタイプの +わざの いりょくが あがる。" +295,15,3,"이상한 향기의 향로. +지니게 하면 풀타입 +기술의 위력이 올라간다." +295,15,5,"Objet à tenir. Un encens au parfum exotique +augmentant la puissance des capacités de +type Plante." +295,15,6,"Ein Item zum Tragen. Dieses exotische Duftkraut +verstärkt Attacken vom Typ Pflanze." +295,15,7,"Tensa los músculos de quien lo usa y potencia +su Ataque y su Defensa." +295,15,8,"Strumento da dare a un Pokémon. +Incenso dal profumo esotico che potenzia +le mosse di tipo Erba." +295,15,9,"An item to be held by a Pokémon. +This exotic-smelling incense boosts +the power of Grass-type moves." +295,15,11,"不思議な 香りの 御香。 +持たせると くさタイプの +技の 威力が あがる。" +296,8,9,"An item to be held by a Pokémon. +It doubles a battle’s prize money if +the holding Pokémon joins in." +296,9,9,"An item to be held by a Pokémon. +It doubles a battle’s prize money if +the holding Pokémon joins in." +296,10,9,"An item to be held by a Pokémon. +It doubles a battle’s prize money if +the holding Pokémon joins in." +296,11,5,"Objet à tenir. Double l’argent gagné +si le porteur se joint au combat." +296,11,9,"An item to be held by a Pokémon. +It doubles a battle’s prize money if +the holding Pokémon joins in." +296,14,9,"An item to be held by a Pokémon. +It doubles a battle’s prize money if +the holding Pokémon joins in." +296,15,1,"もたせた ポケモンが いちどでも +せんとうに かおを だすと +おかねが 2ばい もらえる。" +296,15,3,"지니게 한 포켓몬이 +한 번이라도 배틀에 나가면 +돈을 2배로 받을 수 있다." +296,15,5,"Objet à tenir. Double l’argent gagné si le porteur +se joint au combat." +296,15,6,"Ein Item, das ein Pokémon trägt und das +doppeltes Preisgeld bringt, wenn der Träger +am Kampf teilnimmt." +296,15,7,"Un líquido venenoso que cubre al objetivo y +provoca un daño doble si este ya estaba +envenenado." +296,15,8,"Strumento da dare a un Pokémon. +Se chi ce l’ha partecipa alla lotta, +i guadagni raddoppiano." +296,15,9,"An item to be held by a Pokémon. +It doubles any prize money received +if the holding Pokémon joins a battle." +296,15,11,"持たせた ポケモンが 1度でも +戦闘に 顔を だすと +お金が 2倍 もらえる。" +297,8,9,"An item to be held by a Pokémon. +It helps keep wild Pokémon away if the +holder is the first one in the party." +297,9,9,"An item to be held by a Pokémon. +It helps keep wild Pokémon away if the +holder is the first one in the party." +297,10,9,"An item to be held by a Pokémon. +It helps keep wild Pokémon away if the +holder is the first one in the party." +297,11,5,"Objet à tenir. Aide à repousser les +Pokémon sauvages si le porteur est +le premier Pokémon de l’équipe." +297,11,9,"An item to be held by a Pokémon. +It helps keep wild Pokémon away if the +holder is the first one in the party." +297,14,9,"An item to be held by a Pokémon. +It helps keep wild Pokémon away if the +holder is the first one in the party." +297,15,1,"いちばん まえの ポケモンに +もたせると やせいポケモンが +でて きにくくなる。" +297,15,3,"맨 앞의 포켓몬에게 +지니게 하면 야생 포켓몬이 +나타날 확률이 낮아진다." +297,15,5,"Objet à tenir. Aide à repousser les Pokémon +sauvages si le porteur est le premier Pokémon +de l’équipe." +297,15,6,"Ein Item zum Tragen. Reduziert Begegnungen +mit wilden Pokémon, wenn der Träger an +erster Stelle steht." +297,15,7,"Movimiento especial que cambia de tipo +dependiendo del Pokémon que lo use." +297,15,8,"Strumento da dare a un Pokémon. +Se chi ce l’ha è il primo della squadra, aiuta +ad allontanare i Pokémon selvatici." +297,15,9,"An item to be held by a Pokémon. +It helps keep wild Pokémon away if +the holder is the head of the party." +297,15,11,"1番 前の ポケモンに +持たせると 野生ポケモンが +でて きにくくなる。" +298,8,9,"A protective item of some sort. +It is extremely stiff and heavy. +It is loved by a certain Pokémon." +298,9,9,"A protective item of some sort. +It is extremely stiff and heavy. +It is loved by a certain Pokémon." +298,10,9,"A protective item of some sort. +It is extremely stiff and heavy. +It is loved by a certain Pokémon." +298,11,5,"Objet protecteur très dur et très +lourd, apprécié d’un certain Pokémon." +298,11,9,"A protective item of some sort. +It is extremely stiff and heavy. +It is loved by a certain Pokémon." +298,14,9,"A protective item of some sort. +It is extremely stiff and heavy. +It is loved by a certain Pokémon." +298,15,1,"なにかの プロテクター。 +とても かたくて おもい。 +ある ポケモンが このんでいる。" +298,15,3,"무언가의 프로텍터. +매우 단단하고 무겁다. +어떤 포켓몬이 좋아하는 물건이다." +298,15,5,"Un objet protecteur très dur et très lourd, +apprécié d’un certain Pokémon." +298,15,6,"Ein schützendes Item. Steif und schwer. +Das Lieblingsstück eines bestimmten Pokémon." +298,15,7,"Quien lo usa intensifica el efecto del sol durante +cinco turnos, lo que potencia los movimientos de +tipo Fuego." +298,15,8,"Strumento protettivo, molto duro e pesante, +prediletto da un Pokémon in particolare." +298,15,9,"A protective item of some sort. +It is extremely stiff and heavy. +It’s loved by a certain Pokémon." +298,15,11,"なにかの プロテクター。 +とても 硬くて 重い。 +ある ポケモンが 好んでいる。" +299,8,9,"A box packed with a tremendous +amount of electric energy. +It is loved by a certain Pokémon." +299,9,9,"A box packed with a tremendous +amount of electric energy. +It is loved by a certain Pokémon." +299,10,9,"A box packed with a tremendous +amount of electric energy. +It is loved by a certain Pokémon." +299,11,5,"Une boîte remplie d’une énorme quantité +d’énergie électrique. Appréciée d’un +certain Pokémon." +299,11,9,"A box packed with a tremendous +amount of electric energy. +It is loved by a certain Pokémon." +299,14,9,"A box packed with a tremendous +amount of electric energy. +It is loved by a certain Pokémon." +299,15,1,"とてつもない でんきの エネルギーが +たくわえられている はこ。 +ある ポケモンが このんでいる。" +299,15,3,"엄청난 전기의 에너지가 +비축되어 있는 상자. +어떤 포켓몬이 좋아하는 물건이다." +299,15,5,"Une boîte remplie d’une énorme quantité +d’énergie électrique. Appréciée d’un certain +Pokémon." +299,15,6,"Eine Schachtel mit elektrischer Energie. +Das Lieblingsstück eines bestimmten Pokémon." +299,15,7,"Provoca un ataque de ira en el objetivo que solo +le permite usar movimientos de ataque durante +tres turnos." +299,15,8,"Scatola strapiena di energia elettrica. +Piace a un Pokémon in particolare." +299,15,9,"A box packed with a tremendous +amount of electric energy. +It’s loved by a certain Pokémon." +299,15,11,"とてつもない 電気の エネルギーが +蓄えられている 箱。 +ある ポケモンが 好んでいる。" +300,8,9,"A box packed with a tremendous +amount of magma energy. +It is loved by a certain Pokémon." +300,9,9,"A box packed with a tremendous +amount of magma energy. +It is loved by a certain Pokémon." +300,10,9,"A box packed with a tremendous +amount of magma energy. +It is loved by a certain Pokémon." +300,11,5,"Une boîte remplie d’une énorme quantité +d’énergie magmatique. Appréciée d’un +certain Pokémon." +300,11,9,"A box packed with a tremendous +amount of magma energy. +It is loved by a certain Pokémon." +300,14,9,"A box packed with a tremendous +amount of magma energy. +It is loved by a certain Pokémon." +300,15,1,"とてつもない マグマの エネルギーが +たくわえられている はこ。 +ある ポケモンが このんでいる。" +300,15,3,"엄청난 마그마의 에너지가 +비축되어 있는 상자. +어떤 포켓몬이 좋아하는 물건이다." +300,15,5,"Une boîte remplie d’une énorme quantité +d’énergie magmatique. Appréciée d’un certain +Pokémon." +300,15,6,"Eine Schachtel mit Magmaenergie. +Das Lieblingsstück eines bestimmten Pokémon." +300,15,7,"Ataca al objetivo con un rayo de hielo que puede +llegar a congelarlo." +300,15,8,"Scatola strapiena di energia lavica. +Piace a un Pokémon in particolare." +300,15,9,"A box packed with a tremendous +amount of magma energy. +It’s loved by a certain Pokémon." +300,15,11,"とてつもない マグマの エネルギーが +蓄えられている 箱。 +ある ポケモンが 好んでいる。" +301,8,9,"A transparent device overflowing with +dubious data. +Its producer is unknown." +301,9,9,"A transparent device overflowing with +dubious data. +Its producer is unknown." +301,10,9,"A transparent device overflowing with +dubious data. +Its producer is unknown." +301,11,5,"Appareil transparent rempli de données +douteuses. Son fabricant n’est pas +connu." +301,11,9,"A transparent device overflowing with +dubious data. +Its producer is unknown." +301,14,9,"A transparent device overflowing with +dubious data. +Its producer is unknown." +301,15,1,"なかに あやしい じょうほうが +つまった とうめいな きかい。 +せいさくしゃは ふめい。" +301,15,3,"안에 괴상한 정보가 +가득한 투명한 기계다. +제작자 불명." +301,15,5,"Un appareil transparent rempli de données +douteuses. Son fabricant n’est pas connu." +301,15,6,"Eine Scheibe mit seltsamen Daten. Ihr Ursprung +ist unbekannt." +301,15,7,"Invoca una tormenta de viento y nieve que +envuelve al objetivo y puede llegar a congelarlo." +301,15,8,"Dispositivo trasparente strapieno di dati di dubbia +origine. Non se ne conosce il produttore." +301,15,9,"A transparent device +overflowing with dubious data. +Its producer is unknown." +301,15,11,"なかに 怪しい 情報が +つまった 透明な 機械。 +製作者は 不明。" +302,8,9,"A cloth imbued with horrifyingly strong +spiritual energy. +It is loved by a certain Pokémon." +302,9,9,"A cloth imbued with horrifyingly strong +spiritual energy. +It is loved by a certain Pokémon." +302,10,9,"A cloth imbued with horrifyingly strong +spiritual energy. +It is loved by a certain Pokémon." +302,11,5,"Un tissu imprégné d’une énergie +spirituelle horriblement puissante. +Apprécié d’un certain Pokémon." +302,11,9,"A cloth imbued with horrifyingly strong +spiritual energy. +It is loved by a certain Pokémon." +302,14,9,"A cloth imbued with horrifyingly strong +spiritual energy. +It is loved by a certain Pokémon." +302,15,1,"おそろしく つよい れいりょくが +こめられている ぬの。 +ある ポケモンが このんでいる。" +302,15,3,"무섭고 강한 영력이 +담겨 있는 천. +어떤 포켓몬이 좋아하는 물건이다." +302,15,5,"Un tissu imprégné d’une énergie spirituelle +horriblement puissante. Apprécié d’un certain +Pokémon." +302,15,6,"Ein Stoffumhang mit geistiger Energie. +Das Lieblingsstück eines bestimmten Pokémon." +302,15,7,"Ataca al objetivo con un potente rayo, pero quien +lo usa debe descansar en el siguiente turno para +reponer energía." +302,15,8,"Panno intriso di un’energia spirituale terribilmente +forte. Piace a un Pokémon in particolare." +302,15,9,"A cloth imbued with horrifyingly +strong spiritual energy. +It’s loved by a certain Pokémon." +302,15,11,"おそろしく 強い 霊力が +こめられている 布。 +ある ポケモンが 好んでいる。" +303,8,9,"An item to be held by a Pokémon. +It is a sharply hooked claw that ups +the holder’s critical-hit ratio." +303,9,9,"An item to be held by a Pokémon. +It is a sharply hooked claw that ups +the holder’s critical-hit ratio." +303,10,9,"An item to be held by a Pokémon. +It is a sharply hooked claw that ups +the holder’s critical-hit ratio." +303,11,5,"Objet à tenir. Griffe crochue +et pointue augmentant le taux +de critiques." +303,11,9,"An item to be held by a Pokémon. +It is a sharply hooked claw that ups +the holder’s critical-hit ratio." +303,14,9,"An item to be held by a Pokémon. +It is a sharply hooked claw that ups +the holder’s critical-hit ratio." +303,15,1,"するどく とがった ツメ。 +もたせると わざが きゅうしょに +あたりやすくなる。" +303,15,3,"날카롭고 뾰족한 손톱. +지니게 하면 기술이 +급소에 맞기 쉬워진다." +303,15,5,"Objet à tenir. Une griffe crochue et pointue +augmentant le taux de critiques." +303,15,6,"Ein Item zum Tragen. Die scharfe Klaue erhöht die +Volltrefferquote des Trägers." +303,15,7,"Impresionante pared de luz que reduce el daño +de los ataques especiales durante cinco turnos." +303,15,8,"Strumento da dare a un Pokémon. +Artiglio che aumenta la probabilità di sferrare +brutti colpi." +303,15,9,"An item to be held by a Pokémon. +This sharply hooked claw increases +the holder’s critical-hit ratio." +303,15,11,"鋭く とがった ツメ。 +持たせると 技が 急所に +当たりやすくなる。" +304,8,9,"An item to be held by a Pokémon. +It may cause the foe to flinch when +the holder inflicts damage." +304,9,9,"An item to be held by a Pokémon. +It may cause the foe to flinch when +the holder inflicts damage." +304,10,9,"An item to be held by a Pokémon. +It may cause the foe to flinch when +the holder inflicts damage." +304,11,5,"Objet à tenir pouvant apeurer l’ennemi +quand le porteur lui inflige des dégâts." +304,11,9,"An item to be held by a Pokémon. +It may make foes and allies flinch +when the holder inflicts damage." +304,14,9,"An item to be held by a Pokémon. +It may make foes and allies flinch +when the holder inflicts damage." +304,15,1,"するどく とがった キバ。 +もたせると ダメージを あたえたとき +ひるませることが ある。" +304,15,3,"날카롭고 뾰족한 이빨. +지니게 하면 데미지를 줬을 때 +풀죽게 하기도 한다." +304,15,5,"Objet à tenir. Peut apeurer l’ennemi quand +le porteur lui inflige des dégâts." +304,15,6,"Ein Item zum Tragen. Verursacht der Träger +Schaden, schreckt das Ziel eventuell zurück." +304,15,7,"Bloquea todos los ataques. Puede fallar si se usa +repetidamente." +304,15,8,"Strumento da dare a un Pokémon. +Chi ce l’ha può far tentennare il nemico colpito." +304,15,9,"An item to be held by a Pokémon. +When the holder successfully inflicts +damage, the target may also flinch." +304,15,11,"鋭く とがった キバ。 +持たせると ダメージを 与えたとき +ひるませることが ある。" +305,5,9,"Powerful, but makes +the user flinch if +hit by the foe." +305,6,9,"Powerful, but makes +the user flinch if +hit by the foe." +305,7,9,"An attack that is +executed last. +The user flinches +if hit beforehand." +305,8,9,"The user focuses its mind before +launching this attack. It will fail if +the user is hit before it is used." +305,9,9,"The user focuses its mind before +launching this attack. It will fail if +the user is hit before it is used." +305,10,9,"The user focuses its mind before +launching this attack. It will fail if +the user is hit before it is used." +305,11,5,"Le lanceur s’aiguise les griffes. +Augmente l’Attaque et la Précision." +305,11,9,"The user sharpens its claws to +boost its Attack stat and accuracy." +305,14,9,"The user sharpens its claws to +boost its Attack stat and accuracy." +305,15,1,"つめを みがいて するどく する。 +じぶんの こうげきと +めいちゅうりつを あげる。" +305,15,3,"손톱을 갈아 날카롭게 만든다. +자신의 공격과 +명중률을 올린다." +305,15,5,"Le lanceur s’aiguise les griffes. +Augmente l’Attaque et la Précision." +305,15,6,"Der Anwender wetzt seine Klauen, um sie zu +schärfen. Angriff und Genauigkeit werden erhöht." +305,15,7,"Quien lo usa invoca una fuerte lluvia que dura +cinco turnos y fortalece los movimientos de tipo +Agua." +305,15,8,"Chi la usa affila i propri artigli, aumentando +Attacco e precisione." +305,15,9,"The user sharpens its claws to +boost its Attack stat and accuracy." +305,15,11,"つめを 磨いて 鋭く する。 +自分の 攻撃と +命中率を あげる。" +306,5,9,"Hooks and slashes +the foe with long, +sharp claws." +306,6,9,"Hooks and slashes +the foe with long, +sharp claws." +306,7,9,"Sharp, huge claws +hook and slash the +foe quickly and +with great power." +306,8,9,"Sharp, huge claws hook and slash +the foe quickly and with great +power." +306,9,9,"Sharp, huge claws hook and slash +the foe quickly and with great +power." +306,10,9,"Sharp, huge claws hook and slash +the foe quickly and with great +power." +306,11,5,"Le lanceur lacère l’ennemi de ses +grandes griffes aiguisées." +306,11,9,"The user slashes the target with huge, +sharp claws." +306,14,9,"The user slashes the target with huge, +sharp claws." +306,15,1,"するどく とがった きょだいな +ツメで ひっかいて こうげきする。 +" +306,15,3,"날카롭고 뾰족하며 거대한 발톱으로 +상대를 베어 갈라서 공격한다." +306,15,5,"Le lanceur lacère l’ennemi de ses grandes +griffes aiguisées." +306,15,6,"Das Ziel wird mit langen, scharfen Krallen +brutal attackiert." +306,15,7,"Aterriza sobre la superficie para descansar. +Recupera hasta la mitad del total de sus PS." +306,15,8,"Chi la usa attacca con artigli affilati che graffiano +il nemico rapidamente e con grande forza." +306,15,9,"The user slashes the target with huge, +sharp claws." +306,15,11,"鋭く とがった 巨大な ツメで +相手を 切り裂いて 攻撃する。 +" +307,5,9,"Generates an +ultrasonic wave +that may confuse." +307,6,9,"Generates an +ultrasonic wave +that may confuse." +307,7,9,"An attack with a +pulsing blast of +water. It may also +confuse the foe." +307,8,9,"The foe is hit with a pulsing blast +of water. It may also confuse the +target." +307,9,9,"The foe is hit with a pulsing blast +of water. It may also confuse the +target." +307,10,9,"The foe is hit with a pulsing blast +of water. It may also confuse the +target." +307,11,5,"Le lanceur matérialise des ondes +mystérieuses qu’il projette sur +l’ennemi. Inflige des dégâts physiques." +307,11,9,"The user materializes an odd +psychic wave to attack the target. +This attack does physical damage." +307,14,9,"The user materializes an odd +psychic wave to attack the target. +This attack does physical damage." +307,15,1,"ふしぎな ねんぱを じったいかして +あいてを こうげきする。 +ぶつりてきな ダメージを あたえる。" +307,15,3,"이상한 염력파를 실체화하여 +상대를 공격한다. +물리적인 데미지를 준다." +307,15,5,"Le lanceur matérialise des ondes mystérieuses +qu’il projette sur l’ennemi. Inflige des dégâts +physiques." +307,15,6,"Anwender erzeugt eine seltsame Energiewelle, +die dem Ziel physischen Schaden zufügt." +307,15,7,"Un escudo que protege de problemas de estado, +como el sueño o la parálisis, durante cinco +turnos." +307,15,8,"Chi la usa attacca il bersaglio facendo +materializzare un misterioso raggio psichico +che provoca danni fisici." +307,15,9,"The user materializes an odd +psychic wave to attack the target. +This attack does physical damage." +307,15,11,"不思議な 念波を 実体化して +相手を 攻撃する。 +物理的な ダメージを 与える。" +308,5,9,"Raises SP. ATK and +SP. DEF by focusing +the mind." +308,6,9,"Raises SP. ATK and +SP. DEF by focusing +the mind." +308,7,9,"The user focuses +its mind to raise +the SP. ATK and +SP. DEF stats." +308,8,9,"The user quietly focuses its mind and +calms its spirit to raise its Sp. Atk +and Sp. Def stats." +308,9,9,"The user quietly focuses its mind and +calms its spirit to raise its Sp. Atk +and Sp. Def stats." +308,10,9,"The user quietly focuses its mind and +calms its spirit to raise its Sp. Atk +and Sp. Def stats." +308,11,5,"Le lanceur se concentre et fait le vide +dans son esprit pour monter son +Atq. Spé. et sa Déf. Spé." +308,11,9,"The user quietly focuses its mind and +calms its spirit to raise its Sp. Atk +and Sp. Def stats." +308,14,9,"The user quietly focuses its mind and +calms its spirit to raise its Sp. Atk +and Sp. Def stats." +308,15,1,"しずかに せいしんを とういつして +こころを しずめることで じぶんの +とくこうと とくぼうを あげる。" +308,15,3,"조용히 정신을 통일해서 +마음을 가라앉혀 자신의 +특수공격과 특수방어를 올린다." +308,15,5,"Le lanceur se concentre et fait le vide dans son +esprit pour augmenter son Attaque Spéciale et +sa Défense Spéciale." +308,15,6,"Der Anwender konzentriert und beruhigt sich. +So werden Spezial-Angriff und +Spezial-Verteidigung verstärkt." +308,15,7,"Un ataque de gran potencia que resulta más +fuerte cuanto menos le guste el Entrenador al +Pokémon que lo usa." +308,15,8,"Chi la usa, meditando, placa il proprio spirito +per aumentare l’Attacco Speciale e +la Difesa Speciale." +308,15,9,"The user quietly focuses its mind and +calms its spirit to raise its Sp. Atk and +Sp. Def stats." +308,15,11,"静かに 精神を 統一し +心を 鎮めることで 自分の +特攻と 特防を あげる。" +309,5,9,"A savage roar that +makes the foe flee +to end the battle." +309,6,9,"A savage roar that +makes the foe flee +to end the battle." +309,7,9,"The foe is made to +switch out with an +ally. In the wild, +the battle ends." +309,8,9,"The foe is scared off, to be replaced +by another Pokémon in its party. +In the wild, the battle ends." +309,9,9,"The foe is scared off, to be replaced +by another Pokémon in its party. +In the wild, the battle ends." +309,10,9,"The foe is scared off, to be replaced +by another Pokémon in its party. +In the wild, the battle ends." +309,11,5,"Effraie le Pokémon visé et le +remplace par un autre. Dans +la nature, met fin au combat." +309,11,9,"The target is scared off and replaced +by another Pokémon in its party. +In the wild, the battle ends." +309,14,9,"The target is scared off and replaced +by another Pokémon in its party. +In the wild, the battle ends." +309,15,1,"あいてを にがして ひかえポケモンを +ひきずりだす。 やせいポケモンなら +せんとうは おわる。" +309,15,3,"상대를 도망가게 해서 +교대할 포켓몬을 끌어낸다. +야생의 경우에는 배틀이 끝난다." +309,15,5,"Effraie le Pokémon ennemi et le remplace par +un autre. Dans la nature, met fin au combat." +309,15,6,"Der Brüller schlägt das Ziel in die Flucht. Ein +Kampf gegen ein wildes Pokémon wird beendet." +309,15,7,"Ataque de dos turnos. En el primer turno se +concentra luz, y en el segundo se canaliza en +un rayo para atacar." +309,15,8,"Il bersaglio lascia il campo e viene sostituito. +Mette fine alle lotte contro singoli Pokémon +selvatici." +309,15,9,"The target is scared off and a different +Pokémon is dragged out. In the wild, +this ends a battle against a single Pokémon." +309,15,11,"相手を 逃がして +控えの ポケモンを ひきずりだす。 +野生の 場合は 戦闘が 終わる。" +310,5,9,"Poisons the foe +with a toxin that +gradually worsens." +310,6,9,"Poisons the foe +with a toxin that +gradually worsens." +310,7,9,"A move that badly +poisons the foe. +Its poison damage +worsens every turn." +310,8,9,"A move that leaves the foe badly +poisoned. This poison damage +worsens every turn." +310,9,9,"A move that leaves the foe badly +poisoned. This poison damage +worsens every turn." +310,10,9,"A move that leaves the foe badly +poisoned. This poison damage +worsens every turn." +310,11,5,"Empoisonne gravement l’ennemi. Les +dégâts dus au poison augmentent à +chaque tour." +310,11,9,"A move that leaves the target badly +poisoned. Its poison damage +worsens every turn." +310,14,9,"A move that leaves the target badly +poisoned. Its poison damage +worsens every turn." +310,15,1,"もうどくの じょうたいに する。 +ターンすうが すすむほど どくの +ダメージりょうは ふえる。" +310,15,3,"상대를 맹독의 상태로 만든다. +턴이 진행될수록 +독의 데미지가 증가한다." +310,15,5,"Empoisonne gravement l’ennemi. +Les dégâts dus au poison augmentent à +chaque tour." +310,15,6,"Das Ziel wird schwer vergiftet. Der Schaden +durch das Gift wird in jeder Runde stärker." +310,15,7,"El usuario ataca lanzando una piedra o un +proyectil. Puede estrellar contra el suelo al +objetivo si vuela." +310,15,8,"Iperavvelena il nemico con una potente tossina. +Il danno peggiora a ogni turno." +310,15,9,"A move that leaves the target +badly poisoned. Its poison +damage worsens every turn." +310,15,11,"相手を 猛毒の 状態に する。 +ターンが すすむほど +毒の ダメージが 増えていく。" +311,5,9,"Summons a hailstorm +that hurts all +types except ICE." +311,6,9,"Creates a hailstorm +that damages all +types except ICE." +311,7,9,"A hailstorm lasting +five turns damages +all POKéMON except +the ICE-type." +311,8,9,"Summons a hailstorm that lasts for +five turns. The hailstorm damages +all types except Ice." +311,9,9,"Summons a hailstorm that lasts for +five turns. The hailstorm damages +all types except Ice." +311,10,9,"Summons a hailstorm that lasts for +five turns. The hailstorm damages +all types except Ice." +311,11,5,"Invoque une tempête de grêle qui dure +5 tours. Ne blesse pas les Pokémon de +type Glace." +311,11,9,"Summons a hailstorm that lasts for +five turns. The hailstorm damages +all types except Ice." +311,14,9,"Summons a hailstorm that lasts for +five turns. The hailstorm damages +all types except Ice." +311,15,1,"5ターンの あいだ あられを +ふらして こおりタイプ いがいの +ポケモンに ダメージを あたえる。" +311,15,3,"5턴 동안 싸라기눈을 +내리게 해서 얼음타입 이외의 +포켓몬에게 데미지를 준다." +311,15,5,"Invoque une tempête de grêle qui dure cinq +tours. Ne blesse pas les Pokémon de type +Glace." +311,15,6,"Der verursachte Hagelsturm hält 5 Runden an +und schadet allen Pokémon, außer denen +vom Typ Eis." +311,15,7,"Ataca al objetivo con una fuerte descarga +eléctrica que puede llegar a paralizar." +311,15,8,"Chi la usa causa una grandinata che dura +cinque turni. Danneggia tutti i Pokémon +tranne quelli di tipo Ghiaccio." +311,15,9,"The user summons a hailstorm lasting five +turns. It damages all Pokémon except the +Ice type." +311,15,11,"5ターンの あいだ あられを +降らして こおりタイプ 以外の +ポケモンに ダメージを 与える。" +312,5,9,"Bulks up the body +to boost both +ATTACK & DEFENSE." +312,6,9,"Bulks up the body +to boost both +ATTACK & DEFENSE." +312,7,9,"The user bulks up +its body to boost +both its ATTACK and +DEFENSE stats." +312,8,9,"The user tenses its muscles to bulk up +its body, boosting both its Attack and +Defense stats." +312,9,9,"The user tenses its muscles to bulk up +its body, boosting both its Attack and +Defense stats." +312,10,9,"The user tenses its muscles to bulk up +its body, boosting both its Attack and +Defense stats." +312,11,5,"Le lanceur tend ses muscles pour se +gonfler, ce qui booste son Attaque et +sa Défense." +312,11,9,"The user tenses its muscles to bulk up +its body, boosting both its Attack and +Defense stats." +312,14,9,"The user tenses its muscles to bulk up +its body, boosting both its Attack and +Defense stats." +312,15,1,"ちからを こめて きんにくを +ぶあつくする ことで じぶんの +こうげきと ぼうぎょを あげる。" +312,15,3,"몸에 힘을 담아 +근육을 두껍게 해서 +자신의 공격과 방어를 올린다." +312,15,5,"Le lanceur tend ses muscles pour se gonfler, +ce qui booste son Attaque et sa Défense." +312,15,6,"Der Anwender spannt seine Muskeln an +und steigert damit den Angriffs- und +den Verteidigungs-Wert." +312,15,7,"Ataca con un terrible rayo que puede paralizar al +objetivo." +312,15,8,"Chi la usa tende i muscoli per gonfiare il corpo, +aumentando Difesa e Attacco." +312,15,9,"The user tenses its muscles to bulk up +its body, raising both its Attack and +Defense stats." +312,15,11,"体に 力を こめて +筋肉を ぶあつく することで +自分の 攻撃と 防御を あげる。" +313,5,9,"Shoots 2 to 5 seeds +in a row to strike +the foe." +313,6,9,"Shoots 2 to 5 seeds +in a row to strike +the foe." +313,7,9,"The user shoots +seeds at the foe. +Two to five seeds +are shot at once." +313,8,9,"The user forcefully shoots seeds at +the foe. Two to five seeds are shot in +rapid succession." +313,9,9,"The user forcefully shoots seeds at +the foe. Two to five seeds are shot in +rapid succession." +313,10,9,"The user forcefully shoots seeds at +the foe. Two to five seeds are shot in +rapid succession." +313,11,5,"Le lanceur inocule un poison spécial +à l’ennemi. L’effet est doublé si +l’ennemi est déjà empoisonné." +313,11,9,"The user drenches the target in a +special poisonous liquid. Its power +is doubled if the target is poisoned." +313,14,9,"The user drenches the target in a +special poisonous liquid. Its power +is doubled if the target is poisoned." +313,15,1,"とくしゅな どくえきを あびせる。 +どく じょうたいの あいてには +いりょくが 2ばいに なる。" +313,15,3,"특수한 독액을 날린다. +독 상태의 상대에게는 +위력이 2배가 된다." +313,15,5,"Le lanceur inocule un poison spécial à l’ennemi. +L’effet est doublé si l’ennemi est déjà +empoisonné." +313,15,6,"Überschüttet das Ziel mit einer speziellen +toxischen Flüssigkeit. Doppelt so stark gegen +bereits vergiftete Ziele." +313,15,7,"Quien lo usa genera un terremoto que afecta a +los Pokémon de alrededor en combate." +313,15,8,"Lancia uno speciale liquido tossico sul bersaglio. +Se questi è avvelenato, il danno provocato +raddoppia." +313,15,9,"The user drenches the target in a special +poisonous liquid. This move’s power is +doubled if the target is poisoned." +313,15,11,"特殊な 毒液を 浴びせかける。 +毒状態の 相手には +威力が 2倍に なる。" +314,5,9,"The attack power +varies among +different POKéMON." +314,6,9,"The attack power +varies among +different POKéMON." +314,7,9,"An attack that +varies in type and +intensity depending +on the user." +314,8,9,"A variable move that changes type +and power depending on the hidden +ability of the Pokémon using it." +314,9,9,"A variable move that changes type +and power depending on the hidden +ability of the Pokémon using it." +314,10,9,"A variable move that changes type +and power depending on the hidden +ability of the Pokémon using it." +314,11,5,"La puissance et le type de la +capacité dépendent de l’aptitude +cachée du lanceur." +314,11,9,"A unique attack that varies in type and +intensity depending on the Pokémon +using it." +314,14,9,"A unique attack that varies in type and +intensity depending on the Pokémon +using it." +314,15,1,"わざを つかった ポケモンに よって +わざの タイプが かわる。 +" +314,15,3,"기술을 쓴 포켓몬에 따라 +기술의 타입이 달라진다." +314,15,5,"Attaque dont le type dépend du Pokémon +qui l’utilise." +314,15,6,"Der Typ dieser Attacke hängt vom jeweiligen +Pokémon ab, das sie einsetzt." +314,15,7,"Un ataque de gran potencia que resulta más +fuerte cuanto más le guste el Entrenador al +Pokémon que lo usa." +314,15,8,"Mossa singolare che cambia tipo a seconda +del Pokémon che la usa." +314,15,9,"A unique attack that varies in type +depending on the Pokémon using it." +314,15,11,"技を 使った ポケモンに よって +技の タイプが 変わる。 +" +315,5,9,"Raises the power of +FIRE-type moves +for 5 turns." +315,6,9,"Raises the power of +FIRE-type moves +for 5 turns." +315,7,9,"The sun blazes for +five turns, powering +up FIRE-type +moves." +315,8,9,"The user intensifies the sun for +five turns, powering up Fire-type +moves." +315,9,9,"The user intensifies the sun for +five turns, powering up Fire-type +moves." +315,10,9,"The user intensifies the sun for +five turns, powering up Fire-type +moves." +315,11,5,"Fait briller le soleil pendant 5 tours et +améliore les capacités de type Feu." +315,11,9,"The user intensifies the sun for +five turns, powering up Fire-type +moves." +315,14,9,"The user intensifies the sun for +five turns, powering up Fire-type +moves." +315,15,1,"5ターンの あいだ ひざしを +つよくして ほのおタイプの +わざの いりょくを あげる。" +315,15,3,"5턴 동안 햇살을 강하게 해서 +불꽃타입 기술의 위력을 올린다." +315,15,5,"Fait briller le soleil pendant cinq tours, augmentant +la puissance des capacités de type Feu." +315,15,6,"Die Sonne brennt unbarmherzig 5 Runden +lang. Dadurch werden Attacken vom +Typ Feuer verstärkt." +315,15,7,"Quien lo usa cava en el primer turno y ataca en +el segundo. También se puede usar para escapar +de lugares cerrados." +315,15,8,"Chi la usa intensifica i raggi solari per cinque +turni, potenziando le mosse di tipo Fuoco." +315,15,9,"The user intensifies the sun +for five turns, powering up +Fire-type moves." +315,15,11,"5ターンの あいだ 日差しを +つよくして ほのおタイプの +技の 威力を あげる。" +316,5,9,"Enrages the foe so +it can only use +attack moves." +316,6,9,"Enrages the foe so +it can only use +attack moves." +316,7,9,"The foe is taunted +into a rage that +allows it to use +only attack moves." +316,8,9,"The foe is taunted into a rage that +allows it to use only attack moves for +two to four turns." +316,9,9,"The foe is taunted into a rage that +allows it to use only attack moves for +two to four turns." +316,10,9,"The foe is taunted into a rage that +allows it to use only attack moves for +two to four turns." +316,11,5,"Provoque l’ennemi. L’oblige à n’utiliser +que des attaques pendant 3 tours." +316,11,9,"The target is taunted into a rage that +allows it to use only attack moves +for three turns." +316,14,9,"The target is taunted into a rage that +allows it to use only attack moves +for three turns." +316,15,1,"あいてを おこらせる。3ターンの +あいだ あいては ダメージを +あたえる わざしか だせなくなる。" +316,15,3,"상대를 화나게 한다. +3턴 동안 상대는 데미지를 +주는 기술밖에 쓸 수 없게 된다." +316,15,5,"Provoque l’ennemi. L’oblige à n’utiliser que des +attaques pendant trois tours." +316,15,6,"Das Ziel wird so gereizt, dass es über 3 Runden +hinweg nur Angriffsattacken einsetzt." +316,15,7,"Ataca al objetivo con un potente ataque +telequinético que le puede bajar la Defensa +Especial." +316,15,8,"Provoca il nemico inducendolo a usare solo +mosse d’attacco per tre turni." +316,15,9,"The target is taunted into a rage +that allows it to use only attack +moves for three turns." +316,15,11,"相手を 怒らせる。3ターンの +あいだ 相手は ダメージを +与える 技しか だせなくなる。" +317,5,9,"Fires an icy cold +beam that may +freeze the foe." +317,6,9,"Fires an icy cold +beam that may +freeze the foe." +317,7,9,"The foe is struck +with an icy beam. +It may freeze the +foe solid." +317,8,9,"The foe is struck with an icy-cold +beam of energy. It may also freeze +the target solid." +317,9,9,"The foe is struck with an icy-cold +beam of energy. It may also freeze +the target solid." +317,10,9,"The foe is struck with an icy-cold +beam of energy. It may also freeze +the target solid." +317,11,5,"Un rayon de glace frappe l’ennemi. +Peut aussi le geler." +317,11,9,"The target is struck with an icy-cold +beam of energy. +It may also freeze the target solid." +317,14,9,"The target is struck with an icy-cold +beam of energy. +It may also freeze the target solid." +317,15,1,"れいきの ビームを はっしゃして +こうげきする。 あいてを こおりの +じょうたいに することが ある。" +317,15,3,"냉동빔을 +상대에게 발사하여 공격한다. +얼음 상태로 만들 때가 있다." +317,15,5,"Un rayon de glace frappe l’ennemi. +Peut aussi le geler." +317,15,6,"Das Ziel wird von einem eiskalten Energiestrahl +getroffen. Dieser friert es eventuell ein." +317,15,7,"Lanza una bola oscura que puede bajar la +Defensa Especial del objetivo." +317,15,8,"Il nemico è colpito da un raggio di energia gelida +che può anche congelarlo." +317,15,9,"The target is struck with an icy- +cold beam of energy. This may +also leave the target frozen." +317,15,11,"凍える ビームを +相手に 発射して 攻撃する。 +こおり状態に することが ある。" +318,5,9,"A vicious snow-and- +wind attack that +may freeze the foe." +318,6,9,"A brutal snow-and- +wind attack that +may freeze the foe." +318,7,9,"The foe is blasted +with a blizzard. +It may freeze the +foe solid." +318,8,9,"A howling blizzard is summoned to +strike the foe. It may also freeze +the target solid." +318,9,9,"A howling blizzard is summoned to +strike the foe. It may also freeze +the target solid." +318,10,9,"A howling blizzard is summoned to +strike the foe. It may also freeze +the target solid." +318,11,5,"Une violente tempête de neige est +déclenchée sur l’ennemi. Peut aussi +le geler." +318,11,9,"A howling blizzard is summoned to strike +the opposing team. It may also freeze +them solid." +318,14,9,"A howling blizzard is summoned to strike +the opposing team. It may also freeze +them solid." +318,15,1,"はげしい ふぶきを ぶつけて +こうげきする。 あいてを こおりの +じょうたいに することが ある。" +318,15,3,"세찬 눈보라를 +상대에게 내뿜어 공격한다. +얼음 상태로 만들 때가 있다." +318,15,5,"Une violente tempête de neige est déclenchée +sur l’ennemi. Peut aussi le geler." +318,15,6,"Eine ungnädige Eis-und-Schnee-Attacke, die +Pokémon in der Nähe des Anwenders trifft +und eventuell einfrieren kann." +318,15,7,"Ataca con contundentes puñetazos. Puede +destruir barreras como Pantalla de Luz y Reflejo." +318,15,8,"Colpisce i nemici con una tremenda tempesta +di ghiaccio che può anche congelarli." +318,15,9,"A howling blizzard is summoned to strike +opposing Pokémon. This may also leave +the opposing Pokémon frozen." +318,15,11,"激しい 吹雪を +相手に 吹きつけて 攻撃する。 +こおり状態に することが ある。" +319,5,9,"Powerful, but needs +recharging the +next turn." +319,6,9,"Powerful, but needs +recharging the +next turn." +319,7,9,"A severely damaging +attack that makes +the user rest on +the next turn." +319,8,9,"The foe is attacked with a powerful +beam. The user must rest on the next +turn to regain its energy." +319,9,9,"The foe is attacked with a powerful +beam. The user must rest on the next +turn to regain its energy." +319,10,9,"The foe is attacked with a powerful +beam. The user must rest on the next +turn to regain its energy." +319,11,5,"Projette un puissant rayon sur +l’ennemi. Le lanceur doit se reposer +au tour suivant." +319,11,9,"The target is attacked with a powerful +beam. The user must rest on the next +turn to regain its energy." +319,14,9,"The target is attacked with a powerful +beam. The user must rest on the next +turn to regain its energy." +319,15,1,"つよい こうせんを はっしゃする。 +つかった つぎのターンは はんどうで +うごけなくなる。" +319,15,3,"강한 광선을 +상대에게 발사하여 공격한다. +다음 턴은 움직일 수 없다." +319,15,5,"Projette un puissant rayon sur l’ennemi. +Le lanceur doit se reposer au tour suivant." +319,15,6,"Eine äußerst starke Attacke, die viel Schaden +anrichtet. Anwender muss sich in der +nächsten Runde ausruhen." +319,15,7,"Quien lo usa se mueve tan rápido que deja una +estela de sí mismo que aumenta la Evasión." +319,15,8,"Colpisce il nemico con un potente raggio. +Chi la usa salta il turno successivo per +recuperare energia." +319,15,9,"The target is attacked with a powerful beam. +The user can’t move on the next turn." +319,15,11,"強い 光線を +相手に 発射して 攻撃する。 +次の ターンは 動けなくなる。" +320,5,9,"Creates a wall of +light that lowers +SP. ATK damage." +320,6,9,"Creates a wall of +light that lowers +SP. ATK damage." +320,7,9,"A wall of light +cuts damage from +SP. ATK attacks +for five turns." +320,8,9,"A wondrous wall of light is put up to +suppress damage from special attacks +for five turns." +320,9,9,"A wondrous wall of light is put up to +suppress damage from special attacks +for five turns." +320,10,9,"A wondrous wall of light is put up to +suppress damage from special attacks +for five turns." +320,11,5,"Un fabuleux mur de lumière qui réduit +les dégâts causés par les attaques +spéciales durant 5 tours." +320,11,9,"A wondrous wall of light is put up to +suppress damage from special attacks +for five turns." +320,14,9,"A wondrous wall of light is put up to +suppress damage from special attacks +for five turns." +320,15,1,"5ターンの あいだ ふしぎな かべで +あいてから うける とくしゅわざの +ダメージを よわめる。" +320,15,3,"5턴 동안 이상한 장막으로 +상대로부터 받는 특수 기술의 +데미지를 약하게 만든다." +320,15,5,"Un fabuleux mur de lumière qui réduit les dégâts +causés par les attaques spéciales durant cinq +tours." +320,15,6,"Eine Wand aus Licht wird über 5 Runden errichtet. +Sie senkt den durch Spezial-Angriffe +herbeigeführten Schaden." +320,15,7,"Impresionante pared de luz que reduce el daño +de los ataques físicos durante cinco turnos." +320,15,8,"Innalza una barriera di luce fantastica che riduce +i danni degli attacchi speciali per sé e gli alleati +per cinque turni." +320,15,9,"A wondrous wall of light is put up to +reduce damage from special attacks +for five turns." +320,15,11,"5ターンの あいだ 不思議な かべで +相手から 受ける 特殊攻撃の +ダメージを 弱める。" +321,5,9,"Negates all damage, +but may fail if used +in succession." +321,6,9,"Negates all damage, +but may fail if used +in succession." +321,7,9,"Enables the user to +evade all attacks. +It may fail if used +in succession." +321,8,9,"It enables the user to evade all +attacks. Its chance of failing rises +if it is used in succession." +321,9,9,"It enables the user to evade all +attacks. Its chance of failing rises +if it is used in succession." +321,10,9,"It enables the user to evade all +attacks. Its chance of failing rises +if it is used in succession." +321,11,5,"Le lanceur esquive toutes les attaques. +Plus la capacité est utilisée de fois à la +suite, plus elle risque d’échouer." +321,11,9,"It enables the user to evade all +attacks. Its chance of failing rises +if it is used in succession." +321,14,9,"It enables the user to evade all +attacks. Its chance of failing rises +if it is used in succession." +321,15,1,"こうげきを まったく うけない。 +わざを れんぞくで だすと +しっぱい しやすくなる。" +321,15,3,"상대의 공격을 +전혀 받지 않는다. +연속으로 쓰면 실패하기 쉽다." +321,15,5,"Le lanceur esquive toutes les attaques. +Le risque d’échec augmente lorsque la capacité +est utilisée plusieurs fois de suite." +321,15,6,"Garantierter Schutz in der Runde, in der +die Attacke eingesetzt wird. Könnte bei +häufigem Einsatz versagen." +321,15,7,"Onda de porquería que afecta a todos los +Pokémon de alrededor y puede causar +envenenamiento." +321,15,8,"Permette di eludere tutti gli attacchi. +Se usata in successione può fallire." +321,15,9,"Enables the user to evade all attacks. +Its chance of failing rises if it is used +in succession." +321,15,11,"相手の 攻撃を +まったく 受けない。 +連続で だすと 失敗しやすい。" +322,5,9,"Raises the power of +WATER-type moves +for 5 turns." +322,6,9,"Raises the power of +WATER-type moves +for 5 turns." +322,7,9,"A heavy rain falls +for five turns, +powering up WATER- +type moves." +322,8,9,"The user summons a heavy rain that +falls for five turns, powering up +Water-type moves." +322,9,9,"The user summons a heavy rain that +falls for five turns, powering up +Water-type moves." +322,10,9,"The user summons a heavy rain that +falls for five turns, powering up +Water-type moves." +322,11,5,"Invoque de fortes pluies qui durent +5 tours et améliorent les capacités +de type Eau." +322,11,9,"The user summons a heavy rain that +falls for five turns, powering up +Water-type moves." +322,14,9,"The user summons a heavy rain that +falls for five turns, powering up +Water-type moves." +322,15,1,"5ターンの あいだ あめを ふらして +みずタイプの わざの いりょくを +あげる。" +322,15,3,"5턴 동안 비를 내려서 +물타입 기술의 위력을 올린다." +322,15,5,"Invoque de fortes pluies qui durent cinq tours +et augmentent la puissance des capacités de +type Eau." +322,15,6,"Schwerer Niederschlag setzt für 5 Runden ein. +Attacken vom Typ Wasser werden verstärkt." +322,15,7,"Abrasa al objetivo con una intensa llamarada que +puede causarle quemaduras." +322,15,8,"Chi la usa provoca una forte pioggia per cinque +turni, potenziando le mosse di tipo Acqua." +322,15,9,"The user summons a heavy rain +that falls for five turns, powering +up Water-type moves." +322,15,11,"5ターンの あいだ 雨を 降らして +みずタイプの +技の 威力を あげる。" +323,5,9,"Recovers half the +HP of the damage +this move inflicts." +323,6,9,"Recovers half the +HP of the damage +this move inflicts." +323,7,9,"A harsh attack that +absorbs half the +damage it inflicted +to restore HP." +323,8,9,"A nutrient-draining attack. The user’s +HP is restored by half the damage +taken by the target." +323,9,9,"A nutrient-draining attack. The user’s +HP is restored by half the damage +taken by the target." +323,10,9,"A nutrient-draining attack. The user’s +HP is restored by half the damage +taken by the target." +323,11,5,"Un pouvoir qui fait flotter l’ennemi +dans les airs. Pendant 3 tours, il +devient plus facile à atteindre." +323,11,9,"The user makes the target float with +its psychic power. The target is easier +to hit for three turns." +323,14,9,"The user makes the target float with +its psychic power. The target is easier +to hit for three turns." +323,15,1,"じめんに おりて からだを やすめる。 +さいだい HPの はんぶんの +HPを かいふく する。" +323,15,3,"땅에 내려와 몸을 쉬게 한다. +최대 HP의 절반만큼 +HP를 회복한다." +323,15,5,"Le lanceur atterrit et se repose. +Restaure jusqu’à la moitié de ses PV max." +323,15,6,"Anwender landet und ruht sich aus. KP des +Anwenders werden um 50 % der maximalen KP +aufgefüllt." +323,15,7,"Descarga de lodo tóxico que puede llegar a +envenenar al objetivo." +323,15,8,"Chi la usa sta fermo e riposa, recuperando +metà dei propri PS massimi." +323,15,9,"The user lands and rests its body. +It restores the user’s HP by up to +half of its max HP." +323,15,11,"地面に 降りて 体を やすめる。 +最大HPの 半分の +HPを 回復する。" +324,5,9,"Prevents status +abnormality with a +mystical power." +324,6,9,"Prevents status +abnormality with a +mystical power." +324,7,9,"It protects the +user’s party from +all status problems +for five turns." +324,8,9,"The user creates a protective field +that prevents status problems like +poison, paralysis, burn, and sleep." +324,9,9,"The user creates a protective field +that prevents status problems like +poison, paralysis, burn, and sleep." +324,10,9,"The user creates a protective field +that prevents status problems like +poison, paralysis, burn, and sleep." +324,11,5,"Champ protecteur empêchant tous les +problèmes de statut pendant 5 tours." +324,11,9,"The user creates a protective field +that prevents status problems +for five turns." +324,14,9,"The user creates a protective field +that prevents status problems +for five turns." +324,15,1,"5ターンの あいだ +ふしぎな ちからに まもられて +じょうたい いじょうに ならなくなる。" +324,15,3,"5턴 동안 +이상한 힘으로 보호받아 +상태 이상이 되지 않는다." +324,15,5,"Crée un champ protecteur qui empêche tous les +problèmes de statut pendant cinq tours." +324,15,6,"Ein Schild schützt das Team 5 Runden lang +vor Statusproblemen jeglicher Art." +324,15,7,"Tormenta de arena de cinco turnos que daña a +todos los Pokémon excepto a los de tipo Roca, +Tierra y Acero." +324,15,8,"Chi la usa crea un campo protettivo che +evita problemi di stato per sé e gli alleati +per cinque turni." +324,15,9,"The user creates a protective field +that prevents status conditions +for five turns." +324,15,11,"5ターンの あいだ +不思議な 力に 守られて +状態異常に ならなくなる。" +325,5,9,"The less the user +likes you, the more +powerful this move." +325,6,9,"The less the user +likes you, the more +powerful this move." +325,7,9,"This attack move +grows more powerful +the less the user +likes its TRAINER." +325,8,9,"A full-power attack that grows more +powerful the less the user likes its +Trainer." +325,9,9,"A full-power attack that grows more +powerful the less the user likes its +Trainer." +325,10,9,"A full-power attack that grows more +powerful the less the user likes its +Trainer." +325,11,5,"Moins le Pokémon aime son Dresseur, +plus cette attaque est puissante." +325,11,9,"A full-power attack that grows more +powerful the less the user likes its +Trainer." +325,14,9,"A full-power attack that grows more +powerful the less the user likes its +Trainer." +325,15,1,"ふまんを はらすために ぜんりょくで +こうげきする。 なついて いないほど +いりょくは あがる。" +325,15,3,"불만을 풀기 위해서 전력으로 +공격한다. 친밀하지 않을수록 +위력이 올라간다." +325,15,5,"Moins le Pokémon aime son Dresseur, plus cette +attaque est puissante." +325,15,6,"Je unbeliebter der Trainer bei seinem Pokémon ist, +desto größer ist die Wirkung." +325,15,7,"Ataca con una intensa ráfaga de fuego abrasador +que puede causar quemaduras." +325,15,8,"Mossa che diventa tanto più potente quanto +minore è il grado di affezione del Pokémon +per il proprio Allenatore." +325,15,9,"A full-power attack that grows more +powerful the less the user likes +its Trainer." +325,15,11,"不満を はらすため 全力で +攻撃する。 なついて いないほど +威力は あがる。" +326,5,9,"Absorbs sunlight in +the 1st turn, then +attacks next turn." +326,6,9,"Absorbs sunlight in +the 1st turn, then +attacks next turn." +326,7,9,"A 2-turn move that +blasts the foe with +absorbed energy in +the 2nd turn." +326,8,9,"A two-turn attack. The user gathers +light, then blasts a bundled beam on +the second turn." +326,9,9,"A two-turn attack. The user gathers +light, then blasts a bundled beam on +the second turn." +326,10,9,"A two-turn attack. The user gathers +light, then blasts a bundled beam on +the second turn." +326,11,5,"Absorbe la lumière au premier tour +et envoie un rayon puissant au +tour suivant." +326,11,9,"A two-turn attack. The user gathers +light, then blasts a bundled beam on +the second turn." +326,14,9,"A two-turn attack. The user gathers +light, then blasts a bundled beam on +the second turn." +326,15,1,"1ターンめに ひかりを あつめて +2ターンめに ひかりの こうせんを +はっしゃして こうげきする。" +326,15,3,"1턴째에 빛을 가득 모아 +2턴째에 빛의 다발을 +발사하여 공격한다." +326,15,5,"Absorbe la lumière au premier tour et envoie un +rayon puissant au tour suivant." +326,15,6,"Eine Attacke über 2 Runden. Zunächst wird +Sonnenlicht absorbiert, anschließend erfolgt +der Angriff." +326,15,7,"Tira rocas que detienen al objetivo y bajan su +Velocidad." +326,15,8,"Chi la usa assorbe luce al primo turno per +proiettare un raggio intenso al turno successivo." +326,15,9,"A two-turn attack. The user gathers +light, then blasts a bundled beam on +the next turn." +326,15,11,"1ターン目に 光を いっぱいに 集め +2ターン目に 光の 束を +発射して 攻撃する。" +327,5,9,"Slams the foe with +a hard tail. It may +lower DEFENSE." +327,6,9,"Slams the foe with +a hard tail. It may +lower DEFENSE." +327,7,9,"An attack with a +steel-hard tail. +It may lower the +foe’s DEFENSE stat." +327,8,9,"The foe is slammed with a sturdy +tail of steel. It may also lower the +target’s Defense stat if it hits." +327,9,9,"The foe is slammed with a sturdy +tail of steel. It may also lower the +target’s Defense stat if it hits." +327,10,9,"The foe is slammed with a sturdy +tail of steel. It may also lower the +target’s Defense stat if it hits." +327,11,5,"Le lanceur jette toutes sortes +de projectiles à un ennemi. Si ce +dernier vole, il tombe au sol." +327,11,9,"The user throws a stone or projectile +to attack an opponent. A flying Pokémon +will fall to the ground when it’s hit." +327,14,9,"The user throws a stone or projectile +to attack an opponent. A flying Pokémon +will fall to the ground when it’s hit." +327,15,1,"いしや たまを なげて とんでいる +あいてを こうげきする。あいては +うちおとされて じめんに おちる。" +327,15,3,"돌이나 구슬을 던져서 날고 있는 +상대를 공격한다. +맞은 상대는 땅에 떨어진다." +327,15,5,"Le lanceur jette toutes sortes de projectiles à +un ennemi. Si ce dernier vole, il tombe au sol." +327,15,6,"Greift das Ziel mit Steinen und Wurfgeschossen +an. Fliegende Ziele fallen vom Himmel +und landen auf dem Boden." +327,15,7,"Ataque que desconcierta por su rapidez y que no +falla nunca." +327,15,8,"Chi la usa lancia una pietra o un proiettile. Può +colpire anche un bersaglio in volo e farlo cadere." +327,15,9,"The user throws a stone or similar projectile +to attack an opponent. A flying Pokémon +will fall to the ground when it’s hit." +327,15,11,"石や 弾を 投げて 飛んでいる +相手を 攻撃する。相手は +うちおとされて 地面に おちる。" +328,5,9,"A powerful electric +attack that may +cause paralysis." +328,6,9,"A powerful electric +attack that may +cause paralysis." +328,7,9,"A strong electrical +attack that may +also leave the foe +paralyzed." +328,8,9,"A strong electric blast is loosed at +the foe. It may also leave the foe +paralyzed." +328,9,9,"A strong electric blast is loosed at +the foe. It may also leave the foe +paralyzed." +328,10,9,"A strong electric blast is loosed at +the foe. It may also leave the foe +paralyzed." +328,11,5,"Une grosse décharge électrique tombe +sur l’ennemi. Peut aussi le paralyser." +328,11,9,"A strong electric blast is loosed at the +target. It may also leave the target +with paralysis." +328,14,9,"A strong electric blast is loosed at the +target. It may also leave the target +with paralysis." +328,15,1,"つよい でんげきを あびせて +こうげきする。 あいてを まひの +じょうたいに することが ある。" +328,15,3,"강한 전격을 +상대에게 날려서 공격한다. +마비 상태로 만들 때가 있다." +328,15,5,"Une grosse décharge électrique tombe sur +l’ennemi. Peut aussi le paralyser." +328,15,6,"Das Ziel wird von einem verheerenden +Stromschlag getroffen. Kann eventuell +Paralyse bewirken." +328,15,7,"Atormenta al objetivo y le provoca un ataque de +ira que le impide usar el mismo movimiento dos +veces seguidas." +328,15,8,"Il bersaglio viene colpito da una potente scarica +elettrica che può anche paralizzarlo." +328,15,9,"A strong electric blast crashes down on +the target. This may also leave the target +with paralysis." +328,15,11,"強い 電撃を +相手に 浴びせて 攻撃する。 +まひ状態に することが ある。" +329,5,9,"Strikes the foe +with a thunderbolt. +It may paralyze." +329,6,9,"Strikes the foe +with a thunderbolt. +It may paralyze." +329,7,9,"A brutal lightning +attack that may +also leave the foe +paralyzed." +329,8,9,"A wicked thunderbolt is dropped on the +foe to inflict damage. It may also +leave the target paralyzed." +329,9,9,"A wicked thunderbolt is dropped on the +foe to inflict damage. It may also +leave the target paralyzed." +329,10,9,"A wicked thunderbolt is dropped on the +foe to inflict damage. It may also +leave the target paralyzed." +329,11,5,"La foudre tombe sur l’ennemi pour +lui infliger des dégâts. Peut aussi +le paralyser." +329,11,9,"A wicked thunderbolt is dropped +on the target to inflict damage. It may +also leave the target with paralysis." +329,14,9,"A wicked thunderbolt is dropped +on the target to inflict damage. It may +also leave the target with paralysis." +329,15,1,"はげしい かみなりを おとして +こうげきする。 あいてを まひの +じょうたいに することが ある。" +329,15,3,"강한 번개를 +상대에게 떨어뜨려 공격한다. +마비 상태로 만들 때가 있다." +329,15,5,"La foudre tombe sur l’ennemi pour lui infliger +des dégâts. Peut aussi le paralyser." +329,15,6,"Das Ziel wird von einem mächtigen Donnerschlag, +der Paralyse bewirken kann, heimgesucht." +329,15,7,"Movimiento de ataque que dobla su potencia si +quien lo utiliza está envenenado, quemado o +paralizado." +329,15,8,"Il nemico è colpito da un lampo molto violento +che può anche paralizzarlo." +329,15,9,"A wicked thunderbolt is dropped on +the target to inflict damage. This may +also leave the target with paralysis." +329,15,11,"激しい 雷を +相手に 落として 攻撃する。 +まひ状態に することが ある。" +330,5,9,"Causes a quake +that has no effect +on flying foes." +330,6,9,"Causes a quake +that has no effect +on flying foes." +330,7,9,"An earthquake that +strikes all POKéMON +in battle excluding +the user." +330,8,9,"The user sets off an earthquake +that hits all the Pokémon in the +battle." +330,9,9,"The user sets off an earthquake +that hits all the Pokémon in the +battle." +330,10,9,"The user sets off an earthquake +that hits all the Pokémon in the +battle." +330,11,5,"Le lanceur provoque un tremblement +de terre touchant tous les Pokémon +autour de lui." +330,11,9,"The user sets off an earthquake that +strikes every Pokémon around it." +330,14,9,"The user sets off an earthquake that +strikes every Pokémon around it." +330,15,1,"じぶんの まわりの ポケモンに +じしんの しょうげきを あたえて +こうげきする。" +330,15,3,"지진의 충격을 일으켜서 +자신의 주위에 있는 포켓몬을 +공격한다." +330,15,5,"Le lanceur provoque un tremblement de terre +touchant tous les Pokémon autour de lui." +330,15,6,"Ein starkes Beben wird verursacht, das +den anderen Pokémon in der Umgebung +des Angreifers Schaden zufügt." +330,15,7,"Ataca al objetivo envuelto en llamas. Acumula +fuerza y hace subir la Velocidad del usuario." +330,15,8,"Chi la usa provoca un potente sisma che colpisce +gli altri Pokémon in campo." +330,15,9,"The user sets off an earthquake that +strikes every Pokémon around it." +330,15,11,"自分の 周りの ポケモンに +地震の 衝撃を あたえて +攻撃する。" +331,5,9,"The more the user +likes you, the more +powerful this move." +331,6,9,"The more the user +likes you, the more +powerful this move." +331,7,9,"This attack move +grows more powerful +the more the user +likes its TRAINER." +331,8,9,"A full-power attack that grows more +powerful the more the user likes its +Trainer." +331,9,9,"A full-power attack that grows more +powerful the more the user likes its +Trainer." +331,10,9,"A full-power attack that grows more +powerful the more the user likes its +Trainer." +331,11,5,"Une attaque furieuse dont la puissance +augmente quand le Pokémon apprécie +son Dresseur." +331,11,9,"A full-power attack that grows more +powerful the more the user likes its +Trainer." +331,14,9,"A full-power attack that grows more +powerful the more the user likes its +Trainer." +331,15,1,"トレーナーのために ぜんりょくで +こうげきする。 なついて いるほど +いりょくは あがる。" +331,15,3,"트레이너를 위해 전력으로 공격한다. +친밀할수록 위력이 올라간다." +331,15,5,"Plus le Pokémon apprécie son Dresseur, plus +la puissance de cette attaque furieuse augmente." +331,15,6,"Je beliebter der Trainer bei seinem Pokémon ist, +desto größer ist die Wirkung." +331,15,7,"Restaura todos los PS y cura todos los problemas +de estado del usuario. Duerme los dos próximos +turnos." +331,15,8,"Mossa che diventa tanto più potente quanto +maggiore è il grado di affezione del Pokémon +per il proprio Allenatore." +331,15,9,"A full-power attack that grows more +powerful the more the user likes +its Trainer." +331,15,11,"トレーナーの ために 全力で +攻撃する。 なついて いるほど +威力は あがる。" +332,5,9,"Digs underground +the 1st turn, then +strikes next turn." +332,6,9,"Digs underground +the 1st turn, then +strikes next turn." +332,7,9,"An attack that hits +on the 2nd turn. +Can also be used +to exit dungeons." +332,8,9,"The user burrows, then attacks on the +second turn. It can also be used to +exit dungeons." +332,9,9,"The user burrows, then attacks on the +second turn. It can also be used to +exit dungeons." +332,10,9,"The user burrows, then attacks on the +second turn. It can also be used to +exit dungeons." +332,11,5,"Le lanceur creuse au 1er tour et +frappe au 2è. Permet aussi de +s’échapper d’un donjon." +332,11,9,"The user burrows, then attacks on the +second turn. It can also be used to +exit dungeons." +332,14,9,"The user burrows, then attacks on the +second turn. It can also be used to +exit dungeons." +332,15,1,"1ターンめに もぐり 2ターンめで +こうげきする。 どうくつで つかうと +そとに だっしゅつ できる。" +332,15,3,"1턴째에 파고들어 2턴째에 +상대를 공격한다. +동굴에서 탈출할 수도 있다." +332,15,5,"Le lanceur creuse au premier tour et frappe au +second. Permet aussi de sortir des grottes." +332,15,6,"Eine Attacke über 2 Runden. Zunächst gräbt sich +der Angreifer ein, anschließend erfolgt der Angriff." +332,15,7,"Si el objetivo es del sexo opuesto, el +enamoramiento reducirá las probabilidades +de que ataque." +332,15,8,"Chi la usa scava al primo turno e attacca al +successivo. Fuori dalla lotta fa uscire da alcuni +luoghi." +332,15,9,"The user burrows, then attacks +on the next turn. It can also +be used to exit dungeons." +332,15,11,"1ターン目に 潜り 2ターン目で +相手を 攻撃する。 +どうくつからの 脱出も できる。" +333,5,9,"A powerful psychic +attack that may +lower SP. DEF." +333,6,9,"A powerful psychic +attack that may +lower SP. DEF." +333,7,9,"A strong telekinetic +attack. It may also +lower the foe’s +SP. DEF stat." +333,8,9,"The foe is hit by a strong telekinetic +force. It may also reduce the foe’s +Sp. Def stat." +333,9,9,"The foe is hit by a strong telekinetic +force. It may also reduce the foe’s +Sp. Def stat." +333,10,9,"The foe is hit by a strong telekinetic +force. It may also reduce the foe’s +Sp. Def stat." +333,11,5,"Une puissante force télékinésique +frappe l’ennemi. Peut aussi faire +baisser sa Défense Spéciale." +333,11,9,"The target is hit by a strong +telekinetic force. It may also reduce +the target’s Sp. Def stat." +333,14,9,"The target is hit by a strong +telekinetic force. It may also reduce +the target’s Sp. Def stat." +333,15,1,"つよい ねんりきを おくって +こうげきする。 あいての とくぼうを +さげることが ある。" +333,15,3,"강한 염동력을 상대에게 보내어 +공격한다. 상대의 특수방어를 +떨어뜨릴 때가 있다." +333,15,5,"Une puissante force télékinésique frappe +l’ennemi. Peut aussi faire baisser sa Défense +Spéciale." +333,15,6,"Ein mächtiger Strahl telekinetischer Energie trifft +das Ziel. Die Spezial-Verteidigung des Zieles +sinkt eventuell." +333,15,7,"Quien lo usa ataca y roba el objeto que lleva su +objetivo simultáneamente. Si ya lleva un objeto, +no podrá robar." +333,15,8,"Il nemico viene colpito da una potente forza +telecinetica che può anche ridurne la Difesa +Speciale." +333,15,9,"The target is hit by a strong telekinetic +force. This may also lower the target’s +Sp. Def stat." +333,15,11,"強い 念力を 相手に 送って +攻撃する。相手の 特防を +さげることが ある。" +334,5,9,"Hurls a dark lump +at the foe. It may +lower SP. DEF." +334,6,9,"Hurls a dark lump +at the foe. It may +lower SP. DEF." +334,7,9,"A shadowy blob is +hurled at the foe. +May also lower the +foe’s SP. DEF." +334,8,9,"The user hurls a shadowy blob at the +foe. It may also lower the foe’s +Sp. Def stat." +334,9,9,"The user hurls a shadowy blob at the +foe. It may also lower the foe’s +Sp. Def stat." +334,10,9,"The user hurls a shadowy blob at the +foe. It may also lower the foe’s +Sp. Def stat." +334,11,5,"Projette une grande ombre sur +l’ennemi. Peut aussi faire baisser +sa Défense Spéciale." +334,11,9,"The user hurls a shadowy blob at the +target. It may also lower the target’s +Sp. Def stat." +334,14,9,"The user hurls a shadowy blob at the +target. It may also lower the target’s +Sp. Def stat." +334,15,1,"くろいかげの かたまりを なげて +こうげきする。 あいての とくぼうを +さげることが ある。" +334,15,3,"까만 그림자의 덩어리를 내던져서 +공격한다. 상대의 특수방어를 +떨어뜨릴 때가 있다." +334,15,5,"Projette une grande ombre sur l’ennemi. +Peut aussi faire baisser sa Défense Spéciale." +334,15,6,"Das Ziel wird mit einem dunklen Klumpen +attackiert, der eventuell die Spezial-Verteidigung +senkt." +334,15,7,"Ataque rápido dirigido a los pies del objetivo que +le hace perder Velocidad." +334,15,8,"Lancia sul nemico una sfera nera. +Può anche ridurne la Difesa Speciale." +334,15,9,"The user hurls a shadowy blob at the +target. This may also lower the target’s +Sp. Def stat." +334,15,11,"黒い影の 塊を 投げつけて +攻撃する。相手の 特防を +さげることが ある。" +335,5,9,"Destroys barriers +like LIGHT SCREEN +and causes damage." +335,6,9,"Destroys barriers +like LIGHT SCREEN +and causes damage." +335,7,9,"An attack that also +breaks any barrier +like LIGHT SCREEN +and REFLECT." +335,8,9,"The user attacks with tough fists, +etc. It can also break any barrier +such as Light Screen and Reflect." +335,9,9,"The user attacks with tough fists, +etc. It can also break any barrier +such as Light Screen and Reflect." +335,10,9,"The user attacks with tough fists, +etc. It can also break any barrier +such as Light Screen and Reflect." +335,11,5,"Une attaque avec la main ou autre. +Peut briser les barrières comme Mur +Lumière et Protection." +335,11,9,"The user attacks with tough fists, +etc. It can also break any barrier +such as Light Screen and Reflect." +335,14,9,"The user attacks with tough fists, +etc. It can also break any barrier +such as Light Screen and Reflect." +335,15,1,"こぶしなどで こうげきする。 +ひかりのかべや リフレクターも +はかいできる。" +335,15,3,"주먹 등으로 공격한다. +빛의장막이나 리플렉터도 +파괴할 수 있다." +335,15,5,"Une attaque avec le tranchant de la main. +Permet aussi de briser les barrières comme +Mur Lumière et Protection." +335,15,6,"Das Ziel wird mit der Handkante angegriffen. +Barrieren wie Lichtschild oder Reflektor +werden zerstört." +335,15,7,"Canto que sirve de ataque. Su fuerza aumenta +cuantos más Pokémon lo usan en cadena." +335,15,8,"Colpisce il nemico con una mano e rompe +barriere come Riflesso e Schermoluce." +335,15,9,"The user attacks with a swift chop. +It can also break barriers, such as +Light Screen and Reflect." +335,15,11,"硬い こぶしなどで +相手を 攻撃する。ひかりのかべや +リフレクターも 破壊できる。" +336,5,9,"Creates illusory +copies to enhance +elusiveness." +336,6,9,"Creates illusory +copies to enhance +elusiveness." +336,7,9,"The user creates +illusory copies of +itself to raise its +evasiveness." +336,8,9,"The user begins moving so quickly +that it creates illusory copies to +raise its evasiveness." +336,9,9,"The user begins moving so quickly +that it creates illusory copies to +raise its evasiveness." +336,10,9,"The user begins moving so quickly +that it creates illusory copies to +raise its evasiveness." +336,11,5,"Le lanceur se déplace si vite qu’il crée +des copies illusoires de lui, augmentant +son Esquive." +336,11,9,"By moving rapidly, the user makes +illusory copies of itself to raise +its evasiveness." +336,14,9,"By moving rapidly, the user makes +illusory copies of itself to raise +its evasiveness." +336,15,1,"すばやい うごきで ぶんしんを +つくる。 あいてを まどわせることで +かいひりつを あげる。" +336,15,3,"재빠른 움직임으로 분신을 만들어 +상대를 혼란시켜 +회피율을 올린다." +336,15,5,"Le lanceur se déplace si vite qu’il crée des +copies illusoires de lui, augmentant son Esquive." +336,15,6,"Der Angreifer ist so schnell, dass virtuelle +Abbilder generiert werden, die den Fluchtwert +erhöhen." +336,15,7,"Ataca al objetivo con un susurro. Su fuerza +aumenta si cualquiera de los Pokémon lo usa +en cada turno." +336,15,8,"Chi la usa si muove in fretta e crea copie +illusorie di se stesso che aumentano la capacità +di elusione." +336,15,9,"By moving rapidly, the user makes illusory +copies of itself to raise its evasiveness." +336,15,11,"素早い 動きで 分身を つくり +相手を まどわせて +回避率を あげる。" +337,5,9,"Creates a wall of +light that weakens +physical attacks." +337,6,9,"Creates a wall of +light that weakens +physical attacks." +337,7,9,"A wall of light +cuts damage from +physical attacks +for five turns." +337,8,9,"A wondrous wall of light is put up to +suppress damage from physical attacks +for five turns." +337,9,9,"A wondrous wall of light is put up to +suppress damage from physical attacks +for five turns." +337,10,9,"A wondrous wall of light is put up to +suppress damage from physical attacks +for five turns." +337,11,5,"Un fabuleux mur de lumière qui réduit +les dégâts causés par les attaques +physiques durant 5 tours." +337,11,9,"A wondrous wall of light is put up to +suppress damage from physical attacks +for five turns." +337,14,9,"A wondrous wall of light is put up to +suppress damage from physical attacks +for five turns." +337,15,1,"5ターンの あいだ ふしぎな かべで +あいてから うける ぶつりわざの +ダメージを よわめる。" +337,15,3,"5턴 동안 이상한 장막으로 +상대에게 받은 물리 기술의 +데미지를 약하게 만든다." +337,15,5,"Un fabuleux mur de lumière qui réduit les dégâts +causés par les attaques physiques durant cinq +tours." +337,15,6,"Eine Wand aus Licht wird für 5 Runden errichtet. +Sie reduziert den Schaden physischer Attacken." +337,15,7,"Quien lo usa ataca con toda su fuerza, pero ve +muy reducido su Ataque Especial." +337,15,8,"Innalza una barriera di luce fantastica che riduce +i danni degli attacchi fisici per sé e gli alleati +per cinque turni." +337,15,9,"A wondrous wall of light is put up to +reduce damage from physical attacks +for five turns." +337,15,11,"5ターンの あいだ 不思議な かべで +相手から 受ける 物理攻撃の +ダメージを 弱める。" +338,5,9,"Zaps the foe with a +jolt of electricity +that never misses." +338,6,9,"Zaps the foe with a +jolt of electricity +that never misses." +338,7,9,"A rapid jolt of +electricity strikes +the foe. It can’t +be evaded." +338,8,9,"The user strikes the foe with a quick +jolt of electricity. This attack cannot +be evaded." +338,9,9,"The user strikes the foe with a quick +jolt of electricity. This attack cannot +be evaded." +338,10,9,"The user strikes the foe with a quick +jolt of electricity. This attack cannot +be evaded." +338,11,5,"Attaque tout ce qui se trouve autour +avec une vague de crasse. Peut aussi +empoisonner." +338,11,9,"It swamps the area around the user +with a giant sludge wave. +It may also poison those hit." +338,14,9,"It swamps the area around the user +with a giant sludge wave. +It may also poison those hit." +338,15,1,"ヘドロの なみで じぶんの まわりに +いるものを こうげきする。 +どくに することが ある。" +338,15,3,"오물의 파장으로 자신의 주위에 +있는 포켓몬을 공격한다. +독 상태로 만들기도 한다." +338,15,5,"Une vague de détritus attaque tous les Pokémon +autour du lanceur. Peut aussi empoisonner." +338,15,6,"Greift Pokémon in der Nähe des Anwenders mit +einer Schlammwelle an. Diese werden eventuell +vergiftet." +338,15,7,"Alas macizas que golpean al objetivo y pueden +subir la Defensa del usuario." +338,15,8,"Lancia un’onda di fango che attacca tutti +i Pokémon nelle vicinanze. Può anche avvelenarli." +338,15,9,"The user strikes everything around it by +swamping the area with a giant sludge wave. +This may also poison those hit." +338,15,11,"ヘドロの 波で 自分の 周りに +いるものを 攻撃する。 +毒状態に することが ある。" +339,5,9,"Looses a stream of +fire that may burn +the foe." +339,6,9,"Looses a stream of +fire that may burn +the foe." +339,7,9,"The foe is scorched +with intense flames. +The foe may suffer +a burn." +339,8,9,"The foe is scorched with an intense +blast of fire. The target may also be +left with a burn." +339,9,9,"The foe is scorched with an intense +blast of fire. The target may also be +left with a burn." +339,10,9,"The foe is scorched with an intense +blast of fire. The target may also be +left with a burn." +339,11,5,"L’ennemi reçoit un torrent de flammes. +Peut aussi le brûler." +339,11,9,"The target is scorched with an intense +blast of fire. It may also leave the +target with a burn." +339,14,9,"The target is scorched with an intense +blast of fire. It may also leave the +target with a burn." +339,15,1,"はげしい ほのおを はっしゃして +こうげきする。 あいてを やけどの +じょうたいに することが ある。" +339,15,3,"세찬 불꽃을 +상대에게 발사하여 공격한다. +화상 상태로 만들 때가 있다." +339,15,5,"L’ennemi reçoit un torrent de flammes. +Peut aussi le brûler." +339,15,6,"Das Ziel wird in ein Flammenmeer gehüllt. +Verursacht eventuell Verbrennungen." +339,15,7,"Quien lo usa ataca con toda su energía. También +puede bajar la Defensa Especial del objetivo si lo +alcanza." +339,15,8,"Il nemico viene colpito da intense fiammate +che possono anche scottarlo." +339,15,9,"The target is scorched with an intense +blast of fire. This may also leave the +target with a burn." +339,15,11,"激しい 炎を +相手に 発射して 攻撃する。 +やけど状態に することが ある。" +340,5,9,"Hurls sludge at the +foe. It may poison +the foe." +340,6,9,"Hurls sludge at the +foe. It may poison +the foe." +340,7,9,"Filthy sludge is +hurled at the foe. +It may poison the +target." +340,8,9,"Unsanitary sludge is hurled at +the foe. It may also poison the +target." +340,9,9,"Unsanitary sludge is hurled at +the foe. It may also poison the +target." +340,10,9,"Unsanitary sludge is hurled at +the foe. It may also poison the +target." +340,11,5,"Envoie des détritus sur l’ennemi. Peut +aussi l’empoisonner." +340,11,9,"Unsanitary sludge is hurled at the +target. It may also poison the target." +340,14,9,"Unsanitary sludge is hurled at the +target. It may also poison the target." +340,15,1,"きたない ヘドロを なげつける。 +あいてを どくの じょうたいに +することが ある。" +340,15,3,"더러운 오물을 +상대에게 내던져서 공격한다. +독 상태로 만들 때가 있다." +340,15,5,"Le lanceur envoie des détritus sur l’ennemi. +Peut aussi l’empoisonner." +340,15,6,"Das Ziel versinkt im Giftschlamm. Kann eventuell +Vergiftungen hervorrufen." +340,15,7,"Extrae energía de la naturaleza y la lanza contra +el objetivo. También puede reducir su Defensa +Especial." +340,15,8,"Chi la usa attacca lanciando fango +sul bersaglio. Può anche avvelenarlo." +340,15,9,"Unsanitary sludge is hurled at the target. +This may also poison the target." +340,15,11,"汚い ヘドロを +相手に 投げつけて 攻撃する。 +毒状態に することが ある。" +341,5,9,"Causes a sandstorm +that hits the foe +over several turns." +341,6,9,"Causes a sandstorm +that hits the foe +over several turns." +341,7,9,"A 5-turn sandstorm +that damages all +types except ROCK, +GROUND, and STEEL." +341,8,9,"A five-turn sandstorm is summoned +to hurt all combatants except the +Rock, Ground, and Steel types." +341,9,9,"A five-turn sandstorm is summoned +to hurt all combatants except the +Rock, Ground, and Steel types." +341,10,9,"A five-turn sandstorm is summoned +to hurt all combatants except the +Rock, Ground, and Steel types." +341,11,5,"Une tempête de sable de 5 tours +qui blesse tous les Pokémon sauf +les types Roche, Sol et Acier." +341,11,9,"A five-turn sandstorm is summoned +to hurt all combatants except the +Rock, Ground, and Steel types." +341,14,9,"A five-turn sandstorm is summoned +to hurt all combatants except the +Rock, Ground, and Steel types." +341,15,1,"5ターンの あいだ すなあらしで +じめん いわ はがね タイプいがいに +ダメージを あたえる。" +341,15,3,"5턴 동안 모래바람으로 +바위, 땅, 강철타입 이외의 +포켓몬에게 데미지를 준다." +341,15,5,"Une tempête de sable qui blesse tous les +Pokémon durant cinq tours, sauf ceux de types +Roche, Sol et Acier." +341,15,6,"Ein Sandsturm trifft für 5 Runden alle Pokémon, +außer die vom Typ Boden, Gestein und Stahl." +341,15,7,"Ataque controlado que impide que el objetivo se +debilite al dejarle con un mínimo de 1 PS." +341,15,8,"Causa una tempesta di sabbia per cinque turni +che danneggia tutti i tipi in campo esclusi +Terra, Roccia e Acciaio." +341,15,9,"A five-turn sandstorm is summoned +to hurt all combatants except for +Rock, Ground, and Steel types." +341,15,11,"5ターンの あいだ 砂あらしで +いわ じめん はがねタイプ 以外の +ポケモンに ダメージを 与える。" +342,5,9,"A powerful fire +attack that may +burn the foe." +342,6,9,"A powerful fire +attack that may +burn the foe." +342,7,9,"The foe is hit with +an intense flame. +It may leave the +target with a burn." +342,8,9,"The foe is attacked with an intense +blast of all-consuming fire. It may +also leave the target with a burn." +342,9,9,"The foe is attacked with an intense +blast of all-consuming fire. It may +also leave the target with a burn." +342,10,9,"The foe is attacked with an intense +blast of all-consuming fire. It may +also leave the target with a burn." +342,11,5,"Un déluge de flammes ardentes submerge +l’ennemi. Peut le brûler." +342,11,9,"The target is attacked with an intense +blast of all-consuming fire. It may +also leave the target with a burn." +342,14,9,"The target is attacked with an intense +blast of all-consuming fire. It may +also leave the target with a burn." +342,15,1,"だいのじの ほのおで あいてを +やきつくす。 やけどの じょうたいに +することが ある。" +342,15,3,"큰 대자의 불꽃으로 +상대를 불태운다. +화상 상태로 만들 때가 있다." +342,15,5,"Un déluge de flammes ardentes submerge +l’ennemi. Peut aussi le brûler." +342,15,6,"Dem Ziel wird ordentlich eingeheizt. +Kann eventuell Verbrennungen hervorrufen." +342,15,7,"Abrasa al objetivo con agua hirviendo y puede +causarle quemaduras." +342,15,8,"Investe il nemico con un’intensa fiammata +che fa terra bruciata. Può anche scottarlo." +342,15,9,"The target is attacked with an intense +blast of all-consuming fire. This may +also leave the target with a burn." +342,15,11,"大の字の 炎で +相手を 焼きつくす。 +やけど状態に することが ある。" +343,5,9,"Stops the foe from +moving with rocks. +May lower SPEED." +343,6,9,"Stops the foe from +moving with rocks. +May lower SPEED." +343,7,9,"Boulders are hurled +at the foe. It also +lowers the foe’s +SPEED if it hits." +343,8,9,"Large boulders are hurled at the foe +to inflict damage. It may also make the +target flinch." +343,9,9,"Large boulders are hurled at the foe +to inflict damage. It lowers the foe’s +Speed." +343,10,9,"Large boulders are hurled at the foe +to inflict damage. It lowers the foe’s +Speed." +343,11,5,"Des rochers frappent l’ennemi. Réduit +aussi sa Vitesse en l’empêchant de +se déplacer." +343,11,9,"Boulders are hurled at the target. It +also lowers the target’s Speed by +preventing its movement." +343,14,9,"Boulders are hurled at the target. It +also lowers the target’s Speed by +preventing its movement." +343,15,1,"いわを なげつけ こうげきする。 +おちた いわが うごきを ふうじて +あいての すばやさを さげる。" +343,15,3,"암석을 내던져서 공격한다. +상대의 움직임을 봉인함으로써 +스피드를 떨어뜨린다." +343,15,5,"Des rochers frappent l’ennemi. +Réduit aussi sa Vitesse en l’empêchant de se +déplacer." +343,15,6,"Das Ziel wird mit Felsen beworfen. +Senkt den Initiative-Wert des Zieles." +343,15,7,"El usuario ataca al objetivo arrojando el objeto +que lleve. La potencia y los efectos dependen +del objeto arrojado." +343,15,8,"Colpisce il nemico con rocce. Inoltre, lo rallenta +riducendone la Velocità." +343,15,9,"Boulders are hurled at the target. +This also lowers the target’s Speed +stat by preventing its movement." +343,15,11,"岩石を 投げつけて 攻撃する。 +相手の 動きを 封じることで +素早さを さげる。" +344,5,9,"An extremely fast +attack that can’t +be avoided." +344,6,9,"An extremely fast +attack that can’t +be avoided." +344,7,9,"An extremely fast +attack against one +target. It can’t be +evaded." +344,8,9,"The user confounds the foe with speed, +then strikes. The attack lands without +fail." +344,9,9,"The user confounds the foe with speed, +then strikes. The attack lands without +fail." +344,10,9,"The user confounds the foe with speed, +then strikes. The attack lands without +fail." +344,11,5,"Le lanceur prend l’ennemi de vitesse +et le lacère. N’échoue jamais." +344,11,9,"The user confounds the target +with speed, then slashes. +The attack lands without fail." +344,14,9,"The user confounds the target +with speed, then slashes. +The attack lands without fail." +344,15,1,"すばやい うごきで ほんろうする。 +こうげきは かならず あいてに +めいちゅうする。" +344,15,3,"재빠른 움직임으로 +상대를 농락해 벤다. +공격은 반드시 명중한다." +344,15,5,"Le lanceur prend l’ennemi de vitesse et le lacère. +N’échoue jamais." +344,15,6,"Der Anwender irritiert das Ziel durch +Schnelligkeit, bevor er angreift. +Diese Attacke trifft ihr Ziel immer." +344,15,7,"Quien lo usa ataca con una descarga eléctrica y +puede utilizar la electricidad restante para subir +su Ataque Especial." +344,15,8,"Chi la usa attacca il nemico a grande velocità. +Questa mossa è infallibile." +344,15,9,"The user confounds the target with +speed, then slashes. +This attack never misses." +344,15,11,"素早い 動きで +相手を ほんろうして 切りつける。 +攻撃は 必ず 命中する。" +345,5,9,"Prevents the foe +from using the same +move in a row." +345,6,9,"Prevents the foe +from using the same +move in a row." +345,7,9,"It enrages the foe, +making it incapable +of using the same +move successively." +345,8,9,"The user torments and enrages the +foe, making it incapable of using the +same move twice in a row." +345,9,9,"The user torments and enrages the +foe, making it incapable of using the +same move twice in a row." +345,10,9,"The user torments and enrages the +foe, making it incapable of using the +same move twice in a row." +345,11,5,"Le lanceur irrite l’ennemi pour +l’empêcher d’utiliser la même +capacité 2 fois de suite." +345,11,9,"The user torments and enrages the +target, making it incapable of using the +same move twice in a row." +345,14,9,"The user torments and enrages the +target, making it incapable of using the +same move twice in a row." +345,15,1,"いちゃもんを つけて おなじわざを +れんぞくで だせない ようにする。 +" +345,15,3,"트집을 잡아서 똑같은 기술을 +연속으로 쓸 수 없게 한다." +345,15,5,"Le lanceur irrite l’ennemi pour l’empêcher +d’utiliser la même capacité deux fois de suite." +345,15,6,"Der Anwender bringt das Ziel in Rage. +Dieses ist nicht mehr in der Lage, eine +Attacke zweimal hintereinander anzuwenden." +345,15,7,"Arroja al objetivo por los aires y lo estrella contra +el suelo en el siguiente turno, impidiéndole +moverse en el aire." +345,15,8,"Chi la usa tormenta e fa infuriare il nemico, +impedendogli di usare la stessa mossa +due volte di seguito." +345,15,9,"The user torments and enrages the +target, making it incapable of using +the same move twice in a row." +345,15,11,"相手に いちゃもんを つけて +同じ 技を 2回 連続で +だせなくする。" +346,5,9,"Raises ATTACK when +poisoned, burned, +or paralyzed." +346,6,9,"Raises ATTACK when +poisoned, burned, +or paralyzed." +346,7,9,"An attack that is +boosted if user is +burned, poisoned, +or paralyzed." +346,8,9,"An attack move that doubles its power +if the user is poisoned, paralyzed, or +has a burn." +346,9,9,"An attack move that doubles its power +if the user is poisoned, paralyzed, or +has a burn." +346,10,9,"An attack move that doubles its power +if the user is poisoned, paralyzed, or +has a burn." +346,11,5,"Une attaque dont la puissance double +lorsque le lanceur est empoisonné, +paralysé ou brûlé." +346,11,9,"An attack move that doubles its power +if the user is poisoned, paralyzed, or +has a burn." +346,14,9,"An attack move that doubles its power +if the user is poisoned, paralyzed, or +has a burn." +346,15,1,"どく まひ やけど のじょうたいで +わざを だすと 2ばいの いりょくで +こうげき できる。" +346,15,3,"독, 마비, 화상 상태에서 +기술을 쓰면 2배의 위력으로 +공격할 수 있다." +346,15,5,"Une attaque dont la puissance double lorsque +le lanceur est empoisonné, paralysé ou brûlé." +346,15,6,"Ist der Anwender vergiftet, paralysiert oder leidet +er unter Verbrennungen, verdoppelt sich die Kraft +der Attacke." +346,15,7,"Llamas que golpean a los objetivos adyacentes. +Si estos llevan bayas u otros objetos, estos se +quemarán y ya no se podrán usar." +346,15,8,"Mossa d’attacco che raddoppia la potenza +se chi la usa è scottato, avvelenato o paralizzato." +346,15,9,"An attack move that doubles its power if +the user is poisoned, burned, or +has paralysis." +346,15,11,"自分が どく まひ やけど +状態のとき 相手に くりだすと +技の 威力が 2倍に なる。" +347,5,9,"Adds an effect to +attack depending +on the location." +347,6,9,"Adds an effect to +attack depending +on the location." +347,7,9,"An attack that may +have an additional +effect that varies +with the terrain." +347,8,9,"An attack move with effects that +vary depending on the user’s +environment." +347,9,9,"An attack move with effects that +vary depending on the user’s +environment." +347,10,9,"An attack move with effects that +vary depending on the user’s +environment." +347,11,5,"Le lanceur s’entoure de feu +et charge l’ennemi. Augmente +aussi la Vitesse." +347,11,9,"The user cloaks itself with flame and +attacks. Building up more power, +it raises the user’s Speed stat." +347,14,9,"The user cloaks itself with flame and +attacks. Building up more power, +it raises the user’s Speed stat." +347,15,1,"ほのおを まとい あいてを +こうげきする。 ちからを ためて +じぶんの すばやさを あげる。" +347,15,3,"불꽃을 둘러 상대를 공격한다. +힘을 모아서 자신의 +스피드를 올린다." +347,15,5,"Le lanceur s’entoure de flammes pour attaquer +l’ennemi. Il se concentre et sa Vitesse augmente." +347,15,6,"Anwender hüllt sich in Flammen und greift +das Ziel an. Er sammelt seine Kräfte und erhöht +so die eigene Initiative." +347,15,7,"Consigue que el objetivo sea el último en +moverse." +347,15,8,"Chi la usa si copre di fuoco e attacca il bersaglio. +Concentrandosi aumenta, inoltre, la propria +Velocità." +347,15,9,"Cloaking itself in flame, the user attacks. +Then, building up more power, +the user raises its Speed stat." +347,15,11,"炎を まとい 相手を 攻撃する。 +力を ためて 自分の +素早さを あげる。" +348,5,9,"The user sleeps for +2 turns to restore +health and status." +348,6,9,"The user sleeps for +2 turns to restore +health and status." +348,7,9,"The user sleeps for +two turns to fully +restore HP and heal +any status problem." +348,8,9,"The user goes to sleep for two +turns. It fully restores the user’s HP +and heals any status problem." +348,9,9,"The user goes to sleep for two +turns. It fully restores the user’s HP +and heals any status problem." +348,10,9,"The user goes to sleep for two +turns. It fully restores the user’s HP +and heals any status problem." +348,11,5,"Le lanceur dort pendant 2 tours. Il +regagne tous ses PV et n’a plus de +problèmes de statut." +348,11,9,"The user goes to sleep for two +turns. It fully restores the user’s HP +and heals any status problem." +348,14,9,"The user goes to sleep for two +turns. It fully restores the user’s HP +and heals any status problem." +348,15,1,"2ターンの あいだ ねむりつづける。 +HPと からだの いじょうを +すべて かいふくする。" +348,15,3,"2턴 동안 계속 잠잔다. +자신의 HP와 상태 이상을 +모두 회복한다." +348,15,5,"Le lanceur dort pendant deux tours. +Il regagne tous ses PV et n’a plus de problèmes +de statut." +348,15,6,"Anwender wird vollkommen geheilt und schläft +die folgenden 2 Runden." +348,15,7,"Lanza una siniestra llamarada morada que +provoca quemaduras al objetivo." +348,15,8,"Chi la usa dorme per due turni. +Recupera però tutti i PS e guarisce da tutti i suoi +problemi di stato." +348,15,9,"The user goes to sleep for two turns. +This fully restores the user’s HP and +heals any status conditions." +348,15,11,"2ターンの あいだ 眠り続ける。 +自分の HPと 状態異常を +すべて 回復する。" +349,5,9,"Makes it tough to +attack a foe of the +opposite gender." +349,6,9,"Makes it tough to +attack a foe of the +opposite gender." +349,7,9,"If it is the other +gender, the foe is +made infatuated and +unlikely to attack." +349,8,9,"If it is the opposite gender of the +user, the foe becomes infatuated +and less likely to attack." +349,9,9,"If it is the opposite gender of the +user, the foe becomes infatuated +and less likely to attack." +349,10,9,"If it is the opposite gender of the +user, the foe becomes infatuated +and less likely to attack." +349,11,5,"Si l’ennemi est du sexe opposé, il +tombe amoureux et rechigne alors +à attaquer." +349,11,9,"If it is the opposite gender of the +user, the target becomes infatuated +and less likely to attack." +349,14,9,"If it is the opposite gender of the +user, the target becomes infatuated +and less likely to attack." +349,15,1,"♂なら♀を ♀なら♂を ゆうわくして +メロメロにする。 メロメロに なった +あいては わざが だしにくくなる。" +349,15,3,"수컷은 암컷을 암컷은 수컷을 유혹하여 +헤롱헤롱하게 만든다. +상대가 기술을 쓰기 어려워진다." +349,15,5,"Si l’ennemi est du sexe opposé, il tombe +amoureux et rechigne alors à attaquer." +349,15,6,"Gehört das Ziel dem anderen Geschlecht an, +verliebt es sich und greift eventuell nicht an." +349,15,7,"Quien lo usa realiza un ataque rápido que +aumenta de potencia si el atacante no lleva +ningún objeto." +349,15,8,"Se il nemico è del sesso opposto, s’infatua +e diventa riluttante ad attaccare." +349,15,9,"If it is the opposite gender of the user, +the target becomes infatuated and less +likely to attack." +349,15,11,"♂なら♀を ♀なら♂を 誘惑して +メロメロに する。 +相手は 技が だしにくくなる。" +350,5,9,"While attacking, +it may steal the +foe’s held item." +350,6,9,"While attacking, +it may steal the +foe’s held item." +350,7,9,"An attack that may +take the foe’s held +item if the user +isn’t holding one." +350,8,9,"The user attacks and steals the foe’s +held item simultaneously. It can’t +steal if the user holds an item." +350,9,9,"The user attacks and steals the foe’s +held item simultaneously. It can’t +steal if the user holds an item." +350,10,9,"The user attacks and steals the foe’s +held item simultaneously. It can’t +steal if the user holds an item." +350,11,5,"Le lanceur attaque la cible et vole +son objet. Le lanceur ne peut rien +voler s’il tient déjà un objet." +350,11,9,"The user attacks and steals the +target’s held item simultaneously. It +can’t steal if the user holds an item." +350,14,9,"The user attacks and steals the +target’s held item simultaneously. It +can’t steal if the user holds an item." +350,15,1,"こうげきと どうじに もちものを +ぬすむ。 じぶんに もちものが +あると しっぱいする。" +350,15,3,"공격과 동시에 도구를 훔친다. +자신이 도구를 지니고 있을 경우에는 +훔칠 수 없다." +350,15,5,"Le lanceur attaque la cible et vole son objet. +Le lanceur ne peut rien voler s’il tient déjà +un objet." +350,15,6,"Der Anwender greift an und stiehlt dem Ziel +gleichzeitig ein Item, sofern er selbst gerade +kein Item trägt." +350,15,7,"Impide que el objetivo utilice el objeto que lleve +y que su Entrenador use objetos sobre él." +350,15,8,"Chi la usa attacca il bersaglio e può rubargli +lo strumento, se non ne ha già uno." +350,15,9,"The user attacks and steals the target’s +held item simultaneously. The user can’t +steal anything if it already holds an item." +350,15,11,"攻撃と 同時に 道具を 盗む。 +自分が 道具を 持っている 場合は +盗めない。" +351,5,9,"Spreads hard-edged +wings and slams +into the foe." +351,6,9,"Spreads hard- +edged wings and +slams into the foe." +351,7,9,"The foe is hit with +wings of steel. +It may also raise +the user’s DEFENSE." +351,8,9,"The foe is hit with wings of steel. +It may also raise the user’s Defense +stat." +351,9,9,"The foe is hit with wings of steel. +It may also raise the user’s Defense +stat." +351,10,9,"The foe is hit with wings of steel. +It may also raise the user’s Defense +stat." +351,11,5,"Un coup rapide qui vise les pieds +de l’ennemi et diminue sa Vitesse." +351,11,9,"The user attacks the target’s legs +swiftly, reducing the target’s +Speed stat." +351,14,9,"The user attacks the target’s legs +swiftly, reducing the target’s +Speed stat." +351,15,1,"すばやい うごきで あいての あしを +ねらって こうげきする。 +あいての すばやさを さげる。" +351,15,3,"재빠른 움직임으로 상대의 다리를 +노려 공격한다. +상대의 스피드를 떨어뜨린다." +351,15,5,"Un coup rapide qui vise les pieds de l’ennemi +et diminue sa Vitesse." +351,15,6,"Anwender greift mit blitzschnellen Bewegungen +die Beine des Zieles an und senkt dessen +Initiative." +351,15,7,"Quien lo usa explosiona en combate e inflige +daño a todos los Pokémon a su alrededor. +El usuario se debilita." +351,15,8,"Chi la usa colpisce con un attacco fulmineo +la parte inferiore del corpo del bersaglio, +riducendone la Velocità." +351,15,9,"The user makes a swift attack on +the target’s legs, which lowers the +target’s Speed stat." +351,15,11,"素早い 動きで 相手の 足を +ねらって 攻撃する。 +相手の 素早さを さげる。" +352,5,9,"Switches abilities +with the foe on the +turn this is used." +352,6,9,"Switches abilities +with the foe on the +turn this is used." +352,7,9,"The user employs +its psychic power +to swap abilities +with the foe." +352,8,9,"The user employs its psychic power to +exchange abilities with the foe. +" +352,9,9,"The user employs its psychic power to +exchange abilities with the foe. +" +352,10,9,"The user employs its psychic power to +exchange abilities with the foe. +" +352,11,5,"Le lanceur chante et attaque l’ennemi. +Si plusieurs Pokémon déclenchent cette +attaque à la suite, l’effet augmente." +352,11,9,"The user attacks the target with a +song. Others can join in the Round and +make the attack do greater damage." +352,14,9,"The user attacks the target with a +song. Others can join in the Round and +make the attack do greater damage." +352,15,1,"うたで あいてを こうげきする。 +みんなで つかうと れんぞくで +だせて いりょくも あがる。" +352,15,3,"노래로 상대를 공격한다. +함께 돌림노래를 하면 계속해서 +쓸 수 있고 위력도 올라간다." +352,15,5,"Le lanceur attaque l’ennemi en chantant. +Si plusieurs Pokémon déclenchent cette attaque +à la suite, l’effet augmente." +352,15,6,"Angriff mit Gesang. Singt der Anwender mit allen +im Kanon, kann er die Attacke mehrfach auslösen +und die Stärke steigt." +352,15,7,"Quien lo usa ataca con una afilada garra de +sombras. Su índice de golpe crítico es muy alto." +352,15,8,"Attacca il bersaglio con una melodia. Se usata +durante lo stesso turno da più Pokémon, i danni +inflitti aumentano." +352,15,9,"The user attacks the target with a song. +Others can join in the Round and make +the attack do greater damage." +352,15,11,"歌で 相手を 攻撃する。 +みんなで 輪唱すると 続けて +だすことが でき 威力も あがる。" +353,5,9,"Steals the effects +of the move the foe +is trying to use." +353,6,9,"Steals the effects +of the move the foe +is trying to use." +353,7,9,"Steals the effects +of the foe’s +healing or status- +changing move." +353,8,9,"The user steals the effects of any +healing or status-changing move the +foe attempts to use." +353,9,9,"The user steals the effects of any +healing or status-changing move the +foe attempts to use." +353,10,9,"The user steals the effects of any +healing or status-changing move the +foe attempts to use." +353,11,5,"Attaque l’ennemi avec la voix. Cette +attaque devient plus efficace si à +chaque tour quelqu’un l’utilise." +353,11,9,"The user attacks the target with an +echoing voice. If this move is used +every turn, it does greater damage." +353,14,9,"The user attacks the target with an +echoing voice. If this move is used +every turn, it does greater damage." +353,15,1,"こえで あいてを こうげきする。 +まいターン だれかが つかうと +いりょくが あがる。" +353,15,3,"목소리로 상대를 공격한다. +매 턴 누군가 기술을 +계속해서 쓰면 위력이 올라간다." +353,15,5,"Un cri retentissant blesse l’ennemi. +Si le lanceur ou d’autres Pokémon l’utilisent +à chaque tour, l’effet augmente." +353,15,6,"Angriff mit widerhallender Stimme. Wird dieser +in jeder Runde von jemandem wiederholt, steigt +die Stärke." +353,15,7,"Quien lo usa se carga de energía y luego ataca. +Y, si ataca después del objetivo, dobla la +potencia del ataque." +353,15,8,"Attacca il bersaglio con la propria voce +echeggiante. Se usata a ripetizione da uno +o più Pokémon il danno aumenta." +353,15,9,"The user attacks the target with an +echoing voice. If this move is used +every turn, it does greater damage." +353,15,11,"響く 声で 相手を 攻撃する。 +毎ターン だれかが 使い続けると +威力が あがる。" +354,5,9,"Enables full-power +attack, but sharply +lowers SP. ATK." +354,6,9,"Enables full-power +attack, but sharply +lowers SP. ATK." +354,7,9,"An intense attack +that also sharply +reduces the user’s +SP. ATK stat." +354,8,9,"The user attacks the foe at full +power using fiery energy. It also +sharply reduces the user’s Sp. Atk." +354,9,9,"The user attacks the foe at full +power using fiery energy. It also +sharply reduces the user’s Sp. Atk." +354,10,9,"The user attacks the foe at full +power using fiery energy. It also +sharply reduces the user’s Sp. Atk." +354,11,5,"Attaque l’ennemi à pleine puissance. +Le contrecoup baisse énormément +l’Attaque Spéciale du lanceur." +354,11,9,"The user attacks the target at full +power. The attack’s recoil harshly +reduces the user’s Sp. Atk stat." +354,14,9,"The user attacks the target at full +power. The attack’s recoil harshly +reduces the user’s Sp. Atk stat." +354,15,1,"フルパワーで ほのおの こうげき。 +つかったあと じぶんの とくこうは +がくっと さがる。" +354,15,3,"풀 파워로 불꽃 공격을 한다. +사용한 뒤 자신의 특수공격이 +크게 떨어진다." +354,15,5,"Attaque l’ennemi à pleine puissance. +Le contrecoup baisse énormément l’Attaque +Spéciale du lanceur." +354,15,6,"Angriff mit maximaler Kraft und feuriger Energie, +der gleichzeitig den Spezial-Angriff des Angreifers +senkt." +354,15,7,"Quien lo usa puede vengar a sus amigos. El daño +causado será mayor si en el turno anterior han +debilitado a alguno." +354,15,8,"Chi la usa sferra un potente attacco, ma il +contraccolpo riduce di molto il suo Attacco +Speciale." +354,15,9,"The user attacks the target at full power. +The attack’s recoil harshly lowers the +user’s Sp. Atk stat." +354,15,11,"フルパワーで 相手を 攻撃する。 +使うと 反動で +自分の 特攻が がくっと さがる。" +355,8,9,"The user lands and rests its body. +It restores the user’s HP by up to +half of its top HP." +355,9,9,"The user lands and rests its body. +It restores the user’s HP by up to +half of its max HP." +355,10,9,"The user lands and rests its body. +It restores the user’s HP by up to +half of its max HP." +355,11,5,"Le lanceur se téléporte à l’aide d’un +pouvoir mystérieux. Il échange sa place +avec celle d’un allié sur le terrain." +355,11,9,"The user teleports using a strange +power and switches its place with one of +its allies." +355,14,9,"The user teleports using a strange +power and switches its place with one of +its allies." +355,15,1,"かたい つばさを あいてに たたきつけて +こうげきする。じぶんの ぼうぎょが +あがることが ある。" +355,15,3,"단단한 날개를 상대에게 부딪쳐서 +공격한다. 자신의 방어가 +올라갈 때가 있다." +355,15,5,"Le lanceur frappe l’ennemi avec des ailes d’acier. +Peut aussi augmenter la Défense du lanceur." +355,15,6,"Trifft das Ziel mit Stahlflügeln. Verteidigungs-Wert +des Anwenders steigt eventuell." +355,15,7,"Quien lo usa carga contra el objetivo usando toda +su energía y en el turno siguiente tiene que +descansar." +355,15,8,"Colpisce il nemico con ali d’acciaio. +Può anche aumentare la Difesa di chi la usa." +355,15,9,"The target is hit with wings of steel. +This may also raise the user’s Defense stat." +355,15,11,"硬い 翼を 相手に たたきつけて +攻撃する。自分の 防御が +あがることが ある。" +356,8,9,"The user attacks at full power. +It may also lower the foe’s Sp. Def +stat if it hits." +356,9,9,"The user attacks at full power. +It may also lower the foe’s Sp. Def +stat if it hits." +356,10,9,"The user attacks at full power. +It may also lower the foe’s Sp. Def +stat if it hits." +356,11,5,"Le lanceur rassemble ses forces et +laisse éclater son pouvoir. Peut aussi +baisser la Défense Spéciale de l’ennemi." +356,11,9,"The user heightens its mental focus and +unleashes its power. +It may also lower the target’s Sp. Def." +356,14,9,"The user heightens its mental focus and +unleashes its power. +It may also lower the target’s Sp. Def." +356,15,1,"こんしんの ちからで こうげきする。 +あたった あいての とくぼうを +さげることが ある。" +356,15,3,"기합을 높여서 +혼신의 힘을 방출한다. 상대의 +특수방어를 떨어뜨릴 때가 있다." +356,15,5,"Le lanceur rassemble ses forces et laisse éclater +son pouvoir. Peut aussi baisser la Défense +Spéciale de l’ennemi." +356,15,6,"Ein Angriff mit aller Macht. Die Spezial- +Verteidigung des Zieles sinkt eventuell." +356,15,7,"Quien lo usa reduce la resistencia que ofrece su +cuerpo y gana mucho en Velocidad." +356,15,8,"Chi la usa si concentra e rilascia la sua forza. +Può ridurre la Difesa Speciale del Pokémon +colpito." +356,15,9,"The user heightens its mental focus and +unleashes its power. +This may also lower the target’s Sp. Def." +356,15,11,"気合を 高めて +ありったけの 力を 放出する。 +相手の 特防を さげることが ある。" +357,8,9,"The user draws power from nature and +fires it at the foe. It may also lower +the target’s Sp. Def." +357,9,9,"The user draws power from nature and +fires it at the foe. It may also lower +the target’s Sp. Def." +357,10,9,"The user draws power from nature and +fires it at the foe. It may also lower +the target’s Sp. Def." +357,11,5,"Utilise les pouvoirs de la nature pour +attaquer l’ennemi. Peut aussi baisser +la Défense Spéciale de l’ennemi." +357,11,9,"The user draws power from nature and +fires it at the target. It may also +lower the target’s Sp. Def." +357,14,9,"The user draws power from nature and +fires it at the target. It may also +lower the target’s Sp. Def." +357,15,1,"いのちの ちからを あつめて +こうげきする。 あたった あいての +とくぼうを さげることが ある。" +357,15,3,"자연으로부터 모은 +생명의 힘을 발사한다. 상대의 +특수방어를 떨어뜨릴 때가 있다." +357,15,5,"Utilise les pouvoirs de la nature pour attaquer +l’ennemi. Peut aussi baisser sa Défense Spéciale." +357,15,6,"Entfesselt die Kraft der Natur gegen das Ziel. +Dessen Spezial-Verteidigung sinkt eventuell." +357,15,7,"Lanza una luz cegadora que reduce la Precisión +del objetivo." +357,15,8,"Chi la usa attinge energia dalla natura e la scaglia +contro il nemico. Può anche ridurne la Difesa +Speciale." +357,15,9,"The user draws power from nature and +fires it at the target. This may also +lower the target’s Sp. Def." +357,15,11,"自然から 集めた +命の力を 発射する。 +相手の 特防を さげることが ある。" +358,8,9,"A restrained attack that prevents the +foe from fainting. The target is left +with at least 1 HP." +358,9,9,"A restrained attack that prevents the +foe from fainting. The target is left +with at least 1 HP." +358,10,9,"A restrained attack that prevents the +foe from fainting. The target is left +with at least 1 HP." +358,11,5,"Le lanceur retient ses coups pour +que l’ennemi garde au moins 1 PV et +ne tombe pas K.O." +358,11,9,"A restrained attack that prevents the +target from fainting. The target is left +with at least 1 HP." +358,14,9,"A restrained attack that prevents the +target from fainting. The target is left +with at least 1 HP." +358,15,1,"てかげんして こうげきする。 +こうげきした あいての HPは +かならず 1 のこる。" +358,15,3,"상대의 HP가 +반드시 1만큼 남도록 +조절하여 공격한다." +358,15,5,"Le lanceur retient ses coups pour que l’ennemi +garde au moins 1 PV et ne tombe pas K.O." +358,15,6,"Eine zurückhaltende Attacke, die eine +Kampfunfähigkeit des Zieles verhindert, +da dem Ziel mindestens 1 KP bleibt." +358,15,7,"Apuñala al objetivo desde abajo con piedras +afiladas. Su índice de golpe crítico es muy alto." +358,15,8,"Chi la usa trattiene il colpo per impedire al nemico +di andare KO, lasciandolo con almeno un PS." +358,15,9,"A restrained attack that prevents the +target from fainting. The target is left +with at least 1 HP." +358,15,11,"相手の HPが +必ず 1だけ 残るように +手加減して 攻撃する。" +359,8,9,"If the foe’s HP is down to under half, +this attack will hit with double the +power." +359,9,9,"If the foe’s HP is down to under half, +this attack will hit with double the +power." +359,10,9,"If the foe’s HP is down to under half, +this attack will hit with double the +power." +359,11,5,"Envoie un jet d’eau bouillante. +Inflige des dégâts et peut +parfois brûler." +359,11,9,"The user shoots boiling hot water at +its target. It may also leave the +target with a burn." +359,14,9,"The user shoots boiling hot water at +its target. It may also leave the +target with a burn." +359,15,1,"あつく にえたぎる みずを +はっしゃして こうげきする。 +やけどに することが ある。" +359,15,3,"뜨겁게 끓어오르는 물을 +상대에게 발사해서 공격한다. +화상 상태로 만들 때가 있다." +359,15,5,"L’ennemi est attaqué par un jet d’eau bouillante. +Peut aussi le brûler." +359,15,6,"Heizt dem Ziel mit einem Schwall siedend heißen +Kochwassers ein. Dieses erleidet eventuell +Verbrennungen." +359,15,7,"Tras atacar, vuelve a toda prisa para dar paso a +otro Pokémon del equipo." +359,15,8,"Chi la usa attacca il bersaglio con un getto +d’acqua bollente che può anche scottarlo." +359,15,9,"The user shoots boiling hot water at +its target. This may also leave the +target with a burn." +359,15,11,"熱く 煮えたぎる 水を +相手に 発射して 攻撃する。 +やけど状態に することが ある。" +360,8,9,"The user flings its held item at the +foe to attack. Its power and effects +depend on the item." +360,9,9,"The user flings its held item at the +foe to attack. Its power and effects +depend on the item." +360,10,9,"The user flings its held item at the +foe to attack. Its power and effects +depend on the item." +360,11,5,"Le lanceur envoie l’objet qu’il tient +sur l’ennemi. La puissance et les +effets dépendent de l’objet." +360,11,9,"The user flings its held item at the +target as an attack. Its power and +effects depend on the item." +360,14,9,"The user flings its held item at the +target as an attack. Its power and +effects depend on the item." +360,15,1,"どうぐを なげつけて こうげきする。 +なげる もちものに よって わざの +いりょくと こうかは かわる。" +360,15,3,"도구를 내던져서 공격한다. +던질 물건에 따라 기술의 +위력과 효과가 바뀐다." +360,15,5,"Le lanceur envoie l’objet qu’il tient sur l’ennemi. +La puissance et les effets dépendent de l’objet." +360,15,6,"Der Anwender wirft sein Item auf das Ziel. +Die Kraft und die Wirkung hängen vom +jeweiligen Item ab." +360,15,7,"Débil descarga eléctrica que se lanza contra el +objetivo y causa parálisis si es certera." +360,15,8,"Chi la usa lancia il suo strumento addosso +al nemico. La forza e l’effetto dipendono +dallo strumento." +360,15,9,"The user flings its held item at the target +to attack. This move’s power and effects +depend on the item." +360,15,11,"持たせた 道具を +素早く 投げつけて 攻撃する。 +道具で 威力と 効果が かわる。" +361,8,9,"The user attacks with an electric +charge. The user may use any remaining +electricity to raise its Sp. Atk stat." +361,9,9,"The user attacks with an electric +charge. The user may use any remaining +electricity to raise its Sp. Atk stat." +361,10,9,"The user attacks with an electric +charge. The user may use any remaining +electricity to raise its Sp. Atk stat." +361,11,5,"Le lanceur tire un rayon chargé +d’électricité. Peut aussi augmenter +son Attaque Spéciale." +361,11,9,"The user attacks with an electric +charge. The user may use any remaining +electricity to raise its Sp. Atk stat." +361,14,9,"The user attacks with an electric +charge. The user may use any remaining +electricity to raise its Sp. Atk stat." +361,15,1,"でんげきを あびせて こうげきする。 +のこった でんきを ためて じぶんの +とくこうを あげることが ある。" +361,15,3,"전격의 다발을 상대에게 +발사한다. 전기를 모아서 자신의 +특수공격을 올릴 때가 있다." +361,15,5,"Le lanceur tire un rayon chargé d’électricité. +Peut aussi augmenter son Attaque Spéciale." +361,15,6,"Greift mit einer elektrischen Entladung an. +Der Spezial-Angriff des Angreifers steigt eventuell." +361,15,7,"Quien lo usa ataca al objetivo como un remolino. +Cuanto más lento sea quien lo usa, más daño +causa." +361,15,8,"Chi la usa lancia un fascio di elettricità molto +intensa. Può anche aumentare il proprio Attacco +Speciale." +361,15,9,"The user attacks with an electric +charge. The user may use any remaining +electricity to raise its Sp. Atk stat." +361,15,11,"電撃の 束を 相手に +発射する。電気を ためて 自分の +特攻を あげることが ある。" +362,8,9,"The user endures any attack, leaving +1 HP. Its chance of failing rises if it +is used in succession." +362,9,9,"The user endures any attack, leaving +1 HP. Its chance of failing rises if it +is used in succession." +362,10,9,"The user endures any attack, leaving +1 HP. Its chance of failing rises if it +is used in succession." +362,11,5,"Le lanceur emmène l’ennemi dans les airs +au 1er tour et le lâche dans le vide au +2è. L’ennemi saisi ne peut pas attaquer." +362,11,9,"The user hurls the target into the air, +then drops it on the second turn. The +target cannot attack while in the air." +362,14,9,"The user hurls the target into the air, +then drops it on the second turn. The +target cannot attack while in the air." +362,15,1,"つれさった あいてを 2ターンめに +そらから おとして こうげきする。 +つれさられた あいては うごけない。" +362,15,3,"끌려온 상대를 2턴째에 +하늘에서 떨어뜨려 공격한다. +끌려간 상대는 움직일 수 없다." +362,15,5,"Le lanceur emmène l’ennemi dans les airs au +premier tour et le lâche dans le vide au second. +L’ennemi saisi ne peut pas attaquer." +362,15,6,"Das entführte Ziel wird in Runde 2 vom Himmel +fallen gelassen. In der Luft kann das Ziel nicht +attackieren." +362,15,7,"Danza frenética que eleva el espíritu combativo. +Aumenta mucho el Ataque de quien lo usa." +362,15,8,"Porta il bersaglio in cielo e lo scaglia a terra +al turno successivo. Il bersaglio catturato +non può muoversi." +362,15,9,"The user takes the target into the sky, +then drops it during the next turn. +The target cannot attack while in the sky." +362,15,11,"連れさった 相手を 2ターン目に +空から 落として 攻撃する。 +連れさられた 相手は 動けない。" +363,8,9,"The foe is attacked with a shock +wave generated by the user’s gaping +mouth." +363,9,9,"The foe is attacked with a shock +wave generated by the user’s gaping +mouth." +363,10,9,"The foe is attacked with a shock +wave generated by the user’s gaping +mouth." +363,11,5,"Des flammes calcinent l’ennemi. +S’il tient une Baie, elle est brûlée +et devient inutilisable." +363,11,9,"The user attacks the target with fire. +If the target is holding a Berry, the +Berry becomes burnt up and unusable." +363,14,9,"The user attacks the target with fire. +If the target is holding a Berry, the +Berry becomes burnt up and unusable." +363,15,1,"ほのおで あいてを こうげきする。 +あいてが きのみを もっている とき +もやして つかえなく する。" +363,15,3,"불꽃으로 상대를 공격한다. +상대가 나무열매를 지니고 있을 때 +불태워서 쓸 수 없게 만든다." +363,15,5,"Des flammes calcinent l’ennemi. +S’il tient un objet, une Baie par exemple, celui-ci +est brûlé et devient inutilisable." +363,15,6,"Eine Feuer-Attacke. Trägt das Ziel eine Beere +oder ein ähnliches Item bei sich, wird dieses +von den Flammen verzehrt und geht verloren." +363,15,7,"El usuario opone resistencia y ataca a los +oponentes. También reduce su Ataque Especial. +" +363,15,8,"Attacca il nemico con una fiammata. Il fuoco +distruggerà le bacche o alcuni tipi di strumenti +che il Pokémon ha con sé." +363,15,9,"The user attacks opposing Pokémon with fire. +If a Pokémon is holding a certain item, such as a +Berry, the item becomes burned up and unusable." +363,15,11,"炎で 相手を 攻撃する。 +相手が きのみを 持っているとき +燃やして 使えなくする。" +364,8,9,"An energy-draining punch. The user’s +HP is restored by half the damage +taken by the target." +364,9,9,"An energy-draining punch. The user’s +HP is restored by half the damage +taken by the target." +364,10,9,"An energy-draining punch. The user’s +HP is restored by half the damage +taken by the target." +364,11,5,"Retient la cible de force, +l’obligeant à agir en dernier." +364,11,9,"The user suppresses the target and +makes its move go last." +364,14,9,"The user suppresses the target and +makes its move go last." +364,15,1,"あいてを おさえつけて +こうどうの じゅんばんを +さいごに する。" +364,15,3,"상대를 억눌러서 +행동의 순서를 +마지막으로 만든다." +364,15,5,"Retient la cible de force, l’obligeant à agir +en dernier." +364,15,6,"Anwender stemmt sich gegen das Ziel und +bewirkt, dass dieses erst zuletzt angreift." +364,15,7,"Quien lo usa se hipnotiza y copia cualquier +cambio que haya en las características de +su objetivo." +364,15,8,"Chi la usa spinge via il bersaglio, costringendolo +ad agire per ultimo." +364,15,9,"The user suppresses the target and +makes its move go last." +364,15,11,"相手を おさえつけて +行動の 順番を +最後に する。" +365,8,9,"The user shoots a sinister, bluish +white flame at the foe to inflict a +burn." +365,9,9,"The user shoots a sinister, bluish +white flame at the foe to inflict a +burn." +365,10,9,"The user shoots a sinister, bluish +white flame at the foe to inflict a +burn." +365,11,5,"Lance une sinistre flamme violette à +l’ennemi pour lui infliger une brûlure." +365,11,9,"The user shoots a sinister, bluish-white +flame at the target to inflict a burn." +365,14,9,"The user shoots a sinister, bluish-white +flame at the target to inflict a burn." +365,15,1,"あおじろく もえる あやしげな +ほのおを はなつ。 あいてを +やけどの じょうたいに する。" +365,15,3,"으스스하고 괴상한 불꽃을 쏘아 +상대를 화상 상태로 만든다." +365,15,5,"Lance une sinistre flamme violette à l’ennemi +pour lui infliger une brûlure." +365,15,6,"Feuert eine fiese, blauweiße Flamme auf das Ziel +ab, um Verbrennungen zu verursachen." +365,15,7,"Sacudida sísmica que afecta a los demás +Pokémon adyacentes y también reduce su +Velocidad." +365,15,8,"Fiamme intense di colore viola causano +una scottatura al nemico." +365,15,9,"The user shoots a sinister, bluish-white +flame at the target to inflict a burn." +365,15,11,"不気味で 怪しい 炎を 放って +相手を やけどの 状態に する。 +" +366,8,9,"The foe is attacked with powdery +scales blown by wind. It may also +raise all the user’s stats." +366,9,9,"The foe is attacked with powdery +scales blown by wind. It may also +raise all the user’s stats." +366,10,9,"The foe is attacked with powdery +scales blown by wind. It may also +raise all the user’s stats." +366,11,5,"Attaque agile. Si le lanceur ne tient +pas d’objet, l’attaque inflige +davantage de dégâts." +366,11,9,"The user nimbly strikes the target. +If the user is not holding an item, +this attack inflicts massive damage." +366,14,9,"The user nimbly strikes the target. +If the user is not holding an item, +this attack inflicts massive damage." +366,15,1,"かろやかに あいてを こうげきする。 +じぶんが どうぐを もっていないと +おおきな ダメージを あたえる。" +366,15,3,"경쾌하게 상대를 공격한다. +자신이 도구를 지니고 있지 않을 때 +큰 데미지를 준다." +366,15,5,"Attaque agile. Si le lanceur ne tient pas d’objet, +l’attaque inflige davantage de dégâts." +366,15,6,"Ein graziler Angriff auf das Ziel. Trägt der +Anwender kein Item bei sich, richtet die Attacke +großen Schaden an." +366,15,7,"Quien lo usa ataca lanzando un aliento gélido. +Siempre resulta en un golpe crítico." +366,15,8,"Attacca rapidamente il bersaglio. +Se chi la usa non ha uno strumento, infligge +al nemico grossi danni." +366,15,9,"The user nimbly strikes the target. +If the user is not holding an item, +this attack inflicts massive damage." +366,15,11,"軽やかに 相手を 攻撃する。 +自分が 道具を 持っていないとき +大きな ダメージを 与える。" +367,8,9,"It prevents the foe from using its +held item. Its Trainer is also +prevented from using items on it." +367,9,9,"It prevents the foe from using its +held item. Its Trainer is also +prevented from using items on it." +367,10,9,"It prevents the foe from using its +held item. Its Trainer is also +prevented from using items on it." +367,11,5,"Empêche l’ennemi d’utiliser un objet +tenu et son Dresseur d’utiliser un +objet sur lui." +367,11,9,"It prevents the target from using its +held item. Its Trainer is also prevented +from using items on it." +367,14,9,"It prevents the target from using its +held item. Its Trainer is also prevented +from using items on it." +367,15,1,"もたせた どうぐを つかえなくする。 +トレーナーも その ポケモンには +どうぐを つかうことが できない。" +367,15,3,"지니게 한 도구를 쓸 수 없게 한다. +트레이너도 그 포켓몬에게는 +도구를 쓸 수 없다." +367,15,5,"Empêche l’ennemi d’utiliser un objet tenu et +son Dresseur d’utiliser un objet sur lui." +367,15,6,"Verhindert, dass auf das Ziel Items verwendet +werden." +367,15,7,"Arroja grandes rocas para infligir daño. También +puede hacer retroceder al objetivo." +367,15,8,"Impedisce al nemico di usare il suo strumento +e al suo Allenatore di usarne altri sul Pokémon." +367,15,9,"This move prevents the target from +using its held item. Its Trainer is +also prevented from using items on it." +367,15,11,"持たせた 道具を 使えなくする。 +トレーナーも その ポケモンには +道具を 使えない。" +368,8,9,"The user explodes to inflict damage on +all Pokémon in battle. The user faints +upon using this move." +368,9,9,"The user explodes to inflict damage on +all Pokémon in battle. The user faints +upon using this move." +368,10,9,"The user explodes to inflict damage on +all Pokémon in battle. The user faints +upon using this move." +368,11,5,"Le lanceur explose et inflige des +dégâts à tous les Pokémon autour +de lui. Met K.O. le lanceur." +368,11,9,"The user explodes to inflict damage on +those around it. +The user faints upon using this move." +368,14,9,"The user explodes to inflict damage on +those around it. +The user faints upon using this move." +368,15,1,"おおきな ばくはつで じぶんの +まわりに いるものを こうげきする。 +つかったあと ひんしに なる。" +368,15,3,"큰 폭발을 일으켜서 자신의 +주위에 있는 포켓몬을 공격한다. +사용한 뒤 기절한다." +368,15,5,"Le lanceur explose et inflige des dégâts à tous +les Pokémon autour de lui. Met K.O. le lanceur." +368,15,6,"Diese besondere Attacke verletzt Pokémon +in der Nähe des Anwenders, der dabei jedoch +kampfunfähig wird." +368,15,7,"Ataca al objetivo con cuchillas o garras que se +cruzan a modo de tijera." +368,15,8,"Chi la usa esplode e infligge danni agli altri +Pokémon in campo, ma poi va KO." +368,15,9,"The user attacks everything around it +by causing a tremendous explosion. +The user faints upon using this move." +368,15,11,"大きな 爆発で 自分の 周りに +いるものを 攻撃する。 +使ったあとに ひんしに なる。" +369,8,9,"The user slashes with a sharp claw +made from shadows. It has a high +critical-hit ratio." +369,9,9,"The user slashes with a sharp claw +made from shadows. It has a high +critical-hit ratio." +369,10,9,"The user slashes with a sharp claw +made from shadows. It has a high +critical-hit ratio." +369,11,5,"Attaque avec une griffe puissante faite +d’ombres. Taux de critiques élevé." +369,11,9,"The user slashes with a sharp claw +made from shadows. It has a high +critical-hit ratio." +369,14,9,"The user slashes with a sharp claw +made from shadows. It has a high +critical-hit ratio." +369,15,1,"かげで つくった するどいツメで +きりさいて こうげきする。 +きゅうしょに あたりやすい。" +369,15,3,"그림자로 만든 날카로운 발톱으로 +상대를 베어 가른다. +급소에 맞기 쉽다." +369,15,5,"Attaque avec une griffe puissante faite d’ombres. +Taux de critiques élevé." +369,15,6,"Eine Klaue aus Schatten greift das Ziel an. +Die Volltrefferquote ist dabei sehr hoch." +369,15,7,"Se lleva al objetivo, que es cambiado por otro +Pokémon. Si es un Pokémon salvaje, acaba el +combate." +369,15,8,"Chi la usa attacca con artigli d’ombra che +colpiscono con gran forza. +Probabile brutto colpo." +369,15,9,"The user slashes with a sharp claw +made from shadows. +Critical hits land more easily." +369,15,11,"影から つくった 鋭い ツメで +相手を 切り裂く。 +急所に 当たりやすい。" +370,8,9,"The user stores power, then attacks. +If the user can use this attack after +the foe, its power is doubled." +370,9,9,"The user stores power, then attacks. +If the user can use this attack after +the foe, its power is doubled." +370,10,9,"The user stores power, then attacks. +If the user can use this attack after +the foe, its power is doubled." +370,11,5,"Le lanceur charge son énergie, puis +attaque. La puissance est doublée +si le lanceur agit après l’ennemi." +370,11,9,"The user stores power, then attacks. +If the user can use this attack after +the target, its power is doubled." +370,14,9,"The user stores power, then attacks. +If the user can use this attack after +the target, its power is doubled." +370,15,1,"ちからを ためこみ こうげきする。 +あいてより あとに だせると +わざの いりょくは 2ばいに なる。" +370,15,3,"힘을 모아 공격한다. +상대보다 나중에 쓰면 +기술의 위력은 2배가 된다." +370,15,5,"Le lanceur charge son énergie, puis attaque. +La puissance est doublée si le lanceur agit +après l’ennemi." +370,15,6,"Der Anwender lädt die Attacke auf. Handelt das +Ziel vor dem Anwender, verdoppelt sich die Kraft +der Attacke." +370,15,7,"Oprime al enemigo de cuatro a cinco turnos, +durante los cuales no podrá huir." +370,15,8,"Chi la usa accumula forza, poi attacca. +La potenza raddoppia se agisce dopo il Pokémon +nemico." +370,15,9,"The user stores power, then attacks. +If the user moves after the target, +this attack’s power will be doubled." +370,15,11,"ためこんで 攻撃する。 +相手より 後に 攻撃できると +技の 威力は 2倍に なる。" +371,8,9,"The user recycles a single-use item +that has been used in battle so it can +be used again." +371,9,9,"The user recycles a single-use item +that has been used in battle so it can +be used again." +371,10,9,"The user recycles a single-use item +that has been used in battle so it can +be used again." +371,11,5,"Venge un Pokémon de l’équipe mis K.O. +Si un Pokémon de l’équipe a été mis +K.O. au tour d’avant, l’effet augmente." +371,11,9,"The user gets revenge for a fainted +ally. If an ally fainted in the previous +turn, this attack’s damage increases." +371,14,9,"The user gets revenge for a fainted +ally. If an ally fainted in the previous +turn, this attack’s damage increases." +371,15,1,"たおれた みかたの かたきを うつ。 +まえの ターンに たおされて +いると いりょくが あがる。" +371,15,3,"쓰러진 같은 편의 원수를 갚는다. +앞 턴에서 같은 편이 +쓰러졌다면 위력이 올라간다." +371,15,5,"Venge un Pokémon de l’équipe mis K.O. +Si un Pokémon de l’équipe a été mis K.O. +au tour d’avant, l’effet augmente." +371,15,6,"Anwender rächt einen besiegten Mitstreiter. +Wurde in der vorherigen Runde ein Mitstreiter +besiegt, steigt die Kraft." +371,15,7,"Ataca con un tentáculo o brazo impregnado de +veneno que puede llegar a envenenar al objetivo." +371,15,8,"Vendica un alleato messo KO. Se ciò è accaduto +al turno precedente, il danno è maggiore." +371,15,9,"The user gets revenge for a fainted ally. +If an ally fainted in the previous turn, +this move becomes more powerful." +371,15,11,"倒れた 味方の かたきを 討つ。 +前の ターンに 味方が +倒されていると 威力が あがる。" +372,8,9,"The user charges the foe using every +bit of its power. It must rest on the +next turn to recover." +372,9,9,"The user charges the foe using every +bit of its power. It must rest on the +next turn to recover." +372,10,9,"The user charges the foe using every +bit of its power. It must rest on the +next turn to recover." +372,11,5,"Le lanceur charge l’ennemi de toute sa +puissance. Il doit ensuite se reposer +au tour suivant." +372,11,9,"The user charges at the target using +every bit of its power. +The user must rest on the next turn." +372,14,9,"The user charges at the target using +every bit of its power. +The user must rest on the next turn." +372,15,1,"もてる ちからの すべてを あつめて +とつげきする。 つぎの ターン +はんどうで うごけなくなる。" +372,15,3,"가진 힘을 모두 사용해서 +상대에게 돌격한다. +다음 턴은 움직일 수 없다." +372,15,5,"Le lanceur charge l’ennemi de toute sa puissance +et doit ensuite se reposer au tour suivant." +372,15,6,"Ein harter Angriff mit aller Energie. Danach muss +der Anwender sich ausruhen und neue Energie +sammeln." +372,15,7,"Solo funciona con objetivos dormidos. Absorbe la +mitad del daño causado para restaurar los PS de +quien lo usa." +372,15,8,"Chi la usa carica il nemico usando tutta la sua +forza, ma al turno successivo deve riposarsi." +372,15,9,"The user charges at the target using +every bit of its power. +The user can’t move on the next turn." +372,15,11,"持てる 力を すべて 使って +相手に 突撃する。 +次の ターンは 動けなくなる。" +373,8,9,"The user polishes its body to reduce +drag. It sharply raises the Speed +stat." +373,9,9,"The user polishes its body to reduce +drag. It sharply raises the Speed +stat." +373,10,9,"The user polishes its body to reduce +drag. It sharply raises the Speed +stat." +373,11,5,"Le lanceur polit son corps pour +diminuer sa résistance au vent. +Augmente fortement la Vitesse." +373,11,9,"The user polishes its body to reduce +drag. It sharply raises the Speed +stat." +373,14,9,"The user polishes its body to reduce +drag. It sharply raises the Speed +stat." +373,15,1,"からだを みがきあげて くうきの +ていこうを すくなくする。 +すばやさを ぐーんと あげる。" +373,15,3,"자신의 몸을 닦아 공기의 +저항을 적게 한다. 스피드를 +크게 올릴 수 있다." +373,15,5,"Le lanceur polit son corps pour diminuer sa +résistance au vent. Augmente fortement la +Vitesse." +373,15,6,"Der Anwender poliert seinen Körper. Kann den +Initiative-Wert deutlich erhöhen." +373,15,7,"Atrapa al objetivo con hierbas y lo derriba. +Cuanto más pesado sea el objetivo, más +daño causa." +373,15,8,"Chi la usa leviga il proprio corpo per +ridurne l’attrito. Aumenta di molto +la Velocità." +373,15,9,"The user polishes its body to reduce drag. +This can sharply raise the Speed stat." +373,15,11,"自分の 体を 磨いて 空気の +抵抗を 少なくする。素早さを +ぐーんと あげることが できる。" +374,8,9,"The user flashes a light that cuts the +foe’s accuracy. It can also be used to +illuminate caves." +374,9,9,"The user flashes a light that cuts the +foe’s accuracy. It can also be used to +illuminate caves." +374,10,9,"The user flashes a light that cuts the +foe’s accuracy. It can also be used to +illuminate caves." +374,11,5,"Explosion lumineuse qui fait baisser +la Précision de l’ennemi. Permet +aussi d’éclairer les grottes." +374,11,9,"The user flashes a bright light that +cuts the target’s accuracy. +It can also be used to illuminate caves." +374,14,9,"The user flashes a bright light that +cuts the target’s accuracy. +It can also be used to illuminate caves." +374,15,1,"まぶしい ひかりで あいての +めいちゅうりつを さげる。 +" +374,15,3,"눈이 부신 빛으로 +상대의 명중률을 떨어뜨린다." +374,15,5,"Explosion lumineuse qui fait baisser la Précision +de l’ennemi." +374,15,6,"Ein blendendes Licht reduziert die Genauigkeit +des Zieles." +374,15,7,"Envuelve al objetivo en confusión, pero también +sube marcadamente su Ataque." +374,15,8,"Investe il nemico con una luce abbagliante +che ne riduce la precisione." +374,15,9,"The user flashes a bright light that cuts +the target’s accuracy." +374,15,11,"まぶしい 光で 相手の +命中率を さげる。 +" +375,8,9,"The user stabs the foe with a +sharpened stone from below. It has +a high critical-hit ratio." +375,9,9,"The user stabs the foe with a +sharpened stone from below. It has +a high critical-hit ratio." +375,10,9,"The user stabs the foe with a +sharpened stone from below. It has +a high critical-hit ratio." +375,11,5,"Fait surgir des pierres aiguisées sous +l’ennemi. Taux de critiques élevé." +375,11,9,"The user stabs the foe with +sharpened stones from below. +It has a high critical-hit ratio." +375,14,9,"The user stabs the foe with +sharpened stones from below. +It has a high critical-hit ratio." +375,15,1,"とがった がんせきを したから +つきさして こうげきする。 +きゅうしょに あたりやすい。" +375,15,3,"뾰족한 바위를 +상대에게 꿰찔러서 공격한다. +급소에 맞기 쉽다." +375,15,5,"Fait surgir des pierres aiguisées sous l’ennemi. +Taux de critiques élevé." +375,15,6,"Angriff mit spitzen Steinen. +Besitzt eine hohe Volltrefferquote." +375,15,7,"Mientras duerme, usa uno de sus movimientos +elegido al azar." +375,15,8,"Chi la usa colpisce il nemico dal basso con +pietre affilate. +Probabile brutto colpo." +375,15,9,"The user stabs the target with +sharpened stones from below. +Critical hits land more easily." +375,15,11,"とがった 岩を +相手に 突き刺して 攻撃する。 +急所に 当たりやすい。" +376,8,9,"An attack move that inflicts double +the damage if the user has been hurt +by the foe in the same turn." +376,9,9,"An attack move that inflicts double +the damage if the user has been hurt +by the foe in the same turn." +376,10,9,"An attack move that inflicts double +the damage if the user has been hurt +by the foe in the same turn." +376,11,5,"Après son attaque, le lanceur revient à +toute vitesse et change de place avec +un Pokémon de l’équipe prêt au combat." +376,11,9,"After making its attack, the user +rushes back to switch places with +a party Pokémon in waiting." +376,14,9,"After making its attack, the user +rushes back to switch places with +a party Pokémon in waiting." +376,15,1,"こうげき したあと +ものすごい スピードで もどってきて +ひかえ ポケモンと いれかわる。" +376,15,3,"공격한 뒤 +굉장한 스피드로 돌아와서 +교대 포켓몬과 교체한다." +376,15,5,"Après son attaque, le lanceur revient à toute +vitesse et change de place avec un Pokémon +de l’équipe prêt au combat." +376,15,6,"Nach der Attacke eilt der Anwender zurück und +tauscht den Platz mit einem anderen Pokémon." +376,15,7,"Después de atacar, quien lo usa cambia +rápidamente su puesto con un compañero +que no esté combatiendo." +376,15,8,"Chi usa questa mossa si tira indietro +per farsi sostituire dopo aver sferrato l’attacco." +376,15,9,"After making its attack, the user +rushes back to switch places with +a party Pokémon in waiting." +376,15,11,"攻撃したあと +ものすごい スピードで もどってきて +控えポケモンと 入れ替わる。" +377,8,9,"A weak electric charge is launched +at the foe. It causes paralysis if it +hits." +377,9,9,"A weak electric charge is launched +at the foe. It causes paralysis if it +hits." +377,10,9,"A weak electric charge is launched +at the foe. It causes paralysis if it +hits." +377,11,5,"Un faible choc électrique frappe +l’ennemi. Si l’attaque touche, l’ennemi +est paralysé." +377,11,9,"A weak electric charge is launched +at the target. It causes paralysis +if it hits." +377,14,9,"A weak electric charge is launched +at the target. It causes paralysis +if it hits." +377,15,1,"よわい でんきを あびせることで +あいてを まひじょうたいに する。 +" +377,15,3,"약한 전기를 날려 +상대를 마비 상태로 만든다." +377,15,5,"Un faible choc électrique frappe l’ennemi. +Si l’attaque le touche, celui-ci est paralysé." +377,15,6,"Das Ziel wird mit einem schwachen elektrischen +Schlag angegriffen. Wird es getroffen, wird es +paralysiert." +377,15,7,"Quien lo usa utiliza parte de sus PS para hacer +una copia de sí mismo que sirve como señuelo." +377,15,8,"Il nemico viene colpito da una debole scarica +elettrica che, se va a segno, ne causa la paralisi." +377,15,9,"The user launches a weak jolt of +electricity that paralyzes the target." +377,15,11,"弱い 電撃を 浴びせることで +相手を まひ状態に する。 +" +378,8,9,"The user tackles the foe from a +high-speed spin. The slower the user, +the greater the damage." +378,9,9,"The user tackles the foe from a +high-speed spin. The slower the user, +the greater the damage." +378,10,9,"The user tackles the foe from a +high-speed spin. The slower the user, +the greater the damage." +378,11,5,"Le lanceur effectue une rotation et +frappe l’ennemi. Plus le lanceur est +lent, plus il fait de dégâts." +378,11,9,"The user tackles the target with a +high-speed spin. The slower the +user, the greater the damage." +378,14,9,"The user tackles the target with a +high-speed spin. The slower the +user, the greater the damage." +378,15,1,"からだを こうそくに かいてん +させて たいあたりする。 あいてより +おそいほど いりょくは あがる。" +378,15,3,"몸을 고속으로 회전시켜 +몸통박치기한다. 상대보다 +스피드가 느릴수록 위력은 올라간다." +378,15,5,"Le lanceur effectue une rotation et frappe +l’ennemi. Plus la Vitesse du lanceur est basse, +plus il fait de dégâts." +378,15,6,"Eine verzerrte Drehattacke. Je langsamer der +Anwender, desto mehr Schaden fügt er zu." +378,15,7,"Quien lo usa concentra toda su energía lumínica +y la libera de golpe. Puede reducir la Defensa +Especial del objetivo." +378,15,8,"Chi la usa colpisce il nemico con un vortice +rapidissimo. Più lento è chi la usa, maggiore +è il danno." +378,15,9,"The user tackles the target with a high-speed +spin. The slower the user compared to the +target, the greater the move’s power." +378,15,11,"体を 高速に 回転させて +体当たりする。相手より 素早さが +遅いほど 強い。" +379,8,9,"A frenetic dance to uplift the fighting +spirit. It sharply raises the user’s +Attack stat." +379,9,9,"A frenetic dance to uplift the fighting +spirit. It sharply raises the user’s +Attack stat." +379,10,9,"A frenetic dance to uplift the fighting +spirit. It sharply raises the user’s +Attack stat." +379,11,5,"Danse frénétique qui exalte l’esprit +combatif. Augmente beaucoup +l’Attaque du lanceur." +379,11,9,"A frenetic dance to uplift the fighting +spirit. It sharply raises the user’s +Attack stat." +379,14,9,"A frenetic dance to uplift the fighting +spirit. It sharply raises the user’s +Attack stat." +379,15,1,"たたかいのまいを はげしく おどり +きあいを たかめる。 じぶんの +こうげきを ぐーんと あげる。" +379,15,3,"싸움의 춤을 격렬하게 춰서 +기세를 높인다. +자신의 공격을 크게 올린다." +379,15,5,"Danse frénétique qui exalte l’esprit combatif. +Augmente beaucoup l’Attaque du lanceur." +379,15,6,"Ein wilder Tanz, der den Kampfgeist erhöhen soll. +Der Angriffs-Wert des Anwenders steigt deutlich." +379,15,7,"Distorsiona el espacio de forma que los Pokémon +más lentos consiguen moverse en primer lugar +durante cinco turnos." +379,15,8,"Danza frenetica che incrementa lo spirito +combattivo. Chi la usa aumenta di molto +il proprio Attacco." +379,15,9,"A frenetic dance to uplift the fighting +spirit. This sharply raises the user’s +Attack stat." +379,15,11,"戦いの舞を 激しく 踊って +気合を 高める。 +自分の 攻撃を ぐーんと あげる。" +380,8,9,"The user lays a trap of levitating +stones around the foe. The trap hurts +foes that switch into battle." +380,9,9,"The user lays a trap of levitating +stones around the foe. The trap hurts +foes that switch into battle." +380,10,9,"The user lays a trap of levitating +stones around the foe. The trap hurts +foes that switch into battle." +380,11,5,"Le lanceur résiste et attaque. +Baisse l’Attaque Spéciale de l’ennemi." +380,11,9,"Resisting, the user attacks the +opposing Pokémon. The targets’ Sp. Atk +stat is reduced." +380,14,9,"Resisting, the user attacks the +opposing Pokémon. The targets’ Sp. Atk +stat is reduced." +380,15,1,"ていこう して +あいてを こうげきする。 +あいての とくこうを さげる。" +380,15,3,"저항하여 상대를 공격한다. +상대의 특수공격을 떨어뜨린다." +380,15,5,"Le lanceur se débat de toutes ses forces, et +baisse l’Attaque Spéciale de l’ennemi." +380,15,6,"Anwender leistet Widerstand und greift an. +Der Spezial-Angriff der Ziele sinkt." +380,15,7,"Corta al objetivo con una cuchilla o garra. +También puede usarse para cortar árboles +delgados." +380,15,8,"Colpisce i nemici opponendo resistenza +e riducendo il loro Attacco Speciale." +380,15,9,"While resisting, the user attacks the +opposing Pokémon. This lowers the +Sp. Atk stat of those hit." +380,15,11,"抵抗して 相手を 攻撃する。 +相手の 特攻を さげる。 +" +381,8,9,"The user hypnotizes itself into +copying any stat change made +by the foe." +381,9,9,"The user hypnotizes itself into +copying any stat change made +by the foe." +381,10,9,"The user hypnotizes itself into +copying any stat change made +by the foe." +381,11,5,"Une autohypnose qui permet au lanceur +de copier les changements de stats de +la cible." +381,11,9,"The user hypnotizes itself into +copying any stat change made +by the target." +381,14,9,"The user hypnotizes itself into +copying any stat change made +by the target." +381,15,1,"じぶんに あんじを かけることで +のうりょく へんかの じょうたいを +あいてと おなじにする。" +381,15,3,"자신에게 암시를 걸어서 +능력 변화 상태를 +상대와 똑같은 상태로 만든다." +381,15,5,"Une autohypnose qui permet au lanceur de copier +les changements de stats de la cible." +381,15,6,"Der Anwender hypnotisiert sich selbst, um die +Statusveränderungen des Zieles zu kopieren." +381,15,7,"Quien lo usa levanta el vuelo y ataca en el +siguiente turno. También se puede usar para +volar a algún sitio conocido." +381,15,8,"Chi la usa s’ipnotizza per copiare ogni modifica +alle statistiche del bersaglio." +381,15,9,"The user hypnotizes itself into +copying any stat change made +by the target." +381,15,11,"自分に 暗示を かけることで +能力変化の 状態を +相手と 同じにする。" +382,8,9,"If it is the opposite gender of the +user, the foe is charmed into sharply +lowering its Sp. Atk stat." +382,9,9,"If it is the opposite gender of the +user, the foe is charmed into sharply +lowering its Sp. Atk stat." +382,10,9,"If it is the opposite gender of the +user, the foe is charmed into sharply +lowering its Sp. Atk stat." +382,11,5,"Le lanceur piétine le sol et inflige des +dégâts à tous les Pokémon autour +de lui. Baisse aussi la Vitesse." +382,11,9,"The user stomps down on the ground +and attacks everything in the area. +The targets’ Speed stat is reduced." +382,14,9,"The user stomps down on the ground +and attacks everything in the area. +The targets’ Speed stat is reduced." +382,15,1,"じめんを ふみならして じぶんの +まわりに いるものを こうげきする。 +あいての すばやさを さげる。" +382,15,3,"땅을 힘껏 밟아 자신의 +주위에 있는 포켓몬을 공격한다. +상대의 스피드를 떨어뜨린다." +382,15,5,"Le lanceur piétine le sol et inflige des dégâts à +tous les Pokémon autour de lui. Baisse aussi leur +Vitesse." +382,15,6,"Anwender greift an, indem er den Boden um sich +herum plattwalzt. Die Initiative aller Pokémon in +der Umgebung sinkt." +382,15,7,"Inunda el campo de batalla con una ola gigante. +También se puede usar para desplazarse por el +agua." +382,15,8,"Chi la usa calpesta il terreno e scatena un +terremoto che danneggia i Pokémon nei paraggi, +riducendone la Velocità." +382,15,9,"The user strikes everything around it +by stomping down on the ground. +This lowers the Speed stat of those hit." +382,15,11,"地面を 踏みならして 自分の +周りに いるものを 攻撃する。 +相手の 素早さを さげる。" +383,8,9,"The user releases a horrible aura +imbued with dark thoughts. It may also +make the target flinch." +383,9,9,"The user releases a horrible aura +imbued with dark thoughts. It may also +make the target flinch." +383,10,9,"The user releases a horrible aura +imbued with dark thoughts. It may also +make the target flinch." +383,11,5,"Un souffle froid blesse l’ennemi. +L’effet est toujours critique." +383,11,9,"The user blows a cold breath on the +target. This attack always results in +a critical hit." +383,14,9,"The user blows a cold breath on the +target. This attack always results in +a critical hit." +383,15,1,"つめたい いきを +あいてに ふきつけて こうげきする。 +かならず きゅうしょに あたる。" +383,15,3,"차가운 숨결을 +상대에게 내뿜어 공격한다. +반드시 급소에 맞는다." +383,15,5,"Un souffle froid blesse l’ennemi. +L’effet est toujours critique." +383,15,6,"Anwender greift an, indem er dem Ziel eisigen +Atem entgegenhaucht. Volltreffergarantie." +383,15,7,"Genera mucha fuerza y ataca con gran energía +al objetivo. También puede usarse para mover +piedras grandes." +383,15,8,"Chi la usa attacca il bersaglio con un soffio +d’aria gelida. +Brutto colpo assicurato." +383,15,9,"The user blows its cold breath on the +target. This attack always results in +a critical hit." +383,15,11,"冷たい 息を +相手に 吹きつけて 攻撃する。 +必ず 急所に 当たる。" +384,8,9,"Large boulders are hurled at the foe +to inflict damage. It may also make the +target flinch." +384,9,9,"Large boulders are hurled at the foe +to inflict damage. It may also make the +target flinch." +384,10,9,"Large boulders are hurled at the foe +to inflict damage. It may also make the +target flinch." +384,11,5,"Envoie de gros rochers sur l’ennemi +pour infliger des dégâts. Peut +l’apeurer." +384,11,9,"Large boulders are hurled at the +opposing team to inflict damage. They +may also make the targets flinch." +384,14,9,"Large boulders are hurled at the +opposing team to inflict damage. They +may also make the targets flinch." +384,15,1,"おおきな がんせきを なげつけて +こうげきする。 +あいてを ひるませることが ある。" +384,15,3,"큰 바위를 +세차게 부딪쳐서 공격한다. +상대를 풀죽게 만들 때가 있다." +384,15,5,"Envoie de gros rochers sur l’ennemi pour infliger +des dégâts. Peut l’apeurer." +384,15,6,"Der Anwender schleudert große Felsbrocken +auf das Ziel. Dieses schreckt eventuell zurück." +384,15,7,"Carga contra el objetivo a una velocidad increíble. +También puede usarse para remontar una +cascada." +384,15,8,"I nemici vengono colpiti da grandi massi +che possono anche farli tentennare." +384,15,9,"Large boulders are hurled at the opposing +Pokémon to inflict damage. This may also +make the opposing Pokémon flinch." +384,15,11,"大きな 岩を +激しく ぶつけて 攻撃する。 +相手を ひるませることが ある。" +385,8,9,"The user slashes at the foe by +crossing its scythes or claws as if +they were a pair of scissors." +385,9,9,"The user slashes at the foe by +crossing its scythes or claws as if +they were a pair of scissors." +385,10,9,"The user slashes at the foe by +crossing its scythes or claws as if +they were a pair of scissors." +385,11,5,"Le lanceur taillade l’ennemi en utilisant +ses faux ou ses griffes comme une +paire de ciseaux." +385,11,9,"The user slashes at the target by +crossing its scythes or claws as if +they were a pair of scissors." +385,14,9,"The user slashes at the target by +crossing its scythes or claws as if +they were a pair of scissors." +385,15,1,"カマや ツメを ハサミのように +こうさ させながら きりさいて +こうげきする。" +385,15,3,"낫이나 발톱을 가위처럼 +교차시키면서 상대를 베어 가른다." +385,15,5,"Le lanceur taillade l’ennemi en utilisant ses faux +ou ses griffes comme une paire de ciseaux." +385,15,6,"Der Anwender greift mit gekreuzten Scheren oder +Klauen an, als wären diese eine normale Schere." +385,15,7,"Quien lo usa se sumerge en el agua y ataca al +siguiente turno. También puede usarse para +bucear en el mar." +385,15,8,"Chi la usa colpisce il nemico usando le sue falci +o i suoi artigli come se fossero delle forbici." +385,15,9,"The user slashes at the target by +crossing its scythes or claws as if +they were a pair of scissors." +385,15,11,"カマや ツメを ハサミのように +交差させながら 相手を 切り裂く。 +" +386,8,9,"While it is asleep, the user +randomly uses one of the moves +it knows." +386,9,9,"While it is asleep, the user +randomly uses one of the moves +it knows." +386,10,9,"While it is asleep, the user +randomly uses one of the moves +it knows." +386,11,5,"Un coup puissant qui blesse la cible +et l’envoie balader. Dans la nature, +met fin au combat." +386,11,9,"The user knocks away the target and +drags out another Pokémon in its party. +In the wild, the battle ends." +386,14,9,"The user knocks away the target and +drags out another Pokémon in its party. +In the wild, the battle ends." +386,15,1,"あいてを はじきとばして +ひかえの ポケモンを ひきずりだす。 +やせいなら せんとうが おわる。" +386,15,3,"상대를 튕겨내서 +교대할 포켓몬을 끌어낸다. +야생의 경우에는 배틀이 끝난다." +386,15,5,"Un coup puissant qui blesse la cible et l’envoie +au loin. Dans la nature, met fin au combat." +386,15,6,"Fegt das Ziel vom Feld und wechselt es +mit einem anderen Pokémon aus. +Beendet Kämpfe gegen wilde Pokémon." +386,15,7,"Una saca donde guardar los objetos útiles para +la exploración. Permite acceder al Subsuelo." +386,15,8,"Chi la usa fa volar via il bersaglio in modo che +venga sostituito. Se il bersaglio è un singolo +Pokémon selvatico, la lotta finisce." +386,15,9,"The target is knocked away, and a different +Pokémon is dragged out. In the wild, this +ends a battle against a single Pokémon." +386,15,11,"相手を はじきとばして +控えの ポケモンを ひきずりだす。 +野生の 場合は 戦闘が 終わる。" +387,8,9,"The user draws power from the Berry +it is holding to attack. The Berry +determines its type and power." +387,9,9,"The user draws power from the Berry +it is holding to attack. The Berry +determines its type and power." +387,10,9,"The user draws power from the Berry +it is holding to attack. The Berry +determines its type and power." +387,11,5,"Le lanceur se rengorge. Augmente +l’Attaque et l’Attaque Spéciale." +387,11,9,"The user is roused, and its Attack +and Sp. Atk stats increase." +387,14,9,"The user is roused, and its Attack +and Sp. Atk stats increase." +387,15,1,"4ー5ターンの あいだ あいてに +まとわりついて こうげきする。 +そのあいだ あいては にげられない。" +387,15,3,"4-5턴 동안 상대에게 +엉겨붙어 공격한다. +그동안 상대는 도망갈 수 없다." +387,15,5,"Attaque l’ennemi sans répit pendant quatre à cinq +tours. Ce dernier ne peut pas fuir au cours de +cette période." +387,15,6,"Der Anwender fällt 4 bis 5 Runden lang wie +eine Plage über das Ziel her und greift es an. +In diesem Zeitraum kann es nicht fliehen." +387,15,7,"Una saca grande y resistente utilizada para +transportar el botín reunido en la mina de carbón." +387,15,8,"Chi la usa lancia un attacco che tormenta +il bersaglio per quattro o cinque turni, durante +i quali gli impedisce di fuggire." +387,15,9,"The target is infested and attacked +for four to five turns. +The target can’t flee during this time." +387,15,11,"4ー5ターンの 間 相手に +まとわりついて 攻撃する。 +その間 相手は 逃げられない。" +388,8,9,"The foe is stabbed with a tentacle or +arm seeped with poison. It may also +poison the foe." +388,9,9,"The foe is stabbed with a tentacle or +arm seeped with poison. It may also +poison the foe." +388,10,9,"The foe is stabbed with a tentacle or +arm steeped with poison. It may also +poison the foe." +388,11,5,"Attaque l’ennemi avec un tentacule ou +un bras plein de poison. Peut aussi +l’empoisonner." +388,11,9,"The target is stabbed with a tentacle +or arm steeped in poison. It may also +poison the target." +388,14,9,"The target is stabbed with a tentacle +or arm steeped in poison. It may also +poison the target." +388,15,1,"どくに そまった しょくしゅや +うでで こうげきする。どくの +じょうたいに することが ある。" +388,15,3,"독에 물든 촉수나 팔로 +상대를 꿰찌른다. +독 상태로 만들 때가 있다." +388,15,5,"Attaque l’ennemi avec un tentacule ou un bras +plein de poison. Peut aussi l’empoisonner." +388,15,6,"Der Anwender greift mit giftigen Tentakeln oder +Armen an. Das Ziel wird dabei eventuell vergiftet." +388,15,7,"Recoge las normas de los combates. En los +combates en conexión puedes elegir el conjunto +de reglas que quieres usar." +388,15,8,"Il nemico è colpito da un tentacolo o da un arto +intriso di una sostanza tossica che può anche +avvelenarlo." +388,15,9,"The target is stabbed with a tentacle +or arm steeped in poison. This may also +poison the target." +388,15,11,"毒に そまった 触手や 腕で +相手を 突き刺す。 +毒状態に することが ある。" +389,8,9,"An attack that works only on a +sleeping foe. It absorbs half the +damage caused to heal the user’s HP." +389,9,9,"An attack that works only on a +sleeping foe. It absorbs half the +damage caused to heal the user’s HP." +389,10,9,"An attack that works only on a +sleeping foe. It absorbs half the +damage caused to heal the user’s HP." +389,11,5,"Attaque réservée aux ennemis endormis. +Le lanceur récupère en PV la moitié des +dégâts infligés." +389,11,9,"The user eats the dreams of a sleeping +target. It absorbs half the damage +caused to heal the user’s HP." +389,14,9,"The user eats the dreams of a sleeping +target. It absorbs half the damage +caused to heal the user’s HP." +389,15,1,"ねている あいての ゆめを たべて +こうげきする。 あたえた ダメージの +はんぶん HPを かいふくする。" +389,15,3,"잠자고 있는 상대의 꿈을 먹어 +공격한다. 데미지의 절반을 +HP로 회복한다." +389,15,5,"Le lanceur mange le rêve de l’ennemi endormi. +Le lanceur récupère en PV la moitié des dégâts +infligés." +389,15,6,"Wirkt nur auf schlafende Ziele. Angreifer erhält +50 % des Schadens als KP." +389,15,7,"Busca Pokémon que se esconden en la hierba. +La batería se recarga mientras caminas." +389,15,8,"Attacco che funziona solo su un nemico +che dorme. Chi lo usa riceve metà dei PS +persi dal nemico." +389,15,9,"The user eats the dreams of a sleeping +target. It absorbs half the damage +caused to heal its own HP." +389,15,11,"寝ている 相手の 夢を 食べて +攻撃する。ダメージの 半分の +HPを 回復する。" +390,8,9,"The user snares the foe with grass +and trips it. The heavier the foe, the +greater the damage." +390,9,9,"The user snares the foe with grass +and trips it. The heavier the foe, the +greater the damage." +390,10,9,"The user snares the foe with grass +and trips it. The heavier the foe, the +greater the damage." +390,11,5,"L’ennemi est piégé dans de l’herbe qui +le fait trébucher. Plus il est lourd, +plus il reçoit de dégâts." +390,11,9,"The user snares the target with grass +and trips it. The heavier the target, +the greater the damage." +390,14,9,"The user snares the target with grass +and trips it. The heavier the target, +the greater the damage." +390,15,1,"くさを からませて ころばせる。 +あいてが おもいほど わざの +いりょくは あがる。" +390,15,3,"풀을 휘감아서 상대를 +쓰러뜨린다. 상대가 무거울수록 +위력이 올라간다." +390,15,5,"L’ennemi est piégé dans de l’herbe qui le fait +trébucher. Plus il est lourd, plus il reçoit de +dégâts." +390,15,6,"Gras lässt das Ziel straucheln. Je schwerer +das Ziel, desto mehr Schaden wird verursacht." +390,15,7,"Una tarjeta en la que se registran los Puntos de +Batalla que has ganado." +390,15,8,"Chi la usa intrappola il nemico con l’erba e +lo fa cadere. Danneggia maggiormente i nemici +più pesanti." +390,15,9,"The user snares the target with grass and +trips it. The heavier the target, the greater +the move’s power." +390,15,11,"草を からませて 相手を +転ばせる。相手が 重いほど +威力が あがる。" +391,8,9,"The user enrages the foe into +confusion. However, it also sharply +raises the foe’s Attack stat." +391,9,9,"The user enrages the foe into +confusion. However, it also sharply +raises the foe’s Attack stat." +391,10,9,"The user enrages the foe into +confusion. However, it also sharply +raises the foe’s Attack stat." +391,11,5,"Fait enrager la cible et la plonge dans +la confusion, mais augmente fortement +son Attaque." +391,11,9,"The user enrages and confuses the +target. However, it also sharply raises +the target’s Attack stat." +391,14,9,"The user enrages and confuses the +target. However, it also sharply raises +the target’s Attack stat." +391,15,1,"おこらせて こんらんさせる。 +いかりで あいての こうげきは +ぐーんと あがってしまう。" +391,15,3,"상대를 화내게 해서 혼란시킨다. +분노로 상대의 공격은 +크게 올라가 버린다." +391,15,5,"Fait enrager la cible et la plonge dans la +confusion, mais augmente fortement son Attaque." +391,15,6,"Reizt das Ziel und verursacht Verwirrung. +Dies erhöht jedoch dessen Angriffs-Wert." +391,15,7,"Un cuaderno en el que se recogen, día a día, los +progresos de tu aventura." +391,15,8,"Chi la usa provoca il bersaglio e lo confonde, +facendo aumentare però di molto il suo Attacco." +391,15,9,"The user enrages and confuses the +target. However, this also sharply raises +the target’s Attack stat." +391,15,11,"相手を 怒らせて 混乱させる。 +怒りで 相手の 攻撃は +ぐーんと あがってしまう。" +392,8,9,"The user pecks the foe. If the foe is +holding a Berry, the user plucks it and +gains its effect." +392,9,9,"The user pecks the foe. If the foe is +holding a Berry, the user plucks it and +gains its effect." +392,10,9,"The user pecks the foe. If the foe is +holding a Berry, the user plucks it and +gains its effect." +392,11,5,"Le lanceur picore l’ennemi. S’il tient +une Baie, le lanceur s’en empare et +profite de ses effets." +392,11,9,"The user pecks the target. If the +target is holding a Berry, the user +plucks it and gains its effect." +392,14,9,"The user pecks the target. If the +target is holding a Berry, the user +plucks it and gains its effect." +392,15,1,"じぶんが おぼえている わざの うち +どれか 1つを くりだす。 +じぶんが ねている ときだけ つかえる。" +392,15,3,"자신이 배운 기술 중 +하나를 무작위로 날린다. +자신이 잠들어 있을 때만 쓸 수 있다." +392,15,5,"Le lanceur utilise un de ses coups au hasard +pendant qu’il dort." +392,15,6,"Anwender setzt per Zufall eine ihm bekannte +Attacke im Schlaf ein." +392,15,7,"Caja en la que se pueden guardar los Sellos que +se aplican a las Cápsulas de las Poké Balls." +392,15,8,"Chi la usa sfodera a caso una delle proprie mosse +mentre sta dormendo." +392,15,9,"While it is asleep, the user randomly uses +one of the moves it knows." +392,15,11,"自分が おぼえている 技の うち +どれか 1つを くりだす。 +自分が 寝ているときだけ 使える。" +393,8,9,"After making its attack, the user +rushes back to switch places with a +party Pokémon in waiting." +393,9,9,"After making its attack, the user +rushes back to switch places with a +party Pokémon in waiting." +393,10,9,"After making its attack, the user +rushes back to switch places with a +party Pokémon in waiting." +393,11,5,"Après son attaque, le lanceur revient à +toute vitesse et change de place avec +un Pokémon de l’équipe prêt au combat." +393,11,9,"After making its attack, the user +rushes back to switch places with a +party Pokémon in waiting." +393,14,9,"After making its attack, the user +rushes back to switch places with a +party Pokémon in waiting." +393,15,1,"あいてを こうげきした あとに +ひかえの ポケモンと いれかわる。 +" +393,15,3,"공격한 뒤 +굉장한 스피드로 돌아와서 +교대 포켓몬과 교체한다." +393,15,5,"Après son attaque, le lanceur revient à toute +vitesse et change de place avec un Pokémon +de l’équipe prêt au combat." +393,15,6,"Direkt nach der Attacke tauscht der Angreifer +mit einem wartenden Pokémon den Platz." +393,15,7,"Una bonita cajita donde guardar todos los +Complementos para vestir a tus Pokémon en +el Teatro Musical." +393,15,8,"Chi usa questa mossa fa marcia indietro +per farsi sostituire dopo aver sferrato l’attacco." +393,15,9,"After making its attack, the user +rushes back to switch places with a +party Pokémon in waiting." +393,15,11,"攻撃したあと +ものすごい スピードで もどってきて +控えの ポケモンと 入れ替わる。" +394,8,9,"The user makes a copy of itself using +some of its HP. The copy serves as +the user’s decoy." +394,9,9,"The user makes a copy of itself using +some of its HP. The copy serves as +the user’s decoy." +394,10,9,"The user makes a copy of itself using +some of its HP. The copy serves as +the user’s decoy." +394,11,5,"Le lanceur fait une copie de lui-même +en sacrifiant quelques PV. La copie +sert de leurre." +394,11,9,"The user makes a copy of itself using +some of its HP. The copy serves as +the user’s decoy." +394,14,9,"The user makes a copy of itself using +some of its HP. The copy serves as +the user’s decoy." +394,15,1,"じぶんの HPを すこし けずって +ぶんしんを だす。 じぶんの +かわりに こうげきを うける。" +394,15,3,"자신의 HP를 조금 깎아서 +분신을 만든다. +분신은 자신의 대타가 된다." +394,15,5,"Le lanceur fait une copie de lui-même en +sacrifiant quelques PV. La copie sert de leurre." +394,15,6,"Der Angreifer erschafft aus ein paar eigenen KP +einen Klon, der als Ablenkung dient." +394,15,7,"Bolsita con capacidad para diez Sellos de los que +decoran las Poké Balls." +394,15,8,"Chi la usa crea una copia di se stesso usando +alcuni PS. +La copia serve come esca per il nemico." +394,15,9,"The user makes a copy of itself using +some of its HP. The copy serves as +the user’s decoy." +394,15,11,"自分の HPを 少し 削って +分身を だす。 +分身は 自分の 身代わりに なる。" +395,8,9,"The user gathers all its light energy +and releases it in one shot. It may +also lower the foe’s Sp. Def stat." +395,9,9,"The user gathers all its light energy +and releases it in one shot. It may +also lower the foe’s Sp. Def stat." +395,10,9,"The user gathers all its light energy +and releases it in one shot. It may +also lower the foe’s Sp. Def stat." +395,11,5,"Le lanceur concentre son énergie +lumineuse et la fait exploser. Peut +aussi baisser la Déf. Spé. de l’ennemi." +395,11,9,"The user gathers all its light energy +and releases it at once. It may also +lower the target’s Sp. Def stat." +395,14,9,"The user gathers all its light energy +and releases it at once. It may also +lower the target’s Sp. Def stat." +395,15,1,"からだの ひかりを いってんに +あつめ ひかりを はなつ。 あいての +とくぼうを さげることがある。" +395,15,3,"몸의 빛을 한곳에 모아서 +힘을 쏜다. 상대의 +특수방어를 떨어뜨릴 때가 있다." +395,15,5,"Le lanceur concentre son énergie lumineuse et +la fait exploser. Peut aussi baisser la Défense +Spéciale de l’ennemi." +395,15,6,"Entfesselt konzentrierte Lichtenergie. +Die Spezial-Verteidigung des Zieles +sinkt eventuell." +395,15,7,"Un cuaderno muy práctico en el que puedes +registrar amigos, claves de amigo, etc." +395,15,8,"Chi la usa attacca raccogliendo e rilasciando +energia luminosa. Può anche ridurre la Difesa +Speciale del nemico." +395,15,9,"The user gathers all its light energy +and releases it at once. This may also +lower the target’s Sp. Def stat." +395,15,11,"体の 光を 一点に 集めて +力を 放つ。 +相手の 特防を さげることが ある。" +396,8,9,"The user creates a bizarre space in +which slower Pokémon get to move +first for five turns." +396,9,9,"The user creates a bizarre space in +which slower Pokémon get to move +first for five turns." +396,10,9,"The user creates a bizarre space in +which slower Pokémon get to move +first for five turns." +396,11,5,"Le lanceur crée une zone étrange +où les Pokémon les plus lents +frappent en 1er pendant 5 tours." +396,11,9,"The user creates a bizarre space in +which slower Pokémon get to move +first for five turns." +396,14,9,"The user creates a bizarre space in +which slower Pokémon get to move +first for five turns." +396,15,1,"まかふしぎな くうかんを つくる。 +5ターンの あいだ うごきの おそい +ポケモンから こうげきできる。" +396,15,3,"아주 이상한 공간을 만든다. +5턴 동안 움직임이 느린 +포켓몬부터 공격할 수 있다." +396,15,5,"Le lanceur crée une zone étrange où les +Pokémon les plus lents frappent en premier +pendant cinq tours." +396,15,6,"Verzerrt die Raumzeit für 5 Runden. +Langsamere Pokémon greifen zuerst an." +396,15,7,"Abre la puerta de la Central del Valle Eólico. +La llevaba un Recluta del Equipo Galaxia." +396,15,8,"Chi la usa crea una dimensione in cui i Pokémon +più lenti agiscono per primi per cinque turni." +396,15,9,"The user creates a bizarre area in +which slower Pokémon get to move +first for five turns." +396,15,11,"まかふしぎな 空間を つくる。 +5ターンの あいだ +遅い ポケモンから 行動できる。" +397,5,9,"Attacks the foe +with sharp blades +or claws." +397,6,9,"Attacks the foe +with sharp blades +or claws." +397,7,9,"A basic attack. +It can be used to +cut down thin trees +and grass." +397,8,9,"The foe is cut with a scythe or a claw. +It can also be used to cut down thin +trees." +397,9,9,"The foe is cut with a scythe or a claw. +It can also be used to cut down thin +trees." +397,10,9,"The foe is cut with a scythe or a claw. +It can also be used to cut down thin +trees." +397,11,5,"Coupe l’ennemi avec des lames ou des +griffes. Hors combat, permet de couper +des arbres fins." +397,11,9,"The target is cut with a scythe or claw. +It can also be used to cut down thin +trees." +397,14,9,"The target is cut with a scythe or claw. +It can also be used to cut down thin +trees." +397,15,1,"カマや ツメなどの するどいもので +きりつけて こうげきする。 +ほそいきを きることも できる。" +397,15,3,"낫이나 발톱 등 날카로운 것으로 +갈라서 공격한다. +얇은 나무를 자를 수도 있다." +397,15,5,"Coupe l’ennemi avec des lames ou des griffes. +Hors combat, permet de couper des arbres fins." +397,15,6,"Das Ziel wird mit scharfen Klingen attackiert. +Außerhalb des Kampfes werden damit kleine +Bäume gefällt." +397,15,7,"Está hecho con huesos de Pokémon y trae buena +suerte. Hay que llevarlo a la anciana de Pueblo +Caelestis." +397,15,8,"Attacca il nemico con artigli o falci affilate. +Fuori dalla lotta si usa per tagliare piccoli alberi." +397,15,9,"The target is cut with a scythe or claw. +This can also be used to cut down thin trees." +397,15,11,"カマや ツメなどで +相手を 切りつけて 攻撃する。 +細い 樹木も きることが できる。" +398,5,9,"Flies up on the +first turn, then +attacks next turn." +398,6,9,"Flies up on the +first turn, then +attacks next turn." +398,7,9,"A 2-turn move that +hits on the 2nd +turn. Use it to fly +to any known town." +398,8,9,"The user soars, then strikes on the +second turn. It can also be used to +fly to any familiar town." +398,9,9,"The user soars, then strikes on the +second turn. It can also be used to +fly to any familiar town." +398,10,9,"The user soars, then strikes on the +second turn. It can also be used to +fly to any familiar town." +398,11,5,"Le lanceur s’envole au 1er tour et +frappe au 2è. Permet aussi de voler +jusqu’à une ville déjà visitée." +398,11,9,"The user soars, then strikes on the +second turn. It can also be used to +fly to any familiar town." +398,14,9,"The user soars, then strikes on the +second turn. It can also be used to +fly to any familiar town." +398,15,1,"1ターンめで そらへ とびあがって +2ターンめで こうげきする。 +しっているまちに いどうも できる。" +398,15,3,"1턴째에 하늘을 날아올라 +2턴째에 공격한다. +알고 있는 도시로 이동할 수 있다." +398,15,5,"Le lanceur s’envole au premier tour et frappe au +second. Permet aussi de voler jusqu’à une ville +déjà visitée." +398,15,6,"In Runde 1 fliegt der Angreifer empor und +attackiert in Runde 2. Man kann damit zu +jedem bekannten Ort fliegen." +398,15,7,"Desactiva los sistemas de seguridad de la Base +Galaxia. Por lo visto, perder esta tarjeta se +castiga severamente." +398,15,8,"Chi la usa si alza in volo per attaccare al turno +seguente. Fuori dalla lotta permette di volare +in città già visitate." +398,15,9,"The user soars and then strikes +its target on the next turn. This can +also be used to fly to any familiar town." +398,15,11,"1ターン目で 空へ 飛び +2ターン目に 相手を 攻撃する。 +知っている 街に 移動も できる。" +399,5,9,"Creates a huge +wave, then crashes +it down on the foe." +399,6,9,"Creates a huge +wave, then crashes +it down on the foe." +399,7,9,"A big wave crashes +down on the foe. +Can also be used +for crossing water." +399,8,9,"It swamps the entire battlefield with +a giant wave. It can also be used +to cross water." +399,9,9,"It swamps the entire battlefield with +a giant wave. It can also be used +to cross water." +399,10,9,"It swamps the entire battlefield with +a giant wave. It can also be used +to cross water." +399,11,5,"Une énorme vague s’abat sur le +champ de bataille. Permet aussi +de voyager sur l’eau." +399,11,9,"It swamps the area around the user +with a giant wave. +It can also be used for crossing water." +399,14,9,"It swamps the area around the user +with a giant wave. +It can also be used for crossing water." +399,15,1,"おおきな なみで じぶんの まわりに +いるものを こうげきする。 +みずのうえを すすむことも できる。" +399,15,3,"큰 파도를 일으켜서 자신의 +주위에 있는 포켓몬을 공격한다. +물 위를 나아갈 수도 있다." +399,15,5,"Une énorme vague s’abat sur le champ de +bataille. Permet aussi de voyager sur l’eau." +399,15,6,"Eine riesige Flutwelle ergießt sich über das nähere +Umfeld des Anwenders. Ermöglicht das Surfen auf +dem Wasser." +399,15,7,"Se dice que esta cadena mítica está relacionada +con el Pokémon legendario que creó la región de +Sinnoh." +399,15,8,"Un’onda enorme sommerge il campo di lotta, +colpendo tutti i Pokémon intorno a chi la scatena. +Fuori dalla lotta si usa per spostarsi sull’acqua." +399,15,9,"The user attacks everything around it by +swamping its surroundings with a giant wave. +This can also be used for crossing water." +399,15,11,"大きな 波で 自分の 周りに +いるものを 攻撃する。 +水上も 泳いで 進める。" +400,5,9,"Builds enormous +power, then slams +the foe." +400,6,9,"Builds enormous +power, then slams +the foe." +400,7,9,"The foe is slugged +at maximum power. +Can also be used +to move boulders." +400,8,9,"The foe is slugged with a punch thrown +at maximum power. It can also be used +to move boulders." +400,9,9,"The foe is slugged with a punch thrown +at maximum power. It can also be used +to move boulders." +400,10,9,"The foe is slugged with a punch thrown +at maximum power. It can also be used +to move boulders." +400,11,5,"Le lanceur cogne l’ennemi de toutes +ses forces. Permet aussi de déplacer +des rochers." +400,11,9,"The target is slugged with a punch +thrown at maximum power. This move can +also be used to move boulders." +400,14,9,"The target is slugged with a punch +thrown at maximum power. This move can +also be used to move boulders." +400,15,1,"こんしんの ちからで こうげきする。 +おもいいわを おすことも できる。 +" +400,15,3,"혼신의 힘으로 공격한다. +무거운 바위를 밀 수도 있다." +400,15,5,"Le lanceur cogne l’ennemi de toutes ses forces. +Permet aussi de déplacer des rochers." +400,15,6,"Ein energiegeladener Kraftschlag trifft das Ziel. +Außerdem lassen sich mit der Attacke schwere +Felsen bewegen." +400,15,7,"Un mapa muy útil que puede consultarse en +cualquier momento y que, además, te indica +dónde te encuentras." +400,15,8,"Colpisce il nemico con un’enorme energia. +Fuori dalla lotta si usa per spostare i massi." +400,15,9,"The target is slugged with a punch thrown +at maximum power. This can also be used +to move heavy boulders." +400,15,11,"ありったけの 力で +相手を なぐりつけて 攻撃する。 +重たい 岩を 押すことも できる。" +401,5,9,"Looses a powerful +blast of light that +reduces accuracy." +401,6,9,"Looses a powerful +blast of light that +reduces accuracy." +401,7,9,"A blast of light +that cuts the foe’s +accuracy. It also +illuminates caves." +401,8,9,"Obstacles are moved, reducing the +foe’s evasion stat. It can also be +used to clear deep fog." +401,9,9,"Obstacles are moved, reducing the +foe’s evasion stat. It can also be +used to clear deep fog." +401,10,9,"Traps foes in a violent swirling +whirlpool. It can also be used to +traverse whirlpools." +401,11,5,"Le lanceur charge l’ennemi à une +vitesse remarquable. Permet aussi +de franchir une cascade." +401,11,9,"The user charges the target at an +awesome speed. It can also be used +to climb a waterfall." +401,14,9,"The user charges the target at an +awesome speed. It can also be used +to climb a waterfall." +401,15,1,"たきを さかのぼるような すさまじい +いきおいで とっしん こうげきする。 +たきを のぼることも できる。" +401,15,3,"폭포를 거꾸로 오르는 듯한 +엄청난 기세로 돌진하여 공격한다. +폭포를 오를 수도 있다." +401,15,5,"Le lanceur charge l’ennemi à une vitesse +remarquable. Permet aussi de franchir une +cascade." +401,15,6,"Eine mächtige Attacke, die das Ziel eventuell +zurückschrecken lässt. Sie macht Wasserfälle +bezwingbar." +401,15,7,"Dispositivo que busca Entrenadores listos para el +combate. La batería se carga mientras caminas." +401,15,8,"Carica il nemico a grande velocità e può farlo +tentennare. +Fuori dalla lotta fa risalire le cascate." +401,15,9,"The user charges at the target and may make it +flinch. This can also be used to climb a waterfall." +401,15,11,"すごい 勢いで 相手に つっこみ +攻撃する。流れ落ちる 滝も +泳いで のぼれる。" +402,5,9,"A rock-crushingly +tough attack that +may lower DEFENSE." +402,6,9,"A rock-crushingly +tough attack that +may lower DEFENSE." +402,7,9,"An attack that may +also cut DEFENSE. +It can also smash +cracked boulders." +402,8,9,"The user slugs the foe with a +shattering punch. It can also smash +cracked boulders." +402,9,9,"The user slugs the foe with a +shattering punch. It can also smash +cracked boulders." +402,10,9,"The user slugs the foe with a +shattering punch. It can also smash +cracked boulders." +402,11,5,"Le lanceur plonge sous l’eau au +1er tour et frappe au 2è. Permet +aussi de plonger au fond de l’eau." +402,11,9,"Diving on the first turn, the user +floats up and attacks on the second. +It can be used for diving in the ocean." +402,14,9,"Diving on the first turn, the user +floats up and attacks on the second. +It can be used for diving in the ocean." +402,15,1,"1ターンめで もぐり 2ターンめに +うきあがって こうげきする。うみの +なかに もぐる ことも できる。" +402,15,3,"1턴째에 잠수했다가 2턴째에 +떠올라 공격한다. +바닷속 깊숙이 잠수할 수도 있다." +402,15,5,"Le lanceur plonge sous l’eau au premier tour et +frappe au second." +402,15,6,"Taucht in Runde 1 ab und greift in Runde 2 +aus der Tiefe an. Ermöglicht Tauchgänge zum +Meeresgrund." +402,15,7,"Puedes obtenerlo en el Casino. Tiene capacidad +para 50 000 Fichas." +402,15,8,"Chi la usa si tuffa in acqua per emergere e +attaccare al turno seguente." +402,15,9,"Diving on the first turn, the user floats +up and attacks on the next turn." +402,15,11,"1ターン目で 潜り 2ターン目に +浮きあがって 攻撃する。 +海の 奥深くに 潜ることも できる。" +403,5,9,"Attacks the foe +with enough power +to climb waterfalls." +403,6,9,"Attacks the foe +with enough power +to climb waterfalls." +403,7,9,"A powerful charge +attack. It can also +be used to climb +a waterfall." +403,8,9,"The user charges the foe at an +awesome speed. It can also be used +to climb a waterfall." +403,9,9,"The user charges the foe at an +awesome speed. It can also be used +to climb a waterfall." +403,10,9,"The user charges the foe at an +awesome speed. It can also be used +to climb a waterfall." +404,5,9,"Dives underwater +the 1st turn, then +attacks next turn." +404,6,9,"Dives underwater +the 1st turn, then +attacks next turn." +404,7,9,"The user dives +underwater on the +first turn and +strikes next turn." +404,8,9,"A charging attack that may also leave +the foe confused. It can also be used +to scale rocky walls." +404,9,9,"A charging attack that may also leave +the foe confused. It can also be used +to scale rocky walls." +404,10,9,"A charging attack that may also leave +the foe confused. It can also be used +to scale rocky walls." +405,8,9,"A bag filled with convenient tools +for exploring. It provides access to +the Underground." +405,9,9,"A bag filled with convenient tools +for exploring. It provides access to +the Underground." +405,11,5,"Sac contenant des objets utiles +à l’exploration. Permet d’entrer +dans le Souterrain." +405,11,9,"A bag filled with convenient tools +for exploring. It provides access to +the Underground." +405,14,9,"A bag filled with convenient tools +for exploring. It provides access to +the Underground." +405,15,1,"たんけんに やくだつ べんりな +どうぐが はいった ふくろ。 +ちかつうろに はいれる。" +405,15,3,"탐험에 도움이 되는 편리한 +도구가 들어 있는 주머니. +지하통로에 들어갈 수 있다." +405,15,5,"Un sac contenant des objets utiles à l’exploration. +Permet d’entrer dans le Souterrain." +405,15,6,"Ein Sack voller hilfreicher Items für +Erkundungsgänge. Öffnet den Untergrund." +405,15,7,"Increíble caña de pescar de alta tecnología. +Pesca Pokémon salvajes en todo tipo de aguas." +405,15,8,"Utilissimo kit contenente strumenti per +l’esplorazione. Permette di percorrere +i tunnel sotterranei." +405,15,9,"A bag filled with convenient tools for +exploring. It provides access to the +Underground in the Sinnoh region." +405,15,11,"探検に 役立つ 便利な +道具が はいった ふくろ。 +地下通路に はいれる。" +406,8,9,"A sturdy, spacious bag that is used +to carry loot obtained in the coal +mine." +406,9,9,"A sturdy, spacious bag that is used +to carry loot obtained in the coal +mine." +406,10,9,"A sturdy, spacious bag that is used +to carry loot obtained in the coal +mine." +406,11,5,"Grand sac robuste utilisé pour +transporter le butin obtenu dans +la mine de charbon." +406,11,9,"A sturdy, spacious bag that is used +to carry loot obtained in the coal +mine." +406,14,9,"A sturdy, spacious bag that is used +to carry loot obtained in the coal +mine." +406,15,1,"たんこうで てにいれた +たからものを しまっておける +おおきくて じょうぶな ふくろ。" +406,15,3,"탄갱에서 손에 넣은 +보물을 보관해둘 수 있는 +크고 튼튼한 주머니다." +406,15,5,"Un grand sac robuste utilisé pour transporter +le butin obtenu dans la mine de charbon." +406,15,6,"Ein fester Sack. Wird verwendet, um Beute +aus der Kohlemine zu transportieren." +406,15,7,"Una regadera con forma de Psyduck. Ayuda a +que las bayas plantadas en suelo fértil crezcan +mejor." +406,15,8,"Una sacca spaziosa e resistente usata per +trasportare il bottino ottenuto nella miniera." +406,15,9,"A sturdy, spacious bag that is +used to carry any treasures or +loot obtained in the coal mine." +406,15,11,"炭鉱で てにいれた +宝物を しまっておける +おおきくて 丈夫な ふくろ。" +407,8,9,"It lists the rules for holding battles. +For linked battles, you may choose +which set of rules you wish to use." +407,9,9,"It lists the rules for holding battles. +For linked battles, you may choose +which set of rules you wish to use." +407,10,9,"It lists the rules for holding battles. +For linked battles, you may choose +which set of rules you wish to use." +407,11,5,"La liste des règles de combat. Vous +pouvez choisir les règles des combats +en Link." +407,11,9,"It lists the rules for holding battles. +For linked battles, you may choose +which set of rules you wish to use." +407,14,9,"It lists the rules for holding battles. +For linked battles, you may choose +which set of rules you wish to use." +407,15,1,"たいせんの ルールが かかれている。 +つうしんたいせん するとき +ルールを えらぶことが できる。" +407,15,3,"대전에 대한 룰이 적혀 있다. +통신대전을 할 때 +룰을 선택할 수 있다." +407,15,5,"La liste des règles de combat. +Vous pouvez choisir les règles des combats +en Link." +407,15,6,"Enthält die Kampfregeln. Bei Link-Kämpfen kannst +du daraus die gewünschten Regeln wählen." +407,15,7,"Caja en la que se transportan los Pokochos +elaborados con bayas." +407,15,8,"Elenca le regole per le lotte. Nelle lotte in link +puoi scegliere diversi set di regole da utilizzare." +407,15,9,"It lists the rules for holding battles. +For Link Battles, you may choose +which set of rules you wish to use." +407,15,11,"対戦の ルールが かかれている。 +通信対戦するとき +ルールを 選ぶことが できる。" +408,8,9,"A tool that can search out Pokémon +that are hiding in grass. Its battery is +recharged as you walk." +408,9,9,"A tool that can search out Pokémon +that are hiding in grass. Its battery is +recharged as you walk." +408,10,9,"A tool that can search out Pokémon +that are hiding in grass. Its battery is +recharged as you walk." +408,11,5,"Objet permettant de trouver les +Pokémon qui se cachent dans l’herbe. +Se recharge quand vous marchez." +408,11,9,"A tool that can search out Pokémon +that are hiding in grass. Its battery is +recharged as you walk." +408,14,9,"A tool that can search out Pokémon +that are hiding in grass. Its battery is +recharged as you walk." +408,15,1,"くさむらに かくれている ポケモンを +さがしだせる どうぐ。 +あるくと でんちが たまる。" +408,15,3,"풀밭에 숨어 있는 포켓몬을 +찾아내는 도구. +걸으면 전지가 충전된다." +408,15,5,"Un objet permettant de trouver les Pokémon qui +se cachent dans l’herbe. Se recharge quand vous +marchez." +408,15,6,"Spürt Pokémon im hohen Gras auf. +Die Batterie wird beim Reisen aufgeladen." +408,15,7,"Bicicleta plegable con la que se va más rápido +que corriendo." +408,15,8,"Strumento con cui individuare i Pokémon +nascosti nell’erba. La batteria si ricarica +mentre cammini." +408,15,9,"A tool that can search out Pokémon +that are hiding in the tall grass. Its +battery is recharged as you walk." +408,15,11,"くさむらに 隠れている ポケモンを +探しだせる 道具。 +歩くと 電池が たまる。" +409,8,9,"A card that lists the Battle Points +you have earned. +" +409,9,9,"A card that lists the Battle Points +you have earned. +" +409,10,9,"A card that lists the Battle Points +you have earned. +" +409,11,5,"Carte indiquant le nombre de Points +de Combat obtenus." +409,11,9,"A card that lists the Battle Points +you have earned. +" +409,14,9,"A card that lists the Battle Points +you have earned. +" +409,15,1,"かちとった バトルポイントの かずを +みることが できる カード。 +" +409,15,3,"이겨서 받은 배틀포인트 수를 +볼 수 있는 카드." +409,15,5,"Une carte indiquant le nombre de Points de +Combat obtenus." +409,15,6,"Auf dieser Karte werden deine bisher +gesammelten Gewinnpunkte festgehalten." +409,15,7,"Llave de una suite del hotel de lujo junto al lago. +Por algún motivo, se pierde a menudo." +409,15,8,Scheda che elenca i Punti Lotta che hai ottenuto. +409,15,9,"A card that lists how many +Battle Points you have earned." +409,15,11,"勝ち取った バトルポイントの 数を +みることが できる カード。 +" +410,8,9,"A notebook that keeps a day-to-day +record of your adventure so far. +" +410,9,9,"A notebook that keeps a day-to-day +record of your adventure so far. +" +410,10,9,"A notebook that keeps a day-to-day +record of your adventure so far. +" +410,11,5,"Journal de bord qui garde en mémoire +vos aventures quotidiennes." +410,11,9,"A notebook that keeps a day-to-day +record of your adventure so far. +" +410,14,9,"A notebook that keeps a day-to-day +record of your adventure so far. +" +410,15,1,"これまでの ぼうけんの ようすが +きろく されている ノート。 +" +410,15,3,"지금까지의 모험 상황이 +기록되어 있는 노트." +410,15,5,"Un journal de bord qui garde en mémoire vos +aventures quotidiennes." +410,15,6,"In diesem Tagebuch steht, was du +in den letzten Tagen erlebt hast." +410,15,7,"Carta del Profesor Oak en la que se te pide que +vayas a la Ruta 224." +410,15,8,"Diario in cui viene annotata la tua avventura +giorno per giorno." +410,15,9,"A notebook that keeps a day-to-day +record of your adventure so far." +410,15,11,"これまでの 冒険の 様子が +記録 されている ノート。 +" +411,8,9,"A case for storing Seals that can be +applied to the capsule cases of Poké +Balls." +411,9,9,"A case for storing Seals that can be +applied to the capsule cases of Poké +Balls." +411,10,9,"A case for storing Seals that can be +applied to the Capsule cases of +Poké Balls." +411,11,5,"Boîte contenant les Sceaux pouvant +être placés sur les capsules des +Poké Balls." +411,11,9,"A case for storing Seals that can be +applied to the Capsule cases of +Poké Balls." +411,14,9,"A case for storing Seals that can be +applied to the Capsule cases of +Poké Balls." +411,15,1,"ボールカプセルに はりつけられる +シールが はいった いれもの。 +" +411,15,3,"볼캡슐에 붙일 수 있는 +실이 들어 있는 용기." +411,15,5,"Une boîte contenant les Sceaux pouvant être +placés sur les capsules des Poké Balls." +411,15,6,"In diesem Koffer kannst du die Sticker für +die Ballkapseln der Pokébälle aufbewahren." +411,15,7,"Pluma que brilla como la luna. Se dice que tiene +el poder de disipar pesadillas." +411,15,8,"Contenitore per conservare i Bolli che possono +essere applicati sulle Capsule delle Poké Ball." +411,15,9,"A case for storing Seals that can be +applied to the exteriors of Poké Balls." +411,15,11,"ボールカプセルに はりつけられる +シールが はいった いれもの。 +" +412,8,9,"A fancy case for the tidy and +organized storage of colorful Pokémon +Accessories." +412,9,9,"A fancy case for the tidy and +organized storage of colorful Pokémon +Accessories." +412,10,9,"A fancy case for the tidy arrangement +and storage of whimsical Pokémon +Accessories." +412,11,5,"Boîte permettant de ranger +les Parures pour habiller les +Pokémon au Music-Hall." +412,11,9,"A lovely case to store colorful Props +for your Pokémon to wear in a musical." +412,14,9,"A lovely case to store colorful Props +for your Pokémon to wear in a musical." +412,15,1,"ミュージカルで ポケモンに つける +いろとりどりの グッズを たくさん +しまえる きれいで すてきなケース。" +412,15,3,"뮤지컬에서 포켓몬에게 다는 +각양각색의 굿즈를 많이 +넣을 수 있는 아름답고 멋진 케이스." +412,15,5,"Une boîte permettant de ranger les Parures pour +habiller les Pokémon au Music-Hall." +412,15,6,"Ein schicker Koffer mit Platz für alle +im Musical benötigten Deko-Artikel +deiner Pokémon. Da knittert nichts." +412,15,7,"Necesario para entrar en la posada de Ciudad +Canal. Es extraño, pero la última fecha registrada +es de hace 50 años." +412,15,8,"Scatola bella ed elegante per conservare i gadget +usati per agghindare i Pokémon durante +il Pokémon Musical." +412,15,9,"A lovely case to store colorful Props +for your Pokémon to wear in a musical." +412,15,11,"ミュージカルで ポケモンに つける +いろとりどりの グッズを たくさん +しまえる きれいで すてきなケース。" +413,8,9,"A tiny bag that can hold ten Seals for +decorating Poké Balls." +413,9,9,"A tiny bag that can hold ten Seals for +decorating Poké Balls." +413,10,9,"A tiny bag that can hold ten Seals for +decorating Poké Balls." +413,11,5,"Petit sac pouvant contenir dix Sceaux +pour décorer les Poké Balls." +413,11,9,"A tiny bag that can hold ten Seals for +decorating Poké Balls." +413,14,9,"A tiny bag that can hold 10 Seals for +decorating Poké Balls." +413,15,1,"シールが 10まい いれられる +ちっちゃな ふくろ。 +" +413,15,3,"실이 10장 들어가는 +작은 주머니." +413,15,5,"Un petit sac pouvant contenir dix Sceaux pour +décorer les Poké Balls." +413,15,6,"Ein kleines Tütchen. Es bietet Platz für bis zu +10 Sticker für die Pokébälle." +413,15,7,"Emite sonidos que no parecen de este mundo. +Es de fabricante desconocido." +413,15,8,"Sacchettino che può contenere dieci Bolli per +decorare le Poké Ball." +413,15,9,"A tiny bag that can hold 10 Seals +for decorating Poké Balls." +413,15,11,"シールが 10枚 いれられる +ちっちゃな ふくろ。 +" +414,8,9,"A convenient notepad that is used for +registering your friends and keeping a +record of game play." +414,9,9,"A convenient notepad that is used for +registering your friends, Friend Codes, +and keeping a record of game play." +414,10,9,"A convenient notepad that is used for +registering your friends, Friend Codes, +and keeping a record of game play." +414,11,5,"Un carnet bien pratique pour +enregistrer vos amis, les codes +ami et des données de jeu." +414,11,9,"A convenient notepad that is used for +registering your friends, Friend Codes, +and keeping a record of game play." +414,14,9,"A convenient notepad that is used for +registering your friends, Friend Codes, +and keeping a record of game play." +414,15,1,"ともだちを とうろくしたり +あそんだ ことを きろくする +べんりな てちょう。" +414,15,3,"친구를 등록하거나 +친구와 놀았던 기록을 관리하는 +편리한 수첩." +414,15,5,"Un carnet bien pratique pour enregistrer vos amis, +les codes ami et des données de jeu." +414,15,6,"In diesem praktischen Buch kannst du die +Freundescodes deiner Freunde aufbewahren." +414,15,7,"Es el billete válido para embarcar en el +Ferry S.S. Aqua. Tiene dibujado un barco." +414,15,8,"Blocco appunti utile per registrare gli amici e +il loro codice amico e per tenere un resoconto +dell’esperienza di gioco." +414,15,9,"A convenient notepad that is used to +register your Friends and friend codes +and keep a record of your gameplay." +414,15,11,"友達を 登録したり +遊んだことを 記録する +便利な 手帳。" +415,8,9,"A large key for operating the doors of +the Valley Windworks in the canyon. +It was held by a Team Galactic Grunt." +415,9,9,"A large key for operating the doors of +the Valley Windworks in the canyon. +It was held by a Team Galactic Grunt." +415,10,9,"A large key for operating the doors of +the Valley Windworks in the canyon. +It was held by a Team Galactic Grunt." +415,11,5,"Grande clé servant à ouvrir la porte +de la centrale Les Éoliennes du canyon. +Un sbire de la Team Galaxie la détenait." +415,11,9,"A large key for operating the doors of +the Valley Windworks in the canyon. +It was held by a Team Galactic Grunt." +415,14,9,"A large key for operating the doors of +the Valley Windworks in the canyon. +It was held by a Team Galactic Grunt." +415,15,1,"たにまのはつでんしょの とびらを +あけしめする おおきな カギ。 +なぜか ギンガだんが もっていた。" +415,15,3,"골짜기발전소의 문을 여닫는 큰 열쇠. +어찌된 영문인지 +갤럭시단이 지니고 있었다." +415,15,5,"Une grande clé servant à ouvrir la porte de la +centrale Les Éoliennes du canyon. +Un sbire de la Team Galaxie la détenait." +415,15,6,"Ein großer Schlüssel, der zum Windkraftwerk +gehört. Einer der Rüpel von Team Galaktik +hatte ihn im Besitz." +415,15,7,"Es necesario para participar en Concursos +Pokémon. Tiene una Cinta de ganador dibujada." +415,15,8,"Grande chiave usata per azionare la porta +dell’Impianto Turbine. L’aveva con sé una +Recluta del Team Galassia." +415,15,9,"A large key for operating the doors of +the Valley Windworks in the canyon. +It was held by a Team Galactic Grunt." +415,15,11,"谷間の発電所の 扉を +あけしめする おおきな カギ。 +なぜか ギンガ団が 持っていた。" +416,8,9,"An ancient good-luck charm made of +Pokémon bones to be taken to the elder +of Celestic Town." +416,9,9,"An ancient good-luck charm made of +Pokémon bones to be taken to the elder +of Celestic Town." +416,10,9,"An ancient good-luck charm made of +Pokémon bones to be taken to the elder +of Celestic Town." +416,11,5,"Un ancien porte-bonheur fait d’os de +Pokémon à porter à la doyenne de +Célestia." +416,11,9,"An ancient good-luck charm made of +Pokémon bones to be taken to the elder +of Celestic Town." +416,14,9,"An ancient good-luck charm made of +Pokémon bones to be taken to the elder +of Celestic Town." +416,15,1,"カンナギタウンの ちょうろうに +とどける おおむかしの おまもり。 +ポケモンの ホネで つくられている。" +416,15,3,"봉신마을의 장로에게 +전해줄 오랜 옛날의 부적. +포켓몬의 뼈로 만들어졌다." +416,15,5,"Un ancien porte-bonheur fait d’os de Pokémon +à porter à la doyenne de Célestia." +416,15,6,"Ein antiker Glücksbringer. Soll der +Ältesten in Elyses überbracht werden." +416,15,7,"Formada a partir de magma enfriado y endurecido. +Aún hay magma líquido en su interior." +416,15,8,"Antico portafortuna fatto di ossa di Pokémon +da portare all’anziana di Memoride." +416,15,9,"An ancient good-luck charm made +of Pokémon bones to be taken to +the elder of Celestic Town." +416,15,11,"カンナギタウンの 長老に +届ける 大昔の おまもり。 +ポケモンの ホネで つくられている。" +417,8,9,"A card key for disengaging security +systems in the Galactic HQ. Losing it +can result in punishment, apparently." +417,9,9,"A card key for disengaging security +systems in the Galactic HQ. Losing it +can result in punishment, apparently." +417,10,9,"A card key for disengaging security +systems in the Galactic HQ. Losing it +can result in punishment, apparently." +417,11,5,"Clé magnétique servant à désactiver les +systèmes de sécurité du QG Galaxie. +La perdre entraîne une punition." +417,11,9,"A card key for disengaging security +systems in the Galactic HQ. Losing it +can result in punishment, apparently." +417,14,9,"A card key for disengaging security +systems in the Galactic HQ. Losing it +can result in punishment, apparently." +417,15,1,"ギンガだんアジトの セキュリティを +かいじょ するための カードキー。 +なくすと おしおき されるらしい。" +417,15,3,"갤럭시단아지트의 보안을 +해제하기 위한 카드키다. +잃어버리면 벌을 받는 듯하다." +417,15,5,"Une clé magnétique servant à désactiver +les systèmes de sécurité du QG Galaxie. +La perdre entraîne une punition." +417,15,6,"Dieser Türöffner deaktiviert die Sicherheits- +systeme im Hauptquartier von Team Galaktik." +417,15,7,"Paquete encomendado a tu cuidado que tienes +que entregar a tu amigo de la infancia que dejó +Pueblo Hojaverde." +417,15,8,"Chiave a scheda per disattivare i sistemi +di sicurezza nella Sede Galassia. Se la si perde, +si viene puniti." +417,15,9,"A card key for disengaging the security +systems in the Galactic HQ. Losing it +can result in punishment, apparently." +417,15,11,"ギンガ団アジトの セキュリティを +解除するための カードキー。 +なくすと おしおき されるらしい。" +418,8,9,"A mythical chain that is said to link +the legendary Pokémon that created +the Sinnoh region." +418,9,9,"A mythical chain that is said to link +the legendary Pokémon that created +the Sinnoh region." +418,10,9,"A mythical chain that is said to link +the legendary Pokémon that created +the Sinnoh region." +418,11,5,"Chaîne mystique qui serait reliée au +Pokémon légendaire ayant créé la +région de Sinnoh." +418,11,9,"A mythical chain that is said to link +the legendary Pokémon that created +the Sinnoh region." +418,14,9,"A mythical chain that is said to link +the legendary Pokémon that created +the Sinnoh region." +418,15,1,"シンオウちほうを うみだした +でんせつの ポケモンを つなぐと +いわれる しんわの どうぐ。" +418,15,3,"신오지방을 만들어낸 +전설의 포켓몬과 이어진다고 +전해지는 신화의 도구." +418,15,5,"Une chaîne mystique qui serait reliée au +Pokémon légendaire ayant créé la région +de Sinnoh." +418,15,6,"Diese mythische Kette ist angeblich die +Verbindung zu einem Legendären Pokémon." +418,15,7,"Uno de los tres cupones que sirve para obtener +un Poké-reloj." +418,15,8,"Catena mitica che pare essere collegata +al Pokémon leggendario che ha creato +la regione di Sinnoh." +418,15,9,"A mythical chain that is said to link +the Legendary Pokémon that created +the Sinnoh region." +418,15,11,"シンオウ地方を うみだした +伝説の ポケモンを つなぐと +いわれる 神話の 道具。" +419,6,9,"Can be viewed +anytime. Shows your +present location." +419,7,9,"A very convenient map that can be +viewed anytime. It even shows your +present location." +419,8,9,"A very convenient map that can be +viewed anytime. It even shows your +present location." +419,9,9,"A very convenient map that can be +viewed anytime. It even shows your +present location." +419,10,9,"A very convenient map that can be +viewed anytime. It even shows your +present location." +419,11,5,"Une carte très pratique pouvant +être consultée n’importe quand. Elle +indique votre position actuelle." +419,11,9,"A very convenient map that can be +viewed anytime. It even shows your +present location." +419,14,9,"A very convenient map that can be +viewed anytime. It even shows your +present location." +419,15,1,"いつでも てがるに みることが +できる べんりな ちず。 +じぶんの ばしょも わかる。" +419,15,3,"언제라도 간편하게 볼 수 +있는 편리한 지도. +자신이 있는 곳도 알 수 있다." +419,15,5,"Une carte très pratique pouvant être consultée +n’importe quand. Elle indique votre position +actuelle." +419,15,6,"Eine praktische Karte, die jederzeit aufgerufen +werden kann. Dein aktueller Standort wird auch +angezeigt." +419,15,7,"Uno de los tres cupones que sirve para obtener +un Poké-reloj." +419,15,8,"Utilissima mappa, consultabile in ogni situazione. +Mostra anche la propria posizione in tempo reale." +419,15,9,"A very convenient map that can be +viewed anytime. It even shows you +your present location in the region." +419,15,11,"いつでも 手軽に みることが +できる 便利な 地図。 +自分の 場所も わかる。" +420,6,9,"A rechargeable unit +that flags battle- +ready TRAINERS." +420,7,9,"A device that indicates TRAINERS +who want to battle. The battery +charges while traveling." +420,8,9,"A device that indicates Trainers who +want to battle. Its battery charges +while you walk." +420,9,9,"A device that indicates Trainers who +want to battle. Its battery charges +while you walk." +420,10,9,"A device that indicates Trainers who +want to battle. Its battery charges +while you walk." +420,11,5,"Un appareil indiquant les Dresseurs +prêts à se battre. La batterie se +recharge quand vous marchez." +420,11,9,"A device that indicates Trainers who +want to battle. Its battery charges +while you walk." +420,14,9,"A device that indicates Trainers who +want to battle. Its battery charges +while you walk." +420,15,1,"たたかいたい トレーナーを +おしえてくれる きかい。 +あるくと でんちが たまる。" +420,15,3,"싸우고 싶어하는 트레이너를 +알려주는 기계. +걸으면 전지가 충전된다." +420,15,5,"Un appareil indiquant les Dresseurs prêts à +se battre. La batterie se recharge quand vous +marchez." +420,15,6,"Ein Gerät, das rückkampfwillige Trainer ausfindig +macht. Die Batterie lädt sich beim Reisen auf." +420,15,7,"Uno de los tres cupones que sirve para obtener +un Poké-reloj." +420,15,8,"Apparecchio per trovare gli Allenatori che +vogliono lottare. La batteria si ricarica +camminando." +420,15,9,"A device that indicates Trainers who +want to battle. Its battery charges +while you walk." +420,15,11,"戦いたい トレーナーを +教えてくれる 機械。 +歩くと 電池が たまる。" +421,5,9,"A case that holds +up to 9,999 COINS." +421,6,9,"A case that holds +up to 9,999 COINS." +421,7,9,"A case for holding COINS obtained +at the GAME CORNER. +It holds up to 9,999 COINS." +421,8,9,"A case for holding Coins obtained at +the Game Corner. +It holds up to 50,000 Coins." +421,9,9,"A case for holding Coins obtained at +the Game Corner. +It holds up to 50,000 Coins." +421,10,9,"A case for holding coins obtained at +the Game Corner. +It holds up to 50,000 coins." +421,11,5,"Une boîte pour conserver les Jetons +obtenus au Casino. +Peut contenir jusqu’à 50 000 Jetons." +421,11,9,"A case for holding coins obtained at +the Game Corner. +It holds up to 50,000 coins." +421,14,9,"A case for holding coins obtained at +the Game Corner. +It holds up to 50,000 coins." +421,15,1,"ゲームコーナーで てにいれた +コインを 50000まい まで +いれることが できる ケース。" +421,15,3,"게임코너에서 손에 넣은 +동전을 50000개 까지 +넣을 수 있는 케이스." +421,15,5,"Une boîte pour conserver les Jetons obtenus +au Casino. Peut contenir jusqu’à 50 000 Jetons." +421,15,6,"Im Korb finden bis zu 50 000 Münzen +der Spielhalle Platz." +421,15,7,"Llave del siniestro almacén del Equipo Galaxia +que está ubicado en las afueras de Ciudad +Rocavelo." +421,15,8,"Contenitore ottenuto al Casinò che può +contenere fino a 50.000 Gettoni." +421,15,9,"A case for holding coins obtained +at the Game Corner. It can hold up +to 50,000 coins." +421,15,11,"ゲームコーナーで てにいれた +コインを 50000枚まで +いれることが できる ケース。" +422,5,9,"Use by any body of +water to fish for +wild POKéMON." +422,6,9,"Use by any body of +water to fish for +wild POKéMON." +422,7,9,"An old and beat-up fishing rod. +Use it by any body of water to +fish for wild POKéMON." +422,8,9,"An old and beat-up fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +422,9,9,"An old and beat-up fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +422,10,9,"An old and beat-up fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +422,11,5,"Une vieille canne usée. Utilisez-la pour +pêcher des Pokémon sauvages dans +les points d’eau." +422,11,9,"An old and beat-up fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +422,14,9,"An old and beat-up fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +422,15,1,"ふるくて ボロい つりざお。 +みずの ある ばしょで つかうと +ポケモンが つれる。" +422,15,3,"낡고 조잡한 낚싯대. +물이 있는 장소에서 사용하면 +포켓몬을 낚을 수 있다." +422,15,5,"Une vieille canne usée. +Utilisez-la pour pêcher des Pokémon sauvages +dans les points d’eau." +422,15,6,"Eine alte, abgenutzte Angel. Damit kannst du +in jedem Gewässer nach Pokémon angeln." +422,15,7,"Fantástico medicamento vendido en la farmacia +de Ciudad Orquídea. Cura completamente a un +Pokémon." +422,15,8,"Amo vecchio e rovinato. Si usa per pescare +Pokémon selvatici in qualsiasi specchio d’acqua." +422,15,9,"An old and beat-up fishing rod. +Use it at any body of water to +fish for wild aquatic Pokémon." +422,15,11,"ふるくて ボロい つりざお。 +水の ある 場所で 使うと +ポケモンが つれる。" +423,5,9,"A decent fishing +rod for catching +wild POKéMON." +423,6,9,"A decent fishing +rod for catching +wild POKéMON." +423,7,9,"A new, good-quality fishing rod. +Use it by any body of water to +fish for wild POKéMON." +423,8,9,"A new, good-quality fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +423,9,9,"A new, good-quality fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +423,10,9,"A new, good-quality fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +423,11,5,"Une canne neuve et de bonne qualité. +Utilisez-la pour pêcher des Pokémon +sauvages dans les points d’eau." +423,11,9,"A new, good-quality fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +423,14,9,"A new, good-quality fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +423,15,1,"あたらしくて いい つりざお。 +みずの ある ばしょで つかうと +ポケモンが つれる。" +423,15,3,"새로 나온 좋은 낚싯대. +물이 있는 장소에서 사용하면 +포켓몬을 낚을 수 있다." +423,15,5,"Une canne neuve et de bonne qualité. +Utilisez-la pour pêcher des Pokémon sauvages +dans les points d’eau." +423,15,6,"Eine recht gute Angel. Damit kannst du +in jedem Gewässer nach Pokémon angeln." +423,15,7,"Un fantástico dispositivo que graba combates +entre amigos o celebrados en algún recinto +especial." +423,15,8,"Amo nuovo e di qualità. Si usa per pescare +Pokémon selvatici in qualsiasi specchio d’acqua." +423,15,9,"A new, good-quality fishing rod. +Use it at any body of water to +fish for wild aquatic Pokémon." +423,15,11,"あたらしくて いい つりざお。 +水の ある 場所で 使うと +ポケモンが つれる。" +424,5,9,"The best fishing +rod for catching +wild POKéMON." +424,6,9,"The best fishing +rod for catching +wild POKéMON." +424,7,9,"An awesome, high-tech fishing rod. +Use it by any body of water to fish +for wild POKéMON." +424,8,9,"An awesome, high-tech fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +424,9,9,"An awesome, high-tech fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +424,10,9,"An awesome, high-tech fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +424,11,5,"Une canne à pêche ultramoderne. +Utilisez-la pour pêcher des Pokémon +sauvages dans les points d’eau." +424,11,9,"An awesome, high-tech fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +424,14,9,"An awesome, high-tech fishing rod. +Use it by any body of water to fish for +wild aquatic Pokémon." +424,15,1,"さいしんの すごい つりざお。 +みずの ある ばしょで つかうと +ポケモンが つれる。" +424,15,3,"최신식의 대단한 낚싯대. +물이 있는 장소에서 사용하면 +포켓몬을 낚을 수 있다." +424,15,5,"Une canne à pêche ultramoderne. +Utilisez-la pour pêcher des Pokémon sauvages +dans les points d’eau." +424,15,6,"Eine wundervoll gefertigte Angel. Die beste +Angel, um Pokémon an Land zu ziehen." +424,15,7,"Una flor que se suele regalar en ramos para +expresar agradecimiento en ocasiones especiales, +como cumpleaños." +424,15,8,"Amo supertecnologico. Si usa per pescare +Pokémon selvatici in qualsiasi specchio d’acqua." +424,15,9,"An awesome, high-tech fishing rod. +Use it at any body of water to +fish for wild aquatic Pokémon." +424,15,11,"最新の すごい つりざお。 +水の ある 場所で 使うと +ポケモンが つれる。" +425,8,9,"A watering can shaped like a PSYDUCK. +It helps promote healthy growth of +Berries planted in soft soil." +425,9,9,"A watering can shaped like a PSYDUCK. +It helps promote healthy growth of +Berries planted in soft soil." +425,10,9,"A watering can shaped like a PSYDUCK. +It helps promote healthy growth of +Berries planted in soft soil." +425,11,5,"Arrosoir en forme de Psykokwak. Aide +à la croissance des Baies plantées dans +les sols meubles." +425,11,9,"A watering can shaped like a Psyduck. +It helps promote healthy growth of +Berries planted in soft soil." +425,14,9,"A watering can shaped like a Psyduck. +It helps promote healthy growth of +Berries planted in soft soil." +425,15,1,"みずを かける どうぐ。 +ふかふかのつちに うめた きのみを +すくすく そだてる。" +425,15,3,"물을 주는 도구. +푹신푹신한 땅에 심은 나무열매를 +쑥쑥 키운다." +425,15,5,"Arrosoir en forme de Psykokwak. +Aide à la croissance des Baies plantées dans +les sols meubles." +425,15,6,"Eine Gießkanne in Form von Enton. Gieße +gepflanzte Beeren, damit sie besser wachsen." +425,15,7,"Una llave de alta tecnología que debe usarse en +un lugar concreto. Emite una señal eléctrica que +abre una puerta." +425,15,8,"Annaffiatoio fatto a forma di Psyduck. +Favorisce la crescita delle bacche piantate +nel terreno soffice." +425,15,9,"A watering can shaped like a Psyduck. +It helps promote the healthy growth of +any Berries planted in good, soft soil." +425,15,11,"水を かける 道具。 +ふかふかのつちに 埋めた きのみを +すくすく 育てる。" +426,8,9,"A case for storing Poffin cooked from +Berries. +" +426,9,9,"A case for storing Poffin cooked from +Berries. +" +426,10,9,"A case for storing Poffin cooked from +Berries. +" +426,11,5,"Boîte pour ranger les Poffins faits +à partir de Baies." +426,11,9,"A case for storing Poffin cooked from +Berries. +" +426,14,9,"A case for storing Poffin cooked from +Berries. +" +426,15,1,"おりょうりで つくった ポフィンを +ほぞんする いれもの。 +" +426,15,3,"요리로 만든 포핀을 +보존하는 용기." +426,15,5,"Boîte pour ranger les Poffins faits à partir +de Baies." +426,15,6,Eine Box für leckere Knurspe. +426,15,7,"Práctico recipiente que puede almacenar hasta +99 Bonguri de cada especie." +426,15,8,"Contenitore per conservare i Poffin cucinati +con le bacche." +426,15,9,A case for storing Poffins cooked from Berries. +426,15,11,"お料理で つくった ポフィンを +保存する いれもの。 +" +427,6,9,"A folding bicycle +that is faster than +the RUNNING SHOES." +427,7,9,"A folding bicycle that allows +faster movement than the RUNNING +SHOES." +427,8,9,"A folding Bicycle that enables much +faster movement than the Running +Shoes." +427,9,9,"A folding Bicycle that enables much +faster movement than the Running +Shoes." +427,10,9,"A folding Bicycle that enables much +faster movement than the Running +Shoes." +427,11,5,"Une Bicyclette pliable permettant de se +déplacer plus rapidement qu’avec les +Chaussures de Sport." +427,11,9,"A folding Bicycle that enables much +faster movement than the Running +Shoes." +427,14,9,"A folding Bicycle that enables much +faster movement than the Running +Shoes." +427,15,1,"ランニングシューズ よりも +はやく はしることが できる +おりたたみしきの じてんしゃ。" +427,15,3,"러닝슈즈보다도 +빨리 달릴 수 있는 +접이식 자전거다." +427,15,5,"Une Bicyclette pliable permettant de se déplacer +bien plus rapidement qu’en marchant." +427,15,6,"Ein Klapprad, mit dem man schneller ist +als zu Fuß." +427,15,7, +427,15,8,"Bici pieghevole che permette di spostarsi +più velocemente che con le Scarpe da Corsa." +427,15,9,"A folding Bicycle that enables a rider +to get around much faster than a pair +of Running Shoes will allow." +427,15,11,"ランニングシューズ よりも +速く 走ることが できる +折りたたみ式の じてんしゃ。" +428,8,9,"A key to one of the suites at the +luxury hotel by a lake. For some odd +reason, it often disappears." +428,9,9,"A key to one of the suites at the +luxury hotel by a lake. For some odd +reason, it often disappears." +428,10,9,"A key to one of the suites at the +luxury hotel by a lake. For some odd +reason, it often disappears." +428,11,5,"Clé de l’une des suites de l’hôtel de +luxe se trouvant près du lac. +Bizarrement, elle disparaît souvent." +428,11,9,"A key to one of the suites at the +luxury hotel by a lake. For some odd +reason, it often disappears." +428,14,9,"A key to one of the suites at the +luxury hotel by a lake. For some odd +reason, it often disappears." +428,15,1,"みずうみの ほとりにある +こうきゅうホテルの ルームキー。 +なぜか よく なくなってしまう。" +428,15,3,"호수 근처에 있는 고급 호텔의 룸 키. +왜인지는 모르나 잘 없어진다." +428,15,5,"La clé de l’une des suites de l’hôtel de luxe se +trouvant près du lac. Bizarrement, elle disparaît +souvent." +428,15,6,"Schlüssel zu einer Hotelsuite. Verschwindet +seltsamerweise immer wieder mal." +428,15,7,"Dispositivo portátil de cultivo que permite plantar +bayas en cualquier momento de forma sencilla." +428,15,8,"Chiave di una suite vicino a un lago. +Per ragioni misteriose, scompare spesso." +428,15,9,"A key to one of the suites at a certain +luxury hotel by a lake. For some odd +reason, it often disappears." +428,15,11,"湖の ほとりにある +高級ホテルの ルームキー。 +なぜか よく なくなってしまう。" +429,8,9,"A letter from Prof. Oak. +Written in it is a request for you to +go to Rt. 224." +429,9,9,"A letter from Prof. Oak. +Written in it is a request for you to +go to Rt. 224." +429,10,9,"A letter from Prof. Oak. +Written in it is a request for you to +go to Rt. 224." +429,11,5,"Lettre du Prof. Chen vous demandant de +vous rendre sur la Route 224." +429,11,9,"A letter from Prof. Oak. +Written in it is a request for you to +go to Rt. 224." +429,14,9,"A letter from Prof. Oak. +Written in it is a request for you to +go to Rt. 224." +429,15,1,"オーキドはかせ からの てがみ。 +なかには 224ばんどうろに +きてほしいと かかれている。" +429,15,3,"오박사의 편지다. +안에는 224번도로로 +와달라고 적혀 있다." +429,15,5,"Une lettre du Prof. Chen vous demandant de +vous rendre sur la Route 224." +429,15,6,"Ein Brief von Prof. Eich. Er bittet dich, +zur Route 224 zu gehen." +429,15,7,"Aparato de precisión que reacciona con luz y +sonido ante los objetos que no se ven indicando +su posición." +429,15,8,"Lettera del Prof. Oak con la richiesta di dirigerti +verso il Percorso 224." +429,15,9,"A letter from Professor Oak. +Written in it is a request for you +to go to Route 224." +429,15,11,"オーキド博士からの 手紙。 +中には 224番道路に +来てほしいと 書かれている。" +430,8,9,"A feather that glows like the moon. +It is said to possess the power to +dispel nightmares." +430,9,9,"A feather that glows like the moon. +It is said to possess the power to +dispel nightmares." +430,10,9,"A feather that glows like the moon. +It is said to possess the power to +dispel nightmares." +430,11,5,"Plume qui brille comme la lune. On dit +qu’elle a le pouvoir de chasser les +cauchemars." +430,11,9,"A feather that glows like the moon. +It is said to possess the power to +dispel nightmares." +430,14,9,"A feather that glows like the moon. +It is said to possess the power to +dispel nightmares." +430,15,1,"つきのような かがやきを はなつ +はね。 あくむを ふりはらう ちからを +ひめていると つたえられている。" +430,15,3,"달처럼 반짝임을 발산하는 날개. +악몽을 뿌리치는 힘을 +간직하고 있다고 전해진다." +430,15,5,"Une plume qui brille comme la lune. +On dit qu’elle a le pouvoir de chasser les +cauchemars." +430,15,6,"Diese Feder leuchtet wie der Mond. +Kann angeblich Alpträume vertreiben." +430,15,7,"Tarjeta para conseguir puntos con el programa de +radio Las contraseñas de Buena." +430,15,8,"Piuma che brilla come la luna. Pare che abbia +il potere di allontanare gli incubi." +430,15,9,"A feather that glows like the moon. +It’s said to possess the power to +dispel nightmares." +430,15,11,"つきのような 輝きを はなつ +はね。 悪夢を ふりはらう 力を +秘めていると 伝えられている。" +431,8,9,"A card needed for entering the inn in +Canalave City. Oddly, the last date +marked on it was 50 years ago." +431,9,9,"A card needed for entering the inn in +Canalave City. Oddly, the last date +marked on it was 50 years ago." +431,10,9,"A card needed for entering the inn in +Canalave City. Oddly, the last date +marked on it was 50 years ago." +431,11,5,"Carte nécessaire pour entrer à +l’auberge de Joliberges. Le dernier +tampon date d’il y a 50 ans!" +431,11,9,"A card needed for entering the inn in +Canalave City. Oddly, the last date +marked on it was 50 years ago." +431,14,9,"A card needed for entering the inn in +Canalave City. Oddly, the last date +marked on it was 50 years ago." +431,15,1,"ミオシティの やどやに はいれる +カード。 なぜか 50ねんほどまえの +ひづけが きざまれている。" +431,15,3,"운하시티의 여관에 들어갈 수 있는 +카드. 어찌된 일인지 50년 정도 전의 +날짜가 새겨져 있다." +431,15,5,"Une carte nécessaire pour entrer à l’auberge +de Joliberges. Le dernier tampon date d’il y a +50 ans !" +431,15,6,"Eine Eintrittskarte für den Gasthof in Fleetburg. +Sie ist über 50 Jahre alt..." +431,15,7,"Sabrosa cola de origen desconocido. Se puede +comprar a un precio muy elevado." +431,15,8,"Scheda che permette di entrare nella locanda +di Canalipoli. L’ultimo timbro risale a 50 anni fa." +431,15,9,"A card needed for entering the inn in +Canalave City. Oddly, the last date +marked on it was 50 years ago." +431,15,11,"ミオシティの 宿屋に はいれる +カード。 なぜか 50年ほど前の +日付が 刻まれている。" +432,8,9,"A flute that puts out echoing sounds +that do not seem to be of this world. +It is unknown who made it." +432,9,9,"A flute that puts out echoing sounds +that do not seem to be of this world. +It is unknown who made it." +432,10,9,"A flute that puts out echoing sounds +that do not seem to be of this world. +It is unknown who made it." +432,11,5,"Flûte produisant des sons qui semblent +provenir d’un autre monde. On ne sait +pas qui l’a fabriquée." +432,11,9,"A flute that puts out echoing sounds +that do not seem to be of this world. +It is unknown who made it." +432,14,9,"A flute that puts out echoing sounds +that do not seem to be of this world. +It is unknown who made it." +432,15,1,"このよの ものとは おもえない +ねいろが なりひびく ふえ。 いつ +だれが つくったのか わからない。" +432,15,3,"이 세상의 것이라고는 생각할 수 없는 +음색이 울려 퍼지는 피리. 언제 +누가 만들었는지 모른다." +432,15,5,"Une flûte produisant des sons qui semblent +provenir d’un autre monde. On ne sait pas qui +l’a fabriquée." +432,15,6,"Eine Flöte, deren Töne nicht von dieser Welt zu +sein scheinen. Ihr Erschaffer ist nicht bekannt." +432,15,7,"Campana de aspecto antiguo que emite un sonido +que calma el espíritu." +432,15,8,"Flauto che emette una melodia che sembra +appartenere a un altro mondo. Non si sa +chi l’abbia creato." +432,15,9,"A flute that puts out echoing sounds +that do not seem to be of this world. +No one knows who made it." +432,15,11,"この世の ものとは おもえない +音色が なりひびく ふえ。 いつ +だれが つくったのか わからない。" +433,5,9,"The ticket required +for sailing on a +ferry." +433,6,9,"The ticket required +for sailing on a +ferry." +433,7,9,"The ticket required for sailing on +the ferry S.S. ANNE. +It has a drawing of a ship on it." +433,8,9,"The ticket required for sailing on the +ferry S.S. Anne. It has a drawing of a +ship on it." +433,9,9,"The ticket required for sailing on the +ferry S.S. Anne. It has a drawing of a +ship on it." +433,10,9,"The ticket required for sailing on the +ferry S.S. Aqua. It has a drawing of a +ship on it." +433,11,5,"Un ticket nécessaire pour embarquer +sur le Bateau Express Aquaria. +Il y a un bateau dessiné dessus." +433,11,9,"The ticket required for sailing on the +ferry S.S. Aqua. It has a drawing of a +ship on it." +433,14,9,"The ticket required for sailing on the +ferry S.S. Aqua. It has a drawing of a +ship on it." +433,15,1,"こうそくせん アクアごうに のるとき +ひつような ふねの チケット。 +ふねの えが かかれている。" +433,15,3,"쾌속선 아쿠아호에 탈 때 +필요한 승선티켓. +배 그림이 그려져 있다." +433,15,5,"Un ticket nécessaire pour embarquer sur +le Bateau Express Aquaria. Il y a un bateau +dessiné dessus." +433,15,6,"Ein Ticket, um auf der M.S. Aqua zu fahren. Eine +Zeichnung der Fähre ist auf dem Ticket zu sehen." +433,15,7,"Llave con forma de tarjeta que abre las puertas +de la Torre Radio." +433,15,8,"Biglietto necessario per salire sulla M/N Acqua. +C’è disegnata una nave." +433,15,9,"A ticket required for sailing on the +ferry S.S. Aqua. It has a drawing +of a ship on its front." +433,15,11,"高速船アクア号に 乗るとき +必要な 船の チケット。 +船の 絵が 描かれている。" +434,5,9,"The pass required +for entering +POKéMON CONTESTS." +434,6,9,"The pass required +for entering +POKéMON CONTESTS." +434,7,9,"The pass required for entering +POKéMON CONTESTS. It has a +drawing of an award ribbon on it." +434,8,9,"The pass required for entering Pokémon +Contests. It has a drawing of an award +ribbon on it." +434,9,9,"The pass required for entering Pokémon +Contests. It has a drawing of an award +ribbon on it." +434,10,9,"The pass required for entering Pokémon +Contests. It has a drawing of an award +ribbon on it." +434,11,5,"La carte requise pour participer aux +Concours Pokémon. Il y a un ruban +dessiné dessus." +434,11,9,"The pass required for entering Pokémon +Contests. It has a drawing of an award +ribbon on it." +434,14,9,"The pass required for entering Pokémon +Contests. It has a drawing of an award +ribbon on it." +434,15,1,"もっていれば ポケモンコンテストに +さんか することが できる。 +きねんリボンが かかれている。" +434,15,3,"지니고 있으면 포켓몬 콘테스트에 +참가할 수 있다. +기념 리본이 그려져 있다." +434,15,5,"La carte requise pour participer aux Concours +Pokémon. Il y a un ruban dessiné dessus." +434,15,6,"Ausweis zur Teilnahme an Pokémon- +Wettbewerben. Die Zeichnung eines +Bandes ist aufgedruckt." +434,15,7,"Llave que abre la puerta que hay en el Túnel +Trigal." +434,15,8,"Tessera necessaria per partecipare alle +Gare Pokémon. Riporta il disegno di un fiocco." +434,15,9,"A pass required for entering Pokémon +Contests. It has a drawing of an award +ribbon on its front." +434,15,11,"持っていれば ポケモンコンテストに +参加することが できる。 +記念リボンが 描かれている。" +435,8,9,"A stone formed when boulders melted in +intensely hot magma, then hardened. +Magma remains sealed inside." +435,9,9,"A stone formed when boulders melted in +intensely hot magma, then hardened. +Magma remains sealed inside." +435,10,9,"A stone formed when boulders melted in +intensely hot magma, then hardened. +Magma remains sealed inside." +435,11,5,"Pierre formée à partir de roche en +fusion solidifiée. Elle contient du +magma." +435,11,9,"A stone formed when boulders melted in +intensely hot magma, then hardened. +Magma remains sealed inside." +435,14,9,"A stone formed when boulders melted in +intensely hot magma, then hardened. +Magma remains sealed inside." +435,15,1,"しゃくねつの マグマの ねつでとけた +がんせきが かたまって できたもの。 +なかに マグマが のこっている。" +435,15,3,"이글거리는 마그마의 열로 녹은 +암석이 굳어져 생긴 것. +안에는 마그마가 남아 있다." +435,15,5,"Une pierre formée à partir de roche en fusion +solidifiée. Elle contient du magma." +435,15,6,"Ein Stein aus gehärtetem Magma. +Sein Kern ist noch flüssig und heiß." +435,15,7,"Objeto que contiene agua y se usa para regar las +bayas del Plantabayas." +435,15,8,"Pietra che si è formata a seguito di un’intensa +colata lavica. Il magma è rimasto intrappolato +al suo interno." +435,15,9,"A stone formed by boulders melting in +intensely hot magma, then hardening. +Magma remains sealed inside it." +435,15,11,"しゃくねつの マグマの 熱でとけた +岩石が 固まって できたもの。 +中に マグマが 残っている。" +436,8,9,"A parcel entrusted in your care. +You are supposed to deliver it to your +childhood friend who left Twinleaf Town." +436,9,9,"A parcel entrusted in your care. +You are supposed to deliver it to your +childhood friend who left Twinleaf Town." +436,10,9,"A parcel entrusted in your care. +You are supposed to deliver it to your +childhood friend who left Twinleaf Town." +436,11,5,"Paquet qu’on vous a confié. Vous devez +le remettre à votre ami d’enfance qui a +quitté Bonaugure." +436,11,9,"A parcel entrusted in your care. +You are supposed to deliver it to your +childhood friend who left Twinleaf Town." +436,14,9,"A parcel entrusted in your care. +You are supposed to deliver it to your +childhood friend who left Twinleaf Town." +436,15,1,"フタバタウンから たびだった +おさななじみに わたすように +たのまれた おとどけもの。" +436,15,3,"떡잎마을에서 여행을 떠난 +소꿉친구에게 건네주도록 +부탁받은 물건." +436,15,5,"Un paquet qu’on vous a confié. +Vous devez le remettre à votre ami d’enfance qui +a quitté Bonaugure." +436,15,6,"Ein Paket, das dir anvertraut wurde. Du sollst es +deinem besten Freund geben, der Zweiblattdorf +verließ." +436,15,7,"Escama del Gyarados aparecido en el Lago de la +Furia. Es de un rojo tan intenso como las llamas." +436,15,8,"Pacchetto che sei stato incaricato di consegnare +al tuo amico d’infanzia che ha lasciato Duefoglie." +436,15,9,"A parcel entrusted into your care. +You are supposed to deliver it to your +childhood friend who left Twinleaf Town." +436,15,11,"フタバタウンから 旅立った +幼なじみに 渡すように +頼まれた おとどけもの。" +437,8,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +437,9,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +437,10,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +437,11,5,"Un des trois bons à échanger contre +une Pokémontre." +437,11,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +437,14,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +437,15,1,"ポケモンウォッチ ちぢめて +ポケッチを もらうために ひつような +ひきかえけん。 3まい ひつよう。" +437,15,3,"포켓몬워치, 줄여서 포켓치를 +받는 데 필요한 교환권. +3장이 필요하다." +437,15,5,"Un des trois bons à échanger contre une +Pokémontre." +437,15,6,"Einer der drei Coupons, die du für den Pokétch +benötigst." +437,15,7,El muñeco Mime Jr. que perdió la Copiona. +437,15,8,"Coupon da scambiare con un PokéKron. +Ne servono tre." +437,15,9,"A coupon to be exchanged for a +Pokémon Watch--Pokétch for short. +Three coupons are needed." +437,15,11,"ポケモンウォッチ ちぢめて +ポケッチを もらうために 必要な +ひきかえけん。 3枚必要。" +438,8,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +438,9,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +438,10,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +438,11,5,"Un des trois bons à échanger contre +une Pokémontre." +438,11,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +438,14,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +438,15,1,"ポケモンウォッチ ちぢめて +ポケッチを もらうために ひつような +ひきかえけん。 3まい ひつよう。" +438,15,3,"포켓몬워치, 줄여서 포켓치를 +받는 데 필요한 교환권. +3장이 필요하다." +438,15,5,"Un des trois bons à échanger contre une +Pokémontre." +438,15,6,"Einer der drei Coupons, die du für den Pokétch +benötigst." +438,15,7,"Billete necesario para poder montar todas las +veces que se desee en el Magnetotrén." +438,15,8,"Coupon da scambiare con un PokéKron. +Ne servono tre." +438,15,9,"A coupon to be exchanged for a +Pokémon Watch--Pokétch for short. +Three coupons are needed." +438,15,11,"ポケモンウォッチ ちぢめて +ポケッチを もらうために 必要な +ひきかえけん。 3枚必要。" +439,8,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +439,9,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +439,10,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +439,11,5,"Un des trois bons à échanger contre +une Pokémontre." +439,11,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +439,14,9,"A coupon to be exchanged for a +Pokémon Watch (Pokétch for short). +Three coupons are needed." +439,15,1,"ポケモンウォッチ ちぢめて +ポケッチを もらうために ひつような +ひきかえけん。 3まい ひつよう。" +439,15,3,"포켓몬워치, 줄여서 포켓치를 +받는 데 필요한 교환권. +3장이 필요하다." +439,15,5,"Un des trois bons à échanger contre une +Pokémontre." +439,15,6,"Einer der drei Coupons, die du für den Pokétch +benötigst." +439,15,7,"Valiosa pieza robada de una máquina de la +Central Energía." +439,15,8,"Coupon da scambiare con un PokéKron. +Ne servono tre." +439,15,9,"A coupon to be exchanged for a +Pokémon Watch--Pokétch for short. +Three coupons are needed." +439,15,11,"ポケモンウォッチ ちぢめて +ポケッチを もらうために 必要な +ひきかえけん。 3枚必要。" +440,5,9,"The key to the +storage inside the +ABANDONED SHIP." +440,6,9,"The key to the +storage inside the +ABANDONED SHIP." +440,7,9,"A key that opens the storage hold +inside the ABANDONED SHIP. +It is old and looks easily broken." +440,8,9,"The key to Team Galactic’s sinister +warehouse located at the edge of +Veilstone City." +440,9,9,"The key to Team Galactic’s sinister +warehouse located at the edge of +Veilstone City." +440,10,9,"The key to Team Galactic’s sinister +warehouse located at the edge of +Veilstone City." +440,11,5,"La clé de l’entrepôt de la Team Galaxie +situé à la périphérie de Voilaroc." +440,11,9,"The key to Team Galactic’s sinister +warehouse located at the edge of +Veilstone City." +440,14,9,"The key to Team Galactic’s sinister +warehouse located at the edge of +Veilstone City." +440,15,1,"トバリシティの はずれにある +ギンガだんの あやしい +そうこに はいるための カギ。" +440,15,3,"장막시티 변두리에 있는 +갤럭시단의 수상한 창고에 +들어가기 위한 열쇠다." +440,15,5,"La clé de l’entrepôt de la Team Galaxie situé à +la périphérie de Voilaroc." +440,15,6,"Der Schlüssel zur Lagerhalle des Teams Galaktik +am Rande von Schleiede." +440,15,7,Misteriosa ala de un brillante color plateado. +440,15,8,"Chiave del misterioso deposito del Team Galassia +situato ai confini di Rupepoli." +440,15,9,"The key to Team Galactic’s sinister +warehouse located at the edge of +Veilstone City." +440,15,11,"トバリシティの はずれにある +ギンガ団の 怪しい +倉庫に はいるための カギ。" +441,8,9,"A fantastic medicine dispensed by the +pharmacy in Cianwood City. It fully +heals a Pokémon of any ailment." +441,9,9,"A fantastic medicine dispensed by the +pharmacy in Cianwood City. It fully +heals a Pokémon of any ailment." +441,10,9,"A fantastic medicine dispensed by the +pharmacy in Cianwood City. It fully +heals a Pokémon of any ailment." +441,11,5,"Médicament génial vendu à la pharmacie +d’Irisia. Soigne totalement un Pokémon +de tout problème de statut." +441,11,9,"A fantastic medicine dispensed by the +pharmacy in Cianwood City. It fully +heals a Pokémon of any ailment." +441,14,9,"A fantastic medicine dispensed by the +pharmacy in Cianwood City. It fully +heals a Pokémon of any ailment." +441,15,1,"タンバシティの くすりやで もらった +どんな ポケモンでも たちまち +げんきになる すごい くすり。" +441,15,3,"진청시티의 약국에서 받은 +어떤 포켓몬이라도 금방 +건강해지는 대단한 약." +441,15,5,"Un médicament génial vendu à la pharmacie +d’Irisia. Soigne totalement un Pokémon de tout +problème de statut." +441,15,6,"Eine fantastische Medizin aus Anemonia City. +Heilt und kuriert ein Pokémon vollständig." +441,15,7,Misteriosa ala de un brillante color arcoíris. +441,15,8,"Rimedio fantastico distribuito dalla farmacia +a Fiorlisopoli. Cura i problemi di stato +di qualunque Pokémon." +441,15,9,"A fantastic medicine dispensed by the +pharmacy in Cianwood City. It fully +heals a Pokémon of any ailment." +441,15,11,"タンバシティの 薬屋で もらった +どんな ポケモンでも たちまち +げんきになる すごい くすり。" +442,9,9,"A glowing orb to be held by GIRATINA. +It boosts the power of Dragon- and +Ghost-type moves." +442,10,9,"A glowing orb to be held by GIRATINA. +It boosts the power of Dragon- and +Ghost-type moves." +442,11,5,"Mystérieux objet destiné à Giratina. +Améliore les capacités de type Dragon +et Spectre." +442,11,9,"A glowing orb to be held by Giratina. +It boosts the power of Dragon- and +Ghost-type moves." +442,14,9,"A glowing orb to be held by Giratina. +It boosts the power of Dragon- and +Ghost-type moves." +442,15,1,"ギラティナに もたせると ドラゴンと +ゴーストタイプの わざの いりょくが +あがる ひかり かがやく たま。" +442,15,3,"기라티나에게 지니게 하면 드래곤과 +고스트타입 기술의 위력이 올라가는 +반짝반짝 빛나는 구슬." +442,15,5,"Un mystérieux objet destiné à Giratina. +Améliore les capacités de type Dragon +et Spectre." +442,15,6,"Ein glühender Orb. Verstärkt Attacken vom Typ +Drache und Geist, wenn Giratina ihn trägt." +442,15,7,"Una esfera brillante que potencia los movimientos +de tipo Dragón y Fantasma. Debe llevarla Giratina." +442,15,8,"Poliedro splendente da dare a Giratina. +Aumenta la potenza delle mosse di tipo Drago +e Spettro." +442,15,9,"A glowing orb to be held by Giratina. +It boosts the power of Dragon- and +Ghost-type moves when it is held." +442,15,11,"ギラティナに 持たせると ドラゴンと +ゴーストタイプの 技の 威力が +あがる 光り 輝く 珠。" +443,9,9,"An amazing device that can record a +battle either between friends or at a +special battle facility." +443,10,9,"An amazing device that can record a +battle either between friends or at a +special battle facility." +443,11,5,"Appareil utile permettant d’enregistrer +les combats entre amis et ceux ayant +lieu dans un bâtiment de combat." +443,11,9,"An amazing device that can record a +battle either between friends or at a +special battle facility." +443,14,9,"An amazing device that can record a +battle either between friends or at a +special battle facility." +443,15,1,"ともだち との しょうぶや +とくしゅな しせつでの しょうぶを +きろくできる かっこいい きかい。" +443,15,3,"친구와의 승부나 +특수한 시설에서의 승부를 +기록할 수 있는 멋있는 기계." +443,15,5,"Un appareil utile permettant d’enregistrer les +combats entre amis et ceux ayant lieu dans +un bâtiment de combat." +443,15,6,"Ein tolles Gerät, um Kämpfe zwischen Freunden +oder Kämpfe in einer speziellen Kampfeinrichtung +aufzuzeichnen." +443,15,7,"Misterioso Huevo con dibujos que obtienes del +Sr. Pokémon. Nadie sabe qué contiene." +443,15,8,"Fantastico dispositivo che registra le lotte +tra amici o quelle che hanno luogo in alcuni +edifici dedicati alla lotta." +443,15,9,"An amazing device that can record a +battle between friends or the battles +at certain special battle facilities." +443,15,11,"友達との 勝負や +特殊な 施設での 勝負を +記録できる かっこいい 機械。" +444,9,9,"A flower sometimes bundled in bouquets +to convey gratitude on special +occasions like birthdays." +444,10,9,"A flower sometimes bundled in bouquets +to convey gratitude on special +occasions like birthdays." +444,11,5,"Fleur que l’on offre en gage de +reconnaissance, notamment à +l’occasion d’un anniversaire." +444,11,9,"A flower sometimes bundled in bouquets +to convey gratitude on special +occasions like birthdays." +444,14,9,"A flower sometimes bundled in bouquets +to convey gratitude on special +occasions like birthdays." +444,15,1,"たんじょうびや きねんび などに +かんしゃの きもちを つたえるため +ブーケにして おくることが ある。" +444,15,3,"생일이나 기념일 등에 +감사의 마음을 전하기 위해 +부케로 만들어 보내는 일이 있다." +444,15,5,"Une fleur que l’on offre en gage de +reconnaissance, notamment à l’occasion +d’un anniversaire." +444,15,6,"Mit dieser Blume, manchmal auch als Teil eines +Bouquets, kann man an speziellen Tagen seine +Dankbarkeit ausdrücken." +444,15,7,Bonguri de color rojo y aroma muy penetrante. +444,15,8,"Un fiore, a volte offerto in bouquet, che +esprime gratitudine in occasioni particolari, +come i compleanni." +444,15,9,"A flower sometimes bundled in +bouquets to convey gratitude on +special occasions like birthdays." +444,15,11,"誕生日や 記念日などに +感謝の 気持ちを 伝えるため +ブーケにして 贈ることが ある。" +445,6,9,"The key to the +CINNABAR ISLAND +GYM’s entrance." +445,7,9,"The key to CINNABAR ISLAND GYM’s +front door. It is colored red and +decorated." +445,9,9,"A high-tech key that has to be used at +a specific location. It emits a special +electric signal to open a door." +445,10,9,"A high-tech key that has to be used at +a specific location. It emits a special +electric signal to open a door." +445,11,5,"Clé destinée à une serrure très +complexe. Ouvre une porte en +transmettant un signal électrique." +445,11,9,"A high-tech key that has to be used at +a specific location. It emits a special +electric signal to open a door." +445,14,9,"A high-tech key that has to be used at +a specific location. It emits a special +electric signal to open a door." +445,15,1,"きまった ばしょで つかうことで +とくしゅな でんきしんごうを だして +とびらを あける ハイテクな カギ。" +445,15,3,"정해진 장소에서 쓰는 것으로 +특수한 전기 신호를 내어 +문을 여는 첨단기술의 열쇠." +445,15,5,"Une clé destinée à une serrure très complexe. +Ouvre une porte en transmettant un signal +électrique." +445,15,6,"Ein besonderer Schlüssel, der an einem speziellen +Ort Türen durch ein elektrisches Signal öffnet." +445,15,7,Bonguri de color azul y aroma tierno. +445,15,8,"Una sofisticata chiave da usare in un determinato +luogo. Emette un impulso elettrico speciale che +apre una porta." +445,15,9,"A high-tech key that has to be used at +a specific location. It emits a special +electronic signal to open a door." +445,15,11,"決まった 場所で 使うことで +特殊な 電気信号を だして +扉を 開ける ハイテクな カギ。" +446,10,9,"A handy box where you can store up to +99 Apricorns of each kind." +446,11,5,"Une boîte bien pratique qui peut +contenir jusqu’à 99 Noigrumes." +446,11,9,"A handy box where you can store up to +99 Apricorns of each kind." +446,14,9,"A handy box where you can store up to +99 Apricorns of each kind." +446,15,1,"ぼんぐりを 99こ ほぞん できる +べんりな いれもの。 +" +446,15,3,"규토리를 99개 보존할 수 있는 +편리한 용기." +446,15,5,"Une boîte bien pratique qui peut contenir jusqu’à +99 Noigrumes." +446,15,6,"Eine praktische Tragebox, in der du bis zu +99 Aprikokos jeder Sorte transportieren kannst." +446,15,7,Bonguri de color amarillo y aroma refrescante. +446,15,8,"Contenitore molto pratico dove conservare +fino a 99 Ghicocche diverse." +446,15,9,"A handy box where you can store +up to 99 of each kind of Apricorn." +446,15,11,"ぼんぐりを 99こ 保存できる +便利な いれもの。 +" +447,10,9,"Handy containers for cultivating +Berries wherever you go." +447,11,5,"Un accessoire portatif qui permet de +cultiver des Baies en tout lieu et à +tout moment." +447,11,9,"Handy containers for cultivating +Berries wherever you go." +447,14,9,"Handy containers for cultivating +Berries wherever you go." +447,15,1,"いつでも てがるに きのみを +そだてられる けいたいしきの +さいばい ようき。" +447,15,3,"항상 손쉽게 나무열매를 +키울 수 있는 휴대형 +재배 용기." +447,15,5,"Un accessoire portatif qui permet de cultiver des +Baies en tout lieu et à tout moment." +447,15,6,"Ein tragbares Utensil, das die Aufzucht von +Pflanzen aus Beeren ermöglicht, wo immer +du auch gerade bist." +447,15,7,Bonguri de color rosa y aroma dulce. +447,15,8,"Accessorio tascabile che permette di coltivare +bacche in qualunque luogo e momento." +447,15,9,"Handy containers for cultivating +Berries wherever you go." +447,15,11,"いつでも 手軽に きのみを +育てられる 携帯式の +栽培容器。" +448,10,9,"A bottle used for watering plants in the +Berry Pots." +448,11,5,"Un arrosoir qui permet de faire croître +rapidement les Baies plantées dans le +Plante-Baies." +448,11,9,"A bottle used for watering plants in the +Berry Pots." +448,14,9,"A bottle used for watering plants in the +Berry Pots." +448,15,1,"みずを かける どうぐ。 +きのみプランターの きのみを +すくすく そだてる。" +448,15,3,"물을 주는 도구. +나무열매플랜터의 나무열매를 +쑥쑥 키운다." +448,15,5,"Un arrosoir qui permet de faire croître rapidement +les Baies plantées dans le Plante-Baies." +448,15,6,"Eine Gießkanne, durch deren Wasser Beeren +im Pflanzset umso rascher wachsen." +448,15,7,"Poké Ball algo distinta que atrapa mejor Pokémon +de la misma especie que los que se posee, pero +de sexo diferente." +448,15,8,"Strumento che serve a innaffiare. +Permette un’ottima crescita delle bacche +seminate nel Piantabacche." +448,15,9,"A bottle used for watering plants in the +Berry Pots." +448,15,11,"みずを かける 道具。 +きのみプランターの きのみを +すくすく 育てる。" +449,10,9,"A Poké Ball for catching Pokémon hooked +by a Rod when fishing." +449,11,5,"Une Poké Ball un peu spéciale qui +fonctionne particulièrement bien sur les +Pokémon ferrés avec une canne à pêche." +449,11,9,"A Poké Ball for catching Pokémon hooked +by a Rod when fishing." +449,14,9,"A Poké Ball for catching Pokémon hooked +by a Rod when fishing." +449,15,1,"つりざおで つりあげた ポケモンだと +つかまえやすくなる +ちょっと かわった ボール。" +449,15,3,"낚싯대로 낚아 올린 포켓몬이라면 +잡기 쉬워지는 +조금 특이한 볼." +449,15,5,"Une Poké Ball un peu spéciale qui fonctionne +particulièrement bien sur les Pokémon ferrés +avec une canne à pêche." +449,15,6,"Ein Ball, der sich besonders gut eignet, +um Pokémon zu fangen, die an deiner +Angel hängen." +449,15,7,"Contiene los datos del Pokéathlon con el número +de victorias en Atrapadiscos." +449,15,8,"Poké Ball un po’ diversa che funziona +particolarmente bene con i Pokémon pescati +con un Amo." +449,15,9,"A Poké Ball that is good for catching +Pokémon that you reel in with a Rod +while out fishing." +449,15,11,"つりざおで つりあげた ポケモンだと +捕まえやすくなる +ちょっと 変わった ボール。" +450,10,9,"A Poké Ball for catching Pokémon that +are a lower level than your own." +450,11,5,"Une Poké Ball un peu spéciale qui +fonctionne particulièrement bien sur +les Pokémon de niveau inférieur au sien." +450,11,9,"A Poké Ball for catching Pokémon that +are a lower level than your own." +450,14,9,"A Poké Ball for catching Pokémon that +are a lower level than your own." +450,15,1,"じぶんの ポケモンより レベルが +ひくいほど つかまえやすくなる +ちょっと かわった ボール。" +450,15,3,"자신의 포켓몬보다 레벨이 +낮을수록 잡기 쉬워지는 +조금 특이한 볼." +450,15,5,"Une Poké Ball un peu spéciale qui fonctionne +particulièrement bien sur les Pokémon de niveau +inférieur au sien." +450,15,6,"Ein Ball, mit dem sich Pokémon umso leichter +fangen lassen, je niedriger ihr Level im Vergleich +zu deinem Team ist." +450,15,7,"Contiene los datos del Pokéathlon con el número +de victorias en Rompelosas." +450,15,8,"Poké Ball un po’ diversa che funziona +particolarmente bene con i Pokémon di livello +inferiore a quello del proprio." +450,15,9,"A Poké Ball that makes it easier to +catch Pokémon that are at a lower +level than your own Pokémon." +450,15,11,"自分の ポケモンより レベルが +低いほど 捕まえやすくなる +ちょっと 変わった ボール。" +451,10,9,"A Poké Ball for catching Pokémon that +evolve using the Moon Stone." +451,11,5,"Une Poké Ball un peu spéciale qui +fonctionne particulièrement bien sur les +Pokémon évoluant avec une Pierre Lune." +451,11,9,"A Poké Ball for catching Pokémon that +evolve using the Moon Stone." +451,14,9,"A Poké Ball for catching Pokémon that +evolve using the Moon Stone." +451,15,1,"つきのいしで しんかする ポケモンが +つかまえやすくなる +ちょっと かわった ボール。" +451,15,3,"달의돌로 진화하는 포켓몬이 +잡기 쉬워지는 +조금 특이한 볼." +451,15,5,"Une Poké Ball un peu spéciale qui fonctionne +particulièrement bien sur les Pokémon évoluant +avec une Pierre Lune." +451,15,6,"Ein Ball, der sich besonders gut eignet, +um Pokémon zu fangen, die sich durch +einen Mondstein weiterentwickeln." +451,15,7,"Contiene los datos del Pokéathlon con el número +de puntos perdidos por tus Pokémon." +451,15,8,"Poké Ball un po’ diversa che funziona +particolarmente bene con i Pokémon +che si evolvono con una Pietralunare." +451,15,9,"A Poké Ball that will make it easier +to catch Pokémon that can evolve +using a Moon Stone." +451,15,11,"つきのいしで 進化する ポケモンが +捕まえやすくなる +ちょっと 変わった ボール。" +452,10,9,"A Poké Ball for catching very heavy +Pokémon." +452,11,5,"Une Poké Ball un peu spéciale qui +fonctionne particulièrement bien sur +les Pokémon lourds." +452,11,9,"A Poké Ball for catching very heavy +Pokémon." +452,14,9,"A Poké Ball for catching very heavy +Pokémon." +452,15,1,"たいじゅうの おもい ポケモンが +つかまえやすくなる +ちょっと かわった ボール。" +452,15,3,"체중이 무거운 포켓몬이 +잡기 쉬워지는 +조금 특이한 볼." +452,15,5,"Une Poké Ball un peu spéciale qui fonctionne +particulièrement bien sur les Pokémon lourds." +452,15,6,"Ein Ball, der sich besonders gut eignet, +um Pokémon mit hohem Körpergewicht +zu fangen." +452,15,7,"Contiene los datos del Pokéathlon con el número +de victorias en Nieve Cruzada." +452,15,8,"Poké Ball un po’ diversa che funziona +particolarmente bene con i Pokémon pesanti." +452,15,9,"A Poké Ball that is better than usual +at catching very heavy Pokémon." +452,15,11,"体重の 重い ポケモンが +捕まえやすくなる +ちょっと 変わった ボール。" +453,10,9,"A Poké Ball that makes it easier to +catch fast Pokémon." +453,11,5,"Une Poké Ball un peu spéciale qui +fonctionne particulièrement bien sur +les Pokémon qui ont tendance à fuir." +453,11,9,"A Poké Ball that makes it easier to +catch Pokémon which are quick to +run away." +453,14,9,"A Poké Ball that makes it easier to +catch Pokémon which are quick to +run away." +453,15,1,"にげあしの はやい ポケモンが +つかまえやすくなる +ちょっと かわった ボール。" +453,15,3,"도주가 빠른 포켓몬이 +잡기 쉬워지는 +조금 특이한 볼." +453,15,5,"Une Poké Ball un peu spéciale qui fonctionne +particulièrement bien sur les Pokémon qui ont +tendance à fuir." +453,15,6,"Ein Ball, der sich besonders gut eignet, um flinke +Pokémon zu fangen." +453,15,7,"Contiene los datos del Pokéathlon con el número +de victorias en Atrapabanderas." +453,15,8,"Poké Ball un po’ diversa particolarmente efficiente +con i Pokémon bravi a scappare." +453,15,9,"A Poké Ball that makes it easier to +catch Pokémon that are usually +very quick to run away." +453,15,11,"にげあしの はやい ポケモンが +捕まえやすくなる +ちょっと 変わった ボール。" +454,10,9,"A Poké Ball that makes caught Pokémon +more friendly." +454,11,5,"Une Poké Ball un peu spéciale qui +permet de rendre rapidement amicaux +les Pokémon sauvages attrapés avec." +454,11,9,"A Poké Ball that makes caught Pokémon +more friendly." +454,14,9,"A Poké Ball that makes caught Pokémon +more friendly." +454,15,1,"つかまえた やせいポケモンが +すぐに なついて くれる +ちょっと かわった ボール。" +454,15,3,"잡은 야생 포켓몬이 +바로 친밀해지는 +조금 특이한 볼." +454,15,5,"Une Poké Ball un peu spéciale qui permet de +rendre rapidement amicaux les Pokémon +sauvages attrapés avec celle-ci." +454,15,6,"Ein besonderer Ball, der die Sympathie von +gefangenen Pokémon schneller ansteigen lässt." +454,15,7,"Contiene los datos del Pokéathlon con el número +de derrotas." +454,15,8,"Poké Ball un po’ diversa che fa sì che i Pokémon +selvatici con essa catturati si affezionino +più rapidamente." +454,15,9,"A strange Poké Ball that will make +the wild Pokémon caught with it more +friendly toward you immediately." +454,15,11,"捕まえた 野生ポケモンが +すぐに なついて くれる +ちょっと 変わった ボール。" +455,10,9,"Poké Ball for catching Pokémon that are +the opposite gender of your Pokémon." +455,11,5,"Une Poké Ball un peu spéciale qui +fonctionne mieux sur un Pokémon de +la même espèce mais de sexe opposé." +455,11,9,"Poké Ball for catching Pokémon that are +the opposite gender of your Pokémon." +455,14,9,"Poké Ball for catching Pokémon that are +the opposite gender of your Pokémon." +455,15,1,"じぶんの ポケモンと せいべつが +ちがうと つかまえやすくなる +ちょっと かわった ボール。" +455,15,3,"자신의 포켓몬과 성별이 +다르면 잡기 쉬워지는 +조금 특이한 볼." +455,15,5,"Une Poké Ball un peu spéciale qui fonctionne +mieux sur un Pokémon de sexe opposé." +455,15,6,"Ein Ball, der sich besonders gut eignet, +um Pokémon zu fangen, die ein anderes +Geschlecht haben als dein Pokémon." +455,15,7,"Contiene los datos del Pokéathlon con el número +de puntos conseguidos." +455,15,8,"Poké Ball speciale che funziona meglio con i +Pokémon di sesso opposto a quello del proprio +e della stessa specie." +455,15,9,"A Poké Ball that works best when +catching a Pokémon that is of the +opposite gender of your Pokémon." +455,15,11,"自分の ポケモンと 性別が +違うと 捕まえやすくなる +ちょっと 変わった ボール。" +456,10,9,A special Poké Ball for the Pal Park. +456,11,5,"Une Poké Ball spéciale utilisée au +Parc des Amis." +456,11,9,A special Poké Ball for the Pal Park. +456,14,9,A special Poké Ball for the Pal Park. +456,15,1,"パルパークの なかで +つかう とくべつな ボール。 +" +456,15,3,"팔파크 내에서 +사용하는 특별한 볼." +456,15,5,Une Poké Ball spéciale utilisée au Parc des Amis. +456,15,6,"Ein Ball, der nur im Park der Freunde +eingesetzt wird." +456,15,7,"Contiene los datos del Pokéathlon con el número +de caídas que han sufrido tus Pokémon." +456,15,8,"Poké Ball speciale utilizzata solo all’interno +del Parco Amici." +456,15,9,A special Poké Ball for the Pal Park. +456,15,11,"パルパークの なかで +使う 特別な ボール。 +" +457,10,9,"A special Poké Ball for the +Bug-Catching Contest." +457,11,5,"Une Poké Ball spéciale utilisée au +Concours de Capture d’insecte." +457,11,9,"A special Poké Ball for the +Bug-Catching Contest." +457,14,9,"A special Poké Ball for the +Bug-Catching Contest." +457,15,1,"むしとりたいかいの なかで +つかう とくべつな ボール。 +" +457,15,3,"곤충채집 대회 내에서 +사용하는 특별한 볼." +457,15,5,"Une Poké Ball spéciale utilisée au Concours de +Capture d’insecte." +457,15,6,"Ein Ball, der nur beim Käferturnier eingesetzt wird." +457,15,7,"Contiene los datos del Pokéathlon con el número +de placajes realizados." +457,15,8,"Poké Ball speciale utilizzata solo nella +Gara Pigliamosche." +457,15,9,"A special Poké Ball that is used +during the Bug-Catching Contest." +457,15,11,"虫捕り大会の なかで +使う 特別な ボール。 +" +458,10,9,"A red Apricorn. +It assails your nostrils." +458,11,5,"Un Noigrume de couleur rouge. +Il dégage un puissant arôme." +458,11,9,"A red Apricorn. +It assails your nostrils." +458,14,9,"A red Apricorn. +It assails your nostrils." +458,15,1,"あかい ぼんぐり。 +つーんと はなにくる においがする。 +" +458,15,3,"빨간색의 규토리. +코를 톡 쏘는 향기가 난다." +458,15,5,"Un Noigrume de couleur rouge. +Il dégage un puissant arôme." +458,15,6,"Eine rote Aprikoko. +Besitzt einen stechenden Geruch." +458,15,7,"Caramelo típico de Pueblo Caoba, muy popular +como souvenir." +458,15,8,"Una Ghicocca di colore rosso. +Emana un odore molto forte." +458,15,9,"A red Apricorn. +It assails your nostrils." +458,15,11,"あかい ぼんぐり。 +つーんと はなにくる においがする。 +" +459,10,9,"A blue Apricorn. +It smells a bit like grass." +459,11,5,"Un Noigrume de couleur bleue. +Il dégage un arôme un peu aigre." +459,11,9,"A blue Apricorn. +It smells a bit like grass." +459,14,9,"A blue Apricorn. +It smells a bit like grass." +459,15,1,"あおい ぼんぐり。 +すこし あおくさい かおりがする。 +" +459,15,3,"파란색의 규토리. +약간 풋내가 난다." +459,15,5,"Un Noigrume de couleur bleue. +Il dégage un arôme un peu aigre." +459,15,6,"Eine blaue Aprikoko. +Ein frischer Geruch geht von ihr aus." +459,15,7,"Contiene los datos del Pokéathlon con el número +de victorias." +459,15,8,"Una Ghicocca di colore blu. +Emana un odore un po’ acre." +459,15,9,"A blue Apricorn. +It smells a bit like grass." +459,15,11,"あおい ぼんぐり。 +少し あおくさい かおりがする。 +" +460,10,9,"A yellow Apricorn. +It has an invigorating scent." +460,11,5,"Un Noigrume de couleur jaune. +Il dégage un arôme délicat." +460,11,9,"A yellow Apricorn. +It has an invigorating scent." +460,14,9,"A yellow Apricorn. +It has an invigorating scent." +460,15,1,"きいろの ぼんぐり。 +さわやかな かおりが する。 +" +460,15,3,"노란색의 규토리. +산뜻한 향기가 난다." +460,15,5,"Un Noigrume de couleur jaune. +Il dégage un arôme délicat." +460,15,6,"Eine gelbe Aprikoko. +Sie riecht ein wenig unreif." +460,15,7,"Contiene los datos del Pokéathlon con el número +de veces que se ha quedado en último lugar." +460,15,8,"Una Ghicocca di colore giallo. +Emana un profumo delicato." +460,15,9,"A yellow Apricorn. +It has an invigorating scent." +460,15,11,"きいろの ぼんぐり。 +さわやかな かおりが する。 +" +461,10,9,"A green Apricorn. +It has a mysterious, aromatic scent." +461,11,5,"Un Noigrume de couleur verte. +Il dégage un arôme étonnamment riche." +461,11,9,"A green Apricorn. +It has a mysterious, aromatic scent." +461,14,9,"A green Apricorn. +It has a mysterious, aromatic scent." +461,15,1,"みどりの ぼんぐり。 +ふしぎと こうばしい かおりがする。 +" +461,15,3,"초록색의 규토리. +이상하게도 고소한 향기가 난다." +461,15,5,"Un Noigrume de couleur verte. +Il dégage un arôme étonnamment riche." +461,15,6,"Eine grüne Aprikoko. +Sie verströmt einen seltsam aromatischen Duft." +461,15,7,"Contiene los datos del Pokéathlon con el número +de sprints de los Pokémon." +461,15,8,"Una Ghicocca di colore verde. +Emana un profumo intenso." +461,15,9,"A green Apricorn. +It has a mysterious, aromatic scent." +461,15,11,"みどりの ぼんぐり。 +不思議と こうばしい かおりがする。 +" +462,10,9,"A pink Apricorn. +It has a nice, sweet scent." +462,11,5,"Un Noigrume de couleur rose. +Il dégage un arôme sucré." +462,11,9,"A pink Apricorn. +It has a nice, sweet scent." +462,14,9,"A pink Apricorn. +It has a nice, sweet scent." +462,15,1,"ももいろの ぼんぐり。 +あまそうな いい においがする。 +" +462,15,3,"담홍색의 규토리. +달콤한 듯한 좋은 향기가 난다." +462,15,5,"Un Noigrume de couleur rose. +Il dégage un arôme sucré." +462,15,6,"Eine pinkfarbene Aprikoko. +Sie duftet süß und appetitanregend." +462,15,7,"Contiene los datos del Pokéathlon con el número +de saltos de los Pokémon." +462,15,8,"Una Ghicocca di colore rosa. +Emana un profumo dolce." +462,15,9,"A pink Apricorn. +It has a nice, sweet scent." +462,15,11,"ももいろの ぼんぐり。 +あまそうな いい においがする。 +" +463,10,9,"A white Apricorn. +It doesn’t smell like anything." +463,11,5,"Un Noigrume de couleur blanche. +Il ne dégage aucun arôme." +463,11,9,"A white Apricorn. +It doesn’t smell like anything." +463,14,9,"A white Apricorn. +It doesn’t smell like anything." +463,15,1,"しろい ぼんぐり。 +なんの においも しない。 +" +463,15,3,"하얀색의 규토리. +어떠한 향기도 나지 않는다." +463,15,5,"Un Noigrume de couleur blanche. +Il ne dégage aucun arôme." +463,15,6,"Eine weiße Aprikoko. +Riecht nach überhaupt nichts." +463,15,7,"Contiene los datos del Pokéathlon con el número +de victorias en Saltaobstáculos." +463,15,8,"Una Ghicocca di colore bianco. +Non emana alcun odore." +463,15,9,"A white Apricorn. +It doesn’t smell like anything." +463,15,11,"しろい ぼんぐり。 +なんの においも しない。 +" +464,10,9,"A black Apricorn +It has an indescribable scent." +464,11,5,"Un Noigrume de couleur noire. +Il dégage un arôme indéfinissable." +464,11,9,"A black Apricorn +It has an indescribable scent." +464,14,9,"A black Apricorn +It has an indescribable scent." +464,15,1,"くろい ぼんぐり。 +なんともいえない においがする。 +" +464,15,3,"검은색의 규토리. +말로는 표현할 수 없는 향기가 난다." +464,15,5,"Un Noigrume de couleur noire. +Il dégage un arôme indéfinissable." +464,15,6,"Eine schwarze Aprikoko. +Sie riecht irgendwie unbeschreiblich." +464,15,7,"Contiene los datos del Pokéathlon con el número +de victorias en Carrera de Relevos." +464,15,8,"Una Ghicocca di colore nero. +Emana un odore indefinibile." +464,15,9,"A black Apricorn. +It has a scent beyond one’s experience." +464,15,11,"くろい ぼんぐり。 +なんともいえない においがする。 +" +465,5,9,"A device that +signals an invisible +item by sound." +465,6,9,"A device that +signals an invisible +item by sound." +465,7,9,"A device used for finding items. +If there is a hidden item nearby +when it is used, it emits a signal." +465,10,9,"It checks for unseen items in the area +and makes noise and lights when it +finds something." +465,11,5,"Un appareil high-tech qui indique +l’emplacement des objets invisibles +en émettant un son et en clignotant." +465,11,9,"It checks for unseen items in the area +and makes noise and lights when it +finds something." +465,14,9,"It checks for unseen items in the area +and makes noise and lights when it +finds something." +465,15,1,"みえない どうぐに はんのうして +おとと ひかりで おしえてくれる +さいしんの きかい。" +465,15,3,"보이지 않는 도구에 반응해서 +소리와 빛으로 가르쳐주는 +최신 기계." +465,15,5,"Un appareil high-tech qui indique l’emplacement +des objets invisibles en émettant un son et en +clignotant." +465,15,6,"Scannt die Umgebung nach unsichtbaren Items. +Es blinkt und piept, sobald es etwas findet." +465,15,7,"Bonguri de color blanco que no desprende aroma +alguno." +465,15,8,"Dispositivo ultramoderno che indica la direzione +in cui si trovano gli strumenti invisibili +emettendo dei suoni." +465,15,9,"It searches for hidden items in the +area and emits different lights and +sounds when it detects something." +465,15,11,"みえない 道具に 反応して +音と 光で 教えてくれる +最新の 機械。" +466,10,9,"A famous candy in Mahogany Town. Many +tourists like to buy them to take home." +466,11,5,"Un bonbon, spécialité d’Acajou. +Il constitue un cadeau très réputé." +466,11,9,"A famous Mahogany Town candy tourists +like to buy and take home. It restores +the HP of one Pokémon by 20 points." +466,14,9,"A famous Mahogany Town candy tourists +like to buy and take home. It restores +the HP of one Pokémon by 20 points." +466,15,1,"チョウジめいぶつの まんじゅう。 +おみやげひん として ゆうめい。 +" +466,15,3,"황토마을의 명물인 호두과자. +선물로 아주 유명하다." +466,15,5,"Un bonbon, spécialité d’Acajou. +Il constitue un cadeau très réputé." +466,15,6,"Eine Spezialität aus Mahagonia City. Sie wird gern +als Souvenir gekauft." +466,15,7,"Contiene los datos del Pokéathlon con el número +de victorias en conexión." +466,15,8,"Caramella tipica di Mogania. +Souvenir dall’ottima reputazione." +466,15,9,"Mahogany Town’s famous candy. +When consumed, it restores +20 HP to an injured Pokémon." +466,15,11,"ジョウト地方 にある +チョウジタウン名物の まんじゅう。 +お土産品として 有名。" +467,5,9,"A red, glowing orb +said to contain an +ancient power." +467,6,9,"A red, glowing orb +said to contain an +ancient power." +467,7,9,"An orb that glows red. +It is said to contain an incredible +power from ancient times." +467,10,9,"A shiny red orb that is said to have +a legend and has a deep connection with +the Hoenn region." +467,11,5,"Un orbe incarnat dont on dit qu’il a +un lien très étroit avec les légendes +de Hoenn." +467,11,9,"A shiny red orb that is said to have +a legend and has a deep connection with +the Hoenn region." +467,14,9,"A shiny red orb that is said to have +a legend and has a deep connection with +the Hoenn region." +467,15,1,"ホウエンちほうの でんせつと +ふかい かかわりが あると いわれる +あかく かがやく たま。" +467,15,3,"호연지방의 전설과 +깊은 연관이 있다고 전해지는 +빨갛게 빛나는 구슬." +467,15,5,"Un orbe incarnat dont on dit qu’il a un lien très +étroit avec les légendes de Hoenn." +467,15,6,"Eine rot schimmernde Kugel, von der in den +Legenden der Hoenn-Region berichtet wird." +467,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Lucha. Debe llevarla +un Pokémon." +467,15,8,"Sfera con riflessi rossi, che pare essere +strettamente legata alle leggende della regione +di Hoenn." +467,15,9,"A shiny red orb that is said to have +a legend tied to it. It’s known to have a +deep connection with the Hoenn region." +467,15,11,"ホウエン地方の 伝説と +深い 関わりが あると いわれる +あかく かがやく たま。" +468,5,9,"A blue, glowing orb +said to contain an +ancient power." +468,6,9,"A blue, glowing orb +said to contain an +ancient power." +468,7,9,"An orb that glows blue. +It is said to contain an incredible +power from ancient times." +468,10,9,"A shiny blue orb that is said to have +a legend and has a deep connection with +the Hoenn region." +468,11,5,"Un orbe céruléen dont on dit qu’il a +un lien très étroit avec les légendes +de Hoenn." +468,11,9,"A shiny blue orb that is said to have +a legend and has a deep connection with +the Hoenn region." +468,14,9,"A shiny blue orb that is said to have +a legend and has a deep connection with +the Hoenn region." +468,15,1,"ホウエンちほうの でんせつと +ふかい かかわりが あると いわれる +あおく かがやく たま。" +468,15,3,"호연지방의 전설과 +깊은 연관이 있다고 전해지는 +파랗게 빛나는 구슬." +468,15,5,"Un orbe céruléen dont on dit qu’il a un lien très +étroit avec les légendes de Hoenn." +468,15,6,"Eine blau schimmernde Kugel, von der in den +Legenden der Hoenn-Region berichtet wird." +468,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Veneno. Debe llevarla +un Pokémon." +468,15,8,"Sfera con riflessi blu, che pare essere +strettamente legata alle leggende della regione +di Hoenn." +468,15,9,"A shiny blue orb that is said to have +a legend tied to it. It’s known to have a +deep connection with the Hoenn region." +468,15,11,"ホウエン地方の 伝説と +深い 関わりが あると いわれる +あおく かがやく たま。" +469,10,9,"A shiny green orb that is said to have +a legend and has a deep connection with +the Hoenn region." +469,11,5,"Un orbe viride dont on dit qu’il a un +lien très étroit avec les légendes +de Hoenn." +469,11,9,"A shiny green orb that is said to have +a legend and has a deep connection with +the Hoenn region." +469,14,9,"A shiny green orb that is said to have +a legend and has a deep connection with +the Hoenn region." +469,15,1,"ホウエンちほうの でんせつと +ふかい かかわりが あると いわれる +みどりいろに かがやく たま。" +469,15,3,"호연지방의 전설과 +깊은 연관이 있다고 전해지는 +초록색으로 빛나는 구슬." +469,15,5,"Un orbe viride dont on dit qu’il a un lien très +étroit avec les légendes de Hoenn." +469,15,6,"Eine grün schimmernde Kugel, von der in den +Legenden der Hoenn-Region berichtet wird." +469,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Planta. Debe llevarla +un Pokémon." +469,15,8,"Sfera con riflessi verdi, che pare essere +strettamente legata alle leggende della regione +di Hoenn." +469,15,9,"A shiny green orb that is said to have +a legend tied to it. It’s known to have a +deep connection with the Hoenn region." +469,15,11,"ホウエン地方の 伝説と +深い 関わりが あると いわれる +みどりいろに かがやく たま。" +470,10,9,"A crystal ball that was excavated from +the ground. A very beautiful stone that +is covered with bits of rock and earth." +470,11,5,"Un orbe cristallin fraîchement déterré. +Il est encore pris dans une gangue de +terre et de roche." +470,11,9,"A crystal ball that was excavated from +the ground. A very beautiful stone that +is covered with bits of rock and earth." +470,14,9,"A crystal ball that was excavated from +the ground. A very beautiful stone that +is covered with bits of rock and earth." +470,15,1,"じめんから ほりだされた +すいしょうだま。いわと つちで +おおわれているが とても きれい。" +470,15,3,"땅에서 파 올린 +수정구슬. 바위랑 흙으로 +뒤덮여 있지만 매우 아름답다." +470,15,5,"Un orbe cristallin fraîchement déterré. +Il est encore pris dans une gangue de terre +et de roche." +470,15,6,"Eine kristallene Kugel, die aus der Erde +geborgen wurde. Schmutz und Gestein +konnten ihrer Schönheit nichts anhaben." +470,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Tierra. Debe llevarla +un Pokémon." +470,15,8,"Cristallo appena estratto dal suolo. +Bellissimo malgrado sia ancora ricoperto di resti +di roccia e terra." +470,15,9,"A crystal ball that was excavated from +the ground. It’s a very beautiful stone that +is covered with bits of rock and earth." +470,15,11,"地面から 掘りだされた +すいしょうだま。いわと つちで +おおわれているが とても きれい。" +471,10,9,"A report of all the discovered kinds +of UNOWN." +471,11,5,"Un carnet permettant de noter toutes +les formes de Zarbi capturées." +471,11,9,"A report of all the discovered kinds +of Unown." +471,14,9,"A report of all the discovered kinds +of Unown." +471,15,1,"みつけた アンノーンの ようすが +きろく されている ノート。 +" +471,15,3,"발견한 안농의 모습이 +기록되어 있는 노트." +471,15,5,"Un carnet permettant de noter toutes les formes +de Zarbi capturées." +471,15,6,"Ein Heft, in dem automatisch Daten zu bereits +gefangenen Icognito aufgezeichnet werden." +471,15,7,"Bonguri de color verde y aroma peculiar que +recuerda al café tostado." +471,15,8,"Quaderno dove si registrano tutte le forme +di Unown catturate." +471,15,9,"A report of all the discovered kinds +of Unown." +471,15,11,"みつけた アンノーンの ようすが +記録されている ノート。 +" +472,10,9,"A card to save points for the +Buena’s Password show." +472,11,5,"Une carte pour accumuler les points de +l’émission “Le Mot de Passe de Buena”." +472,11,9,"A card to save points for the +Buena’s Password show." +472,14,9,"A card to save points for the +Buena’s Password show." +472,15,1,"「アオイのあいことば」 ばんぐみの +ポイントを ためる カード。 +" +472,15,3,"“규화의 암호” 방송의 +포인트를 모으는 카드." +472,15,5,"Une carte pour accumuler les points de +l’émission « Le Mot de Passe de Buena »." +472,15,6,"Eine Karte, auf der die Punkte für +„Passwort mit Buena“ festgehalten werden." +472,15,7,Bonguri de color negro y aroma indescriptible. +472,15,8,"Carta per accumulare i punti del programma +“Password Show” di Buena." +472,15,9,"A card to save points for the +Buena’s Password show." +472,15,11,"「アオイのあいことば」 番組の +ポイントを 貯める カード。 +" +473,10,9,"A very tasty tail of something. +It sells for a high price." +473,11,5,"Une queue d’origine inconnue tout à fait +savoureuse, vendue très cher." +473,11,9,"A very tasty tail of something. +It sells for a high price." +473,14,9,"A very tasty tail of something. +It sells for a high price." +473,15,1,"とても おいしい なにかの しっぽ。 +ショップで たかく うれる。 +" +473,15,3,"매우 맛있는 무언가의 꼬리. +가게에서 비싸게 팔린다." +473,15,5,"Une queue d’origine inconnue tout à fait +savoureuse, vendue très cher." +473,15,6,"Die Rute eines unbestimmten Wesens. +Extrem schmackhaft. Lässt sich teuer verkaufen." +473,15,7,"Poké Ball algo distinta, especialmente indicada +para capturar Pokémon evasivos." +473,15,8,"Coda di origine sconosciuta dal sapore delizioso. +Si vende a un prezzo piuttosto alto." +473,15,9,"A very tasty tail of something. +It can be sold at a high price to shops." +473,15,11,"とても おいしい なにかの しっぽ。 +ショップで 高く 売れる。 +" +474,10,9,"A very old-fashioned bell that makes a +gentle ringing." +474,11,5,"Une cloche antique au tintement +apaisant." +474,11,9,"A very old-fashioned bell that makes a +gentle ringing." +474,14,9,"A very old-fashioned bell that makes a +gentle ringing." +474,15,1,"こころ やすまる ねいろが きける +とても ふるめかしい スズ。 +" +474,15,3,"마음이 편안해지는 음색이 들리는 +아주 고풍스러운 방울." +474,15,5,Une cloche antique au tintement apaisant. +474,15,6,"Eine altehrwürdige Glocke, deren Läuten +alle besänftigt, die es hören." +474,15,7,"Poké Ball algo distinta que funciona +especialmente bien con Pokémon de nivel +inferior a los que se posee." +474,15,8,"Una campana antica. Produce un suono che dona +pace al cuore." +474,15,9,"A very old-fashioned bell that +makes a gentle ringing sound." +474,15,11,"こころ やすまる 音色が きける +とても ふるめかしい スズ。 +" +475,6,9,"A card-type door +key used in SILPH +CO’s office." +475,7,9,"A card-type key that unlocks doors +in SILPH CO.’s HEAD OFFICE in +SAFFRON CITY." +475,10,9,"A card key that opens a shutter in the +Radio Tower." +475,11,5,"Une clé en forme de carte permettant +d’ouvrir les cloisons de la Tour Radio." +475,11,9,"A card key that opens a shutter in the +Radio Tower." +475,14,9,"A card key that opens a shutter in the +Radio Tower." +475,15,1,"ラジオきょくの シャッターを あける +カードしきの カギ。 +" +475,15,3,"라디오방송국의 셔터를 여는 +카드식 열쇠." +475,15,5,"Une clé en forme de carte permettant d’ouvrir +les cloisons de la Tour Radio." +475,15,6,"Eine Schlüsselkarte, die eine +Tür im Radioturm öffnet." +475,15,7,"Poké Ball algo distinta, especialmente indicada +para capturar los Pokémon que se han pescado +con una caña." +475,15,8,"Chiave a scheda che apre le porte automatizzate +della Torre Radio." +475,15,9,"A card key that opens a shutter in the +Radio Tower." +475,15,11,"ラジオ局の シャッターを 開ける +カード式の カギ。 +" +476,5,9,"The key for NEW +MAUVILLE beneath +MAUVILLE CITY." +476,6,9,"The key for NEW +MAUVILLE beneath +MAUVILLE CITY." +476,7,9,"The key to NEW MAUVILLE, which +was constructed beneath MAUVILLE +CITY." +476,10,9,"A key that opens a door in the +Goldenrod Tunnel." +476,11,5,"Une clé qui permet d’ouvrir la porte +au fond du Doublon-Tunnel." +476,11,9,"A key that opens a door in the +Goldenrod Tunnel." +476,14,9,"A key that opens a door in the +Goldenrod Tunnel." +476,15,1,"コガネちかどうに ある とびらを +あける カギ。 +" +476,15,3,"금빛지하도에 있는 문을 +여는 열쇠." +476,15,5,"Une clé qui permet d’ouvrir la porte au fond du +Doublon-Tunnel." +476,15,6,"Ein Schlüssel, der eine Tür in der Dukatia- +Passage von Dukatia City öffnet." +476,15,7,"Poké Ball algo distinta que funciona +especialmente bien a la hora de atrapar +Pokémon de mucho peso." +476,15,8,"Chiave che permette di aprire la porta all’interno +del Fiortunnel." +476,15,9,"A key that opens a door in the +Goldenrod Tunnel." +476,15,11,"コガネ地下道に ある 扉を +空ける カギ。 +" +477,10,9,"A scale from the red GYARADOS. It glows +red like a flame." +477,11,5,"Une écaille du Léviator apparu au Lac +Colère. Elle rougeoie comme une flamme." +477,11,9,"A scale from the red Gyarados. It glows +red like a flame." +477,14,9,"A scale from the red Gyarados. It glows +red like a flame." +477,15,1,"いかりのみずうみに あらわれた +あかい ギャラドスの ウロコ。 +ほのおのように あかく かがやく。" +477,15,3,"분노의 호수에 나타난 +빨간 갸라도스의 비늘. +불꽃처럼 빨갛게 빛난다." +477,15,5,"Une écaille du Léviator apparu au Lac Colère. +Elle rougeoie comme une flamme." +477,15,6,"Eine Schuppe des roten Garados, das im See des +Zorns erschienen ist. Sie glänzt rot wie Feuer." +477,15,7,"Poké Ball algo distinta que hace más amistosos a +los Pokémon salvajes que se capturan con ella." +477,15,8,"Una squama del Gyarados rosso apparso +al Lago d’Ira. È rossa come il fuoco." +477,15,9,"A scale from a red Gyarados. +It glows red like a flame." +477,15,11,"怒りの湖に あらわれた +あかい ギャラドスの ウロコ。 +ほのおのように あかく かがやく。" +478,10,9,The Poké Doll lost by the Copycat. +478,11,5,Poupée Mime Jr. perdue par la Copieuse. +478,11,9,"The Mime Jr. doll that was lost by +the Copycat." +478,14,9,"The Mime Jr. doll that was lost by +the Copycat." +478,15,1,"モノマネむすめが なくした +マネネの にんぎょう。 +" +478,15,3,"흉내내기 아가씨가 잃어버린 +흉내내인형." +478,15,5,La Poupée Mime Jr. perdue par la Copieuse. +478,15,6,"Eine Pantimimi-Puppe, welche die Nachahmerin +verloren hat." +478,15,7,"Poké Ball algo distinta que atrapa con más +facilidad los Pokémon que evolucionan con la +Piedra Lunar." +478,15,8,"Poké Bambola raffigurante Mime Jr. smarrita +da Copiona." +478,15,9,"The Mime Jr. doll that was lost by +the Copycat." +478,15,11,"モノマネ娘が なくした +マネネの 人形。 +" +479,10,9,"A ticket required for riding the Magnet +Train. It allows you to ride whenever +and however much you’d like." +479,11,5,"Un ticket nécessaire pour monter +à bord du Train Magnétique. +Utilisable à volonté." +479,11,9,"A ticket required for riding the Magnet +Train. It allows you to ride whenever +and however much you’d like." +479,14,9,"A ticket required for riding the Magnet +Train. It allows you to ride whenever +and however much you’d like." +479,15,1,"リニアカーに のるときに ひつような +チケット。 いつでも のりほうだい。 +" +479,15,3,"리니어 카를 탈 때 필요한 +티켓. 언제든지 무제한으로 이용 가능." +479,15,5,"Un ticket nécessaire pour monter à bord du +Train Magnétique. Utilisable à volonté." +479,15,6,"Eine Fahrkarte, die einem die Reise mit dem +Magnetzug ermöglicht. Gilt für beliebig viele +Fahrten." +479,15,7,"Poké Ball que se utiliza en el Concurso de +Captura de Bichos." +479,15,8,"Biglietto necessario per viaggiare sul supertreno. +Utilizzabile a volontà." +479,15,9,"A pass required for riding the Magnet +Train. It allows you to ride whenever +and however much you’d like." +479,15,11,"リニアカーに 乗るときに 必要な +チケット。 いつでも 乗り放題。 +" +480,10,9,"An important machine part for the +Power Plant that was stolen." +480,11,5,"Une pièce essentielle du générateur +de la Centrale." +480,11,9,"An important machine part for the +Power Plant that was stolen." +480,14,9,"An important machine part for the +Power Plant that was stolen." +480,15,1,"はつでんしょから ぬすまれた +はつでんきの たいせつな ぶひん。 +" +480,15,3,"발전소에서 도둑맞은 +발전기의 중요한 부품." +480,15,5,"Une pièce essentielle du générateur de +la Centrale." +480,15,6,"Ein unentbehrliches Maschinenteil, +das aus dem Kraftwerk entwendet wurde." +480,15,7,Poké Ball que se utiliza dentro del Parque Compi. +480,15,8,"Pezzo rubato alla Centrale Elettrica, essenziale +per il generatore." +480,15,9,"An important part of a machine that +was stolen from the Power Plant." +480,15,11,"発電所から ぬすまれた +発電機の たいせつな 部品。 +" +481,10,9,"A strange, silvery feather +that sparkles." +481,11,5,"Une étrange plume qui brille +d’un éclat argenté." +481,11,9,"A strange, silvery feather +that sparkles." +481,14,9,"A strange, silvery feather +that sparkles." +481,15,1,"ぎんいろに ひかり かがやく +ふしぎな はね。 +" +481,15,3,"은빛으로 빛나는 +신비한 날개." +481,15,5,"Une étrange plume qui brille d’un éclat +argenté." +481,15,6,"Eine silberne Feder, die von einem +seltsamen Leuchten erfüllt ist." +481,15,7,"Álbum que recoge las fotos que se toman a lo +largo de la aventura." +481,15,8,Misteriosa piuma che brilla di luce argentea. +481,15,9,"A strange, silvery feather +that sparkles." +481,15,11,"ぎんいろに ひかり かがやく +不思議な はね。 +" +482,10,9,"A mystical, rainbow feather +that sparkles." +482,11,5,"Une étrange plume qui brille +d’un éclat arc-en-ciel." +482,11,9,"A mystical rainbow feather +that sparkles." +482,14,9,"A mystical rainbow feather +that sparkles." +482,15,1,"にじいろに ひかり かがやく +ふしぎな はね。 +" +482,15,3,"무지갯빛으로 빛나는 +이상한 날개." +482,15,5,"Une étrange plume qui brille d’un éclat +arc-en-ciel." +482,15,6,"Eine mystische Feder, die von einem +regenbogenfarbenen Leuchten erfüllt ist." +482,15,7,"Lector con el que se pueden escuchar aquellas +canciones tan nostálgicas. Se cambia con un solo +interruptor." +482,15,8,Piuma magica dai mille colori. +482,15,9,"A mystical rainbow feather +that sparkles." +482,15,11,"にじいろに ひかり かがやく +不思議な はね。 +" +483,10,9,"A mysterious Egg obtained from Mr. +Pokémon. What’s in the Egg is unknown." +483,11,5,"Un œuf étrange confié par M. Pokémon. +Personne ne sait ce qu’il contient." +483,11,9,"A mysterious Egg obtained from Mr. +Pokémon. What’s in the Egg is unknown." +483,14,9,"A mysterious Egg obtained from Mr. +Pokémon. What’s in the Egg is unknown." +483,15,1,"ポケモンじいさんから あずかった +ふしぎな もようの タマゴ。 +なんの タマゴか わからない。" +483,15,3,"포켓몬 할아버지로부터 받은 +이상한 모양의 알. +어떤 알인지 모른다." +483,15,5,"Un Œuf étrange confié par M. Pokémon. +Personne ne sait ce qu’il contient." +483,15,6,"Ein seltsam gemustertes Ei, das du von +Mr. Pokémon erhalten hast. Sein Inhalt +liegt im Dunkeln." +483,15,7,"Campana de aspecto antiguo que emite un sonido +que calma el espíritu." +483,15,8,"Uovo dai disegni bizzarri che si riceve da +Mr. Pokémon. Non si sa che cosa contenga." +483,15,9,"A mysterious Egg obtained from Mr. Pokémon. +What is in the Egg is unknown." +483,15,11,"ポケモンじいさんから あずかった +不思議な もようの タマゴ。 +なんの タマゴか わからない。" +484,10,9,"A music player that allows you to listen +to nostalgic songs. It’s operated with +a single switch." +484,11,5,"Un lecteur de musique qui permet de se +plonger dans une atmosphère rétro. Une +pression suffit pour changer de mode." +484,11,9,"A music player that allows you to listen +to nostalgic songs. It’s operated with +a single switch." +484,14,9,"A music player that allows you to listen +to nostalgic songs. It’s operated with +a single switch." +484,15,1,"なつかしい きょくが きける +おんがく プレイヤー。 +スイッチ ひとつで きりかえられる。" +484,15,3,"그리운 곡을 들을 수 있는 +음악 플레이어. +스위치 하나로 전환할 수 있다." +484,15,5,"Un lecteur de musique qui permet de se plonger +dans une atmosphère rétro. Une pression suffit +pour changer de mode." +484,15,6,"Ein Abspielgerät, das Musik aus einer längst +vergangenen Zeit spielt. Lässt sich durch +simplen Knopfdruck bedienen." +484,15,7,"Contiene los datos del Pokéathlon con el número +de victorias en Botaluces." +484,15,8,"Lettore di musica che permette di immergersi +in atmosfere rétro. +Ha un solo pulsante per cambiare canzone." +484,15,9,"A music player that allows you to listen +to nostalgic songs. It’s operated with +the flip of a single switch." +484,15,11,"なつかしい 曲が きける +音楽プレイヤー。 +スイッチ ひとつで きりかえられる。" +485,10,9,"An old-fashioned bell with a gentle, +soothing sound." +485,11,5,"Une cloche antique au tintement +apaisant." +485,11,9,"A very old-fashioned bell that makes a +gentle ringing." +485,14,9,"A very old-fashioned bell that makes a +gentle ringing." +485,15,1,"こころ やすまる ねいろが きける +とても ふるめかしい スズ。 +" +485,15,3,"마음이 편안해지는 음색이 들리는 +아주 고풍스러운 방울." +485,15,5,Une cloche antique au tintement apaisant. +485,15,6,"Eine altehrwürdige Glocke, deren Läuten +alle besänftigt, die es hören." +485,15,7,"Contiene los datos del Pokéathlon con el número +de victorias en Pisacírculos." +485,15,8,"Una campana antica. Produce un suono +che dona pace al cuore." +485,15,9,"A very old-fashioned bell that +makes a gentle ringing sound." +485,15,11,"こころ やすまる ねいろが きける +とても ふるめかしい スズ。 +" +486,10,9,"It holds Pokéathlon records. It’s a +card that shows how many victories +you’ve had." +486,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit votre +nombre de victoires au Pokéathlon." +486,11,9,"It holds Pokéathlon records. It’s a +card that shows how many victories +you’ve had." +486,14,9,"It holds Pokéathlon records. It’s a +card that shows how many victories +you’ve had." +486,15,1,"ポケスロンの きろくが はいっている。 +ゆうしょう かいすうが +" +486,15,3,"포켓슬론의 기록이 들어 있다. +우승 횟수가 +기록된 카드." +486,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit votre nombre de +victoires au Pokéathlon." +486,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du ein Turnier gewonnen hast." +486,15,7,"Contiene los datos del Pokéathlon con el número +de veces que se ha quedado en último lugar en +conexión." +486,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero totale +di vittorie." +486,15,9,"It holds Pokéathlon records. It is a +card that shows how many victories +you have had in the Pokéathlon." +486,15,11,"ポケスロンの 記録が はいっている。 +優勝 回数が +記録された カード。" +487,10,9,"It holds Pokéathlon records. It’s a +card that shows how many +losses you’ve had." +487,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de fois où vous avez fini en dernier." +487,11,9,"It holds Pokéathlon records. It’s a +card that shows how many +losses you’ve had." +487,14,9,"It holds Pokéathlon records. It’s a +card that shows how many +losses you’ve had." +487,15,1,"ポケスロンの きろくが はいっている。 +ビリになった かいすうが +きろくされた カード。" +487,15,3,"포켓슬론의 기록이 들어 있다. +꼴찌가 된 횟수가 +기록된 카드." +487,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de fois +où vous avez fini en dernier." +487,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du bei einem Turnier Letzter +geworden bist." +487,15,7,"Contiene los datos del Pokéathlon con el número +de victorias en una disciplina." +487,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +ultimi posti." +487,15,9,"It holds Pokéathlon records. It is a +card that shows how many losses +you have had in the Pokéathlon." +487,15,11,"ポケスロンの 記録が はいっている。 +ビリになった 回数が +記録された カード。" +488,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have dashed." +488,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de sprints de vos Pokémon." +488,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have dashed." +488,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have dashed." +488,15,1,"ポケスロンの きろくが はいっている。 +ポケモンの ダッシュした かいすうが +きろくされた カード。" +488,15,3,"포켓슬론의 기록이 들어 있다. +포켓몬이 대시한 횟수가 +기록된 카드." +488,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de sprints +de vos Pokémon." +488,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie viele Sprints du schon hinter dir hast." +488,15,7,"Contiene los datos del Pokéathlon con el número +de veces que has terminado en última posición en +una disciplina." +488,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di sprint +dei tuoi Pokémon." +488,15,9,"It holds Pokéathlon records. It is a +card that shows how many times your +Pokémon dashed in the Pokéathlon." +488,15,11,"ポケスロンの 記録が はいっている。 +ポケモンの ダッシュした 回数が +記録された カード。" +489,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have jumped." +489,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de sauts de vos Pokémon." +489,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have jumped." +489,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have jumped." +489,15,1,"ポケスロンの きろくが はいっている。 +ポケモンの ジャンプした かいすうが +きろくされた カード。" +489,15,3,"포켓슬론의 기록이 들어 있다. +포켓몬이 점프한 횟수가 +기록된 카드." +489,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de sauts +de vos Pokémon." +489,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du gesprungen bist." +489,15,7,"Contiene los datos del Pokéathlon con el número +de veces que has cambiado de Pokémon." +489,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di salti +dei tuoi Pokémon." +489,15,9,"It holds Pokéathlon records. It is a +card that shows how many times your +Pokémon jumped in the Pokéathlon." +489,15,11,"ポケスロンの 記録が はいっている。 +ポケモンの ジャンプした 回数が +記録された カード。" +490,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won the Hurdle Dash." +490,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de victoires à la Cours’Obstacles." +490,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won the Hurdle Dash." +490,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won the Hurdle Dash." +490,15,1,"ポケスロンの きろくが はいっている。 +ダッシュハードル 1い かいすうが +きろくされた カード。" +490,15,3,"포켓슬론의 기록이 들어 있다. +대시허들 1위 횟수가 +기록된 카드." +490,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de victoires +à la Cours’Obstacles." +490,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du beim Hürdenlauf den 1. Platz +belegt hast." +490,15,7,"Contiene los datos del Pokéathlon con el número +de victorias en Metegoles." +490,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +vittorie a Corsostacoli." +490,15,9,"It holds Pokéathlon records. It is a +card that shows how many times you +won the Pokéathlon’s Hurdle Dash." +490,15,11,"ポケスロンの 記録が はいっている。 +ダッシュハードル 1位 回数が +記録された カード。" +491,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won the Relay Run." +491,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de victoires à la Course de Relais." +491,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won the Relay Run." +491,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won the Relay Run." +491,15,1,"ポケスロンの きろくが はいっている。 +チェンジリレー 1い かいすうが +きろくされた カード。" +491,15,3,"포켓슬론의 기록이 들어 있다. +체인지릴레이 1위 횟수가 +기록된 카드." +491,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de victoires +à la Course de Relais." +491,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du beim Staffellauf den 1. Platz +belegt hast." +491,15,7,"Contiene los datos del Pokéathlon con el número +de premios individuales." +491,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +vittorie a Staffetta." +491,15,9,"It holds Pokéathlon records. It is a +card that shows how many times you +won the Pokéathlon’s Relay Run." +491,15,11,"ポケスロンの 記録が はいっている。 +チェンジリレー 1位 回数が +記録された カード。" +492,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Pennant Capture." +492,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de victoires au Capture Drapeau." +492,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Pennant Capture." +492,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Pennant Capture." +492,15,1,"ポケスロンの きろくが はいっている。 +スティールフラッグ 1い かいすうが +きろくされた カード。" +492,15,3,"포켓슬론의 기록이 들어 있다. +스틸플래그 1위 횟수가 +기록된 카드." +492,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de victoires +au Capture Drapeau." +492,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du beim Flaggenschnappen den +1. Platz belegt hast." +492,15,7,"Contiene los datos del Pokéathlon con el número +de veces que tocaste con el lápiz a tus Pokémon." +492,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +vittorie a Bandierina." +492,15,9,"It holds Pokéathlon records. It is a +card that shows how many times you +won the Pokéathlon’s Pennant Capture." +492,15,11,"ポケスロンの 記録が はいっている。 +スティールフラッグ 1位 回数が +記録された カード。" +493,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Block Smash." +493,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de victoires au Casse Roc." +493,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Block Smash." +493,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Block Smash." +493,15,1,"ポケスロンの きろくが はいっている。 +ブレイクブロック 1い かいすうが +きろくされた カード。" +493,15,3,"포켓슬론의 기록이 들어 있다. +브레이크블록 1위 횟수가 +기록된 카드." +493,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de victoires +au Casse Roc." +493,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du beim Ziegelbrechen den 1. Platz +belegt hast." +493,15,7,"Contiene los datos del Pokéathlon con el tiempo +que has pasado en esta competición." +493,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +vittorie a Spaccalastra." +493,15,9,"It holds Pokéathlon records. It is a +card that shows how many times you +won the Pokéathlon’s Block Smash." +493,15,11,"ポケスロンの 記録が はいっている。 +ブレイクブロック 1位 回数が +記録された カード。" +494,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Disc Catch." +494,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de victoires à l’Attrap’Disques." +494,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Disc Catch." +494,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Disc Catch." +494,15,1,"ポケスロンの きろくが はいっている。 +キャッチソーサー 1い かいすうが +きろくされた カード。" +494,15,3,"포켓슬론의 기록이 들어 있다. +캐치소서 1위 횟수가 +기록된 카드." +494,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de victoires +à l’Attrap’Disques." +494,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du beim Diskusfangen den 1. Platz +belegt hast." +494,15,7,"Esfera glauca de la que se dice que guarda una +estrecha relación con las leyendas de Hoenn." +494,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +vittorie a Piattello." +494,15,9,"It holds Pokéathlon records. It is a +card that shows how many times you +won the Pokéathlon’s Disc Catch." +494,15,11,"ポケスロンの 記録が はいっている。 +キャッチソーサー 1位 回数が +記録された カード。" +495,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Snow Throw." +495,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de victoires à la Bataille Neige." +495,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Snow Throw." +495,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Snow Throw." +495,15,1,"ポケスロンの きろくが はいっている。 +シューティングスノー 1い +かいすうが きろくされた カード。" +495,15,3,"포켓슬론의 기록이 들어 있다. +슈팅스노 1위 횟수가 +기록된 카드." +495,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de victoires +à la Bataille Neige." +495,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du den 1. Platz bei der +Schneeschlacht belegt hast." +495,15,7,"Una Cápsula resistente que solo puede abrirse +con una llave especial." +495,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +vittorie a Neve Incrociata." +495,15,9,"It holds Pokéathlon records. It is a +card that shows how many times you +won the Pokéathlon’s Snow Throw." +495,15,11,"ポケスロンの 記録が はいっている。 +シューティングスノー 1位 +回数が 記録された カード。" +496,10,9,"It holds Pokéathlon records. It’s a +card that shows how many points +your Pokémon scored." +496,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de points gagnés par vos Pokémon." +496,11,9,"It holds Pokéathlon records. It’s a +card that shows how many points +your Pokémon scored." +496,14,9,"It holds Pokéathlon records. It’s a +card that shows how many points +your Pokémon scored." +496,15,1,"ポケスロンの きろくが はいっている。 +ポケモンの かくとく ポイントが +きろくされた カード。" +496,15,3,"포켓슬론의 기록이 들어 있다. +포켓몬의 획득 포인트가 +기록된 카드." +496,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de points +gagnés par vos Pokémon." +496,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft deine Pokémon im Wettkampf +Punkte geholt haben." +496,15,7,"Esfera carmesí de la que se dice que guarda una +estrecha relación con las leyendas de Hoenn." +496,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +punti accumulati." +496,15,9,"It holds Pokéathlon records. It is a +card that shows how many points your +Pokémon scored in the Pokéathlon." +496,15,11,"ポケスロンの 記録が はいっている。 +ポケモンの 獲得ポイントが +記録された カード。" +497,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have failed." +497,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +d’erreurs de vos Pokémon." +497,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have failed." +497,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have failed." +497,15,1,"ポケスロンの きろくが はいっている。 +ポケモンの しっぱいした かいすうが +きろくされた カード。" +497,15,3,"포켓슬론의 기록이 들어 있다. +포켓몬이 실패한 횟수가 +기록된 카드." +497,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre d’erreurs +de vos Pokémon." +497,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie viele Schnitzer du dir geleistet hast." +497,15,7,"Esfera añil que, según dicen, guarda una estrecha +relación con las leyendas de Hoenn." +497,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +errori dei tuoi Pokémon." +497,15,9,"It holds Pokéathlon records. It is a +card that shows how many times your +Pokémon failed in the Pokéathlon." +497,15,11,"ポケスロンの 記録が はいっている。 +ポケモンの 失敗した 回数が +記録された カード。" +498,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon impeded themselves." +498,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de points perdus par vos Pokémon." +498,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon impeded themselves." +498,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon impeded themselves." +498,15,1,"ポケスロンの きろくが はいっている。 +ポケモンの じめつした かいすうが +きろくされた カード。" +498,15,3,"포켓슬론의 기록이 들어 있다. +포켓몬이 자멸한 횟수가 +기록된 카드." +498,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de points +perdus par vos Pokémon." +498,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie viele Punktabzüge dein Team +kassiert hat." +498,15,7,"Esfera cristalina encontrada bajo tierra. A pesar +de estar cubierta de roca y tierra, su belleza es +increíble." +498,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +punti persi." +498,15,9,"It holds Pokéathlon records. It is a +card that shows how many times +your Pokémon impeded themselves." +498,15,11,"ポケスロンの 記録が はいっている。 +ポケモンの 自滅した 回数が +記録された カード。" +499,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have tackled." +499,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de charges de vos Pokémon." +499,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have tackled." +499,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have tackled." +499,15,1,"ポケスロンの きろくが はいっている。 +ポケモンの たいあたり かいすうが +きろくされた カード。" +499,15,3,"포켓슬론의 기록이 들어 있다. +포켓몬의 몸통박치기 횟수가 +기록된 카드." +499,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de charges +de vos Pokémon." +499,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie viele Angriffe du schon ausgeführt hast." +499,15,7,"Curiosa escama que hace evolucionar a +determinadas especies de Pokémon. +Brilla con los colores del arcoíris." +499,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di azioni +dei tuoi Pokémon." +499,15,9,"It holds Pokéathlon records. It is a +card that shows how many times your +Pokémon tackled in the Pokéathlon." +499,15,11,"ポケスロンの 記録が はいっている。 +ポケモンの たいあたり 回数が +記録された カード。" +500,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have fallen down." +500,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de fois où vos Pokémon sont tombés." +500,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have fallen down." +500,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon have fallen down." +500,15,1,"ポケスロンの きろくが はいっている。 +ポケモンの おちた かいすうが +きろくされた カード。" +500,15,3,"포켓슬론의 기록이 들어 있다. +포켓몬이 떨어진 횟수가 +기록된 카드." +500,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de fois où +vos Pokémon sont tombés." +500,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft deine Pokémon schon aus dem Ring +gefallen sind." +500,15,7,"Piedra evolutiva. El Pokémon portador aumentará +su Defensa y su Defensa Especial si aún puede +evolucionar." +500,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +cadute dei tuoi Pokémon." +500,15,9,"It holds Pokéathlon records. It is a +card that shows how many times your +Pokémon fell down in the Pokéathlon." +500,15,11,"ポケスロンの 記録が はいっている。 +ポケモンの 落ちた 回数が +記録された カード。" +501,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Ring Drop." +501,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de victoires au Combat Ring-Out." +501,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Ring Drop." +501,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Ring Drop." +501,15,1,"ポケスロンの きろくが はいっている。 +リングアウトファイト 1い +かいすうが きろくされた カード。" +501,15,3,"포켓슬론의 기록이 들어 있다. +링아웃파이트 1위 +횟수가 기록된 카드." +501,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de victoires +au Combat Ring-Out." +501,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du beim Ringrangeln den 1. Platz +belegt hast." +501,15,7,"Piedra muy ligera que reduce el peso del +Pokémon que la lleve." +501,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +vittorie a Fuori dal Ring." +501,15,9,"It holds Pokéathlon records. It is a +card that shows how many times you +won the Pokéathlon’s Ring Drop." +501,15,11,"ポケスロンの 記録が はいっている。 +リングアウトファイト 1位 +回数が 記録された カード。" +502,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Lamp Jump." +502,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de victoires au Saute-Lumière." +502,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Lamp Jump." +502,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Lamp Jump." +502,15,1,"ポケスロンの きろくが はいっている。 +ゲットトランポリン 1い かいすうが +きろくされた カード。" +502,15,3,"포켓슬론의 기록이 들어 있다. +겟트램펄린 1위 횟수가 +기록된 카드." +502,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de victoires +au Saute-Lumière." +502,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du beim Lampionspringen den +1. Platz belegt hast." +502,15,7,"Si el portador es alcanzado por un ataque físico, +el agresor también recibe daño." +502,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +vittorie a Trampoluci." +502,15,9,"It holds Pokéathlon records. It is a +card that shows how many times you +won the Pokéathlon’s Lamp Jump." +502,15,11,"ポケスロンの 記録が はいっている。 +ゲットトランポリン 1位 回数が +記録された カード。" +503,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Circle Push." +503,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de victoires au Cercle Musical." +503,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Circle Push." +503,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Circle Push." +503,15,1,"ポケスロンの きろくが はいっている。 +プッシュサークル 1い かいすうが +きろくされた カード。" +503,15,3,"포켓슬론의 기록이 들어 있다. +푸시서클 1위 횟수가 +기록된 카드." +503,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de victoires +au Cercle Musical." +503,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du beim Drängelkreis den 1. Platz +belegt hast." +503,15,7,"El Pokémon que lo lleve flotará en el aire. +Si recibe un golpe, estallará." +503,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +vittorie a Spingicerchio." +503,15,9,"It holds Pokéathlon records. It is a +card that shows how many times you +won the Pokéathlon’s Circle Push." +503,15,11,"ポケスロンの 記録が はいっている。 +プッシュサークル 1位 回数が +記録された カード。" +504,10,9,"It holds Pokéathlon records. It’s a +card that shows how many +Link Pokéathlon wins you’ve had." +504,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de victoires en Link." +504,11,9,"It holds Pokéathlon records. It’s a +card that shows how many +Link Pokéathlon wins you’ve had." +504,14,9,"It holds Pokéathlon records. It’s a +card that shows how many +Link Pokéathlon wins you’ve had." +504,15,1,"ポケスロンの きろくが はいっている。 +つうしん ポケスロンの ゆうしょう +かいすうが きろくされた カード。" +504,15,3,"포켓슬론의 기록이 들어 있다. +통신 포켓슬론의 우승 +횟수가 기록된 카드." +504,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de victoires +en Link." +504,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie viele Konnex-Wettkämpfe du gewonnen +hast." +504,15,7,"Misteriosa tarjeta que permite al Pokémon que la +lleva expulsar al oponente cuando este le cause +daño." +504,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +vittorie in link." +504,15,9,"It holds Pokéathlon records. It is a +card that shows how many Link +Pokéathlon wins you have had." +504,15,11,"ポケスロンの 記録が はいっている。 +通信ポケスロンの 優勝 +回数が 記録された カード。" +505,10,9,"It holds Pokéathlon records. It’s a +card that shows how many +Link Pokéathlon losses you’ve had." +505,11,5,"Contient vos données du Pokéathlon. +Il y est inscrit le nombre de fois où +vous avez fini en dernier en Link." +505,11,9,"It holds Pokéathlon records. It’s a +card that shows how many +Link Pokéathlon losses you’ve had." +505,14,9,"It holds Pokéathlon records. It’s a +card that shows how many +Link Pokéathlon losses you’ve had." +505,15,1,"ポケスロンの きろくが はいっている。 +つうしん ポケスロンの ビリになった +かいすうが きろくされた カード。" +505,15,3,"포켓슬론의 기록이 들어 있다. +통신 포켓슬론에서 꼴찌한 +횟수가 기록된 카드." +505,15,5,"Contient vos données du Pokéathlon. +Il y est inscrit le nombre de fois où vous avez fini +en dernier en Link." +505,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, bei wie vielen Konnex-Wettkämpfen du +schon Letzter warst." +505,15,7,"El Pokémon que lo lleva es vulnerable frente a +movimientos que normalmente no afectan a su +tipo." +505,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +ultimi posti in link." +505,15,9,"It holds Pokéathlon records. It is a +card that shows how many Link +Pokéathlon losses you have had." +505,15,11,"ポケスロンの 記録が はいっている。 +通信ポケスロンの ビリになった +回数が 記録された カード。" +506,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times +you’ve won an event." +506,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit votre +nombre de victoires aux épreuves." +506,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times +you’ve won an event." +506,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times +you’ve won an event." +506,15,1,"ポケスロンの きろくが はいっている。 +きょうぎで 1い になった +かいすうが きろくされた カード。" +506,15,3,"포켓슬론의 기록이 들어 있다. +경기에서 1위 한 +횟수가 기록된 카드." +506,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit votre nombre de +victoires aux épreuves." +506,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du in einer Disziplin den 1. Platz +belegt hast." +506,15,7,"Banda que potencia los movimientos que estrujan +al rival." +506,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +vittorie nelle gare." +506,15,9,"It holds Pokéathlon records. It is a +card that shows how many times +you have won a Pokéathlon event." +506,15,11,"ポケスロンの 記録が はいっている。 +競技で 1位 になった +回数が 記録された カード。" +507,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times +you’ve lost an event." +507,11,5,"Contient vos données du Pokéathlon. +Il y est inscrit le nombre de fois où +vous avez fini en dernier aux épreuves." +507,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times +you’ve lost an event." +507,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times +you’ve lost an event." +507,15,1,"ポケスロンの きろくが はいっている。 +きょうぎで ビリになった +かいすうが きろくされた カード。" +507,15,3,"포켓슬론의 기록이 들어 있다. +경기에서 꼴찌 한 +횟수가 기록된 카드." +507,15,5,"Contient vos données du Pokéathlon. +Il y est inscrit le nombre de fois où vous avez fini +en dernier aux épreuves." +507,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du in einer Disziplin den +letzten Platz belegt hast." +507,15,7,"Raíz de usar y tirar que sube el Ataque Especial +cuando se recibe un ataque de tipo Agua." +507,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +ultimi posti nelle gare." +507,15,9,"It holds Pokéathlon records. It is a +card that shows how many times +you have lost a Pokéathlon event." +507,15,11,"ポケスロンの 記録が はいっている。 +競技で ビリになった +回数が 記録された カード。" +508,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +switched Pokémon." +508,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de fois où vous avez changé de Pokémon." +508,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +switched Pokémon." +508,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +switched Pokémon." +508,15,1,"ポケスロンの きろくが はいっている。 +ポケモンの こうたい かいすうが +きろくされた カード。" +508,15,3,"포켓슬론의 기록이 들어 있다. +포켓몬의 교체 횟수가 +기록된 카드." +508,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de fois où +vous avez changé de Pokémon." +508,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du deine Pokémon ausgewechselt +hast." +508,15,7,"Batería de usar y tirar que sube el Ataque de +quien la lleva cuando recibe un golpe de tipo +Eléctrico." +508,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +sostituzioni di Pokémon." +508,15,9,"It holds Pokéathlon records. It is a +card that shows how many times you +switched Pokémon in the Pokéathlon." +508,15,11,"ポケスロンの 記録が はいっている。 +ポケモンの 交代 回数が +記録された カード。" +509,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Goal Roll." +509,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre +de victoires à la Balle au But." +509,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Goal Roll." +509,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +won Goal Roll." +509,15,1,"ポケスロンの きろくが はいっている。 +スマッシュゴール 1い かいすうが +きろくされた カード。" +509,15,3,"포켓슬론의 기록이 들어 있다. +스매시골 1위 횟수가 +기록된 카드." +509,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le nombre de victoires +à la Balle au But." +509,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du beim Torschießen den 1. Platz +belegt hast." +509,15,7,"Si el portador es alcanzado por un ataque, saldrá +del combate y será sustituido por otro Pokémon +del equipo." +509,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +vittorie a Piazzagoal." +509,15,9,"It holds Pokéathlon records. It is a +card that shows how many times you +won the Pokéathlon’s Goal Roll." +509,15,11,"ポケスロンの 記録が はいっている。 +スマッシュゴール 1位 回数が +記録された カード。" +510,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon won individual prizes." +510,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit votre +nombre de prix individuels." +510,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon won individual prizes." +510,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times your +Pokémon won individual prizes." +510,15,1,"ポケスロンの きろくが はいっている。 +こじんしょう かくとく かいすうが +きろくされた カード。" +510,15,3,"포켓슬론의 기록이 들어 있다. +개인상 획득 횟수가 +기록된 카드." +510,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit votre nombre de prix +individuels." +510,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft eines deiner Pokémon +den Einzelpreis gewonnen hat." +510,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Fuego. Debe llevarla +un Pokémon." +510,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di +premi individuali." +510,15,9,"It holds Pokéathlon records. It is a +card that shows how many times your +Pokémon won individual prizes." +510,15,11,"ポケスロンの 記録が はいっている。 +個人賞 獲得 回数が +記録された カード。" +511,10,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +instructed your Pokémon." +511,11,5,"Contient vos données du Pokéathlon. +Il y est inscrit le nombre de fois +où vous avez touché vos Pokémon." +511,11,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +instructed your Pokémon." +511,14,9,"It holds Pokéathlon records. It’s a +card that shows how many times you’ve +instructed your Pokémon." +511,15,1,"ポケスロンの きろくが はいっている。 +ポケモンを タッチした かいすうが +きろくされた カード。" +511,15,3,"포켓슬론의 기록이 들어 있다. +포켓몬을 터치한 횟수가 +기록된 카드." +511,15,5,"Contient vos données du Pokéathlon. +Il y est inscrit le nombre de fois où vous avez +touché vos Pokémon." +511,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie oft du deine Pokémon mit dem +Touchpen berührt hast." +511,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Agua. Debe llevarla +un Pokémon." +511,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda è registrato il numero di volte +in cui hai toccato i Pokémon." +511,15,9,"It holds Pokéathlon records. It is a +card that shows how many times you +instructed your Pokémon." +511,15,11,"ポケスロンの 記録が はいっている。 +ポケモンを タッチした 回数が +記録された カード。" +512,10,9,"It holds Pokéathlon records. It’s a +card that shows how much time you’ve +spent in the Pokéathlon." +512,11,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le temps +que vous avez passé à y jouer." +512,11,9,"It holds Pokéathlon records. It’s a +card that shows how much time you’ve +spent in the Pokéathlon." +512,14,9,"It holds Pokéathlon records. It’s a +card that shows how much time you’ve +spent in the Pokéathlon." +512,15,1,"ポケスロンの きろくが はいっている。 +ポケスロンで あそんだ じかんが +きろくされた カード。" +512,15,3,"포켓슬론의 기록이 들어 있다. +포켓슬론으로 즐긴 시간이 +기록된 카드." +512,15,5,"Contient vos données du Pokéathlon. +Sur cette carte est inscrit le temps que vous avez +passé à y jouer." +512,15,6,"Speichert deine Pokéathlon-Rekorde. Die Karte +zeigt, wie viel Zeit du beim Pokéathlon verbracht +hast." +512,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Eléctrico. Debe llevarla +un Pokémon." +512,15,8,"Contiene i tuoi dati Pokéathlon. +Su questa Scheda sono registrate le ore +che hai passato a giocare." +512,15,9,"It holds Pokéathlon records. It is a +card that shows how much time you +spent participating in the Pokéathlon." +512,15,11,"ポケスロンの 記録が はいっている。 +ポケスロンで 遊んだ 時間が +記録された カード。" +513,10,9,"A sturdy Capsule that can only be +opened with a special key." +513,11,5,"Un écrin résistant qui ne s’ouvre +qu’avec une clé spéciale." +513,11,9,"A sturdy Capsule that can only be +opened with a special key." +513,14,9,"A sturdy Capsule that can only be +opened with a special key." +513,15,1,"とくしゅな カギで あけられる +がんじょうな カプセル。 +" +513,15,3,"특수한 열쇠로 열 수 있는 +튼튼한 캡슐." +513,15,5,"Un écrin résistant qui ne s’ouvre qu’avec une clé +spéciale." +513,15,6,"Eine äußerst robuste Kapsel, die sich nur mit +einem ganz speziellen Schlüssel öffnen lässt." +513,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Hielo. Debe llevarla +un Pokémon." +513,15,8,"Scrigno blindato che si apre solo con una chiave +speciale." +513,15,9,"A sturdy Capsule that can only +be opened with a special key." +513,15,11,"特殊な カギで あけられる +頑丈な カプセル。 +" +514,10,9,"A nice photo album for storing all the +photos taken along your adventure." +514,11,5,"Un album décoré de photos souvenir +prises pendant le voyage." +514,11,9,"A nice photo album for storing all the +photos taken along your adventure." +514,14,9,"A nice photo album for storing all the +photos taken along your adventure." +514,15,1,"ぼうけんちゅうに さつえいした +きねんしゃしんを かざる アルバム。 +" +514,15,3,"모험 중에 촬영한 +기념사진을 보관하는 앨범." +514,15,5,"Un album décoré de photos souvenir prises +pendant le voyage." +514,15,6,"Ein Album, in dem du Erinnerungsfotos +aufbewahren kannst, die du auf deinen +Reisen geschossen hast." +514,15,7,"Contiene los datos del Pokéathlon con el número +de victorias en Fuera del Ring." +514,15,8,"Album dove si possono sistemare le foto +scattate durante quest’avventura." +514,15,9,"A nice photo album for storing all the +photos taken along your adventure." +514,15,11,"冒険中に 撮影した +記念写真を 飾る アルバム。 +" +515,5,9,"A ZIGZAGOON-print +MAIL to be held by +a POKéMON." +515,6,9,"A ZIGZAGOON-print +MAIL to be held by +a POKéMON." +515,7,9,"A piece of MAIL featuring a cute +ZIGZAGOON print. +It is to be held by a POKéMON." +516,5,9,"A WINGULL-print +MAIL to be held by +a POKéMON." +516,6,9,"A WINGULL-print +MAIL to be held by +a POKéMON." +516,7,9,"A piece of MAIL featuring a cute +WINGULL print. +It is to be held by a POKéMON." +517,5,9,"A PIKACHU-print +MAIL to be held by +a POKéMON." +517,6,9,"A PIKACHU-print +MAIL to be held by +a POKéMON." +517,7,9,"A piece of MAIL featuring a cute +PIKACHU print. +It is to be held by a POKéMON." +518,5,9,"A MAGNEMITE-print +MAIL to be held by +a POKéMON." +518,6,9,"A MAGNEMITE-print +MAIL to be held by +a POKéMON." +518,7,9,"A piece of MAIL featuring a cute +MAGNEMITE print. +It is to be held by a POKéMON." +519,5,9,"A SLAKOTH-print +MAIL to be held by +a POKéMON." +519,6,9,"A SLAKOTH-print +MAIL to be held by +a POKéMON." +519,7,9,"A piece of MAIL featuring a cute +SLAKOTH print. +It is to be held by a POKéMON." +520,5,9,"A WAILMER-print +MAIL to be held by +a POKéMON." +520,6,9,"A WAILMER-print +MAIL to be held by +a POKéMON." +520,7,9,"A piece of MAIL featuring a cute +WAILMER print. +It is to be held by a POKéMON." +521,5,9,"MAIL featuring a +sketch of the +holding POKéMON." +521,6,9,"MAIL featuring a +sketch of the +holding POKéMON." +521,7,9,"A piece of MAIL to be held by a +POKéMON. It will bear the print of +the POKéMON holding it." +522,5,9,"A DUSKULL-print +MAIL to be held by +a POKéMON." +522,6,9,"A DUSKULL-print +MAIL to be held by +a POKéMON." +522,7,9,"A piece of MAIL featuring a cute +DUSKULL print. +It is to be held by a POKéMON." +523,5,9,"A BELLOSSOM-print +MAIL to be held by +a POKéMON." +523,6,9,"A BELLOSSOM-print +MAIL to be held by +a POKéMON." +523,7,9,"A piece of MAIL featuring a cute +BELLOSSOM print. +It is to be held by a POKéMON." +524,5,9,"MAIL featuring a +sketch of the +holding POKéMON." +524,6,9,"MAIL featuring a +sketch of the +holding POKéMON." +524,7,9,"A piece of MAIL to be held by a +POKéMON. It will bear the print of +the POKéMON holding it." +525,5,9,"A gorgeous-print +MAIL to be held +by a POKéMON." +525,6,9,"A gorgeous-print +MAIL to be held +by a POKéMON." +525,7,9,"A piece of MAIL featuring a +gorgeous, extravagant print. +It is to be held by a POKéMON." +526,5,9,"MAIL featuring the +drawings of three +POKéMON." +526,6,9,"MAIL featuring the +drawings of three +POKéMON." +526,7,9,"A piece of MAIL featuring a print +of three cute POKéMON. +It is to be held by a POKéMON." +527,5,9,"A folding bicycle +that more than +doubles foot speed." +527,6,9,"A folding bicycle +that doubles your +speed or better." +527,7,9,"A folding bicycle that is at least +twice as fast as walking." +528,5,9,"A folding bicycle +capable of jumps +and wheelies." +528,6,9,"A folding bicycle +capable of jumps +and wheelies." +528,7,9,"A folding bicycle that is capable +of stunts like jumps and wheelies." +529,5,9,"A tool used for +watering BERRIES +and plants." +529,6,9,"A tool used for +watering BERRIES +and plants." +529,7,9,"A nifty watering pail. +Use it to promote strong growth in +BERRIES planted in soft soil." +530,5,9,"A package that +contains DEVON’s +machine parts." +530,6,9,"A package that +contains DEVON’s +machine parts." +530,7,9,"A package that contains mechanical +parts of some sort made by the +DEVON CORPORATION." +531,5,9,"A sack used to +gather and hold +volcanic ash." +531,6,9,"A sack used to +gather and hold +volcanic ash." +531,7,9,"A sack used to collect volcanic +ash automatically during walks +over deep ash." +532,5,9,"A case for holding +POKéBLOCKS made with +a BERRY BLENDER." +532,6,9,"A case for holding +POKéBLOCKS made with +a BERRY BLENDER." +532,7,9,"A case for holding POKéBLOCKS made +with a BERRY BLENDER. It releases +one POKéBLOCK when shaken." +533,5,9,"A letter to STEVEN +from the PRESIDENT +of the DEVON CORP." +533,6,9,"A letter to STEVEN +from the PRESIDENT +of the DEVON CORP." +533,7,9,"An extremely important letter to +STEVEN from the PRESIDENT of the +DEVON CORPORATION." +534,5,9,"The ticket for a +ferry to a distant +southern island." +534,6,9,"The ticket for a +ferry to a distant +southern island." +534,7,9,"The ticket required for sailing on a +ferry to a distant southern island. +It features a drawing of an island." +535,5,9,"A device found +inside the +ABANDONED SHIP." +535,6,9,"A device found +inside the +ABANDONED SHIP." +535,7,9,"A device used to search for +life-forms in water. +It looks too difficult to use." +536,5,9,"Nifty goggles that +protect eyes from +desert sandstorms." +536,6,9,"Nifty goggles that +protect eyes from +desert sandstorms." +536,7,9,"A pair of protective goggles. +They enable a TRAINER to travel +through even desert sandstorms." +537,5,9,"A meteorite found +at METEOR FALLS." +537,6,9,"A meteorite found +at METEOR FALLS." +537,7,9,"A meteorite that fell from space +onto MT. MOON long ago. +It is very lumpy and hard." +538,5,9,"A key that opens a +door inside the +ABANDONED SHIP." +538,6,9,"A key that opens a +door inside the +ABANDONED SHIP." +538,7,9,"A key that opens the door to Room +1 inside the ABANDONED SHIP. +It is old and looks easily broken." +539,5,9,"A key that opens a +door inside the +ABANDONED SHIP." +539,6,9,"A key that opens a +door inside the +ABANDONED SHIP." +539,7,9,"A key that opens the door to Room +2 inside the ABANDONED SHIP. +It is old and looks easily broken." +540,5,9,"A key that opens a +door inside the +ABANDONED SHIP." +540,6,9,"A key that opens a +door inside the +ABANDONED SHIP." +540,7,9,"A key that opens the door to Room +4 inside the ABANDONED SHIP. +It is old and looks easily broken." +541,5,9,"A key that opens a +door inside the +ABANDONED SHIP." +541,6,9,"A key that opens a +door inside the +ABANDONED SHIP." +541,7,9,"A key that opens the door to Room +6 inside the ABANDONED SHIP. +It is old and looks easily broken." +542,5,9,"A device by DEVON +that signals any +unseeable POKéMON." +542,6,9,"A device by DEVON +that signals any +unseeable POKéMON." +542,7,9,"A scope that signals the presence +of any unseeable POKéMON. +It is made by the DEVON CORP." +543,6,9,"A parcel for PROF. +OAK from a POKéMON +MART’s clerk." +543,7,9,"A parcel to be delivered to PROF. +OAK from VIRIDIAN CITY’s POKéMON +MART." +544,6,9,"A sweet-sounding +flute that awakens +POKéMON." +544,7,9,"A flute that is said to instantly +awaken any POKéMON. It has a +lovely tone." +544,15,1,"ねむっている ポケモンも +おもわず めざめるほど すばらしい +ねいろを かなでる ふえ。" +544,15,3,"잠자고 있는 포켓몬도 +무심코 잠에서 깨어날 정도로 +멋진 음색을 내는 피리." +544,15,5,"Une flûte au son si particulier qu’elle permet de +réveiller les Pokémon les plus profondément +endormis." +544,15,6,"Eine Flöte, die so wundervolle Töne spielen kann, +dass selbst schlafende Pokémon aufwachen." +544,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Scizor en combate." +544,15,8,"Flauto dal suono meraviglioso che risveglia +anche i Pokémon profondamente addormentati." +544,15,9,"A flute which can play with such a +beautiful tone that even sleeping +Pokémon find themselves roused." +544,15,11,"眠っている ポケモンも +思わず めざめるほど すばらしい +音色を 奏でる ふえ。" +545,6,9,"A voucher for +obtaining a bicycle +from the BIKE SHOP." +545,7,9,"Take this voucher to the BIKE SHOP +in CERULEAN CITY and exchange it +for a bicycle." +546,6,9,"Gold dentures lost +by the SAFARI +ZONE’s WARDEN." +546,7,9,"A set of false teeth lost by the +SAFARI ZONE’S WARDEN. It makes his +smile sparkle." +547,6,9,"An elevator key +used in TEAM +ROCKET’s HIDEOUT." +547,7,9,"A key that operates the elevator +in TEAM ROCKET’s HIDEOUT. +It bears the TEAM ROCKET logo." +548,6,9,"SILPH CO’s scope +makes unseeable +POKéMON visible." +548,7,9,"A scope that makes unseeable +POKéMON visible. +It is made by SILPH CO." +549,6,9,"Stores information +on famous people +for instant recall." +549,7,9,"A device that enables you to +recall what you’ve heard and seen +about famous people." +550,6,9,"A convenient case +that holds TMs and +HMs." +550,7,9,"A case that holds TMs and HMs. +It is attached to the BAG’s +compartment for important items." +551,6,9,"A convenient +container that +holds BERRIES." +551,7,9,"A pouch for carrying BERRIES. +It is attached to the BAG’s +compartment for important items." +552,6,9,"A TV set tuned to +an advice program +for TRAINERS." +552,7,9,"A television set that is tuned to +a program with useful tips for +novice TRAINERS." +553,6,9,"A pass for ferries +between ONE, TWO, +and THREE ISLAND." +553,7,9,"A pass for ferries between ONE, +TWO, and THREE ISLAND. +It has a drawing of three islands." +554,6,9,"For ferries serving +VERMILION and the +SEVII ISLANDS." +554,7,9,"A pass for ferries between +VERMILION and the SEVII ISLANDS. +It features a drawing of a rainbow." +555,6,9,"A thirst-quenching +tea prepared by an +old lady." +555,7,9,"An aromatic tea prepared by an old +lady. It will slake even the worst +thirst." +556,6,9,"A ticket required +to board the ship +to NAVEL ROCK." +556,7,9,"A ticket required to board the ship +to NAVEL ROCK. +It glows with a mystic light." +557,6,9,"A ticket required +to board the ship +to BIRTH ISLAND." +557,7,9,"A ticket required to board the ship +to BIRTH ISLAND. +It glows beautifully." +558,6,9,"Stores BERRY +POWDER made using +a BERRY CRUSHER." +558,7,9,"A jar for storing BERRY POWDER +made using a BERRY CRUSHER." +559,6,9,"An exquisite, red- +glowing gem that +symbolizes passion." +559,7,9,"An exquisitely beautiful gem that +has a red glow. +It symbolizes passion." +560,6,9,"A brilliant blue gem +that symbolizes +honesty." +560,7,9,"An exquisitely beautiful gem that +has a blue glow. +It symbolizes honesty." +561,6,9,"A medal-like item in +the same shape as +TEAM MAGMA’s mark." +562,6,9,"A faded sea chart +that shows the way +to a certain island." +563,11,5,"Tenu par Genesect, ce module +change la capacité TechnoBuster +en une capacité de type Eau." +563,11,9,"A cassette to be held by Genesect. +It changes Techno Blast to a +Water-type move." +563,14,9,"A cassette to be held by Genesect. +It changes Techno Blast to a +Water-type move." +563,15,1,"ゲノセクトに もたせると +テクノバスターという わざが +みずタイプになる カセット。" +563,15,3,"게노세크트에게 지니게 하면 +테크노버스터라는 기술이 +물타입으로 바뀌는 카세트." +563,15,5,"Tenu par Genesect, ce module change la +capacité TechnoBuster en une capacité de type +Eau." +563,15,6,"Gibt man es Genesect zum Tragen, wandelt es +den Typ der Attacke Techblaster in Wasser um." +563,15,7,"Cartucho que convierte Tecno Shock de +Genesect en un movimiento de tipo Hielo." +563,15,8,"Modulo da dare a Genesect. Trasforma +Tecnobotto in una mossa di tipo Acqua." +563,15,9,"A cassette to be held by Genesect. +It changes Genesect’s Techno Blast +move so it becomes Water type." +563,15,11,"ゲノセクトに 持たせると +テクノバスターという 技が +みずタイプになる カセット。" +564,11,5,"Tenu par Genesect, ce module +change la capacité TechnoBuster +en une capacité de type Électrik." +564,11,9,"A cassette to be held by Genesect. +It changes Techno Blast to an +Electric-type move." +564,14,9,"A cassette to be held by Genesect. +It changes Techno Blast to an +Electric-type move." +564,15,1,"ゲノセクトに もたせると +テクノバスターという わざが +でんきタイプになる カセット。" +564,15,3,"게노세크트에게 지니게 하면 +테크노버스터라는 기술이 +전기타입으로 바뀌는 카세트." +564,15,5,"Tenu par Genesect, ce module change la +capacité TechnoBuster en une capacité de type +Électrik." +564,15,6,"Gibt man es Genesect zum Tragen, wandelt es +den Typ der Attacke Techblaster in Elektro um." +564,15,7,"Chocolatina de sabor dulce. Restaura 20 PS de +un Pokémon." +564,15,8,"Modulo da dare a Genesect. Trasforma +Tecnobotto in una mossa di tipo Elettro." +564,15,9,"A cassette to be held by Genesect. +It changes Genesect’s Techno Blast +move so it becomes Electric type." +564,15,11,"ゲノセクトに 持たせると +テクノバスターという 技が +でんきタイプになる カセット。" +565,11,5,"Tenu par Genesect, ce module +change la capacité TechnoBuster +en une capacité de type Feu." +565,11,9,"A cassette to be held by Genesect. +It changes Techno Blast to a +Fire-type move." +565,14,9,"A cassette to be held by Genesect. +It changes Techno Blast to a +Fire-type move." +565,15,1,"ゲノセクトに もたせると +テクノバスターという わざが +ほのおタイプになる カセット。" +565,15,3,"게노세크트에게 지니게 하면 +테크노버스터라는 기술이 +불꽃타입으로 바뀌는 카세트." +565,15,5,"Tenu par Genesect, ce module change la +capacité TechnoBuster en une capacité de type +Feu." +565,15,6,"Gibt man es Genesect zum Tragen, wandelt es +den Typ der Attacke Techblaster in Feuer um." +565,15,7,"Una esfera brillante que potencia los movimientos +de tipo Acero y Dragón. Debe llevarla Dialga." +565,15,8,"Modulo da dare a Genesect. Trasforma +Tecnobotto in una mossa di tipo Fuoco." +565,15,9,"A cassette to be held by Genesect. +It changes Genesect’s Techno Blast +move so it becomes Fire type." +565,15,11,"ゲノセクトに 持たせると +テクノバスターという 技が +ほのおタイプになる カセット。" +566,11,5,"Tenu par Genesect, ce module +change la capacité TechnoBuster +en une capacité de type Glace." +566,11,9,"A cassette to be held by Genesect. +It changes Techno Blast to an +Ice-type move." +566,14,9,"A cassette to be held by Genesect. +It changes Techno Blast to an +Ice-type move." +566,15,1,"ゲノセクトに もたせると +テクノバスターという わざが +こおりタイプになる カセット。" +566,15,3,"게노세크트에게 지니게 하면 +테크노버스터라는 기술이 +얼음타입으로 바뀌는 카세트." +566,15,5,"Tenu par Genesect, ce module change la +capacité TechnoBuster en une capacité de type +Glace." +566,15,6,"Gibt man es Genesect zum Tragen, wandelt es +den Typ der Attacke Techblaster in Eis um." +566,15,7,"Una bonita esfera que potencia los movimientos +de tipo Dragón y Agua. Debe llevarla Palkia." +566,15,8,"Modulo da dare a Genesect. Trasforma +Tecnobotto in una mossa di tipo Ghiaccio." +566,15,9,"A cassette to be held by Genesect. +It changes Genesect’s Techno Blast +move so it becomes Ice type." +566,15,11,"ゲノセクトに 持たせると +テクノバスターという 技が +こおりタイプになる カセット。" +567,11,5,"Un chocolat extrêmement +sucré. Restaure 20 PV +à un Pokémon." +567,11,9,"Very sweet chocolate. +It restores the HP of one Pokémon +by only 20 points." +567,14,9,"Very sweet chocolate. +It restores the HP of one Pokémon +by only 20 points." +567,15,1,"とても あまったるい チョコレート。 +ポケモン 1ひきの HPを +20だけ かいふくする。" +567,15,3,"지나칠 정도로 달콤한 초콜릿. +포켓몬 1마리의 HP를 +20만큼 회복한다." +567,15,5,"Un chocolat extrêmement sucré. +Restaure 20 PV d’un Pokémon." +567,15,6,"Ein süßer Schokosnack, der die KP +eines Pokémon um 20 Punkte auffüllt." +567,15,7,"Los Pokémon pueden llevarla o usarla para +curarse del envenenamiento." +567,15,8,"Cioccolato molto dolce. +Restituisce 20 PS a un Pokémon." +567,15,9,"A piece of cloyingly sweet chocolate. +When consumed, it restores +20 HP to an injured Pokémon." +567,15,11,"とても 甘ったるい チョコレート。 +ポケモン 1匹の HPを +20だけ 回復する。" +568,11,5,"Un papier à lettres idéal pour +se présenter. Peut être tenu +et livré par un Pokémon." +568,11,9,"Stationery designed for +introductory greetings. +Let a Pokémon hold it for delivery." +568,14,9,"Stationery designed for +introductory greetings. +Let a Pokémon hold it for delivery." +568,15,1,"はじめましての あいさつが +かきやすい びんせん。 +ポケモンに もたせて つかう。" +568,15,3,"첫인사를 +쉽게 쓸 수 있는 편지지. +포켓몬에게 지니게 해서 쓴다." +568,15,5,"Un papier à lettres idéal pour se présenter. +Peut être tenu et livré par un Pokémon." +568,15,6,"Briefpapier, mit dem man sich bei jemandem +vorstellen kann. Gib es einem Pokémon zum +Tragen." +568,15,7,"Los Pokémon pueden llevarla o usarla para +restaurar 10 PP de un movimiento." +568,15,8,"Carta da lettere ideale per presentarsi a qualcuno. +Si può dare a un Pokémon affinché la consegni." +568,15,9,"Stationery designed to be easy to use +when writing someone for the first time. +Have a Pokémon hold it for delivery." +568,15,11,"はじめましての あいさつが +書きやすい レターペーパー。 +ポケモンに 持たせて 使う。" +569,11,5,"Un papier à lettres idéal pour parler +de ce que l’on aime. Peut être tenu +et livré par un Pokémon." +569,11,9,"Stationery designed for +writing about your favorite things. +Let a Pokémon hold it for delivery." +569,14,9,"Stationery designed for +writing about your favorite things. +Let a Pokémon hold it for delivery." +569,15,1,"すきなものを つたえる メールが +かきやすい びんせん。 +ポケモンに もたせて つかう。" +569,15,3,"좋아하는 것을 전하는 메일을 +쉽게 쓸 수 있는 편지지. +포켓몬에게 지니게 해서 쓴다." +569,15,5,"Un papier à lettres idéal pour parler de ce que +l’on aime. Peut être tenu et livré par un Pokémon." +569,15,6,"Briefpapier, mit dem man jemandem verraten +kann, was man gern mag. Gib es einem Pokémon +zum Tragen." +569,15,7,"Los Pokémon pueden llevarla o usarla para +restaurar 10 PS." +569,15,8,"Carta da lettere ideale per parlare di ciò che si +ama. +Si può dare a un Pokémon affinché la consegni." +569,15,9,"Stationery designed to make it easier +to write about your favorite things. +Have a Pokémon hold it for delivery." +569,15,11,"好きなものを 伝える メールが +書きやすい レターペーパー。 +ポケモンに 持たせて 使う。" +570,11,5,"Un papier à lettres idéal pour +les invitations. Peut être tenu +et livré par un Pokémon." +570,11,9,"Stationery designed for +invitations. +Let a Pokémon hold it for delivery." +570,14,9,"Stationery designed for +invitations. +Let a Pokémon hold it for delivery." +570,15,1,"あいてを おさそいする メールが +かきやすい びんせん。 +ポケモンに もたせて つかう。" +570,15,3,"상대를 초대하는 메일을 +쉽게 쓸 수 있는 편지지. +포켓몬에게 지니게 해서 쓴다." +570,15,5,"Un papier à lettres idéal pour les invitations. +Peut être tenu et livré par un Pokémon." +570,15,6,"Briefpapier, mit dem man eine andere Person zu +etwas einladen kann. Gib es einem Pokémon zum +Tragen." +570,15,7,"Los Pokémon pueden llevarla o usarla para +librarse de la confusión." +570,15,8,"Carta da lettere ideale per scrivere un invito. +Si può dare a un Pokémon affinché la consegni." +570,15,9,"Stationery designed to allow you to +extend an invitation to the recipient. +Have a Pokémon hold it for delivery." +570,15,11,"相手を お誘いする メールが +書きやすい レターペーパー。 +ポケモンに 持たせて 使う。" +571,11,5,"Un papier à lettres idéal pour les +remerciements. Peut être tenu +et livré par un Pokémon." +571,11,9,"Stationery designed for +a thank-you note. +Let a Pokémon hold it for delivery." +571,14,9,"Stationery designed for +a thank-you note. +Let a Pokémon hold it for delivery." +571,15,1,"かんしゃを つたえる メールが +かきやすい びんせん。 +ポケモンに もたせて つかう。" +571,15,3,"감사의 마음을 전하는 메일을 +쉽게 쓸 수 있는 편지지. +포켓몬에게 지니게 해서 쓴다." +571,15,5,"Un papier à lettres idéal pour les remerciements. +Peut être tenu et livré par un Pokémon." +571,15,6,"Briefpapier, mit dem man sich bei jemandem +bedanken kann. Gib es einem Pokémon zum +Tragen." +571,15,7,"Los Pokémon pueden llevarla o usarla para +recuperarse de problemas de estado." +571,15,8,"Carta da lettere ideale per scrivere dei +ringraziamenti. +Si può dare a un Pokémon affinché la consegni." +571,15,9,"Stationery designed to make it easy +for you to express thanks. Have a +Pokémon hold it for delivery." +571,15,11,"感謝を 伝える メールが +書きやすい レターペーパー。 +ポケモンに 持たせて 使う。" +572,11,5,"Un papier à lettres idéal pour +poser des questions. Peut être +tenu et livré par un Pokémon." +572,11,9,"Stationery designed for +writing questions. +Let a Pokémon hold it for delivery." +572,14,9,"Stationery designed for +writing questions. +Let a Pokémon hold it for delivery." +572,15,1,"あいてへの しつもんの メールが +かきやすい びんせん。 +ポケモンに もたせて つかう。" +572,15,3,"상대에게 질문하는 메일을 +쉽게 쓸 수 있는 편지지. +포켓몬에게 지니게 해서 쓴다." +572,15,5,"Un papier à lettres idéal pour poser des +questions. Peut être tenu et livré par +un Pokémon." +572,15,6,"Briefpapier, mit dem man jemandem eine Frage +stellen kann. Gib es einem Pokémon zum Tragen." +572,15,7,"Los Pokémon pueden llevarla o usarla para +restaurar algunos PS." +572,15,8,"Carta da lettere ideale per scrivere una domanda. +Si può dare a un Pokémon affinché la consegni." +572,15,9,"Stationery designed to make it easier +to pose a question about something. +Have a Pokémon hold it for delivery." +572,15,11,"相手への 質問の メールが +書きやすい レターペーパー。 +ポケモンに 持たせて 使う。" +573,11,5,"Un papier à lettres idéal pour +donner des conseils. Peut être +tenu et livré par un Pokémon." +573,11,9,"Stationery designed for +writing recommendations. +Let a Pokémon hold it for delivery." +573,14,9,"Stationery designed for +writing recommendations. +Let a Pokémon hold it for delivery." +573,15,1,"なにかを おすすめする メールが +かきやすい びんせん。 +ポケモンに もたせて つかう。" +573,15,3,"뭔가 추천하는 메일을 +쉽게 쓸 수 있는 편지지. +포켓몬에게 지니게 해서 쓴다." +573,15,5,"Un papier à lettres idéal pour donner des +conseils. Peut être tenu et livré par un Pokémon." +573,15,6,"Briefpapier, mit dem man jemandem einen Tipp +geben kann. Gib es einem Pokémon zum Tragen." +573,15,7,"Los Pokémon pueden llevarla o usarla para +restaurar algunos PS. Su sabor puede causar +confusión." +573,15,8,"Carta da lettere ideale per scrivere un consiglio. +Si può dare a un Pokémon affinché la consegni." +573,15,9,"Stationery designed to allow you to +recommend something to the reader. +Have a Pokémon hold it for delivery." +573,15,11,"なにかを おすすめする メールが +書きやすい レターペーパー。 +ポケモンに 持たせて 使う。" +574,11,5,"Un papier à lettres idéal pour répondre +à un autre courrier. Peut être tenu +et livré par un Pokémon." +574,11,9,"Stationery designed for +writing a reply. +Let a Pokémon hold it for delivery." +574,14,9,"Stationery designed for +writing a reply. +Let a Pokémon hold it for delivery." +574,15,1,"もらった メールへの おかえしが +かきやすい びんせん。 +ポケモンに もたせて つかう。" +574,15,3,"받은 메일에 대한 답장을 +쉽게 쓸 수 있는 편지지. +포켓몬에게 지니게 해서 쓴다." +574,15,5,"Un papier à lettres idéal pour répondre à +un autre courrier. Peut être tenu et livré par +un Pokémon." +574,15,6,"Briefpapier, mit dem man einen anderen Brief +beantworten kann. Gib es einem Pokémon zum +Tragen." +574,15,7,"Los Pokémon pueden llevarla o usarla para +restaurar algunos PS. Su sabor puede causar +confusión." +574,15,8,"Carta da lettere ideale per scrivere una risposta +a un messaggio. +Si può dare a un Pokémon affinché la consegni." +574,15,9,"Stationery designed to make it easy +to respond to a letter you received. +Have a Pokémon hold it for delivery." +574,15,11,"もらった メールへの お返しが +書きやすい レターペーパー。 +ポケモンに 持たせて 使う。" +575,11,5,"Un papier à lettres avec un motif de +pont traversant le ciel. Peut être +tenu et livré par un Pokémon." +575,11,9,"Stationery featuring a print of +a sky-piercing bridge. +Let a Pokémon hold it for use." +575,14,9,"Stationery featuring a print of +a sky-piercing bridge. +Let a Pokémon hold it for use." +575,15,1,"そらを つらぬく はしの えがらが +プリントされた びんせん。 +ポケモンに もたせて つかう。" +575,15,3,"하늘을 관통하는 다리의 무늬가 +프린트된 편지지. +포켓몬에게 지니게 해서 쓴다." +575,15,5,"Un papier à lettres avec un motif de pont +traversant le ciel. Peut être tenu et livré par +un Pokémon." +575,15,6,"Das Briefpapier hat eine weit in den Himmel +ragende Brücke als Hintergrund. Gib es einem +Pokémon zum Tragen." +575,15,7,"Los Pokémon pueden llevarla o usarla para +restaurar algunos PS. Su sabor puede causar +confusión." +575,15,8,"Carta da lettere che riporta l’immagine +di un ponte sospeso nel cielo. +Si può dare a un Pokémon affinché la consegni." +575,15,9,"Stationery featuring an illustration of +a bridge that seems to pierce the sky. +Have a Pokémon hold it for delivery." +575,15,11,"空を つらぬく 橋の 絵柄が +プリントされた レターペーパー。 +ポケモンに 持たせて 使う。" +576,11,5,"Un papier à lettres avec un motif de +pont mobile rouge. Peut être tenu +et livré par un Pokémon." +576,11,9,"Stationery featuring a print of +a red drawbridge. +Let a Pokémon hold it for use." +576,14,9,"Stationery featuring a print of +a red drawbridge. +Let a Pokémon hold it for use." +576,15,1,"まっかな はねばしの えがらが +プリントされた びんせん。 +ポケモンに もたせて つかう。" +576,15,3,"새빨간 도개교의 무늬가 +프린트된 편지지. +포켓몬에게 지니게 해서 쓴다." +576,15,5,"Un papier à lettres avec un motif de pont +mobile rouge. Peut être tenu et livré par +un Pokémon." +576,15,6,"Das Briefpapier hat eine knallrote Zugbrücke als +Hintergrund. Gib es einem Pokémon zum Tragen." +576,15,7,"Los Pokémon pueden llevarla o usarla para +restaurar algunos PS. Su sabor puede causar +confusión." +576,15,8,"Carta da lettere che riporta l’immagine +di un ponte mobile di colore rosso fuoco. +Si può dare a un Pokémon affinché la consegni." +576,15,9,"Stationery featuring an illustration of a bright-red +drawbridge. Have a Pokémon hold it for delivery." +576,15,11,"真っ赤な 跳ね橋の 絵柄が +プリントされた レターペーパー。 +ポケモンに 持たせて 使う。" +577,11,5,"Un papier à lettres avec un motif de +pont suspendu en acier. Peut être +tenu et livré par un Pokémon." +577,11,9,"Stationery featuring a print of +a steel suspension bridge. +Let a Pokémon hold it for use." +577,14,9,"Stationery featuring a print of +a steel suspension bridge. +Let a Pokémon hold it for use." +577,15,1,"こうてつの つりばしの えがらが +プリントされた びんせん。 +ポケモンに もたせて つかう。" +577,15,3,"강철의 현수교 무늬가 +프린트된 편지지. +포켓몬에게 지니게 해서 쓴다." +577,15,5,"Un papier à lettres avec un motif de pont +suspendu en acier. Peut être tenu et livré +par un Pokémon." +577,15,6,"Das Briefpapier hat eine stählerne Hängebrücke +als Hintergrund. Gib es einem Pokémon zum +Tragen." +577,15,7,"Los Pokémon pueden llevarla o usarla para +restaurar algunos PS. Su sabor puede causar +confusión." +577,15,8,"Carta da lettere che riporta l’immagine +di un ponte d’acciaio sospeso. +Si può dare a un Pokémon affinché la consegni." +577,15,9,"Stationery featuring an illustration of a +high-tension steel suspension bridge. +Have a Pokémon hold it for delivery." +577,15,11,"鋼鉄の つり橋の 絵柄が +プリントされた レターペーパー。 +ポケモンに 持たせて 使う。" +578,11,5,"Un papier à lettres avec un motif +de pont en briques. Peut être tenu +et livré par un Pokémon." +578,11,9,"Stationery featuring a print of +a brick bridge. +Let a Pokémon hold it for use." +578,14,9,"Stationery featuring a print of +a brick bridge. +Let a Pokémon hold it for use." +578,15,1,"レンガづくりの はしの えがらが +プリントされた びんせん。 +ポケモンに もたせて つかう。" +578,15,3,"벽돌로 만든 다리의 무늬가 +프린트된 편지지. +포켓몬에게 지니게 해서 쓴다." +578,15,5,"Un papier à lettres avec un motif de pont +en briques. Peut être tenu et livré par +un Pokémon." +578,15,6,"Das Briefpapier hat eine Brücke aus Ziegelsteinen +als Hintergrund. Gib es einem Pokémon zum +Tragen." +578,15,7,Una baya muy rara en la región de Teselia. +578,15,8,"Carta da lettere che riporta l’immagine +di un ponte di mattoni. +Si può dare a un Pokémon affinché la consegni." +578,15,9,"Stationery featuring an illustration of +a vintage-looking brick bridge. +Have a Pokémon hold it for delivery." +578,15,11,"レンガ造りの 橋の 絵柄が +プリントされた レターペーパー。 +ポケモンに 持たせて 使う。" +579,11,5,"Un papier à lettres avec un motif de +pont bâti sur des arches. Peut être +tenu et livré par un Pokémon." +579,11,9,"Stationery featuring a print of +an arched bridge. +Let a Pokémon hold it for use." +579,14,9,"Stationery featuring a print of +an arched bridge. +Let a Pokémon hold it for use." +579,15,1,"アーチを えがいた はしの えがらが +プリントされた びんせん。 +ポケモンに もたせて つかう。" +579,15,3,"아치가 그려진 다리의 무늬가 +프린트된 편지지. +포켓몬에게 지니게 해서 쓴다." +579,15,5,"Un papier à lettres avec un motif de pont +bâti sur des arches. Peut être tenu et livré +par un Pokémon." +579,15,6,"Das Briefpapier hat eine geschwungene Brücke +als Hintergrundmotiv. Gib es einem Pokémon zum +Tragen." +579,15,7,Una baya muy rara en la región de Teselia. +579,15,8,"Carta da lettere che riporta l’immagine +di un ponte ad arco. +Si può dare a un Pokémon affinché la consegni." +579,15,9,"Stationery featuring an illustration of +a majestically arched bridge. +Have a Pokémon hold it for delivery." +579,15,11,"アーチを 描いた 橋の 絵柄が +プリントされた レターペーパー。 +ポケモンに 持たせて 使う。" +580,11,5,"Une écaille étrange qui fait évoluer +certaines espèces de Pokémon. +Elle a une couleur arc-en-ciel." +580,11,9,"A mysterious scale that evolves +certain Pokémon. +It shines in rainbow colors." +580,14,9,"A mysterious scale that evolves +certain Pokémon. +It shines in rainbow colors." +580,15,1,"ある とくていの ポケモンを +しんかさせる ふしぎな ウロコ。 +にじいろに かがやいている。" +580,15,3,"어느 특정 포켓몬을 +진화시키는 이상한 비늘. +무지갯빛으로 빛나고 있다." +580,15,5,"Une écaille étrange qui fait évoluer certaines +espèces de Pokémon. Elle a une couleur +arc-en-ciel." +580,15,6,"Eine seltsame Schuppe, durch die sich bestimmte +Pokémon entwickeln. Sie funkelt in den Farben +des Regenbogens." +580,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Volador. Debe llevarla +un Pokémon." +580,15,8,"Squama misteriosa che fa evolvere determinate +specie di Pokémon. +Riflette i colori dell’arcobaleno." +580,15,9,"A mysterious scale that causes +a certain Pokémon to evolve. +It shines in rainbow colors." +580,15,11,"ある 特定の ポケモンを +進化させる 不思議な ウロコ。 +にじ色に 輝いている。" +581,11,5,"Un étrange concentré d’évolution qui +augmente la Défense et la Déf. Spé. +d’un Pokémon pouvant évoluer." +581,11,9,"A mysterious evolutionary lump. When +held, it raises the Defense and Sp. Def +of a Pokémon that can still evolve." +581,14,9,"A mysterious evolutionary lump. When +held, it raises the Defense and Sp. Def +of a Pokémon that can still evolve." +581,15,1,"しんかの ふしぎな かたまり。 +もたせると しんかまえ ポケモンの +ぼうぎょと とくぼうが あがる。" +581,15,3,"진화의 이상한 덩어리. +지니게 하면 진화 전 포켓몬의 +방어와 특수방어가 올라간다." +581,15,5,"Un étrange concentré d’évolution qui augmente +la Défense et la Défense Spéciale d’un Pokémon +pouvant évoluer." +581,15,6,"Ein mysteriöser Klumpen, der die Verteidigung +und Spezial-Verteidigung von Pokémon erhöht, +die sich noch entwickeln können." +581,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Psíquico. Debe llevarla +un Pokémon." +581,15,8,"Misteriosa sfera evolutiva. Aumenta la Difesa +e la Difesa Speciale di un Pokémon che può +ancora evolversi." +581,15,9,"A mysterious Evolutionary lump. When +held by a Pokémon that can still evolve, +it raises both Defense and Sp. Def." +581,15,11,"進化の 不思議な かたまり。 +持たせると 進化前 ポケモンの +防御と 特防が あがる。" +582,11,5,"Une pierre très légère. +Elle réduit le poids du +Pokémon qui la tient." +582,11,9,"A very light stone. It reduces the +weight of a Pokémon when held." +582,14,9,"A very light stone. It reduces the +weight of a Pokémon when held." +582,15,1,"とても かるい いし。 +もたせると ポケモンの +たいじゅうが かるくなる。" +582,15,3,"매우 가벼운 돌. +지니게 하면 포켓몬의 +체중이 가벼워진다." +582,15,5,"Une pierre très légère. +Elle réduit le poids du Pokémon qui la tient." +582,15,6,"Ein federleichter Stein, der das Gewicht +des Trägers verringert." +582,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Bicho. Debe llevarla +un Pokémon." +582,15,8,"Pietra leggerissima che riduce il peso del +Pokémon che l’ha con sé." +582,15,9,"An item to be held by a Pokémon. +This very light stone reduces the +weight of a Pokémon when held." +582,15,11,"とても 軽い 石。 +持たせると ポケモンの +体重が 軽くなる。" +583,11,5,"Tenu, cet objet inflige des dégâts +à l’attaquant si ce dernier utilise une +attaque physique qui atteint son but." +583,11,9,"If the holder of this item takes damage, +the attacker will also be damaged +upon contact." +583,14,9,"If the holder of this item takes damage, +the attacker will also be damaged +upon contact." +583,15,1,"ポケモンに もたせると +だげきわざを うけたとき +あいてにも ダメージを あたえる。" +583,15,3,"포켓몬에게 지니게 하면 +타격 기술을 당했을 때 +상대에게도 데미지를 준다." +583,15,5,"Tenu, cet objet inflige des dégâts à l’attaquant +si ce dernier utilise une attaque physique qui +atteint son but." +583,15,6,"Wird der Träger von einer physischen +Attacke getroffen, erleidet der Angreifer +ebenfalls Schaden." +583,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Roca. Debe llevarla +un Pokémon." +583,15,8,"Se il Pokémon che ha questo strumento è colpito +da una mossa fisica, anche il nemico subisce +dei danni." +583,15,9,"An item to be held by a Pokémon. +If the holder is hit, the attacker will +also be damaged upon contact." +583,15,11,"ポケモンに 持たせると +打撃技を 受けたとき +相手にも ダメージを 与える。" +584,11,5,"Tenu par un Pokémon, cet objet lui +permet de flotter dans les airs. +Il éclate en cas d’attaque." +584,11,9,"When held by a Pokémon, the Pokémon +will float into the air. When the holder +is attacked, this item will burst." +584,14,9,"When held by a Pokémon, the Pokémon +will float into the air. When the holder +is attacked, this item will burst." +584,15,1,"ポケモンに もたせると +ポケモンが ちゅうに うく。 +こうげきを うけると われてしまう。" +584,15,3,"포켓몬에게 지니게 하면 +포켓몬이 허공에 뜬다. +공격을 받으면 터져버린다." +584,15,5,"Tenu par un Pokémon, cet objet lui permet de +flotter dans les airs. Il éclate en cas d’attaque." +584,15,6,"Gibt man ihn einem Pokémon zum Tragen, +fängt es an zu schweben. Wird es getroffen, +platzt der Luftballon." +584,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Fantasma. Debe llevarla +un Pokémon." +584,15,8,"Permette al Pokémon che ha questo strumento +di fluttuare in aria. Scoppia se il Pokémon +è colpito da un attacco." +584,15,9,"An item to be held by a Pokémon. +The holder will float in the air until hit. +Once hit, this item will burst." +584,15,11,"ポケモンに 持たせると +ポケモンが 宙に 浮く。 +攻撃を 受けると 割れてしまう。" +585,11,5,"Carte au pouvoir mystérieux. +Tenue, elle force un Pokémon touchant +le porteur à se retirer du combat." +585,11,9,"A card with a mysterious power. When +the holder is struck by a foe, the +attacker is removed from battle." +585,14,9,"A card with a mysterious power. When +the holder is struck by a foe, the +attacker is removed from battle." +585,15,1,"ふしぎな ちからのある カード。 +もたせると わざをうけた あいてを +たいじょう させることが できる。" +585,15,3,"이상한 힘이 있는 카드. +지니게 하면 기술을 당한 상대를 +퇴장시킬 수 있다." +585,15,5,"Une carte au pouvoir mystérieux. +Si son porteur est touché par l’attaquant, +ce dernier doit se retirer du combat." +585,15,6,"Eine Karte mit mysteriösen Kräften. Wird der +Träger getroffen, wird der Angreifer des +Platzes verwiesen." +585,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Dragón. Debe llevarla +un Pokémon." +585,15,8,"Cartellino dal potere misterioso. Chi ce l’ha +fa ritirare dalla lotta il Pokémon che lo ha colpito." +585,15,9,"An item to be held by a Pokémon. +When the holder is hit by an attack, +the attacker is removed from battle." +585,15,11,"不思議な ちからのある カード。 +持たせると 技を受けた 相手を +退場させることが できる。" +586,11,5,"Un Pokémon tenant cet objet devient +sensible aux capacités autrement +inefficaces en raison de son type." +586,11,9,"Moves that would otherwise have no +effect will land on the Pokémon that +holds it." +586,14,9,"Moves that would otherwise have no +effect will land on the Pokémon that +holds it." +586,15,1,"ポケモンの タイプの あいしょうで +むこう だった わざが +あたるように なってしまう。" +586,15,3,"포켓몬 타입의 상성 때문에 +무효였던 기술이 +맞게 되어 버린다." +586,15,5,"Un Pokémon tenant cet objet devient sensible +aux capacités autrement inefficaces en raison de +son type." +586,15,6,"Attacken, die aufgrund der Wechselwirkungen +zwischen den Typen keine Wirkung haben, +treffen den Träger." +586,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Siniestro. Debe llevarla +un Pokémon." +586,15,8,"Se un Pokémon ha questo strumento, le mosse +che di norma non hanno effetto contro il suo tipo +vanno a segno." +586,15,9,"An item to be held by a Pokémon. +Moves that normally have no effect +will land on a Pokémon holding it." +586,15,11,"ポケモンの タイプの 相性で +無効だった 技が +当たるように なってしまう。" +587,11,5,"Objet à tenir augmentant la puissance +des attaques immobilisantes telles +que Ligotage ou Étreinte." +587,11,9,"A band that increases the power of +binding moves when held." +587,14,9,"A band that increases the power of +binding moves when held." +587,15,1,"しめつけるわざを ほじょする バンド。 +もたせると しめつけるわざの +いりょくが つよく なる。" +587,15,3,"조이기 기술을 보조하는 밴드. +지니게 하면 조이기 기술의 +위력이 강해진다." +587,15,5,"Objet à tenir. Augmente la puissance des +attaques immobilisantes telles que Ligotage +ou Étreinte." +587,15,6,"Ein Band, das die Stärke aller Klammerattacken +des Trägers erhöht." +587,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Acero. Debe llevarla +un Pokémon." +587,15,8,"Strumento da dare a un Pokémon che aumenta +la potenza di mosse come Avvolgibotta e +Legatutto." +587,15,9,"An item to be held by a Pokémon. +A band that increases the power of +binding moves used by the holder." +587,15,11,"締めつける技を 補助する バンド。 +持たせると 締めつける技の +威力が 強くなる。" +588,11,5,"Bulbe jetable. Tenu, il augmente la +Défense Spéciale lorsque le Pokémon +subit une attaque de type Eau." +588,11,9,"A consumable bulb. If the holder is hit +by a Water-type move, its Sp. Atk +will rise." +588,14,9,"A consumable bulb. If the holder is hit +by a Water-type move, its Sp. Atk +will rise." +588,15,1,"つかいすての きゅうこん。 +もたせて みずの わざを うけると +とくこうが あがる。" +588,15,3,"단 한 번 쓰면 없어지는 구근. +지니게 하고 물 기술을 받으면 +특수공격이 올라간다." +588,15,5,"Un bulbe jetable. +Tenu, il augmente l’Attaque Spéciale lorsque +le Pokémon subit une attaque de type Eau." +588,15,6,"Eine einmalig einsetzbare Knolle. Erhöht den +Spezial-Angriff des Trägers, wenn ihn eine +Wasser-Attacke trifft." +588,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Normal. Debe llevarla +un Pokémon." +588,15,8,"Bulbo monouso. Se il Pokémon che ha questo +strumento subisce una mossa di tipo Acqua, +il suo Attacco Speciale aumenta." +588,15,9,"An item to be held by a Pokémon. +It boosts Sp. Atk if hit with a Water- +type attack. It can only be used once." +588,15,11,"使い捨ての きゅうこん。 +持たせて みずの 技を 受けると +特攻が あがる。" +589,11,5,"Pile jetable. Tenue, elle augmente +l’Attaque lorsque le Pokémon subit +une attaque de type Électrik." +589,11,9,"A consumable battery. If the +holder is hit by an Electric-type +move, its Attack will rise." +589,14,9,"A consumable battery. If the +holder is hit by an Electric-type +move, its Attack will rise." +589,15,1,"つかいすての じゅうでんち。 +もたせて でんきの わざを うけると +こうげきが あがる。" +589,15,3,"단 한 번 쓰면 없어지는 충전지. +지니게 하고 전기 기술을 받으면 +공격이 올라간다." +589,15,5,"Une pile jetable. +Tenue, elle augmente l’Attaque lorsque +le Pokémon subit une attaque de type Électrik." +589,15,6,"Ein einmalig aufladbarer Akku. Erhöht den Angriff +des Trägers, wenn ihn eine Elektro-Attacke trifft." +589,15,7,"Pluma que aumenta un poco los PS de base de +un Pokémon." +589,15,8,"Pila monouso. Se il Pokémon che ha questo +strumento subisce un attacco di tipo Elettro, +il suo Attacco aumenta." +589,15,9,"An item to be held by a Pokémon. +It boosts Attack if hit with an Electric- +type attack. It can only be used once." +589,15,11,"使い捨ての じゅうでんち。 +持たせて でんきの 技を 受けると +攻撃が あがる。" +590,11,5,"Si le Pokémon qui le tient subit une +attaque, il s’enfuit pour être remplacé +par un autre membre de l’équipe." +590,11,9,"If the holder is hit by an attack, it will +switch with another Pokémon in +your party." +590,14,9,"If the holder is hit by an attack, it will +switch with another Pokémon in +your party." +590,15,1,"もたせて わざを うけると +せんとうから だっしゅつして +てもちと いれかわる ことができる。" +590,15,3,"지니게 하고 기술을 받으면 +배틀에서 탈출하여 +지닌 포켓몬과 교체할 수 있다." +590,15,5,"Si le Pokémon qui le tient subit une attaque, +il s’enfuit pour être remplacé par un autre +membre de l’équipe." +590,15,6,"Wird der Träger getroffen, flieht er aus dem Kampf +und wird mit einem Team-Pokémon ausgetauscht." +590,15,7,"Pluma que aumenta un poco el Ataque de base +de un Pokémon." +590,15,8,"Se il Pokémon che ha questo strumento è colpito +da un attacco, viene immediatamente sostituito +da un compagno." +590,15,9,"An item to be held by a Pokémon. +If the holder is hit by an attack, it +will be switched out of battle." +590,15,11,"持たせて 技を 受けると +戦闘から 脱出して +手持ちと 入れ替わる ことができる。" +591,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Feu." +591,11,9,"A gem with an essence of fire. When +held, it strengthens the power of a +Fire-type move only once." +591,14,9,"A gem with an essence of fire. When +held, it strengthens the power of a +Fire-type move only once." +591,15,1,"ほのおの タイプの ジュエル。 +もたせると いちどだけ ほのおの +わざの いりょくが つよまる。" +591,15,3,"불꽃타입의 주얼. +지니게 하면 한 번만 불꽃 +기술의 위력이 강해진다." +591,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Feu." +591,15,6,"Ein Juwel vom Typ Feuer. Es erhöht einmalig +die Stärke einer Attacke vom Typ Feuer." +591,15,7,"Pluma que aumenta un poco la Defensa de base +de un Pokémon." +591,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Fuoco." +591,15,9,"A gem with an essence of fire. +When held, it strengthens the power +of a Fire-type move one time." +591,15,11,"ほのおの タイプの ジュエル。 +持たせると 1度だけ ほのおの +技の 威力が 強まる。" +592,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Eau." +592,11,9,"A gem with an essence of water. When +held, it strengthens the power of a +Water-type move only once." +592,14,9,"A gem with an essence of water. When +held, it strengthens the power of a +Water-type move only once." +592,15,1,"みずの タイプの ジュエル。 +もたせると いちどだけ みずの +わざの いりょくが つよまる。" +592,15,3,"물타입의 주얼. +지니게 하면 한 번만 물 +기술의 위력이 강해진다." +592,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Eau." +592,15,6,"Ein Juwel vom Typ Wasser. Es erhöht einmalig +die Stärke einer Attacke vom Typ Wasser." +592,15,7,"Pluma que aumenta un poco el Ataque Especial +de base de un Pokémon." +592,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Acqua." +592,15,9,"A gem with an essence of water. +When held, it strengthens the power +of a Water-type move one time." +592,15,11,"みずの タイプの ジュエル。 +持たせると 1度だけ みずの +技の 威力が 強まる。" +593,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Électrik." +593,11,9,"A gem with an essence of electricity. +When held, it strengthens the power of +an Electric-type move only once." +593,14,9,"A gem with an essence of electricity. +When held, it strengthens the power of +an Electric-type move only once." +593,15,1,"でんきの タイプの ジュエル。 +もたせると いちどだけ でんきの +わざの いりょくが つよまる。" +593,15,3,"전기타입의 주얼. +지니게 하면 한 번만 전기 +기술의 위력이 강해진다." +593,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Électrik." +593,15,6,"Ein Juwel vom Typ Elektro. Es erhöht einmalig +die Stärke einer Attacke vom Typ Elektro." +593,15,7,"Pluma que aumenta un poco la Defensa Especial +de base de un Pokémon." +593,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Elettro." +593,15,9,"A gem with an essence of electricity. +When held, it strengthens the power of +an Electric-type move one time." +593,15,11,"でんきの タイプの ジュエル。 +持たせると 1度だけ でんきの +技の 威力が 強まる。" +594,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Plante." +594,11,9,"A gem with an essence of nature. When +held, it strengthens the power of a +Grass-type move only once." +594,14,9,"A gem with an essence of nature. When +held, it strengthens the power of a +Grass-type move only once." +594,15,1,"くさの タイプの ジュエル。 +もたせると いちどだけ くさの +わざの いりょくが つよまる。" +594,15,3,"풀타입의 주얼. +지니게 하면 한 번만 풀 +기술의 위력이 강해진다." +594,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Plante." +594,15,6,"Ein Juwel vom Typ Pflanze. Es erhöht einmalig +die Stärke einer Attacke vom Typ Pflanze." +594,15,7,"Pluma que aumenta un poco la Velocidad de +base de un Pokémon." +594,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Erba." +594,15,9,"A gem with an essence of nature. +When held, it strengthens the power +of a Grass-type move one time." +594,15,11,"くさの タイプの ジュエル。 +持たせると 1度だけ くさの +技の 威力が 強まる。" +595,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Glace." +595,11,9,"A gem with an essence of ice. When held, +it strengthens the power of an +Ice-type move only once." +595,14,9,"A gem with an essence of ice. When held, +it strengthens the power of an +Ice-type move only once." +595,15,1,"こおりの タイプの ジュエル。 +もたせると いちどだけ こおりの +わざの いりょくが つよまる。" +595,15,3,"얼음타입의 주얼. +지니게 하면 한 번만 얼음 +기술의 위력이 강해진다." +595,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Glace." +595,15,6,"Ein Juwel vom Typ Eis. Es erhöht einmalig +die Stärke einer Attacke vom Typ Eis." +595,15,7,"Pluma normal y corriente. Muy bonita, pero no +sirve para nada." +595,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Ghiaccio." +595,15,9,"A gem with an essence of ice. +When held, it strengthens the power +of an Ice-type move one time." +595,15,11,"こおりの タイプの ジュエル。 +持たせると 1度だけ こおりの +技の 威力が 強まる。" +596,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Combat." +596,11,9,"A gem with an essence of combat. When +held, it strengthens the power of a +Fighting-type move only once." +596,14,9,"A gem with an essence of combat. When +held, it strengthens the power of a +Fighting-type move only once." +596,15,1,"かくとうの タイプの ジュエル。 +もたせると いちどだけ かくとうの +わざの いりょくが つよまる。" +596,15,3,"격투타입의 주얼. +지니게 하면 한 번만 격투 +기술의 위력이 강해진다." +596,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Combat." +596,15,6,"Ein Juwel vom Typ Kampf. Es erhöht einmalig +die Stärke einer Attacke vom Typ Kampf." +596,15,7,"Fósil de un Pokémon ancestral que vivió en el +fondo del mar. Parece ser un fragmento de +concha marina." +596,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Lotta." +596,15,9,"A gem with an essence of combat. +When held, it strengthens the power +of a Fighting-type move one time." +596,15,11,"かくとうの タイプの ジュエル。 +持たせると 1度だけ かくとうの +技の 威力が 強まる。" +597,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Poison." +597,11,9,"A gem with an essence of poison. When +held, it strengthens the power of a +Poison-type move only once." +597,14,9,"A gem with an essence of poison. When +held, it strengthens the power of a +Poison-type move only once." +597,15,1,"どくの タイプの ジュエル。 +もたせると いちどだけ どくの +わざの いりょくが つよまる。" +597,15,3,"독타입의 주얼. +지니게 하면 한 번만 독 +기술의 위력이 강해진다." +597,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Poison." +597,15,6,"Ein Juwel vom Typ Gift. Es erhöht einmalig +die Stärke einer Attacke vom Typ Gift." +597,15,7,"Fósil de un Pokémon ancestral que surcó los +cielos. Parece ser parte de una de sus alas." +597,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Veleno." +597,15,9,"A gem with an essence of poison. +When held, it strengthens the power +of a Poison-type move one time." +597,15,11,"どくの タイプの ジュエル。 +持たせると 1度だけ どくの +技の 威力が 強まる。" +598,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Sol." +598,11,9,"A gem with an essence of land. When +held, it strengthens the power of a +Ground-type move only once." +598,14,9,"A gem with an essence of land. When +held, it strengthens the power of a +Ground-type move only once." +598,15,1,"じめんの タイプの ジュエル。 +もたせると いちどだけ じめんの +わざの いりょくが つよまる。" +598,15,3,"땅타입의 주얼. +지니게 하면 한 번만 땅 +기술의 위력이 강해진다." +598,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Sol." +598,15,6,"Ein Juwel vom Typ Boden. Es erhöht einmalig +die Stärke einer Attacke vom Typ Boden." +598,15,7,"Ticket especial para ir en barco desde Ciudad +Porcelana a Isla Libertad." +598,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Terra." +598,15,9,"A gem with an essence of land. +When held, it strengthens the power +of a Ground-type move one time." +598,15,11,"じめんの タイプの ジュエル。 +持たせると 1度だけ じめんの +技の 威力が 強まる。" +599,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Vol." +599,11,9,"A gem with an essence of air. When held, +it strengthens the power of a +Flying-type move only once." +599,14,9,"A gem with an essence of air. When held, +it strengthens the power of a +Flying-type move only once." +599,15,1,"ひこうの タイプの ジュエル。 +もたせると いちどだけ ひこうの +わざの いりょくが つよまる。" +599,15,3,"비행타입의 주얼. +지니게 하면 한 번만 비행 +기술의 위력이 강해진다." +599,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Vol." +599,15,6,"Ein Juwel vom Typ Flug. Es erhöht einmalig +die Stärke einer Attacke vom Typ Flug." +599,15,7,"Esfera misteriosa que contiene el poder de la +región de Teselia y se utiliza para generar +Poderes Regalo." +599,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Volante." +599,15,9,"A gem with an essence of air. +When held, it strengthens the power +of a Flying-type move one time." +599,15,11,"ひこうの タイプの ジュエル。 +持たせると 1度だけ ひこうの +技の 威力が 強まる。" +600,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Psy." +600,11,9,"A gem with an essence of the mind. When +held, it strengthens the power of a +Psychic-type move only once." +600,14,9,"A gem with an essence of the mind. When +held, it strengthens the power of a +Psychic-type move only once." +600,15,1,"エスパーの タイプの ジュエル。 +もたせると いちどだけ エスパーの +わざの いりょくが つよまる。" +600,15,3,"에스퍼타입의 주얼. +지니게 하면 한 번만 에스퍼 +기술의 위력이 강해진다." +600,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Psy." +600,15,6,"Ein Juwel vom Typ Psycho. Es erhöht einmalig +die Stärke einer Attacke vom Typ Psycho." +600,15,7,"Bola especial que aparece de pronto en tu Bolsa +en el Bosque Nexo y puede atrapar a cualquier +Pokémon." +600,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Psico." +600,15,9,"A gem with an essence of the mind. +When held, it strengthens the power +of a Psychic-type move one time." +600,15,11,"エスパーの タイプの ジュエル。 +持たせると 1度だけ エスパーの +技の 威力が 強まる。" +601,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Insecte." +601,11,9,"A gem with an insect-like essence. +When held, it strengthens the power of +a Bug-type move only once." +601,14,9,"A gem with an insect-like essence. +When held, it strengthens the power of +a Bug-type move only once." +601,15,1,"むしの タイプの ジュエル。 +もたせると いちどだけ むしの +わざの いりょくが つよまる。" +601,15,3,"벌레타입의 주얼. +지니게 하면 한 번만 벌레 +기술의 위력이 강해진다." +601,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Insecte." +601,15,6,"Ein Juwel vom Typ Käfer. Es erhöht einmalig +die Stärke einer Attacke vom Typ Käfer." +601,15,7,"Un objeto que atrae a los Pokémon. Es útil para +huir de un combate contra un Pokémon salvaje." +601,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Coleottero." +601,15,9,"A gem with an insect-like essence. +When held, it strengthens the power +of a Bug-type move one time." +601,15,11,"むしの タイプの ジュエル。 +持たせると 1度だけ むしの +技の 威力が 強まる。" +602,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Roche." +602,11,9,"A gem with an essence of rock. When +held, it strengthens the power of a +Rock-type move only once." +602,14,9,"A gem with an essence of rock. When +held, it strengthens the power of a +Rock-type move only once." +602,15,1,"いわの タイプの ジュエル。 +もたせると いちどだけ いわの +わざの いりょくが つよまる。" +602,15,3,"바위타입의 주얼. +지니게 하면 한 번만 바위 +기술의 위력이 강해진다." +602,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Roche." +602,15,6,"Ein Juwel vom Typ Gestein. Es erhöht einmalig +die Stärke einer Attacke vom Typ Gestein." +602,15,7,"Una bonita cajita donde guardar todos los +Complementos para vestir a tus Pokémon en +el Teatro Musical." +602,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Roccia." +602,15,9,"A gem with an essence of rock. +When held, it strengthens the power +of a Rock-type move one time." +602,15,11,"いわの タイプの ジュエル。 +持たせると 1度だけ いわの +技の 威力が 強まる。" +603,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Spectre." +603,11,9,"A gem with a spectral essence. When +held, it strengthens the power of a +Ghost-type move only once." +603,14,9,"A gem with a spectral essence. When +held, it strengthens the power of a +Ghost-type move only once." +603,15,1,"ゴーストの タイプの ジュエル。 +もたせると いちどだけ ゴーストの +わざの いりょくが つよまる。" +603,15,3,"고스트타입의 주얼. +지니게 하면 한 번만 고스트 +기술의 위력이 강해진다." +603,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Spectre." +603,15,6,"Ein Juwel vom Typ Geist. Es erhöht einmalig +die Stärke einer Attacke vom Typ Geist." +603,15,7,"Cráneo de un Pokémon. Se dice que este +Pokémon cruzó mares embravecidos." +603,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Spettro." +603,15,9,"A gem with a spectral essence. +When held, it strengthens the power +of a Ghost-type move one time." +603,15,11,"ゴーストの タイプの ジュエル。 +持たせると 1度だけ ゴーストの +技の 威力が 強まる。" +604,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Ténèbres." +604,11,9,"A gem with an essence of darkness. +When held, it strengthens the power of +a Dark-type move only once." +604,14,9,"A gem with an essence of darkness. +When held, it strengthens the power of +a Dark-type move only once." +604,15,1,"あくの タイプの ジュエル。 +もたせると いちどだけ あくの +わざの いりょくが つよまる。" +604,15,3,"악타입의 주얼. +지니게 하면 한 번만 악 +기술의 위력이 강해진다." +604,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Ténèbres." +604,15,6,"Ein Juwel vom Typ Unlicht. Es erhöht einmalig +die Stärke einer Attacke vom Typ Unlicht." +604,15,7,"Pepita de oro puro que desprende un brillo +espectacular. Puede venderse muy cara en las +tiendas." +604,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Buio." +604,15,9,"A gem with an essence of darkness. +When held, it strengthens the power +of a Dark-type move one time." +604,15,11,"あくの タイプの ジュエル。 +持たせると 1度だけ あくの +技の 威力が 強まる。" +605,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Acier." +605,11,9,"A gem with an essence of steel. When +held, it strengthens the power of a +Steel-type move only once." +605,14,9,"A gem with an essence of steel. When +held, it strengthens the power of a +Steel-type move only once." +605,15,1,"はがねの タイプの ジュエル。 +もたせると いちどだけ はがねの +わざの いりょくが つよまる。" +605,15,3,"강철타입의 주얼. +지니게 하면 한 번만 강철 +기술의 위력이 강해진다." +605,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Acier." +605,15,6,"Ein Juwel vom Typ Stahl. Es erhöht einmalig +die Stärke einer Attacke vom Typ Stahl." +605,15,7,"Brillantes perlas plateadas de gran tamaño que +pueden venderse a buen precio en las tiendas." +605,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Acciaio." +605,15,9,"A gem with an essence of steel. +When held, it strengthens the power +of a Steel-type move one time." +605,15,11,"はがねの タイプの ジュエル。 +持たせると 1度だけ はがねの +技の 威力が 強まる。" +606,11,5,"Objet à utiliser sur un Pokémon. +Il augmente un peu ses PV lors +d’une montée de niveau." +606,11,9,"An item for use on a Pokémon. It +slightly increases the base HP of a +single Pokémon." +606,14,9,"An item for use on a Pokémon. It +slightly increases the base HP of a +single Pokémon." +606,15,1,"ポケモンに つかう どうぐ。 +ポケモン 1ひきの HPの +きそポイントを ちょっと あげる。" +606,15,3,"포켓몬에게 사용하는 도구. +포켓몬 1마리의 HP +기초 포인트를 조금 올린다." +606,15,5,"Objet à utiliser sur un Pokémon. +Il augmente un peu ses PV de base." +606,15,6,"Schenkt man einem Pokémon dieses Item, +wird dessen KP-Basiswert dauerhaft erhöht." +606,15,7,"Moneda de cobre de más de 3000 años de +antigüedad. Muy valorada por los coleccionistas." +606,15,8,"Strumento da usare su un Pokémon. +Ne aumenta di poco i punti base dei PS." +606,15,9,"An item for use on a Pokémon. +It slightly increases the base +HP of a single Pokémon." +606,15,11,"ポケモンに 使う 道具。 +ポケモン 1匹の HPの +基礎ポイントを ちょっと あげる。" +607,11,5,"Objet à utiliser sur un Pokémon. +Il augmente un peu son Attaque +lors d’une montée de niveau." +607,11,9,"An item for use on a Pokémon. It +slightly increases the base Attack stat +of a single Pokémon." +607,14,9,"An item for use on a Pokémon. It +slightly increases the base Attack stat +of a single Pokémon." +607,15,1,"ポケモンに つかう どうぐ。 +ポケモン 1ひきの こうげきの +きそポイントを ちょっと あげる。" +607,15,3,"포켓몬에게 사용하는 도구. +포켓몬 1마리의 공격 +기초 포인트를 조금 올린다." +607,15,5,"Objet à utiliser sur un Pokémon. +Il augmente un peu son Attaque de base." +607,15,6,"Schenkt man einem Pokémon dieses Item, +wird dessen Angriffs-Basiswert dauerhaft erhöht." +607,15,7,"Moneda de plata de más de 3000 años de +antigüedad. Muy valorada por los coleccionistas." +607,15,8,"Strumento da usare su un Pokémon. +Ne aumenta di poco i punti base dell’Attacco." +607,15,9,"An item for use on a Pokémon. +It slightly increases the base Attack +stat of a single Pokémon." +607,15,11,"ポケモンに 使う 道具。 +ポケモン 1匹の 攻撃の +基礎ポイントを ちょっと あげる。" +608,11,5,"Objet à utiliser sur un Pokémon. +Il augmente un peu sa Défense +lors d’une montée de niveau." +608,11,9,"An item for use on a Pokémon. It +slightly increases the base Defense +stat of a single Pokémon." +608,14,9,"An item for use on a Pokémon. It +slightly increases the base Defense +stat of a single Pokémon." +608,15,1,"ポケモンに つかう どうぐ。 +ポケモン 1ひきの ぼうぎょの +きそポイントを ちょっと あげる。" +608,15,3,"포켓몬에게 사용하는 도구. +포켓몬 1마리의 방어 +기초 포인트를 조금 올린다." +608,15,5,"Objet à utiliser sur un Pokémon. +Il augmente un peu sa Défense de base." +608,15,6,"Schenkt man einem Pokémon dieses Item, wird +dessen Verteidigungs-Basiswert dauerhaft erhöht." +608,15,7,"Moneda de oro de más de 3000 años de +antigüedad. Muy valorada por los coleccionistas." +608,15,8,"Strumento da usare su un Pokémon. +Ne aumenta di poco i punti base della Difesa." +608,15,9,"An item for use on a Pokémon. +It slightly increases the base Defense +stat of a single Pokémon." +608,15,11,"ポケモンに 使う 道具。 +ポケモン 1匹の 防御の +基礎ポイントを ちょっと あげる。" +609,11,5,"Objet à utiliser sur un Pokémon. +Il augmente un peu son Atq. Spé. +lors d’une montée de niveau." +609,11,9,"An item for use on a Pokémon. It +slightly increases the base Sp. Atk +stat of a single Pokémon." +609,14,9,"An item for use on a Pokémon. It +slightly increases the base Sp. Atk +stat of a single Pokémon." +609,15,1,"ポケモンに つかう どうぐ。 +ポケモン 1ひきの とくこうの +きそポイントを ちょっと あげる。" +609,15,3,"포켓몬에게 사용하는 도구. +포켓몬 1마리의 특수공격 +기초 포인트를 조금 올린다." +609,15,5,"Objet à utiliser sur un Pokémon. +Il augmente un peu son Attaque Spéciale +de base." +609,15,6,"Schenkt man einem Pokémon dieses Item, wird +dessen Spezial-Angriffs-Basiswert dauerhaft +erhöht." +609,15,7,"Jarrón de más de 3000 años de antigüedad. +Muy valorado por los coleccionistas." +609,15,8,"Strumento da usare su un Pokémon. +Ne aumenta di poco i punti base dell’Attacco +Speciale." +609,15,9,"An item for use on a Pokémon. +It slightly increases the base Sp. Atk +stat of a single Pokémon." +609,15,11,"ポケモンに 使う 道具。 +ポケモン 1匹の 特攻の +基礎ポイントを ちょっと あげる。" +610,11,5,"Objet à utiliser sur un Pokémon. +Il augmente un peu sa Déf. Spé. +lors d’une montée de niveau." +610,11,9,"An item for use on a Pokémon. It +slightly increases the base Sp. Def +stat of a single Pokémon." +610,14,9,"An item for use on a Pokémon. It +slightly increases the base Sp. Def +stat of a single Pokémon." +610,15,1,"ポケモンに つかう どうぐ。 +ポケモン 1ひきの とくぼうの +きそポイントを ちょっと あげる。" +610,15,3,"포켓몬에게 사용하는 도구. +포켓몬 1마리의 특수방어 +기초 포인트를 조금 올린다." +610,15,5,"Objet à utiliser sur un Pokémon. +Il augmente un peu sa Défense Spéciale de base." +610,15,6,"Schenkt man einem Pokémon dieses Item, +wird dessen Spezial-Verteidigungs-Basiswert +dauerhaft erhöht." +610,15,7,"Brazalete de más de 3000 años de antigüedad. +Muy valorado por los coleccionistas." +610,15,8,"Strumento da usare su un Pokémon. +Ne aumenta di poco i punti base della Difesa +Speciale." +610,15,9,"An item for use on a Pokémon. +It slightly increases the base Sp. Def +stat of a single Pokémon." +610,15,11,"ポケモンに 使う 道具。 +ポケモン 1匹の 特防の +基礎ポイントを ちょっと あげる。" +611,11,5,"Objet à utiliser sur un Pokémon. +Il augmente un peu sa Vitesse +lors d’une montée de niveau." +611,11,9,"An item for use on a Pokémon. It +slightly increases the base Speed stat +of a single Pokémon." +611,14,9,"An item for use on a Pokémon. It +slightly increases the base Speed stat +of a single Pokémon." +611,15,1,"ポケモンに つかう どうぐ。 +ポケモン 1ひきの すばやさの +きそポイントを ちょっと あげる。" +611,15,3,"포켓몬에게 사용하는 도구. +포켓몬 1마리의 스피드 +기초 포인트를 조금 올린다." +611,15,5,"Objet à utiliser sur un Pokémon. +Il augmente un peu sa Vitesse de base." +611,15,6,"Schenkt man einem Pokémon dieses Item, +wird dessen Initiative-Basiswert dauerhaft erhöht." +611,15,7,"Efigie de piedra de más de 3000 años de +antigüedad. Muy valorada por los coleccionistas." +611,15,8,"Strumento da usare su un Pokémon. +Ne aumenta di poco i punti base della Velocità." +611,15,9,"An item for use on a Pokémon. +It slightly increases the base Speed +stat of a single Pokémon." +611,15,11,"ポケモンに 使う 道具。 +ポケモン 1匹の 素早さの +基礎ポイントを ちょっと あげる。" +612,11,5,"Une plume très jolie, mais ordinaire +et sans effet particulier." +612,11,9,"Though this feather is beautiful, it’s +just a regular feather and has no +effect on Pokémon." +612,14,9,"Though this feather is beautiful, it’s +just a regular feather and has no +effect on Pokémon." +612,15,1,"きれいなだけで なんの こうかもない +ごくごく ふつうの ハネ。 +" +612,15,3,"아름답기만 할 뿐 아무 효과도 없는 +지극히 평범한 날개." +612,15,5,"Une plume très jolie, mais ordinaire et sans effet +particulier." +612,15,6,"Eine ganz normale Feder, die rein gar nichts +bewirkt." +612,15,7,"Corona de más de 3000 años de antigüedad. +Muy valorada por los coleccionistas." +612,15,8,"Piuma molto bella ma priva di qualsiasi utilità: +non ha alcun effetto." +612,15,9,"Though this feather is beautiful, +it’s just a regular feather and +has no effect on Pokémon." +612,15,11,"きれいなだけで なんの 効果もない +ごくごく 普通の ハネ。 +" +613,11,5,"Fossile d’un ancien Pokémon +aquatique. Il semble que ce +soit une partie de son dos." +613,11,9,"A fossil of an ancient Pokémon that +lived in the sea in ancient times. +It appears to be part of its back." +613,14,9,"A fossil of an ancient Pokémon that +lived in the sea in ancient times. +It appears to be part of its back." +613,15,1,"おおむかし うみに すんでいた +こだい ポケモンの カセキ。 +せなかの いちぶ らしい。" +613,15,3,"오랜 옛날 바다에 살았던 +고대 포켓몬의 화석. +등의 일부인 듯하다." +613,15,5,"Le fossile d’un ancien Pokémon aquatique. +Il semble que ce soit une partie de son dos." +613,15,6,"Das Fossil eines uralten Pokémon, das in der +Tiefsee lebte. Offenbar handelt es sich um einen +Teil des Rückens." +613,15,7,"Especialidad de Ciudad Porcelana. Cura los +problemas de estado de un Pokémon." +613,15,8,"Fossile di un Pokémon preistorico che viveva +nel mare. Sembra essere parte del suo dorso." +613,15,9,"A fossil from a prehistoric Pokémon +that once lived in the sea. It appears +as though it could be part of its back." +613,15,11,"大昔 海に すんでいた +古代ポケモンの カセキ。 +せなかの 一部らしい。" +614,11,5,"Fossile d’un ancien Pokémon +volant. Il semble que ce soit +un morceau d’aile." +614,11,9,"A fossil of an ancient Pokémon that +flew in the sky in ancient times. +It appears to be part of its wing." +614,14,9,"A fossil of an ancient Pokémon that +flew in the sky in ancient times. +It appears to be part of its wing." +614,15,1,"とりポケモンの そせんと いわれる +こだい ポケモンの カセキ。 +つばさの いちぶ らしい。" +614,15,3,"새포켓몬의 조상이라 불리는 +고대 포켓몬의 화석. +날개의 일부인 듯하다." +614,15,5,"Le fossile d’un ancien Pokémon volant. +Il semble que ce soit un morceau d’aile." +614,15,6,"Das Fossil eines uralten Pokémon, von dem man +annimmt, dass es der Urahn der Vogel-Pokémon +sei. Es handelt sich um einen Teil des Flügels." +614,15,7,"Aumenta la probabilidad de asestar un golpe +crítico. Al cambiar de Pokémon, el efecto +desaparece." +614,15,8,"Fossile di un Pokémon preistorico che solcava +i cieli. Sembra essere parte della sua ala." +614,15,9,"A fossil from a prehistoric Pokémon +that once lived in the sky. It looks as +if it could come from part of its wing." +614,15,11,"とりポケモンの 祖先と いわれる +古代ポケモンの カセキ。 +つばさの 一部らしい。" +615,11,5,"Ticket spécial permettant de se +rendre sur l’Île Liberté à bord +du bateau de Volucité." +615,11,9,"A special pass to go to Liberty Garden. +Board the ship in Castelia City." +615,14,9,"A special pass to go to Liberty Garden. +Board the ship in Castelia City." +615,15,1,"リバティガーデンとうに いくための +とくべつな チケット。 +ヒウンシティから ふねに のれる。" +615,15,3,"리버티가든섬에 가기 위한 +특별한 티켓. +구름시티에서 배를 탈 수 있다." +615,15,5,"Un ticket spécial permettant de se rendre sur +l’Île Liberté à bord du bateau de Volucité." +615,15,6,"Ein besonderes Ticket für die Überfahrt von +Stratos City zur Insel des Freiheitsgartens." +615,15,7,"Aumenta ligeramente la Velocidad en combate. +Al cambiar de Pokémon, el efecto desaparece." +615,15,8,"Biglietto speciale per l’Isola Libertà. +La nave parte da Austropoli." +615,15,9,"A special pass to go to Liberty Garden. +Board the ship in Castelia City." +615,15,11,"リバティガーデン島に 行くための +特別な チケット。 +ヒウンシティから 船に 乗れる。" +616,11,5,"Sphère mystérieuse contenant +l’Aura d’Unys et utilisable +avec l’Offri-Aura." +616,11,9,"A mysterious orb containing the power +of the Unova region, to be used when +generating Pass Power." +616,14,9,"A mysterious orb containing the power +of the Unova region, to be used when +generating Pass Power." +616,15,1,"デルパワーを はっせいさせる +ときにつかう イッシュの パワーが +とじこめられた ふしぎな たま。" +616,15,3,"딜파워를 발생시킬 때 +사용하는 하나지방의 파워가 +담긴 이상한 구슬." +616,15,5,"Une sphère mystérieuse contenant l’Aura d’Unys +et permettant l’utilisation des Offri-Auras." +616,15,6,"Ein mysteriöser Orb, der die Kraft der +Einall-Region enthält und zur Erzeugung +von Transferkraft dient." +616,15,7,"Aumenta ligeramente el Ataque Especial en +combate. Al cambiar de Pokémon, el efecto +desaparece." +616,15,8,"Bilia misteriosa che racchiude l’energia di Unima +ed è in grado di lanciare il Passapotere." +616,15,9,"A mysterious orb containing the power +of the Unova region, to be used when +generating Pass Power." +616,15,11,"デルパワーを 発生させる +ときに使う イッシュの パワーが +とじこめられた 不思議な 玉。" +617,11,5,"Poké Ball du rêve. Apparue dans le +Sac à la Forêt du Heylink. Permet +d’attraper n’importe quel Pokémon." +617,11,9,"A special Poké Ball that appears out of +nowhere in a bag at the Entree Forest. +It can catch any Pokémon." +617,14,9,"A special Poké Ball that appears out of +nowhere in a bag at the Entree Forest. +It can catch any Pokémon." +617,15,1,"ハイリンクのもりで いつのまにか +バッグに あらわれる ゆめのボール。 +どんな ポケモンも つかまえられる。" +617,15,3,"하일링크의 숲에서 어느 사이엔지 +가방 속에 나타나는 꿈의 볼. +어떤 포켓몬이라도 잡을 수 있다." +617,15,5,"Une Poké Ball du rêve. +Apparue dans le Sac à la Forêt du Heylink. +Permet d’attraper n’importe quel Pokémon." +617,15,6,"Ein Ball wie aus einem Traum, der im +Kontaktebenenhain plötzlich im Beutel +auftaucht. Fängt jedes Pokémon." +617,15,7,"Aumenta ligeramente la Defensa Especial en +combate. Al cambiar de Pokémon, el efecto +desaparece." +617,15,8,"Poké Ball onirica. Appare all’improvviso nella +Borsa quando si è nel Bosco Intramondo. +Può acchiappare qualsiasi Pokémon." +617,15,9,"A special Poké Ball that appears in your +Bag out of nowhere in the Entree Forest. +It can catch any Pokémon." +617,15,11,"ハイリンクの森で いつのまにか +バッグに 現れる 夢のボール。 +どんな ポケモンも 捕まえられる。" +618,11,5,"Objet qui attire les Pokémon. Permet +de s’enfuir d’un combat contre un +Pokémon sauvage." +618,11,9,"An item that attracts Pokémon. +Use it to flee from any battle with a +wild Pokémon." +618,14,9,"An item that attracts Pokémon. +Use it to flee from any battle with a +wild Pokémon." +618,15,1,"ポケモンの きを ひかせる どうぐ。 +やせいポケモンとの せんとうから +ぜったいに にげられる。" +618,15,3,"포켓몬의 관심을 끄는 도구. +야생 포켓몬과의 배틀에서 +반드시 도망칠 수 있다." +618,15,5,"Un objet qui attire les Pokémon. +Permet de s’enfuir d’un combat contre +un Pokémon sauvage." +618,15,6,"Ein Item, das wilde Pokémon vom +Kampfgeschehen ablenkt und +garantiert die Flucht ermöglicht." +618,15,7,"Aumenta ligeramente la Defensa en combate. +Al cambiar de Pokémon, el efecto desaparece." +618,15,8,"Strumento che attrae i Pokémon. È utile per +fuggire dalla lotta con Pokémon selvatici." +618,15,9,"A toy that attracts the attention of a +Pokémon. It guarantees escape from +any battle with a wild Pokémon." +618,15,11,"ポケモンの 気を ひかせる 道具。 +野生ポケモンとの 戦闘から +絶対に 逃げられる。" +619,11,5,"Boîte permettant de ranger +les Parures pour habiller les +Pokémon au Music-Hall." +619,11,9,"A lovely case to store colorful Props +for your Pokémon to wear in a musical." +619,14,9,"A lovely case to store colorful Props +for your Pokémon to wear in a musical." +619,15,1,"ミュージカルで ポケモンに つける +いろとりどりの グッズを たくさん +しまえる きれいで すてきなケース。" +619,15,3,"뮤지컬에서 포켓몬에게 다는 +각양각색의 굿즈를 많이 +넣을 수 있는 아름답고 멋진 케이스." +619,15,5,"Une boîte permettant de ranger les Parures pour +habiller les Pokémon au Music-Hall." +619,15,6,"Eine ganz tolle Box, in der jede Menge bunte +Deko-Artikel für Pokémon-Musicals Platz haben." +619,15,7,"Aumenta ligeramente el Ataque en combate. +Al cambiar de Pokémon, el efecto desaparece." +619,15,8,"Scatola bella ed elegante per conservare i gadget +usati per agghindare i Pokémon durante +il Pokémon Musical." +619,15,9,"A lovely case to store colorful Props +for your Pokémon to wear in a musical." +619,15,11,"ミュージカルで ポケモンに つける +いろとりどりの グッズを たくさん +収納する きれいで すてきなケース。" +620,11,5,"Crâne d’un Pokémon qui +aurait survolé librement +la mer déchaînée." +620,11,9,"A skull of a Pokémon which was said to +have braved the angry waters to fly +around the world." +620,14,9,"A skull of a Pokémon which was said to +have braved the angry waters to fly +around the world." +620,15,1,"あれくるう うみを ものともせず +じゆうに とびまわっていたと される +ポケモンの あたまの ホネ。" +620,15,3,"성난 바다 위를 개의치 않고 +자유롭게 날아다녔다는 +포켓몬의 머리뼈." +620,15,5,"Le crâne d’un Pokémon qui aurait survolé +librement la mer déchaînée." +620,15,6,"Der Schädel eines Pokémon, das einst +wütendem Seegang zum Trotz frei um +die Welt flog." +620,15,7,"Aumenta ligeramente la Precisión en combate. +Al cambiar de Pokémon, el efecto desaparece." +620,15,8,"Teschio di un Pokémon che sorvolava libero i mari +senza temere neanche le più forti tempeste." +620,15,9,"A skull of a Pokémon which was said +to have braved the angry waters to +fly around the world." +620,15,11,"荒れ狂う 海を ものともせず +自由に とびまわっていたと される +ポケモンの 頭の ホネ。" +621,11,5,"Champignon rare qui répand un +agréable parfum autour de lui. +Les amateurs en donnent un bon prix." +621,11,9,"A rare mushroom which gives off a nice +fragrance. +A maniac will buy it for a high price." +621,14,9,"A rare mushroom which gives off a nice +fragrance. +A maniac will buy it for a high price." +621,15,1,"あたりいったいに いい かおりが +ひろがる めずらしい キノコ。 +ショップで たかく うれる。" +621,15,3,"주변 일대에 좋은 향기가 +퍼지는 희귀한 버섯. +상점에서 비싸게 팔린다." +621,15,5,"Un champignon rare qui répand un agréable +parfum autour de lui. Peut être vendu à bon prix +aux magasins." +621,15,6,"Ein seltener Pilz, der ein angenehmes Aroma +verbreitet." +621,15,7,"Aumenta bastante la Velocidad en combate. +Al cambiar de Pokémon, el efecto desaparece." +621,15,8,"Fungo raro che emana un profumo +gradevolissimo. Si può vendere a un prezzo +piuttosto alto nei negozi." +621,15,9,"A rare mushroom that gives off +a nice fragrance. It can be sold at +a high price to shops." +621,15,11,"あたりいったいに いい 香りが +ひろがる 珍しい キノコ。 +ショップで 高く 売れる。" +622,11,5,"Grosse pépite d’or pur qui brille +magnifiquement. +Les amateurs en donnent un bon prix." +622,11,9,"A big nugget of pure gold that gives off +a lustrous gleam. +A maniac will buy it for a high price." +622,14,9,"A big nugget of pure gold that gives off +a lustrous gleam. +A maniac will buy it for a high price." +622,15,1,"キラキラと きんいろに ひかる +じゅんきんせいの おおきな たま。 +ショップで たかく うれる。" +622,15,3,"금색으로 반짝반짝 빛나는 +순금으로 만들어진 큰 구슬. +상점에서 비싸게 팔린다." +622,15,5,"Une pépite d’or pur qui brille d’un éclat +magnifique. Peut être vendue à bon prix +aux magasins." +622,15,6,"Ein großes Nugget aus purem Gold, das +einen schimmernden Glanz besitzt. Es ist +von großem Wert." +622,15,7,"Aumenta bastante el Ataque Especial en combate. +Al cambiar de Pokémon, el efecto desaparece." +622,15,8,"Grossa pepita d’oro puro dal luccichio sfavillante. +Si può vendere a un prezzo piuttosto alto +nei negozi." +622,15,9,"A big nugget of pure gold that gives +off a lustrous gleam. It can be sold +at a high price to shops." +622,15,11,"キラキラと 金色に 光る +純金製の おおきな 玉。 +ショップで 高く 売れる。" +623,11,5,"Une très grosse perle qui brille +d’une jolie couleur argent. +Les amateurs en donnent un bon prix." +623,11,9,"Very large pearls that sparkle in a +pretty silver color. +A maniac will buy them for a high price." +623,14,9,"Very large pearls that sparkle in a +pretty silver color. +A maniac will buy them for a high price." +623,15,1,"きれいな ぎんいろに ひかる +とても おおつぶの しんじゅ。 +ショップで たかく うれる。" +623,15,3,"예쁜 은색으로 빛나는 +상당히 큰 낱알의 진주. +상점에서 비싸게 팔린다." +623,15,5,"Une grappe de perles brillant d’une jolie +couleur argent. Peut être vendue à bon prix +aux magasins." +623,15,6,"Große Perlen, die in schönem Silber +funkeln. Sie sind von großem Wert." +623,15,7,"Aumenta bastante la Defensa Especial en +combate. Al cambiar de Pokémon, el efecto +desaparece." +623,15,8,"Grosse perle dai riflessi argentei. Si possono +vendere a un prezzo piuttosto alto nei negozi." +623,15,9,"Very large pearls that sparkle in +a pretty silver color. They can be +sold at a high price to shops." +623,15,11,"きれいな 銀色に 光る +とても 大粒の 真珠。 +ショップで 高く 売れる。" +624,11,5,"Un fragment de comète, tombé au sol +quand elle traversait l’atmosphère. +Les amateurs en donnent un bon prix." +624,11,9,"A shard which fell to the ground when +a comet approached. +A maniac will buy it for a high price." +624,14,9,"A shard which fell to the ground when +a comet approached. +A maniac will buy it for a high price." +624,15,1,"すいせいが ちかづいたとき +ちひょうに おちた かけら。 +ショップで たかく うれる。" +624,15,3,"혜성이 가까워졌을 때 +지표면에 떨어진 조각. +상점에서 비싸게 팔린다." +624,15,5,"Un fragment de comète, tombé au sol quand elle +traversait l’atmosphère. Peut être vendu à bon +prix aux magasins." +624,15,6,"Ein Kometensplitter, der aus dem All +herabgefallen ist. Er ist von großem Wert." +624,15,7,"Aumenta bastante la Defensa en combate. +Al cambiar de Pokémon, el efecto desaparece." +624,15,8,"Scheggia di cometa caduta al suolo. Si può +vendere a un prezzo piuttosto alto nei negozi." +624,15,9,"A shard that fell to the ground +when a comet approached. It can +be sold at a high price to shops." +624,15,11,"すい星が 近づいたとき +地表に 落ちた かけら。 +ショップで 高く 売れる。" +625,11,5,"Une pièce de cuivre d’une civilisation +vieille de plus de 3 000 ans. +Les amateurs en donnent un bon prix." +625,11,9,"A copper coin used in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +625,14,9,"A copper coin used in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +625,15,1,"3000ねんほど むかしの +ぶんめいで つかわれた どうか。" +625,15,3,"3000년 정도 된 +오랜 문명에서 사용된 동화." +625,15,5,"Une pièce de cuivre d’une civilisation vieille de +plus de 3 000 ans." +625,15,6,"Eine alte Kupfermünze. Die Währung +einer gut 3 000 Jahre alten Kultur." +625,15,7,"Aumenta bastante el Ataque en combate. +Al cambiar de Pokémon, el efecto desaparece." +625,15,8,"Moneta di rame usata circa 3000 anni fa +da un’antica civiltà." +625,15,9,"A copper coin used by an ancient +civilization about 3,000 years ago." +625,15,11,"3000年ほど 昔の +文明で 使われた 銅貨。" +626,11,5,"Une pièce d’argent d’une civilisation +vieille de plus de 3 000 ans. +Les amateurs en donnent un bon prix." +626,11,9,"A silver coin used in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +626,14,9,"A silver coin used in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +626,15,1,"3000ねんほど むかしの +ぶんめいで つかわれた ぎんか。" +626,15,3,"3000년 정도 된 +오랜 문명에서 사용된 은화." +626,15,5,"Une pièce d’argent d’une civilisation vieille de +plus de 3 000 ans." +626,15,6,"Eine alte Silbermünze. Die Währung +einer gut 3 000 Jahre alten Kultur." +626,15,7,"Aumenta bastante la Precisión en combate. +Al cambiar de Pokémon, el efecto desaparece." +626,15,8,"Moneta d’argento usata circa 3000 anni fa +da un’antica civiltà." +626,15,9,"A silver coin used by an ancient +civilization about 3,000 years ago." +626,15,11,"3000年ほど 昔の +文明で 使われた 銀貨。" +627,11,5,"Une pièce d’or d’une civilisation +vieille de plus de 3 000 ans. +Les amateurs en donnent un bon prix." +627,11,9,"A gold coin used in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +627,14,9,"A gold coin used in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +627,15,1,"3000ねんほど むかしの +ぶんめいで つかわれた きんか。" +627,15,3,"3000년 정도 된 +오랜 문명에서 사용된 금화." +627,15,5,"Une pièce d’or d’une civilisation vieille de plus +de 3 000 ans." +627,15,6,"Eine alte Goldmünze. Die Währung +einer gut 3 000 Jahre alten Kultur." +627,15,7,"Aumenta mucho la Velocidad en combate. +Al cambiar de Pokémon, el efecto desaparece." +627,15,8,"Moneta d’oro usata circa 3000 anni fa +da un’antica civiltà." +627,15,9,"A gold coin used by an ancient +civilization about 3,000 years ago." +627,15,11,"3000年ほど 昔の +文明で 使われた 金貨。" +628,11,5,"Un vase d’une civilisation +vieille de plus de 3 000 ans. +Les amateurs en donnent un bon prix." +628,11,9,"A vase made in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +628,14,9,"A vase made in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +628,15,1,"3000ねんほど むかしの +ぶんめいで つくられた ツボ。" +628,15,3,"3000년 정도 된 +오랜 문명에서 만들어진 항아리." +628,15,5,"Un vase d’une civilisation vieille de plus de +3 000 ans." +628,15,6,"Eine Vase, angefertigt von einer +gut 3 000 Jahre alten Kultur." +628,15,7,"Aumenta mucho el Ataque Especial en combate. +Al cambiar de Pokémon, el efecto desaparece." +628,15,8,"Vaso prodotto circa 3000 anni fa +da un’antica civiltà." +628,15,9,"A fragile vase made by an ancient +civilization about 3,000 years ago." +628,15,11,"3000年ほど 昔の +文明で つくられた ツボ。" +629,11,5,"Un bijou d’une civilisation +vieille de plus de 3 000 ans. +Les amateurs en donnent un bon prix." +629,11,9,"A bracelet made in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +629,14,9,"A bracelet made in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +629,15,1,"3000ねんほど むかしの +ぶんめいで つくられた うでわ。" +629,15,3,"3000년 정도 된 +오랜 문명에서 만들어진 팔찌." +629,15,5,"Un bijou d’une civilisation vieille de plus de +3 000 ans." +629,15,6,"Ein Armreif, angefertigt von einer +gut 3 000 Jahre alten Kultur." +629,15,7,"Aumenta mucho la Defensa Especial en combate. +Al cambiar de Pokémon, el efecto desaparece." +629,15,8,"Braccialetto forgiato circa 3000 anni fa +da un’antica civiltà." +629,15,9,"A heavy bracelet made by an ancient +civilization about 3,000 years ago." +629,15,11,"3000年ほど 昔の +文明で つくられた 腕輪。" +630,11,5,"Une statuette d’une civilisation +vieille de plus de 3 000 ans. +Les amateurs en donnent un bon prix." +630,11,9,"A stone figure made in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +630,14,9,"A stone figure made in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +630,15,1,"3000ねんほど むかしの +ぶんめいで つくられた せきぞう。" +630,15,3,"3000년 정도 된 +오랜 문명에서 만들어진 석상." +630,15,5,"Une statuette d’une civilisation vieille de plus de +3 000 ans." +630,15,6,"Eine Statue, angefertigt von einer +gut 3 000 Jahre alten Kultur." +630,15,7,"Aumenta mucho la Defensa en combate. +Al cambiar de Pokémon, el efecto desaparece." +630,15,8,"Statua scolpita circa 3000 anni fa +da un’antica civiltà." +630,15,9,"A stone figurine made by an ancient +civilization about 3,000 years ago." +630,15,11,"3000年ほど 昔の +文明で つくられた 石像。" +631,11,5,"Une couronne d’une civilisation +vieille de plus de 3 000 ans. +Les amateurs en donnent un bon prix." +631,11,9,"A crown made in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +631,14,9,"A crown made in a civilization +about 3,000 years ago. +A maniac will buy it for a high price." +631,15,1,"3000ねんほど むかしの +ぶんめいで つくられた おうかん。" +631,15,3,"3000년 정도 된 +오랜 문명에서 만들어진 왕관." +631,15,5,"Une couronne d’une civilisation vieille de plus de +3 000 ans." +631,15,6,"Die Krone eines Königs, angefertigt von +einer gut 3 000 Jahre alten Kultur." +631,15,7,"Aumenta mucho el Ataque en combate. +Al cambiar de Pokémon, el efecto desaparece." +631,15,8,"Corona forgiata circa 3000 anni fa. +da un’antica civiltà." +631,15,9,"A heavy crown made by an ancient +civilization about 3,000 years ago." +631,15,11,"3000年ほど 昔の +文明で つくられた 王冠。" +632,11,5,"Spécialité de Volucité. Elle +soigne tous les problèmes +de statut d’un Pokémon." +632,11,9,"Castelia City’s specialty, soft-serve +ice cream. It heals all the status +problems of a single Pokémon." +632,14,9,"Castelia City’s specialty, soft-serve +ice cream. It heals all the status +problems of a single Pokémon." +632,15,1,"ヒウンシティの めいぶつアイス。 +ポケモン 1ひきの じょうたいの +いじょうを すべて かいふくする。" +632,15,3,"구름시티의 명물 아이스. +포켓몬 1마리의 상태 이상을 +모두 회복한다." +632,15,5,"La spécialité de Volucité. +Elle soigne tous les problèmes de statut +d’un Pokémon." +632,15,6,"Dieses Eis ist eine Spezialität aus Stratos City. +Es behebt alle Statusprobleme eines Pokémon." +632,15,7,"Aumenta mucho la Precisión en combate. +Al cambiar de Pokémon, el efecto desaparece." +632,15,8,"Il famoso gelato di Austropoli. Cura tutti i +problemi di stato di un Pokémon." +632,15,9,"Castelia City’s specialty, soft-serve +ice cream. It heals all the status +problems of a single Pokémon." +632,15,11,"ヒウンシティの 名物アイス。 +ポケモン 1匹の 状態の +異常を すべて 回復する。" +633,11,5,"Augmente le taux de critiques. Plus +efficace à chaque utilisation. L’effet +s’estompe si le Pokémon se retire." +633,11,9,"It can be used many times to raise the +critical-hit ratio of one Pokémon. It +wears off if the Pokémon is withdrawn." +633,14,9,"It can be used many times to raise the +critical-hit ratio of one Pokémon. It +wears off if the Pokémon is withdrawn." +633,15,1,"きゅうしょりつが あがる。 +つかうたびに こうかが アップする。 +ひっこめると もとに もどる。" +633,15,3,"급소 명중률이 올라간다. 사용할 때마다 +효과가 올라간다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +633,15,5,"Augmente le taux de critiques. +Plus efficace à chaque utilisation. +L’effet s’estompe si le Pokémon se retire." +633,15,6,"Erhöht die Volltrefferquote. Effektiver bei +mehrfacher Anwendung. Wirksam, bis das +Pokémon ausgewechselt wird." +633,15,7,"Al usarlo, activa la habilidad de un Pokémon de +tu equipo." +633,15,8,"Aumenta la probabilità di sferrare brutti colpi. +Se usato più volte, l’effetto si somma, +ma svanisce se il Pokémon è sostituito." +633,15,9,"It can be used many times to raise the +critical-hit ratio of one Pokémon. It +wears off if the Pokémon is withdrawn." +633,15,11,"急所率が あがる。 +使うたびに 効果が アップする。 +ひっこめると 元に 戻る。" +634,11,5,"Monte un peu la Vitesse pendant +un combat. L’effet s’estompe si +le Pokémon se retire." +634,11,9,"It sharply raises the Speed stat of a +Pokémon in battle. It wears off if +the Pokémon is withdrawn." +634,14,9,"It sharply raises the Speed stat of a +Pokémon in battle. It wears off if +the Pokémon is withdrawn." +634,15,1,"せんとうちゅうの ポケモンの +すばやさを それなりに あげる。 +ひっこめると もとに もどる。" +634,15,3,"배틀 중인 포켓몬의 스피드를 +그럭저럭 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +634,15,5,"Augmente un peu la Vitesse pendant un combat. +L’effet s’estompe si le Pokémon se retire." +634,15,6,"Hebt den Initiative-Wert eines Pokémon im Kampf +leicht an. Die Wirkung endet mit dem Austausch +des Pokémon." +634,15,7,"Cuando se usa, un Pokémon de tu equipo pierde +su objeto." +634,15,8,"Aumenta molto la Velocità di un Pokémon in +una lotta. L’effetto svanisce se il Pokémon +è sostituito." +634,15,9,"It sharply raises the Speed stat of a +Pokémon in battle. It wears off if +the Pokémon is withdrawn." +634,15,11,"戦闘中の ポケモンの +素早さを それなりに あげる。 +ひっこめると 元に 戻る。" +635,11,5,"Monte un peu l’Atq. Spé. pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +635,11,9,"It sharply raises the Sp. Atk stat of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +635,14,9,"It sharply raises the Sp. Atk stat of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +635,15,1,"せんとうちゅうの ポケモンの +とくこうを それなりに あげる。 +ひっこめると もとに もどる。" +635,15,3,"배틀 중인 포켓몬의 특수공격을 +그럭저럭 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +635,15,5,"Augmente un peu l’Attaque Spéciale pendant +un combat. L’effet s’estompe si le Pokémon +se retire." +635,15,6,"Hebt den Spezial-Angriffs-Wert eines Pokémon +im Kampf leicht an. Die Wirkung endet mit dem +Austausch des Pokémon." +635,15,7,"Cuando se usa, un Pokémon de tu equipo utiliza +su objeto inmediatamente." +635,15,8,"Aumenta molto l’Attacco Speciale di un Pokémon +in una lotta. L’effetto svanisce se il Pokémon +è sostituito." +635,15,9,"It sharply raises the Sp. Atk stat of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +635,15,11,"戦闘中の ポケモンの +特攻を それなりに あげる。 +ひっこめると 元に 戻る。" +636,11,5,"Monte un peu la Déf. Spé. pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +636,11,9,"It sharply raises the Sp. Def stat of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +636,14,9,"It sharply raises the Sp. Def stat of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +636,15,1,"せんとうちゅうの ポケモンの +とくぼうを それなりに あげる。 +ひっこめると もとに もどる。" +636,15,3,"배틀 중인 포켓몬의 특수방어를 +그럭저럭 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +636,15,5,"Augmente un peu la Défense Spéciale pendant +un combat. L’effet s’estompe si le Pokémon +se retire." +636,15,6,"Hebt den Spezial-Verteidigungs-Wert eines +Pokémon im Kampf leicht an. Die Wirkung +endet mit dem Austausch des Pokémon." +636,15,7,"Cuando se usa, se anulan los cambios en las +características de un Pokémon de tu equipo." +636,15,8,"Aumenta molto la Difesa Speciale di un Pokémon +in una lotta. L’effetto svanisce se il Pokémon +è sostituito." +636,15,9,"It sharply raises the Sp. Def stat of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +636,15,11,"戦闘中の ポケモンの +特防を それなりに あげる。 +ひっこめると 元に 戻る。" +637,11,5,"Monte un peu la Défense pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +637,11,9,"It sharply raises the Defense stat +of a Pokémon in battle. It wears off +if the Pokémon is withdrawn." +637,14,9,"It sharply raises the Defense stat +of a Pokémon in battle. It wears off +if the Pokémon is withdrawn." +637,15,1,"せんとうちゅうの ポケモンの +ぼうぎょを それなりに あげる。 +ひっこめると もとに もどる。" +637,15,3,"배틀 중인 포켓몬의 방어를 +그럭저럭 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +637,15,5,"Augmente un peu la Défense pendant un combat. +L’effet s’estompe si le Pokémon se retire." +637,15,6,"Hebt den Verteidigungs-Wert eines Pokémon +im Kampf leicht an. Die Wirkung endet mit dem +Austausch des Pokémon." +637,15,7,"Aumenta mucho la probabilidad de asestar un +golpe crítico. Al cambiar de Pokémon, su efecto +desaparece." +637,15,8,"Aumenta molto la Difesa di un Pokémon in +una lotta. L’effetto svanisce se il Pokémon +è sostituito." +637,15,9,"It sharply raises the Defense stat +of a Pokémon in battle. It wears off +if the Pokémon is withdrawn." +637,15,11,"戦闘中の ポケモンの +防御を それなりに あげる。 +ひっこめると 元に 戻る。" +638,11,5,"Monte un peu l’Attaque pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +638,11,9,"It sharply raises the Attack stat of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +638,14,9,"It sharply raises the Attack stat of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +638,15,1,"せんとうちゅうの ポケモンの +こうげきを それなりに あげる。 +ひっこめると もとに もどる。" +638,15,3,"배틀 중인 포켓몬의 공격을 +그럭저럭 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +638,15,5,"Augmente un peu l’Attaque pendant un combat. +L’effet s’estompe si le Pokémon se retire." +638,15,6,"Hebt den Angriffs-Wert eines Pokémon im Kampf +leicht an. Die Wirkung endet mit dem Austausch +des Pokémon." +638,15,7,"Forma que adoptó Reshiram al perder su cuerpo. +Espera la llegada de un nuevo héroe." +638,15,8,"Aumenta molto l’Attacco di un Pokémon in +una lotta. L’effetto svanisce se il Pokémon +è sostituito." +638,15,9,"It sharply raises the Attack stat of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +638,15,11,"戦闘中の ポケモンの +攻撃を それなりに あげる。 +ひっこめると 元に 戻る。" +639,11,5,"Monte un peu la Précision pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +639,11,9,"It sharply raises the accuracy of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +639,14,9,"It sharply raises the accuracy of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +639,15,1,"せんとうちゅうの ポケモンの +めいちゅうを それなりに あげる。 +ひっこめると もとに もどる。" +639,15,3,"배틀 중인 포켓몬의 명중률을 +그럭저럭 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +639,15,5,"Augmente un peu la Précision pendant un combat. +L’effet s’estompe si le Pokémon se retire." +639,15,6,"Hebt die Genauigkeit eines Pokémon im Kampf +leicht an. Die Wirkung endet mit dem Austausch +des Pokémon." +639,15,7,"Forma que adoptó Zekrom al perder su cuerpo. +Espera la llegada de un nuevo héroe." +639,15,8,"Aumenta molto la precisione di un Pokémon in +una lotta. L’effetto svanisce se il Pokémon +è sostituito." +639,15,9,"It sharply raises the accuracy of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +639,15,11,"戦闘中の ポケモンの +命中を それなりに あげる。 +ひっこめると 元に 戻る。" +640,11,5,"Monte sensiblement la Vitesse pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +640,11,9,"It drastically raises the Speed stat of +a Pokémon in battle. It wears off if the +Pokémon is withdrawn." +640,14,9,"It drastically raises the Speed stat of +a Pokémon in battle. It wears off if the +Pokémon is withdrawn." +640,15,1,"せんとうちゅうの ポケモンの +すばやさを かなり あげる。 +ひっこめると もとに もどる。" +640,15,3,"배틀 중인 포켓몬의 스피드를 +상당히 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +640,15,5,"Augmente sensiblement la Vitesse pendant +un combat. L’effet s’estompe si le Pokémon +se retire." +640,15,6,"Hebt den Initiative-Wert eines Pokémon im Kampf +stark an. Die Wirkung endet mit dem Austausch +des Pokémon." +640,15,7,"Placaje de alto voltaje que hiere también al +atacante." +640,15,8,"Aumenta moltissimo la Velocità di un Pokémon +in una lotta. L’effetto svanisce se il Pokémon +è sostituito." +640,15,9,"It drastically raises the Speed stat of +a Pokémon in battle. It wears off if the +Pokémon is withdrawn." +640,15,11,"戦闘中の ポケモンの +素早さを かなり あげる。 +ひっこめると 元に 戻る。" +641,11,5,"Monte sensiblement l’Atq. Spé. pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +641,11,9,"It drastically raises the Sp. Atk stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +641,14,9,"It drastically raises the Sp. Atk stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +641,15,1,"せんとうちゅうの ポケモンの +とくこうを かなり あげる。 +ひっこめると もとに もどる。" +641,15,3,"배틀 중인 포켓몬의 특수공격을 +상당히 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +641,15,5,"Augmente sensiblement l’Attaque Spéciale +pendant un combat. L’effet s’estompe si +le Pokémon se retire." +641,15,6,"Hebt den Spezial-Angriffs-Wert eines Pokémon +im Kampf stark an. Die Wirkung endet mit dem +Austausch des Pokémon." +641,15,7,"Ataque con los puños. Puede bajar la Defensa del +objetivo. Puede romper rocas fuera del combate." +641,15,8,"Aumenta moltissimo l’Attacco Speciale di un +Pokémon in una lotta. L’effetto svanisce se il +Pokémon è sostituito." +641,15,9,"It drastically raises the Sp. Atk stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +641,15,11,"戦闘中の ポケモンの +特攻を かなり あげる。 +ひっこめると 元に 戻る。" +642,11,5,"Monte sensiblement la Déf. Spé. +pendant un combat. L’effet s’estompe +si le Pokémon se retire." +642,11,9,"It drastically raises the Sp. Def stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +642,14,9,"It drastically raises the Sp. Def stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +642,15,1,"せんとうちゅうの ポケモンの +とくぼうを かなり あげる。 +ひっこめると もとに もどる。" +642,15,3,"배틀 중인 포켓몬의 특수방어를 +상당히 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +642,15,5,"Augmente sensiblement la Défense Spéciale +pendant un combat. L’effet s’estompe si +le Pokémon se retire." +642,15,6,"Hebt den Spezial-Verteidigungs-Wert eines +Pokémon im Kampf stark an. Die Wirkung endet +mit dem Austausch des Pokémon." +642,15,7,"Ataca con un chillido desagradable que baja el +Ataque Especial del rival." +642,15,8,"Aumenta moltissimo la Difesa Speciale di un +Pokémon in una lotta. L’effetto svanisce se il +Pokémon è sostituito." +642,15,9,"It drastically raises the Sp. Def stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +642,15,11,"戦闘中の ポケモンの +特防を かなり あげる。 +ひっこめると 元に 戻る。" +643,11,5,"Monte sensiblement la Défense pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +643,11,9,"It drastically raises the Defense stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +643,14,9,"It drastically raises the Defense stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +643,15,1,"せんとうちゅうの ポケモンの +ぼうぎょを かなり あげる。 +ひっこめると もとに もどる。" +643,15,3,"배틀 중인 포켓몬의 방어를 +상당히 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +643,15,5,"Augmente sensiblement la Défense pendant +un combat. L’effet s’estompe si le Pokémon +se retire." +643,15,6,"Hebt den Verteidigungs-Wert eines Pokémon +im Kampf stark an. Die Wirkung endet mit dem +Austausch des Pokémon." +643,15,7,"Comunicador de alta tecnología con cámara que +permite hablar a cuatro personas a la vez." +643,15,8,"Aumenta moltissimo la Difesa di un Pokémon +in una lotta. L’effetto svanisce se il Pokémon +è sostituito." +643,15,9,"It drastically raises the Defense stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +643,15,11,"戦闘中の ポケモンの +防御を かなり あげる。 +ひっこめると 元に 戻る。" +644,11,5,"Monte sensiblement l’Attaque pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +644,11,9,"It drastically raises the Attack stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +644,14,9,"It drastically raises the Attack stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +644,15,1,"せんとうちゅうの ポケモンの +こうげきを かなり あげる。 +ひっこめると もとに もどる。" +644,15,3,"배틀 중인 포켓몬의 공격을 +상당히 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +644,15,5,"Augmente sensiblement l’Attaque pendant +un combat. L’effet s’estompe si le Pokémon +se retire." +644,15,6,"Hebt den Angriffs-Wert eines Pokémon im Kampf +stark an. Die Wirkung endet mit dem Austausch +des Pokémon." +644,15,7,Piedra enigmática. +644,15,8,"Aumenta moltissimo l’Attacco di un Pokémon +in una lotta. L’effetto svanisce se il Pokémon +è sostituito." +644,15,9,"It drastically raises the Attack stat +of a Pokémon in battle. It wears off if +the Pokémon is withdrawn." +644,15,11,"戦闘中の ポケモンの +攻撃を かなり あげる。 +ひっこめると 元に 戻る。" +645,11,5,"Monte sensiblement la Précision +pendant un combat. L’effet s’estompe +si le Pokémon se retire." +645,11,9,"It drastically raises the accuracy of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +645,14,9,"It drastically raises the accuracy of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +645,15,1,"せんとうちゅうの ポケモンの +めいちゅうを かなり あげる。 +ひっこめると もとに もどる。" +645,15,3,"배틀 중인 포켓몬의 명중률을 +상당히 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +645,15,5,"Augmente sensiblement la Précision pendant +un combat. L’effet s’estompe si le Pokémon +se retire." +645,15,6,"Hebt die Genauigkeit eines Pokémon im Kampf +stark an. Die Wirkung endet mit dem Austausch +des Pokémon." +645,15,7,Carta importante que entrega Wingull. +645,15,8,"Aumenta moltissimo la precisione di un Pokémon +in una lotta. L’effetto svanisce se il Pokémon +è sostituito." +645,15,9,"It drastically raises the accuracy of a +Pokémon in battle. It wears off if the +Pokémon is withdrawn." +645,15,11,"戦闘中の ポケモンの +命中を かなり あげる。 +ひっこめると 元に 戻る。" +646,11,5,"Monte fortement la Vitesse pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +646,11,9,"It raises the Speed stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +646,14,9,"It raises the Speed stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +646,15,1,"せんとうちゅうの ポケモンの +すばやさを ものすごく あげる。 +ひっこめると もとに もどる。" +646,15,3,"배틀 중인 포켓몬의 스피드를 +엄청나게 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +646,15,5,"Augmente fortement la Vitesse pendant +un combat. L’effet s’estompe si le Pokémon +se retire." +646,15,6,"Hebt den Initiative-Wert eines Pokémon im Kampf +enorm an. Die Wirkung endet mit dem Austausch +des Pokémon." +646,15,7,Carta importante que entrega Wingull. +646,15,8,"Aumenta incredibilmente la Velocità di un +Pokémon in una lotta. L’effetto svanisce +se il Pokémon è sostituito." +646,15,9,"It raises the Speed stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +646,15,11,"戦闘中の ポケモンの +素早さを ものすごく あげる。 +ひっこめると 元に 戻る。" +647,11,5,"Monte fortement l’Atq. Spé. pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +647,11,9,"It raises the Sp. Atk stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +647,14,9,"It raises the Sp. Atk stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +647,15,1,"せんとうちゅうの ポケモンの +とくこうを ものすごく あげる。 +ひっこめると もとに もどる。" +647,15,3,"배틀 중인 포켓몬의 특수공격을 +엄청나게 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +647,15,5,"Augmente fortement l’Attaque Spéciale pendant +un combat. L’effet s’estompe si le Pokémon +se retire." +647,15,6,"Hebt den Spezial-Angriffs-Wert eines Pokémon +im Kampf enorm an. Die Wirkung endet mit dem +Austausch des Pokémon." +647,15,7,Carta importante que entrega Wingull. +647,15,8,"Aumenta incredibilmente l’Attacco Speciale di un +Pokémon in una lotta. L’effetto svanisce se il +Pokémon è sostituito." +647,15,9,"It raises the Sp. Atk stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +647,15,11,"戦闘中の ポケモンの +特攻を ものすごく あげる。 +ひっこめると 元に 戻る。" +648,11,5,"Monte fortement la Déf. Spé. pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +648,11,9,"It raises the Sp. Def stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +648,14,9,"It raises the Sp. Def stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +648,15,1,"せんとうちゅうの ポケモンの +とくぼうを ものすごく あげる。 +ひっこめると もとに もどる。" +648,15,3,"배틀 중인 포켓몬의 특수방어를 +엄청나게 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +648,15,5,"Augmente fortement la Défense Spéciale pendant +un combat. L’effet s’estompe si le Pokémon +se retire." +648,15,6,"Hebt den Spezial-Verteidigungs-Wert eines +Pokémon im Kampf enorm an. Die Wirkung endet +mit dem Austausch des Pokémon." +648,15,7,"Comunicador de alta tecnología con cámara que +permite hablar a cuatro personas a la vez." +648,15,8,"Aumenta incredibilmente la Difesa Speciale di un +Pokémon in una lotta. L’effetto svanisce se il +Pokémon è sostituito." +648,15,9,"It raises the Sp. Def stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +648,15,11,"戦闘中の ポケモンの +特防を ものすごく あげる。 +ひっこめると 元に 戻る。" +649,11,5,"Monte fortement la Défense pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +649,11,9,"It raises the Defense stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +649,14,9,"It raises the Defense stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +649,15,1,"せんとうちゅうの ポケモンの +ぼうぎょを ものすごく あげる。 +ひっこめると もとに もどる。" +649,15,3,"배틀 중인 포켓몬의 방어를 +엄청나게 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +649,15,5,"Augmente fortement la Défense pendant +un combat. L’effet s’estompe si le Pokémon +se retire." +649,15,6,"Hebt den Verteidigungs-Wert eines Pokémon +im Kampf enorm an. Die Wirkung endet mit dem +Austausch des Pokémon." +649,15,7,"Un dispositivo con forma de caja que almacena +las Insignias y la información relacionada." +649,15,8,"Aumenta incredibilmente la Difesa di un Pokémon +in una lotta. L’effetto svanisce se il Pokémon +è sostituito." +649,15,9,"It raises the Defense stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +649,15,11,"戦闘中の ポケモンの +防御を ものすごく あげる。 +ひっこめると 元に 戻る。" +650,11,5,"Monte fortement l’Attaque pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +650,11,9,"It raises the Attack stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +650,14,9,"It raises the Attack stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +650,15,1,"せんとうちゅうの ポケモンの +こうげきを ものすごく あげる。 +ひっこめると もとに もどる。" +650,15,3,"배틀 중인 포켓몬의 공격을 +엄청나게 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +650,15,5,"Augmente fortement l’Attaque pendant +un combat. L’effet s’estompe si le Pokémon +se retire." +650,15,6,"Hebt den Angriffs-Wert eines Pokémon im Kampf +enorm an. Die Wirkung endet mit dem Austausch +des Pokémon." +650,15,7,"Punta que permite fusionar a Kyurem con cierto +Pokémon con el que, originariamente, formaba +un solo ser." +650,15,8,"Aumenta incredibilmente l’Attacco di un Pokémon +in una lotta. L’effetto svanisce se il Pokémon +è sostituito." +650,15,9,"It raises the Attack stat of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +650,15,11,"戦闘中の ポケモンの +攻撃を ものすごく あげる。 +ひっこめると 元に 戻る。" +651,11,5,"Monte fortement la Précision pendant +un combat. L’effet s’estompe +si le Pokémon se retire." +651,11,9,"It raises the accuracy of a Pokémon in +battle immensely. It wears off if the +Pokémon is withdrawn." +651,14,9,"It raises the accuracy of a Pokémon in +battle immensely. It wears off if the +Pokémon is withdrawn." +651,15,1,"せんとうちゅうの ポケモンの +めいちゅうを ものすごく あげる。 +ひっこめると もとに もどる。" +651,15,3,"배틀 중인 포켓몬의 명중률을 +엄청나게 올린다. 포켓몬을 볼에 +넣어버리면 원래대로 되돌아간다." +651,15,5,"Augmente fortement la Précision pendant +un combat. L’effet s’estompe si le Pokémon +se retire." +651,15,6,"Hebt die Genauigkeit eines Pokémon im Kampf +enorm an. Die Wirkung endet mit dem Austausch +des Pokémon." +651,15,7,"Punta que permite separar a Kyurem del Pokémon +con el que se ha fusionado." +651,15,8,"Aumenta incredibilmente la precisione di un +Pokémon in una lotta. L’effetto svanisce se il +Pokémon è sostituito." +651,15,9,"It raises the accuracy of a Pokémon +in battle immensely. It wears off if the +Pokémon is withdrawn." +651,15,11,"戦闘中の ポケモンの +命中を ものすごく あげる。 +ひっこめると 元に 戻る。" +652,11,5,"Déclenche la capacité spéciale +d’un Pokémon de l’équipe." +652,11,9,"When used, it activates the Ability of +an ally Pokémon." +652,14,9,"When used, it activates the Ability of +an ally Pokémon." +652,15,1,"つかうと みかたの ポケモンの +とくせいを はつどう させる。 +" +652,15,3,"사용하면 같은 편 포켓몬의 +특성을 발동시킨다." +652,15,5,"Déclenche le talent d’un Pokémon +de l’équipe." +652,15,6,"Aktiviert bei Gebrauch die Fähigkeit +des Mitstreiters." +652,15,7,"Permiso necesario para acceder a la Reserva +Natural, lugar que solo unos pocos conocen." +652,15,8,"Se usato su un Pokémon della squadra, +ne attiva l’abilità." +652,15,9,"When used, it activates the +Ability of an ally Pokémon." +652,15,11,"使うと 味方の ポケモンの +特性を 発動させる。 +" +653,11,5,"Retire tout objet tenu par +un Pokémon de l’équipe." +653,11,9,"When used, it causes an ally Pokémon +to drop a held item." +653,14,9,"When used, it causes an ally Pokémon +to drop a held item." +653,15,1,"つかうと みかたの ポケモンが +もっている どうぐを なくす。 +" +653,15,3,"사용하면 같은 편 포켓몬이 +지니고 있는 도구를 잃어버린다." +653,15,5,"Retire tout objet tenu par un Pokémon de +l’équipe." +653,15,6,"Der Mitstreiter lässt bei Gebrauch das +von ihm getragene Item fallen." +653,15,7,"Misterioso amuleto redondo que aumenta la +posibilidad de encontrar Huevos en la Guardería +Pokémon." +653,15,8,"Usandolo, un Pokémon della squadra lascerà +il proprio strumento." +653,15,9,"When used, it causes an ally +Pokémon to drop a held item." +653,15,11,"使うと 味方の ポケモンが +持っている 道具を なくす。 +" +654,11,5,"Permet d’utiliser immédiatement +l’objet tenu par un Pokémon de +l’équipe." +654,11,9,"When used, it causes an ally Pokémon +to use its held item." +654,14,9,"When used, it causes an ally Pokémon +to use its held item." +654,15,1,"つかうと みかたの ポケモンが +もっている どうぐを すぐつかう。 +" +654,15,3,"사용하면 같은 편 포켓몬이 +지니고 있는 도구를 바로 쓴다." +654,15,5,"Permet d’utiliser immédiatement l’objet tenu par +un Pokémon de l’équipe." +654,15,6,"Der Mitstreiter setzt bei Gebrauch sofort das +von ihm getragene Item ein." +654,15,7,"Misterioso amuleto brillante que aumenta la +probabilidad de encontrar Pokémon variocolores." +654,15,8,"Usandolo, un Pokémon della squadra userà +immediatamente il proprio strumento." +654,15,9,"When used, it causes an ally +Pokémon to use its held item." +654,15,11,"使うと 味方の ポケモンが +持っている 道具を すぐ使う。 +" +655,11,5,"Permet d’annuler les variations de +stats d’un Pokémon de l’équipe." +655,11,9,"When used, it restores any stat +changes of an ally Pokémon." +655,14,9,"When used, it restores any stat +changes of an ally Pokémon." +655,15,1,"つかうと みかたの ポケモンの +のうりょく へんかが もとにもどる。 +" +655,15,3,"사용하면 같은 편 포켓몬의 +능력 변화가 원래대로 되돌아간다." +655,15,5,"Permet d’annuler les variations de stats d’un +Pokémon de l’équipe." +655,15,6,"Hebt bei Gebrauch Statusveränderungen +deines Mitstreiters auf." +655,15,7,"Tarjeta necesaria para introducir la contraseña en +la Fragata Plasma." +655,15,8,"Usandolo, tutte le modifiche alle statistiche +di un Pokémon della squadra saranno annullate." +655,15,9,"When used, it restores any stat +changes of an ally Pokémon." +655,15,11,"使うと 味方の ポケモンの +能力変化が 元に 戻る。 +" +656,11,5,"Monte fortement le taux de critiques. +Plus efficace à chaque utilisation. +Effet estompé si le Pokémon se retire." +656,11,9,"It can be used many times to greatly +raise a Pokémon’s critical-hit ratio. It +wears off if the Pokémon is withdrawn." +656,14,9,"It can be used many times to greatly +raise a Pokémon’s critical-hit ratio. It +wears off if the Pokémon is withdrawn." +656,15,1,"きゅうしょりつが おおきく あがる。 +つかうたびに こうかが アップする。 +ひっこめると もとに もどる。" +656,15,3,"급소 명중률이 크게 올라간다. 사용할 +때마다 효과가 올라간다. 포켓몬을 +볼에 넣어버리면 원래대로 되돌아간다." +656,15,5,"Monte fortement le taux de critiques. +Plus efficace à chaque utilisation. +L’effet s’estompe si le Pokémon se retire." +656,15,6,"Erhöht die Volltrefferquote stark. Bei mehrfachem +Gebrauch effektiver. Wirkt, bis das Pokémon +ausgewechselt wird." +656,15,7,"Pañuelo perdido por un cliente habitual del Café +Alma en Ciudad Esmalte. Desprende el olor de +un Pokémon." +656,15,8,"Aumenta moltissimo la probabilità di sferrare +brutti colpi. L’effetto si può sommare, ma +svanisce se il Pokémon è sostituito." +656,15,9,"It can be used many times to greatly +raise a Pokémon’s critical-hit ratio. It +wears off if the Pokémon is withdrawn." +656,15,11,"急所率が 大きく あがる。 +使うたびに 効果が アップする。 +ひっこめると 元に 戻る。" +657,11,5,"Ce sont les derniers restes du corps +de Reshiram. On dit qu’ils attendent +l’apparition d’un héros." +657,11,9,"Reshiram’s body was destroyed and +changed into this stone. It is said to +be waiting for the emergence of a hero." +657,14,9,"Reshiram’s body was destroyed and +changed into this stone. It is said to +be waiting for the emergence of a hero." +657,15,1,"レシラムの にくたいが ほろび +へんかした すがた。えいゆうの +とうじょうを まっていると される。" +657,15,3,"레시라무의 육체가 허물어져 +변화한 모습. 영웅의 +등장을 기다린다고 여겨진다." +657,15,5,"Ce sont les derniers restes du corps de Reshiram. +On dit qu’ils attendent l’apparition d’un héros." +657,15,6,"Nach dem Zerfall seines Körpers nahm Reshiram +diese Form an. Man sagt, es warte auf die Ankunft +eines Helden." +657,15,7,"Dispositivo que permite aumentar forzadamente +las características de los Pokémon. +Es un prototipo imperfecto." +657,15,8,"Pietra in cui si è tramutato Reshiram quando +ha perso la sua forma corporea. +Attende la venuta di un eroe." +657,15,9,"Reshiram’s body was destroyed and +changed into this stone. It is said to +be waiting for the emergence of a hero." +657,15,11,"レシラムの 肉体が 滅び +変化した 姿。 英雄の +登場を 待っていると される。" +658,11,5,"Ce sont les derniers restes du corps +de Zekrom. On dit qu’ils attendent +l’apparition d’un héros." +658,11,9,"Zekrom’s body was destroyed and +changed into this stone. It is said to +be waiting for the emergence of a hero." +658,14,9,"Zekrom’s body was destroyed and +changed into this stone. It is said to +be waiting for the emergence of a hero." +658,15,1,"ゼクロムの にくたいが ほろび +へんかした すがた。えいゆうの +とうじょうを まっていると される。" +658,15,3,"제크로무의 육체가 허물어져 +변화한 모습. 영웅의 +등장을 기다린다고 여겨진다." +658,15,5,"Ce sont les derniers restes du corps de Zekrom. +On dit qu’ils attendent l’apparition d’un héros." +658,15,6,"Nach dem Zerfall seines Körpers nahm Zekrom +diese Gestalt an. Man sagt, es warte auf die +Ankunft eines Helden." +658,15,7,"Videomisor encontrado en el parque de +atracciones de Ciudad Mayólica. +Parece que pertenece a un chico." +658,15,8,"Pietra in cui si è tramutato Zekrom quando +ha perso la sua forma corporea. +Attende la venuta di un eroe." +658,15,9,"Zekrom’s body was destroyed and +changed into this stone. It is said to +be waiting for the emergence of a hero." +658,15,11,"ゼクロムの 肉体が 滅び +変化した 姿。 英雄の +登場を 待っていると される。" +659,11,5,"Une charge électrique violente qui +blesse aussi légèrement le lanceur." +659,11,9,"The user shrouds itself in electricity +and smashes into its target. +It also damages the user a little." +659,14,9,"The user shrouds itself in electricity +and smashes into its target. +It also damages the user a little." +659,15,1,"でんきを まとって +あいてに ぶつかって こうげきする。 +じぶんも ダメージを うける。" +659,15,3,"전기를 두르고 +상대에게 부딪쳐 공격한다. +자신도 조금 데미지를 입는다." +659,15,5,"Une charge électrique violente qui blesse aussi +légèrement le lanceur." +659,15,6,"Anwender erzeugt Spannung und greift an, +indem er auf Kollisionskurs geht. Er erleidet +selbst leichten Schaden." +659,15,7,"Videomisor encontrado en el parque de +atracciones de Ciudad Mayólica. +Parece que pertenece a una chica." +659,15,8,"Chi la usa si carica di elettricità per poi scagliarsi +sul bersaglio, ma subisce dei danni per il +contraccolpo." +659,15,9,"The user shrouds itself in electricity +and smashes into its target. +This also damages the user a little." +659,15,11,"電気を まとって +相手に ぶつかって 攻撃する。 +自分も 少し ダメージを 受ける。" +660,11,5,"Porte un coup dévastateur à l’ennemi. +Peut briser des rochers fissurés. +Peut baisser la Défense." +660,11,9,"The user attacks with a punch that can +shatter a rock. It may also lower the +target’s Defense stat." +660,14,9,"The user attacks with a punch that can +shatter a rock. It may also lower the +target’s Defense stat." +660,15,1,"パンチで こうげき。 あいての +ぼうぎょを さげる ことが ある。 +いわを くだくことも できる。" +660,15,3,"펀치로 공격한다. +상대의 방어를 떨어뜨릴 때가 있으며 +바위를 깰 수도 있다." +660,15,5,"Porte un coup de poing à l’ennemi qui peut +baisser sa Défense. Peut aussi briser des rochers +fissurés." +660,15,6,"Der Anwender greift mit einem Hieb an, der den +Verteidigungs-Wert des Zieles senken kann. +Damit können auch Steine zerschlagen werden." +660,15,7,"Espejo misterioso que refleja la verdad y +devuelve los Pokémon a su forma original." +660,15,8,"Chi la usa colpisce il nemico con un pugno +in grado di frantumare anche la roccia. +Può anche ridurne la Difesa." +660,15,9,"The user attacks with a punch. This may +also lower the target’s Defense stat. This +move can also shatter rocks in the field." +660,15,11,"パンチで 攻撃する。相手の +防御を さげる ことが ある。 +岩を 砕くことも ある。" +661,11,5,"Le lanceur hurle sur l’ennemi. +Baisse l’Atq. Spé. de l’ennemi." +661,11,9,"The user yells as if it is ranting about +something, making the target’s Sp. Atk +stat decrease." +661,14,9,"The user yells as if it is ranting about +something, making the target’s Sp. Atk +stat decrease." +661,15,1,"まくしたてる ように どなりつけて +あいての とくこうを さげる。 +" +661,15,3,"호되게 호통을 쳐서 +상대의 특수공격을 떨어뜨린다." +661,15,5,"Le lanceur hurle sur l’ennemi. +Baisse l’Attaque Spéciale de l’ennemi." +661,15,6,"Gibt Gegnern mit einer nicht enden wollenden +Standpauke was auf die Ohren und senkt dabei +deren Spezial-Angriff." +661,15,7,"Aumenta mucho el Ataque y el Ataque Especial +cuando el Pokémon que lo lleva recibe un ataque +frente al cual es débil." +661,15,8,"Chi la usa si mette a urlare per un po’, riducendo +l’Attacco Speciale dei nemici." +661,15,9,"The user yells as if it’s ranting about +something, which lowers the Sp. Atk stat +of opposing Pokémon." +661,15,11,"まくしたてる ように 怒鳴りつけて +相手の 特攻を さげる。 +" +662,11,5,"Transmetteur high-tech permettant +à 4 personnes de communiquer par +le son et l’image." +662,11,9,"A high-tech transceiver with a +camera function. It allows up to +four-way calls." +662,14,9,"A high-tech transceiver with a +camera function. It allows up to +four-way calls." +662,15,1,"さいだい 4にんで つうわができる +テレビカメラきのうつきの +さいしんがた トランシーバー。" +662,15,3,"영상 통화 기능이 내장된 +최신식 무전기. +최대 4명이 동시에 통화할 수 있다." +662,15,5,"Un transmetteur high-tech permettant à quatre +personnes de communiquer par le son et l’image." +662,15,6,"Ein hochmodernes Gerät, mit dem bis zu +4 Personen miteinander kommunizieren +können. Es ermöglicht sogar Video-Chat!" +662,15,7,"Chaleco que potencia la Defensa Especial del +Pokémon que lo lleva, pero le impide lanzar +ataques de estado." +662,15,8,"Ricetrasmittente all’avanguardia che permette +di fare videochiamate con un gruppo massimo +di quattro persone." +662,15,9,"A high-tech transceiver with a +camera function. It allows up to +four-way calls." +662,15,11,"最大4人で 通話ができる +テレビカメラ機能つきの +最新型トランシーバー。" +663,11,5,Une pierre fantomatique. +663,11,9,A rare stone. +663,14,9,A rare stone. +663,15,1,"まぼろしの いし。 + +" +663,15,3,환상의 돌. +663,15,5,Une pierre fantomatique. +663,15,6,Ein mysteriöser Stein. +663,15,7,"Este aparato permite recibir vídeos holográficos +y visualizarlos en cualquier momento." +663,15,8,Una pietra magica. +663,15,9,A rare stone. +663,15,11,"幻の 石。 + +" +664,11,5,"Un courrier important +transporté par un Goélise." +664,11,9,"An important letter which +Wingull delivers." +664,14,9,"An important letter which +Wingull delivers." +664,15,1,"キャモメが はいたつ している +たいせつな てがみ。 +" +664,15,3,"갈모매가 배달하는 +소중한 편지." +664,15,5,Un courrier important transporté par un Goélise. +664,15,6,"Eine wichtige Briefpost, überbracht von Wingull." +664,15,7,"Una carta sutilmente perfumada que el Profesor +Ciprés le ha escrito a tu madre." +664,15,8,"Un’importante lettera che Wingull deve +consegnare." +664,15,9,"An important letter that +Wingull delivers." +664,15,11,"キャモメが 配達している +たいせつな 手紙。 +" +665,11,5,"Un courrier important +transporté par un Goélise." +665,11,9,"An important letter which +Wingull delivers." +665,14,9,"An important letter which +Wingull delivers." +665,15,1,"キャモメが はいたつ している +たいせつな てがみ。 +" +665,15,3,"갈모매가 배달하는 +소중한 편지." +665,15,5,Un courrier important transporté par un Goélise. +665,15,6,"Eine wichtige Briefpost, überbracht von Wingull." +665,15,7,"Ruedas que se acoplan a la suela del calzado +y te permiten ir más rápido y realizar piruetas +espectaculares." +665,15,8,"Un’importante lettera che Wingull deve +consegnare." +665,15,9,"An important letter that +Wingull delivers." +665,15,11,"キャモメが 配達している +たいせつな 手紙。 +" +666,11,5,"Un courrier important +transporté par un Goélise." +666,11,9,"An important letter which +Wingull delivers." +666,14,9,"An important letter which +Wingull delivers." +666,15,1,"キャモメが はいたつ している +たいせつな てがみ。 +" +666,15,3,"갈모매가 배달하는 +소중한 편지." +666,15,5,Un courrier important transporté par un Goélise. +666,15,6,"Eine wichtige Briefpost, überbracht von Wingull." +666,15,7,"Tabla de piedra que potencia los movimientos +de tipo Hada. Debe llevarla un Pokémon." +666,15,8,"Un’importante lettera che Wingull deve +consegnare." +666,15,9,"An important letter that +Wingull delivers." +666,15,11,"キャモメが 配達している +たいせつな 手紙。 +" +668,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Dragon." +668,11,9,"A gem with a draconic essence. +When held, it strengthens the power +of a Dragon-type move only once." +668,14,9,"A gem with a draconic essence. +When held, it strengthens the power +of a Dragon-type move only once." +668,15,1,"ドラゴンの タイプの ジュエル。 +もたせると いちどだけ ドラゴンの +わざの いりょくが つよまる。" +668,15,3,"드래곤타입의 주얼. +지니게 하면 한 번만 드래곤 +기술의 위력이 강해진다." +668,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Dragon." +668,15,6,"Ein Juwel vom Typ Drache. Es erhöht einmalig +die Stärke einer Attacke vom Typ Drache." +668,15,7,"Extraña seta que desprende un agradable aroma. +Puede alcanzar un alto precio en las tiendas." +668,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Drago." +668,15,9,"A gem with a draconic essence. +When held, it strengthens the power +of a Dragon-type move one time." +668,15,11,"ドラゴンの タイプの ジュエル。 +持たせると 1度だけ ドラゴンの +技の 威力が 強まる。" +669,11,5,"Objet à tenir. Joyau augmentant +une fois la puissance des capacités +de type Normal." +669,11,9,"A gem with an ordinary essence. When +held, it strengthens the power of a +Normal-type move only once." +669,14,9,"A gem with an ordinary essence. When +held, it strengthens the power of a +Normal-type move only once." +669,15,1,"ノーマルの タイプの ジュエル。 +もたせると いちどだけ ノーマルの +わざの いりょくが つよまる。" +669,15,3,"노말타입의 주얼. +지니게 하면 한 번만 노말 +기술의 위력이 강해진다." +669,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Normal." +669,15,6,"Ein Juwel vom Typ Normal. Es erhöht einmalig +die Stärke einer Attacke vom Typ Normal." +669,15,7,"Fragmento de un cometa caído al suelo al +atravesar la atmósfera. Muy valorado por los +coleccionistas." +669,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Normale." +669,15,9,"A gem with an ordinary essence. +When held, it strengthens the power +of a Normal-type move one time." +669,15,11,"ノーマルの タイプの ジュエル。 +持たせると 1度だけ ノーマルの +技の 威力が 強まる。" +670,14,9,"A box-shaped machine +that stores Medals and +Medal information." +670,15,1,"かくとくした メダルを しゅうのうし +メダルについての じょうほうを +きろくする はこがたの きかい。" +670,15,3,"획득한 메달을 수납하고 +메달에 대한 정보를 +기록하는 상자 모양의 기계." +670,15,5,"Une boîte qui permet de ranger les Médailles et +d’enregistrer des informations à leur sujet." +670,15,6,"Ein Gerät in Form einer Box, in der Medaillen +aufbewahrt und Informationen dazu gespeichert +werden." +670,15,7,"Un dulce a base de suave y esponjosa nata +montada. A algunos Pokémon les encanta." +670,15,8,"Apparecchio rettangolare usato per custodire +i Premi ottenuti e tutte le informazioni che li +riguardano." +670,15,9,"A box-shaped machine +that stores Medals and +Medal information." +670,15,11,"獲得した メダルを 収納し +メダルについての 情報を +記録する 箱型の 機械。" +671,14,9,"A splicer that fuses Kyurem and a +certain Pokémon. They are said to +have been one in the beginning." +671,15,1,"もとは ひとつだったと いわれる +キュレムと あるポケモンを +がったいさせる いっついの くさび。" +671,15,3,"원래는 하나였다고 전해지는 +큐레무와 어떤 포켓몬을 +합체시키는 한 쌍의 쐐기." +671,15,5,"Un outil qui permet la fusiorption de Kyurem +et d’un autre Pokémon avec lequel il ne faisait +qu’un à l’origine." +671,15,6,"Ein Keil, der Kyurem und ein gewisses anderes +Pokémon, die vermeintlich einst eins gewesen +sind, vereinigt." +671,15,7,"Un saquito lleno de sustancias aromáticas cuyo +perfume resulta abrumador, pero que a ciertos +Pokémon les encanta." +671,15,8,"Cuneo che permette di fondere Kyurem +con il Pokémon al quale era unito in origine." +671,15,9,"A splicer that fuses Kyurem and a +certain Pokémon. They are said to +have been one in the beginning." +671,15,11,"元は ひとつだったと いわれる +キュレムと あるポケモンを +合体させる 一対の くさび。" +673,14,9,"A permit needed +to enter the Nature Preserve. +Only a few know about this place." +673,15,1,"わずかな ひとしか しらない +しぜんほごくに はいるために +ひつような ライセンスカード。" +673,15,3,"소수의 사람밖에 모르는 +자연보호구역에 들어가기 위해 +필요한 라이선스 카드." +673,15,5,"Un permis nécessaire pour pénétrer dans +la Réserve Naturelle, lieu protégé des foules +modernes." +673,15,6,"Eine Genehmigung in Form einer Karte, die +den Zutritt ins Naturschutzgebiet ermöglicht. +Nur wenige kennen den Ort." +673,15,7,"Objeto de un solo uso. Aumenta el Ataque del +Pokémon que lo lleva si este recibe un ataque de +tipo Hielo." +673,15,8,"Tessera che permette di accedere a una +Riserva Naturale conosciuta da pochi." +673,15,9,"A permit that is needed to +enter the Nature Preserve. +Not many know about it." +673,15,11,"わずかな 人しか 知らない +自然保護区に 入るために +必要な ライセンスカード。" +674,14,9,"An oval charm said to increase the +chance of Eggs being found +at the Day Care." +674,15,1,"もっていると そだてやさんで +タマゴが みつかりやすくなる +ふしぎで とてもまるい おまもり。" +674,15,3,"지니고 있으면 키우미집에서 +알을 발견하기 쉬워지는 +이상하고 매우 둥근 부적." +674,15,5,"Un mystérieux charme rond qui permet de trouver +plus facilement des Œufs à la Pension Pokémon." +674,15,6,"Ein mysteriöser, ovaler Glücksbringer, der die +Wahrscheinlichkeit erhöht, in der Pension Eier +zu finden." +674,15,7,"Gafa que protege de los efectos adversos del +clima y del polvo lanzado por los rivales." +674,15,8,"Misterioso amuleto di forma sferica che +aumenta la probabilità di trovare Uova +nella Pensione Pokémon." +674,15,9,"An oval charm said to increase +the chance of Pokémon Eggs +being found at the Day Care." +674,15,11,"持っていると 育て屋さんで +タマゴが みつかりやすくなる +不思議で とてもまるい おまもり。" +675,14,9,"A shiny charm said to increase +the chance of finding a +Shiny Pokémon." +675,15,1,"もっていると ひかる ポケモンと +であいやすくなる といわれる +ふしぎで ひかりかがやく おまもり。" +675,15,3,"지니고 있으면 빛나는 포켓몬과 +만나기 쉬워진다고 전해지는 +이상하고 매우 반짝이는 부적." +675,15,5,"Un mystérieux charme scintillant qui facilite +la rencontre avec les Pokémon chromatiques." +675,15,6,"Ein mysteriöser, schillernder Glücksbringer, +der die Wahrscheinlichkeit erhöht, +Schillernde Pokémon zu finden." +675,15,7,"Una flauta con un timbre tan dulce y hermoso que +despierta hasta el Pokémon más profundamente +dormido." +675,15,8,"Misterioso amuleto luminoso che aumenta +la probabilità di incontrare Pokémon cromatici." +675,15,9,"A shiny charm said to increase +the chance of finding a Shiny +Pokémon in the wild." +675,15,11,"持っていると ひかる ポケモンと +出会いやすくなる といわれる +不思議で ひかりかがやく おまもり。" +676,14,9,"A card key needed to enter the +password inside the +Plasma Frigate." +676,15,1,"プラズマフリゲートの せんないで +パスワードを にゅうりょくするときに +ひつようとなる カードキー。" +676,15,3,"플라스마 프리깃 배 안에서 +패스워드를 입력할 때 +필요한 카드키." +676,15,5,"Une clé magnétique indispensable pour entrer +le mot de passe sur la Frégate Plasma." +676,15,6,"Ein Kartenschlüssel, der bei der Eingabe +des Passworts an Bord der Plasma-Fregatte +benötigt wird." +676,15,7,"Al usarse en un huerto de bayas, multiplica la +cosecha sin necesidad de cuidados especiales." +676,15,8,"Carta magnetica necessaria per inserire +la password sulla Fregata Plasma." +676,15,9,"A card key needed to enter the +password inside the Plasma Frigate." +676,15,11,"プラズマフリゲートの 船内で +パスワードを 入力するときに +必要となる カードキー。" +677,14,9,"A handkerchief dropped by +a regular at Café Warehouse. +It smells faintly like a Pokémon." +677,15,1,"シッポウシティにある カフェソーコの +じょうれんが おとした ハンカチ。 +ほのかに ポケモンの かおりがする。" +677,15,3,"칠보시티에 있는 카페 갤러지의 +단골손님이 떨어뜨린 손수건. +희미하게 포켓몬의 냄새가 난다." +677,15,5,"Un mouchoir égaré par un habitué du Café de +la Grange. Il sent légèrement le Pokémon." +677,15,6,"Ein Taschentuch, das ein Stammkunde im +Café Lagerhaus in Septerna City verloren hat. +Riecht leicht nach Pokémon." +677,15,7,"Al usarse en un huerto de bayas, provoca +extrañas mutaciones según la combinación de +las mismas." +677,15,8,"Pezzo di stoffa perso al Bar Magazzino +di Zefiropoli da un cliente abituale. +Odora leggermente di Pokémon." +677,15,9,"A handkerchief dropped by +a regular at Café Warehouse. +It smells faintly like a Pokémon." +677,15,11,"シッポウシティにある カフェソーコの +常連が 落とした ハンカチ。 +ほのかに ポケモンの 香りがする。" +678,14,9,"A special device that wrings out +the potential of Pokémon. +It is an imperfect prototype." +678,15,1,"ポケモンの のうりょくを むりやり +めざめさせる とくしゅな そうち。 +だが しさくひんのため ふかんぜん。" +678,15,3,"포켓몬의 능력을 강제로 +눈뜨게 만드는 특수 장치. +그러나 시작품이기에 불완전하다." +678,15,5,"Un appareil spécial qui permet d’éveiller de force +la puissance des Pokémon. Mais il ne s’agit que +d’un prototype." +678,15,6,"Eine Vorrichtung, die verborgene Kräfte in den +Pokémon weckt. Es handelt sich dabei um einen +unfertigen Prototyp." +678,15,7,"Al usarse en un huerto de bayas, aumenta la +cosecha obtenida si se riega con frecuencia." +678,15,8,"Prototipo imperfetto di un dispositivo speciale +ideato per risvegliare in modo forzato le capacità +dei Pokémon." +678,15,9,"A special device that wrings out +the potential of Pokémon. +It is an imperfect prototype." +678,15,11,"ポケモンの 能力を 無理やり +目覚めさせる 特殊な 装置。 +だが 試作品のため 不完全。" +679,14,9,"The Xtransceiver found at the +Nimbasa City amusement park. +It seems it belongs to a boy." +679,15,1,"ライモンシティの ゆうえんちで +ひろった ライブキャスター。 +おとしぬしは おとこのこ らしい。" +679,15,3,"뇌문시티의 유원지에서 +주운 라이브캐스터. +잃어버린 사람은 남자인 것 같다." +679,15,5,"Un Vokit trouvé au parc d’attractions de +Méanville. C’est un modèle pour garçons." +679,15,6,"Ein Viso-Caster, der im Vergnügungspark von +Rayono City gefunden wurde. Er scheint einem +Jungen zu gehören." +679,15,7,"Un abono increíble, con todas las propiedades +de los Abonos Fértil, Sorpresa y Fructífero." +679,15,8,"Interpoké rinvenuto nel parco giochi +di Sciroccopoli. +Pare che appartenga a un ragazzo." +679,15,9,"The Xtransceiver found at the +Nimbasa City amusement park. +It seems it belongs to a boy." +679,15,11,"ライモンシティの 遊園地で +拾った ライブキャスター。 +落とし主は 男の子らしい。" +681,14,9,"A glass that reveals the truth. +It is a mysterious glass that returns +a Pokémon back to its original shape." +681,15,1,"しんじつを うつしだすことで +ポケモンを ほんらいの すがたに +かえてしまう ふしぎな かがみ。" +681,15,3,"진실을 비춰줌으로 +포켓몬을 본래의 모습으로 +바꿔버리는 이상한 거울." +681,15,5,"Un mystérieux miroir qui, en reflétant la vérité, +permet de redonner à un Pokémon sa forme +originelle." +681,15,6,"Ein mysteriöser Spiegel, der Pokémon in +ihre eigentliche Form verwandelt, indem er +die Wahrheit widerspiegelt." +681,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Gardevoir en combate." +681,15,8,"Specchio misterioso che, riflettendo la verità, +fa riacquistare ai Pokémon la loro forma originaria." +681,15,9,"A looking glass that reveals the truth. +It’s a mysterious glass that returns +a Pokémon to its original shape." +681,15,11,"真実を 映しだすことで +ポケモンを 本来の 姿に +変えてしまう 不思議な 鏡。" +682,15,1,"じゃくてんを つかれたとき +こうげきと とくこうが +それぞれ ぐーんと あがる。" +682,15,3,"약점을 공격당했을 때 +공격과 특수공격이 +각각 크게 올라간다." +682,15,5,"Objet à tenir. Augmente beaucoup l’Attaque et +l’Attaque Spéciale du Pokémon lorsqu’il reçoit +un coup d’un type auquel il est vulnérable." +682,15,6,"Erhöht den Angriff und den Spezial-Angriff des +Trägers stark, wenn er von einer sehr effektiven +Attacke getroffen wird." +682,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Ampharos en combate." +682,15,8,"Se il Pokémon viene colpito da una mossa contro +cui è debole, l’Attacco e l’Attacco Speciale +aumentano considerevolmente." +682,15,9,"An item to be held by a Pokémon. +Attack and Sp. Atk sharply increase +if the holder is hit with a move it’s weak to." +682,15,11,"弱点を つかれたとき +攻撃と 特攻が +それぞれ ぐーんと あがる。" +683,15,1,"こうげきてきに なる チョッキ。 +もたせると とくぼうが あがるが +へんかわざを だせなくなる。" +683,15,3,"공격적으로 변하는 조끼. +지니게 하면 특수방어가 올라가지만 +변화 기술을 쓸 수 없게 된다." +683,15,5,"Objet à tenir. Une veste augmentant la Défense +Spéciale, mais empêchant d’utiliser des attaques +de statut." +683,15,6,"Trägt ein Pokémon diese Weste, erhöht sich +seine Spezial-Verteidigung, aber es kann keine +Status-Attacken mehr einsetzen." +683,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Venusaur en combate." +683,15,8,"Strumento da dare a un Pokémon. +Questo corpetto aumenta la Difesa Speciale +ma impedisce l’uso di mosse di stato." +683,15,9,"An item to be held by a Pokémon. +This offensive vest raises Sp. Def +but prevents the use of status moves." +683,15,11,"攻撃的に なる チョッキ。 +持たせると 特防が あがるが +変化技を だせなくなる。" +684,15,1,"フェアリーの タイプの せきばん。 +もたせると フェアリータイプの +わざの いりょくが つよまる。" +684,15,3,"페어리타입의 석판. +지니게 하면 페어리타입 +기술의 위력이 강해진다." +684,15,5,"Objet à tenir. Une tablette en pierre augmentant +la puissance des capacités de type Fée." +684,15,6,"Ein Item zum Tragen. Diese Steintafel verstärkt +Attacken vom Typ Fee." +684,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Mewtwo en combate." +684,15,8,"Strumento da dare a un Pokémon. +Lastra di pietra che potenzia le mosse +di tipo Folletto." +684,15,9,"An item to be held by a Pokémon. +It is a stone tablet that boosts the +power of Fairy-type moves." +684,15,11,"フェアリーの タイプの 石盤。 +持たせると フェアリータイプの +技の 威力が 強まる。" +685,15,1,"2しゅるいの とくせいを もつ +ポケモンに つかうと いまとはちがう +とくせいに かえられる カプセル。" +685,15,3,"2종류의 특성을 가진 +포켓몬에게 사용하면 지금과는 다른 +특성으로 바꿀 수 있는 캡슐." +685,15,5,"Une capsule permettant à un Pokémon pouvant +avoir deux talents de changer de l’un à l’autre." +685,15,6,"Bei Anwendung auf ein Pokémon, das zwei +verschiedene Fähigkeiten haben kann, wird seine +aktuelle Fähigkeit mit der anderen ausgewechselt." +685,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Blaziken en combate." +685,15,8,"Se usata su un Pokémon che ha due abilità, +questa capsula permette di cambiare quella +attiva." +685,15,9,"A capsule that allows a Pokémon with +two Abilities to switch between these +Abilities when it is used." +685,15,11,"2種類の 特性を 持つ +ポケモンに 使うと 今とは違う +特性に 変えられる カプセル。" +686,15,1,"ふんわり ふわふわに あわだてた +ほんのり あまい クリーム。 +ある ポケモンが このんでいる。" +686,15,3,"풍성하게 거품을 낸 +살짝 달콤한 크림. +어떤 포켓몬이 좋아한다." +686,15,5,"Une crème sucrée qui fond dans la bouche, +légère comme un nuage. Elle est appréciée +d’un certain Pokémon." +686,15,6,"Ein lockeres, leicht süßliches Häubchen +aus Schlagsahne, das bei einer bestimmten +Pokémon-Art sehr beliebt ist." +686,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Medicham en combate." +686,15,8,"Una spuma soffice, delicata e leggermente dolce. +Piace a un Pokémon in particolare." +686,15,9,"A soft and sweet treat made of fluffy, +puffy, whipped and whirled cream. +It’s loved by a certain Pokémon." +686,15,11,"ふんわり ふわふわに 泡立てた +ほんのり 甘い クリーム。 +ある ポケモンが 好んでいる。" +687,15,1,"ちょっと きつめの かおりをだす +こうりょうを つめた ふくろ。 +ある ポケモンが このんでいる。" +687,15,3,"살짝 강렬한 향기가 나는 +향료를 채운 주머니. +어떤 포켓몬이 좋아하는 물건이다." +687,15,5,"Un sachet d’herbes et d’épices, au parfum trop +marqué pour beaucoup, mais néanmoins apprécié +d’un certain Pokémon." +687,15,6,"Ein mit Parfüm gefüllter Beutel, der einen +penetranten Duft verströmt und bei einer +bestimmten Pokémon-Art sehr beliebt ist." +687,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Houndoom en combate." +687,15,8,"Una bustina che contiene aromi dal profumo +piuttosto intenso. +Piace a un Pokémon in particolare." +687,15,9,"A sachet filled with fragrant perfumes +that are just slightly too overwhelming. +Yet it’s loved by a certain Pokémon." +687,15,11,"ちょっと きつめの 香りをだす +香料を 詰めた 袋。 +ある ポケモンが 好んでいる。" +688,15,1,"つかいすての ひかりごけ。 +もたせて みずの わざを うけると +とくぼうが あがる。" +688,15,3,"단 한 번 쓰면 없어지는 빛이끼. +지니게 하고 물 기술을 받으면 +특수방어가 올라간다." +688,15,5,"Du lichen à usage unique. +Tenu, il augmente la Défense Spéciale lorsque +le Pokémon subit une attaque de type Eau." +688,15,6,"Wird der Träger von einer Wasser-Attacke +getroffen, steigt seine Spezial-Verteidigung +und das Item verschwindet." +688,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Aggron en combate." +688,15,8,"Muschio luminoso monouso. Se il Pokémon +che ha questo strumento subisce una mossa +di tipo Acqua, la sua Difesa Speciale aumenta." +688,15,9,"An item to be held by a Pokémon. +It boosts Sp. Def if hit with a Water- +type attack. It can only be used once." +688,15,11,"使い捨ての ひかりごけ。 +持たせて みずの 技を 受けると +特防が あがる。" +689,15,1,"つかいすての ゆきだま。 +もたせて こおりの わざを うけると +こうげきが あがる。" +689,15,3,"단 한 번 쓰면 없어지는 눈덩이. +지니게 하고 얼음 기술을 받으면 +공격이 올라간다." +689,15,5,"Objet à usage unique. Tenue, elle augmente +l’Attaque du Pokémon lorsqu’il est touché par +une capacité de type Glace." +689,15,6,"Wird der Träger von einer Eis-Attacke getroffen, +steigt sein Angriff und das Item verschwindet." +689,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Banette en combate." +689,15,8,"Palla di neve monouso. +Se il Pokémon che ce l’ha subisce una mossa +di tipo Ghiaccio, il suo Attacco aumenta." +689,15,9,"An item to be held by a Pokémon. +It boosts Attack if hit with an Ice-type +attack. It can only be used once." +689,15,11,"使い捨ての ゆきだま。 +持たせて こおりの 技を 受けると +攻撃が あがる。" +690,15,1,"てんこうの ダメージだけでなく +こなを だす わざの +こうかも ふせげる ゴーグル。" +690,15,3,"날씨로 인한 데미지뿐만 아니라 +가루를 내보내는 기술의 +효과도 막을 수 있는 고글." +690,15,5,"Objet à tenir. Protège le Pokémon contre les +dégâts dus à la météo et la plupart des +capacités utilisant de la poudre." +690,15,6,"Diese Brille schützt ihren Träger nicht nur vor +wetterbedingtem Schaden, sondern auch vor +vielen Attacken, bei denen Puder eingesetzt wird." +690,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Tyranitar en combate." +690,15,8,"Visiera che protegge dai danni legati alle +condizioni atmosferiche e dalla maggior parte +delle mosse che rilasciano polvere." +690,15,9,"An item to be held by a Pokémon. +These goggles protect the holder from +both weather-related damage and powder." +690,15,11,"天候の ダメージだけでなく +粉を だす 技の +効果も 防げる ゴーグル。" +691,15,1,"きのみばたけで つかえる。 +こまめに せわを しなくても +とれる きのみの かずが ふえる。" +691,15,3,"나무열매 밭에서 쓸 수 있다. +자주 돌보지 않아도 얻을 수 있는 +나무열매의 수가 늘어난다." +691,15,5,"Un engrais servant à faire pousser des Baies. +Il augmente le nombre de Baies récoltées +sans que le jardinier ait à s’occuper du plant." +691,15,6,"Mulch zur Nutzung auf Beerenfeldern. +Ohne viel Zutun erhöht er die Ausbeute +bei der Beerenernte." +691,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Pinsir en combate." +691,15,8,"Fertilizzante usato nell’orto delle bacche. +Aumenta la quantità di bacche ottenute senza +che siano necessarie cure particolari." +691,15,9,"Mulch to be used in a Berry field. +It increases the Berry harvest without +the need for particularly diligent care." +691,15,11,"きのみ畑で 使える。 +こまめに 世話を しなくても +採れる きのみの 数が 増える。" +692,15,1,"きのみばたけで つかえる。 +きのみの くみあわせに よっては +とつぜんへんいが はっせい する。" +692,15,3,"나무열매 밭에서 쓸 수 있다. +나무열매의 조합에 따라 +돌연변이가 발생한다." +692,15,5,"Un engrais servant à faire pousser des Baies. +Il provoque des mutations soudaines en fonction +de la combinaison de Baies plantées." +692,15,6,"Mulch zur Nutzung auf Beerenfeldern. +Je nach Anordnung der Beeren kann er +bei der Ernte Mutationen hervorrufen." +692,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Aerodactyl en combate." +692,15,8,"Fertilizzante usato nell’orto delle bacche. +Produce delle mutazioni inaspettate in base alla +combinazione di bacche." +692,15,9,"Mulch to be used in a Berry field. +It causes strange, sudden mutations +based on the combination of Berries." +692,15,11,"きのみ畑で 使える。 +きのみの 組み合わせに よっては +突然変異が 発生 する。" +693,15,1,"きのみばたけで つかえる。 +みずを おおく まくことで +とれる きのみの かずが ふえる。" +693,15,3,"나무열매 밭에서 쓸 수 있다. +물을 많이 주면 얻을 수 있는 +나무열매의 수가 늘어난다." +693,15,5,"Un engrais servant à faire pousser des Baies. +Il augmente le nombre de Baies récoltées +si elles sont arrosées avec beaucoup d’eau." +693,15,6,"Mulch zur Nutzung auf Beerenfeldern. +Er erhöht die Ausbeute bei der Ernte, +wenn das Feld oft bewässert wird." +693,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Lucario en combate." +693,15,8,"Fertilizzante usato nell’orto delle bacche. +Aumenta la quantità di bacche raccolte grazie +a un’abbondante annaffiatura." +693,15,9,"Mulch to be used in a Berry field. +It increases the Berry harvest that +can be grown by diligent watering." +693,15,11,"きのみ畑で 使える。 +水を おおく まくことで +採れる きのみの 数が 増える。" +694,15,1,"たわわこやし びっくりこやし +ぐんぐんこやしの とくちょうを +すべて そなえた すごい こやし。" +694,15,3,"주렁주렁비료와 깜놀비료, +부쩍부쩍비료의 특징을 +모두 지닌 굉장한 비료." +694,15,5,"Un engrais servant à faire pousser des Baies. +Il combine les effets du Fertibondance, +du Fertistantané et du Fertibérance." +694,15,6,"Mulch zur Nutzung auf Beerenfeldern. +Ein Spitzenmulch, der die Wirkung von Wucher-, +Wunder- und Sprießmulch in sich vereint." +694,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Abomasnow en combate." +694,15,8,"Un fertilizzante incredibile che combina gli effetti +di Fertilflorido, Fertilsorpresa e Fertilcopioso." +694,15,9,"Mulch to be used in a Berry field. +An amazing Mulch with the effects +of Rich, Surprise, and Boost Mulch." +694,15,11,"たわわこやし びっくりこやし +ぐんぐんこやしの 特徴を +すべて 備えた すごい こやし。" +695,15,1,"ゲンガーに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +695,15,3,"팬텀에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +695,15,5,"Une variété de Méga-Gemme. +Tenue par un Ectoplasma, elle lui permet de +méga-évoluer durant un combat." +695,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Gengar getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +695,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Kangaskhan en combate." +695,15,8,"Un esemplare delle misteriose Megapietre. +Data a Gengar, gli permette di megaevolversi +durante la lotta." +695,15,9,"One variety of the mysterious Mega Stones. +Have Gengar hold it, and this stone will +enable it to Mega Evolve during battle." +695,15,11,"ゲンガーに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +696,15,1,"サーナイトに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +696,15,3,"가디안에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +696,15,5,"Une variété de Méga-Gemme. +Tenue par un Gardevoir, elle lui permet de +méga-évoluer durant un combat." +696,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Guardevoir getragen, kann es im Kampf +eine Mega-Entwicklung durchführen." +696,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Gyarados en combate." +696,15,8,"Un esemplare delle misteriose Megapietre. +Data a Gardevoir, gli permette di megaevolversi +durante la lotta." +696,15,9,"One variety of the mysterious Mega Stones. +Have Gardevoir hold it, and this stone will +enable it to Mega Evolve during battle." +696,15,11,"サーナイトに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +697,15,1,"デンリュウに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +697,15,3,"전룡에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +697,15,5,"Une variété de Méga-Gemme. +Tenue par un Pharamp, elle lui permet de +méga-évoluer durant un combat." +697,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Ampharos getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +697,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Absol en combate." +697,15,8,"Un esemplare delle misteriose Megapietre. +Data ad Ampharos, gli permette di megaevolversi +durante la lotta." +697,15,9,"One variety of the mysterious Mega Stones. +Have Ampharos hold it, and this stone will +enable it to Mega Evolve during battle." +697,15,11,"デンリュウに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +698,15,1,"フシギバナに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +698,15,3,"이상해꽃에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +698,15,5,"Une variété de Méga-Gemme. +Tenue par un Florizarre, elle lui permet de +méga-évoluer durant un combat." +698,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Bisaflor getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +698,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Charizard en combate." +698,15,8,"Un esemplare delle misteriose Megapietre. +Data a Venusaur, gli permette di megaevolversi +durante la lotta." +698,15,9,"One variety of the mysterious Mega Stones. +Have Venusaur hold it, and this stone will +enable it to Mega Evolve during battle." +698,15,11,"フシギバナに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +699,15,1,"リザードンに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +699,15,3,"리자몽에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +699,15,5,"Une variété de Méga-Gemme. +Tenue par un Dracaufeu, elle lui permet de +méga-évoluer durant un combat." +699,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Glurak getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +699,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Alakazam en combate." +699,15,8,"Un esemplare delle misteriose Megapietre. +Data a Charizard, gli permette di megaevolversi +durante la lotta." +699,15,9,"One variety of the mysterious Mega Stones. +Have Charizard hold it, and this stone will +enable it to Mega Evolve during battle." +699,15,11,"リザードンに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +700,15,1,"カメックスに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +700,15,3,"거북왕에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +700,15,5,"Une variété de Méga-Gemme. +Tenue par un Tortank, elle lui permet de +méga-évoluer durant un combat." +700,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Turtok getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +700,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Heracross en combate." +700,15,8,"Un esemplare delle misteriose Megapietre. +Data a Blastoise, gli permette di megaevolversi +durante la lotta." +700,15,9,"One variety of the mysterious Mega Stones. +Have Blastoise hold it, and this stone will +enable it to Mega Evolve during battle." +700,15,11,"カメックスに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +701,15,1,"ミュウツーに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +701,15,3,"뮤츠에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +701,15,5,"Une variété de Méga-Gemme. +Tenue par Mewtwo, elle lui permet de +méga-évoluer durant un combat." +701,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Mewtu getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +701,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Mawile en combate." +701,15,8,"Un esemplare delle misteriose Megapietre. +Data a Mewtwo, gli permette di megaevolversi +durante la lotta." +701,15,9,"One variety of the mysterious Mega Stones. +Have Mewtwo hold it, and this stone will +enable it to Mega Evolve during battle." +701,15,11,"ミュウツーに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +702,15,1,"ミュウツーに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +702,15,3,"뮤츠에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +702,15,5,"Une variété de Méga-Gemme. +Tenue par Mewtwo, elle lui permet de +méga-évoluer durant un combat." +702,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Mewtu getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +702,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Manectric en combate." +702,15,8,"Un esemplare delle misteriose Megapietre. +Data a Mewtwo, gli permette di megaevolversi +durante la lotta." +702,15,9,"One variety of the mysterious Mega Stones. +Have Mewtwo hold it, and this stone will +enable it to Mega Evolve during battle." +702,15,11,"ミュウツーに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +703,15,1,"バシャーモに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +703,15,3,"번치코에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +703,15,5,"Une variété de Méga-Gemme. +Tenue par un Braségali, elle lui permet de +méga-évoluer durant un combat." +703,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Lohgock getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +703,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Garchomp en combate." +703,15,8,"Un esemplare delle misteriose Megapietre. +Data a Blaziken, gli permette di megaevolversi +durante la lotta." +703,15,9,"One variety of the mysterious Mega Stones. +Have Blaziken hold it, and this stone will +enable it to Mega Evolve during battle." +703,15,11,"バシャーモに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +704,15,1,"チャーレムに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +704,15,3,"요가램에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +704,15,5,"Une variété de Méga-Gemme. +Tenue par un Charmina, elle lui permet de +méga-évoluer durant un combat." +704,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Meditalis getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +704,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Latias en combate." +704,15,8,"Un esemplare delle misteriose Megapietre. +Data a Medicham, gli permette di megaevolversi +durante la lotta." +704,15,9,"One variety of the mysterious Mega Stones. +Have Medicham hold it, and this stone will +enable it to Mega Evolve during battle." +704,15,11,"チャーレムに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +705,15,1,"ヘルガーに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +705,15,3,"헬가에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +705,15,5,"Une variété de Méga-Gemme. +Tenue par un Démolosse, elle lui permet de +méga-évoluer durant un combat." +705,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Hundemon getragen, kann es im Kampf +eine Mega-Entwicklung durchführen." +705,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Latios en combate." +705,15,8,"Un esemplare delle misteriose Megapietre. +Data a Houndoom, gli permette di megaevolversi +durante la lotta." +705,15,9,"One variety of the mysterious Mega Stones. +Have Houndoom hold it, and this stone will +enable it to Mega Evolve during battle." +705,15,11,"ヘルガーに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +706,15,1,"ボスゴドラに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +706,15,3,"보스로라에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +706,15,5,"Une variété de Méga-Gemme. +Tenue par un Galeking, elle lui permet de +méga-évoluer durant un combat." +706,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Stolloss getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +706,15,7,"Si la lleva un Pokémon, debilita un ataque +supereficaz de tipo Hada de un enemigo." +706,15,8,"Un esemplare delle misteriose Megapietre. +Data ad Aggron, gli permette di megaevolversi +durante la lotta." +706,15,9,"One variety of the mysterious Mega Stones. +Have Aggron hold it, and this stone will +enable it to Mega Evolve during battle." +706,15,11,"ボスゴドラに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +707,15,1,"ジュペッタに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +707,15,3,"다크펫에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +707,15,5,"Une variété de Méga-Gemme. +Tenue par un Branette, elle lui permet de +méga-évoluer durant un combat." +707,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Banette getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +707,15,7,"Si la lleva un Pokémon, aumenta su Defensa +tras recibir un ataque físico." +707,15,8,"Un esemplare delle misteriose Megapietre. +Data a Banette, gli permette di megaevolversi +durante la lotta." +707,15,9,"One variety of the mysterious Mega Stones. +Have Banette hold it, and this stone will +enable it to Mega Evolve during battle." +707,15,11,"ジュペッタに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +708,15,1,"バンギラスに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +708,15,3,"마기라스에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +708,15,5,"Une variété de Méga-Gemme. +Tenue par un Tyranocif, elle lui permet de +méga-évoluer durant un combat." +708,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Despotar getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +708,15,7,"Si la lleva un Pokémon, aumenta su Defensa +Especial tras recibir un ataque especial." +708,15,8,"Un esemplare delle misteriose Megapietre. +Data a Tyranitar, gli permette di megaevolversi +durante la lotta." +708,15,9,"One variety of the mysterious Mega Stones. +Have Tyranitar hold it, and this stone will +enable it to Mega Evolve during battle." +708,15,11,"バンギラスに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +709,15,1,"ハッサムに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +709,15,3,"핫삼에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +709,15,5,"Une variété de Méga-Gemme. +Tenue par un Cizayox, elle lui permet de +méga-évoluer durant un combat." +709,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Scherox getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +709,15,7,"Una regadera con forma de Lotad. Ayuda a que +las bayas plantadas en suelo blandito crezcan +mejor." +709,15,8,"Un esemplare delle misteriose Megapietre. +Data a Scizor, gli permette di megaevolversi +durante la lotta." +709,15,9,"One variety of the mysterious Mega Stones. +Have Scizor hold it, and this stone will +enable it to Mega Evolve during battle." +709,15,11,"ハッサムに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +710,15,1,"カイロスに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +710,15,3,"쁘사이저에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +710,15,5,"Une variété de Méga-Gemme. +Tenue par un Scarabrute, elle lui permet de +méga-évoluer durant un combat." +710,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Pinsir getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +710,15,7,"Usa el poder de la naturaleza para atacar. +Su efecto varía según el entorno de combate." +710,15,8,"Un esemplare delle misteriose Megapietre. +Data a Pinsir, gli permette di megaevolversi +durante la lotta." +710,15,9,"One variety of the mysterious Mega Stones. +Have Pinsir hold it, and this stone will +enable it to Mega Evolve during battle." +710,15,11,"カイロスに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +711,15,1,"プテラに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +711,15,3,"프테라에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +711,15,5,"Une variété de Méga-Gemme. +Tenue par un Ptéra, elle lui permet de +méga-évoluer durant un combat." +711,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Aerodactyl getragen, kann es im Kampf +eine Mega-Entwicklung durchführen." +711,15,7,"Libera una horrible aura llena de malos +pensamientos y puede hacer retroceder al +objetivo." +711,15,8,"Un esemplare delle misteriose Megapietre. +Data ad Aerodactyl, gli permette di megaevolversi +durante la lotta." +711,15,9,"One variety of the mysterious Mega Stones. +Have Aerodactyl hold it, and this stone will +enable it to Mega Evolve during battle." +711,15,11,"プテラに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +712,15,1,"ルカリオに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +712,15,3,"루카리오에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +712,15,5,"Une variété de Méga-Gemme. +Tenue par un Lucario, elle lui permet de +méga-évoluer durant un combat." +712,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Lucario getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +712,15,7,"Cada vez que golpea a un oponente se +endurecen sus puños. Si acierta al objetivo, +el Ataque del usuario aumenta." +712,15,8,"Un esemplare delle misteriose Megapietre. +Data a Lucario, gli permette di megaevolversi +durante la lotta." +712,15,9,"One variety of the mysterious Mega Stones. +Have Lucario hold it, and this stone will +enable it to Mega Evolve during battle." +712,15,11,"ルカリオに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +713,15,1,"ユキノオーに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +713,15,3,"눈설왕에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +713,15,5,"Une variété de Méga-Gemme. +Tenue par un Blizzaroi, elle lui permet de +méga-évoluer durant un combat." +713,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Rexblisar getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +713,15,7,Inflige daño a los oponentes con una potente luz. +713,15,8,"Un esemplare delle misteriose Megapietre. +Data ad Abomasnow, gli permette +di megaevolversi durante la lotta." +713,15,9,"One variety of the mysterious Mega Stones. +Have Abomasnow hold it, and this stone will +enable it to Mega Evolve during battle." +713,15,11,"ユキノオーに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +714,15,1,"ガルーラに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +714,15,3,"캥카에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +714,15,5,"Une variété de Méga-Gemme. +Tenue par un Kangourex, elle lui permet de +méga-évoluer durant un combat." +714,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Kangama getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +714,15,7,"Hace que el objetivo pierda la concentración +contándole un secreto. Disminuye el Ataque +Especial del oponente." +714,15,8,"Un esemplare delle misteriose Megapietre. +Data a Kangaskhan, gli permette di megaevolversi +durante la lotta." +714,15,9,"One variety of the mysterious Mega Stones. +Have Kangaskhan hold it, and this stone will +enable it to Mega Evolve during battle." +714,15,11,"ガルーラに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +715,15,1,"ギャラドスに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +715,15,3,"갸라도스에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +715,15,5,"Une variété de Méga-Gemme. +Tenue par un Léviator, elle lui permet de +méga-évoluer durant un combat." +715,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Garados getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +715,15,7,"Documento de identificación necesario para +acceder a la central eléctrica de la Ruta 13." +715,15,8,"Un esemplare delle misteriose Megapietre. +Data a Gyarados, gli permette di megaevolversi +durante la lotta." +715,15,9,"One variety of the mysterious Mega Stones. +Have Gyarados hold it, and this stone will +enable it to Mega Evolve during battle." +715,15,11,"ギャラドスに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +716,15,1,"アブソルに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +716,15,3,"앱솔에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +716,15,5,"Une variété de Méga-Gemme. +Tenue par un Absol, elle lui permet de +méga-évoluer durant un combat." +716,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Absol getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +716,15,7,"Accesorio con un poder misterioso que permite +megaevolucionar a Pokémon que lleven una +Megapiedra adecuada." +716,15,8,"Un esemplare delle misteriose Megapietre. +Data ad Absol, gli permette di megaevolversi +durante la lotta." +716,15,9,"One variety of the mysterious Mega Stones. +Have Absol hold it, and this stone will +enable it to Mega Evolve during battle." +716,15,11,"アブソルに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +717,15,1,"リザードンに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +717,15,3,"리자몽에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +717,15,5,"Une variété de Méga-Gemme. +Tenue par un Dracaufeu, elle lui permet de +méga-évoluer durant un combat." +717,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Glurak getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +717,15,7,"Una curiosa piedra que a algunos les puede +parecer de gran valor." +717,15,8,"Un esemplare delle misteriose Megapietre. +Data a Charizard, gli permette di megaevolversi +durante la lotta." +717,15,9,"One variety of the mysterious Mega Stones. +Have Charizard hold it, and this stone will +enable it to Mega Evolve during battle." +717,15,11,"リザードンに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +718,15,1,"フーディンに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +718,15,3,"후딘에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +718,15,5,"Une variété de Méga-Gemme. +Tenue par un Alakazam, elle lui permet de +méga-évoluer durant un combat." +718,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Simsala getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +718,15,7,"Una piedra de aspecto normal que a algunos +les puede parecer de gran valor." +718,15,8,"Un esemplare delle misteriose Megapietre. +Data ad Alakazam, gli permette di megaevolversi +durante la lotta." +718,15,9,"One variety of the mysterious Mega Stones. +Have Alakazam hold it, and this stone will +enable it to Mega Evolve during battle." +718,15,11,"フーディンに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +719,15,1,"ヘラクロスに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +719,15,3,"헤라크로스에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +719,15,5,"Une variété de Méga-Gemme. +Tenue par un Scarhino, elle lui permet de +méga-évoluer durant un combat." +719,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Skaraborn getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +719,15,7,"Con este vale te harán jugosos descuentos +cuando vayas de compras a una boutique." +719,15,8,"Un esemplare delle misteriose Megapietre. +Data a Heracross, gli permette di megaevolversi +durante la lotta." +719,15,9,"One variety of the mysterious Mega Stones. +Have Heracross hold it, and this stone will +enable it to Mega Evolve during battle." +719,15,11,"ヘラクロスに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +720,15,1,"クチートに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +720,15,3,"입치트에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +720,15,5,"Une variété de Méga-Gemme. +Tenue par un Mysdibule, elle lui permet de +méga-évoluer durant un combat." +720,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Flunkifer getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +720,15,7,"Tarjeta con el logotipo del Team Flare que activa +el ascensor de los Laboratorios Lysson." +720,15,8,"Un esemplare delle misteriose Megapietre. +Data a Mawile, gli permette di megaevolversi +durante la lotta." +720,15,9,"One variety of the mysterious Mega Stones. +Have Mawile hold it, and this stone will +enable it to Mega Evolve during battle." +720,15,11,"クチートに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +721,15,1,"ライボルトに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +721,15,3,"썬더볼트에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +721,15,5,"Une variété de Méga-Gemme. +Tenue par un Élecsprint, elle lui permet de +méga-évoluer durant un combat." +721,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Voltenso getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +721,15,7,"Pase que permite realizar viajes ilimitados en el +TMV que une las ciudades de Luminalia y Batik." +721,15,8,"Un esemplare delle misteriose Megapietre. +Data a Manectric, gli permette di megaevolversi +durante la lotta." +721,15,9,"One variety of the mysterious Mega Stones. +Have Manectric hold it, and this stone will +enable it to Mega Evolve during battle." +721,15,11,"ライボルトに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +722,15,1,"ガブリアスに もたせておくと +たたかいのとき メガシンカが できる +ふしぎな メガストーンの いっしゅ。" +722,15,3,"한카리아스에게 지니게 하면 +배틀할 때 메가진화할 수 있는 +신비한 메가스톤의 일종." +722,15,5,"Une variété de Méga-Gemme. +Tenue par un Carchacrok, elle lui permet de +méga-évoluer durant un combat." +722,15,6,"Einer der mysteriösen Mega-Steine. Wird er von +einem Knakrack getragen, kann es im Kampf eine +Mega-Entwicklung durchführen." +722,15,7,"Símbolo otorgado en reconocimiento a quienes +han realizado gestas excepcionales en la región +de Kalos." +722,15,8,"Un esemplare delle misteriose Megapietre. +Data a Garchomp, gli permette di megaevolversi +durante la lotta." +722,15,9,"One variety of the mysterious Mega Stones. +Have Garchomp hold it, and this stone will +enable it to Mega Evolve during battle." +722,15,11,"ガブリアスに 持たせておくと +戦いのとき メガシンカが できる +不思議な メガストーンの 一種。" +723,15,1,"ポケモンに もたせると +こうかばつぐんの フェアリー わざを +うけたとき いりょくが よわまる。" +723,15,3,"포켓몬에게 지니게 하면 +효과가 뛰어난 페어리 기술을 +당했을 때 위력이 약해진다." +723,15,5,"Tenue, cette Baie affaiblit une attaque ennemie +super efficace de type Fée." +723,15,6,"Als getragenes Item schwächt diese Beere +sehr effektive Feen-Attacken von Angreifern." +723,15,7,"Estuche de aspecto sofisticado para llevar las +lentes de contacto." +723,15,8,"Se data a un Pokémon, indebolisce l’attacco +superefficace di tipo Folletto del nemico." +723,15,9,"If held by a Pokémon, this Berry will +lessen the damage taken from one +supereffective Fairy-type attack." +723,15,11,"ポケモンに 持たせると +効果バツグンの フェアリー技を +受けたとき 威力が 弱まる。" +724,15,1,"ポケモンに もたせると +ぶつりわざを うけたとき +じぶんの ぼうぎょが あがる。" +724,15,3,"포켓몬에게 지니게 하면 +물리 기술을 당했을 때 +자신의 방어가 올라간다." +724,15,5,"Baie à tenir augmentant la Défense du Pokémon +lorsqu’il est touché par une attaque physique." +724,15,6,"Als getragenes Item erhöht diese Beere die +Verteidigung des Trägers, wenn dieser von +physischen Attacken getroffen wird." +724,15,7,"Baúl ligero de increíble capacidad donde pueden +guardarse todas las prendas de ropa adquiridas." +724,15,8,"Bacca da dare a un Pokémon. +Se chi ce l’ha subisce una mossa fisica, +la sua Difesa aumenta." +724,15,9,"If held by a Pokémon, this Berry +will increase the holder’s Defense +if it’s hit with a physical move." +724,15,11,"ポケモンに 持たせると +物理技を 受けたとき +自分の 防御が あがる。" +725,15,1,"ポケモンに もたせると +とくしゅわざを うけたとき +じぶんの とくぼうが あがる。" +725,15,3,"포켓몬에게 지니게 하면 +특수 기술을 당했을 때 +자신의 특수방어가 올라간다." +725,15,5,"Baie à tenir augmentant la Défense Spéciale +du Pokémon lorsqu’il est touché par une attaque +spéciale." +725,15,6,"Als getragenes Item erhöht diese Beere die +Spezial-Verteidigung des Trägers, wenn dieser +von Spezial-Attacken getroffen wird." +725,15,7,"Baúl ligero de increíble capacidad donde pueden +guardarse todas las prendas de ropa adquiridas." +725,15,8,"Bacca da dare a un Pokémon. +Se chi ce l’ha subisce una mossa speciale, +la sua Difesa Speciale aumenta." +725,15,9,"If held by a Pokémon, this Berry will +increase the holder’s Sp. Def +if it’s hit with a special move." +725,15,11,"ポケモンに 持たせると +特殊技を 受けたとき +自分の 特防が あがる。" +726,15,1,"ブティックで アイテムを かうとき +いつもより やすくなる チケット。 +" +726,15,3,"부티크에서 아이템을 살 때 +평소보다 저렴해지는 티켓." +726,15,5,"Un ticket donnant droit à une réduction dans +les boutiques de vêtements." +726,15,6,"Ein Coupon, mit dem du in Boutiquen günstiger +einkaufen kannst." +726,15,7, +726,15,8,"Buono che permette di avere uno sconto +sugli acquisti nei negozi di abbigliamento." +726,15,9,"This special coupon allows you to +buy items at a discount when you +are shopping at a boutique." +726,15,11,"ブティックで アイテムを 買うとき +いつもより 安くなる チケット。 +" +727,15,1,"カロスちほうから とおく はなれた +ばしょで まもりがみ とされる +ポケモンを かたどった おきもの。" +727,15,3,"칼로스지방에서 멀리 떨어진 곳의 +수호신으로 여겨지는 +포켓몬을 본떠 만든 장식품." +727,15,5,"Un ornement à l’image d’un Pokémon vénéré +comme protecteur dans une région éloignée +de Kalos." +727,15,6,"Eine Skulptur in Form eines Pokémon, +das in einer weit von Kalos entfernten Region als +Schutzpatron angesehen wird." +727,15,7, +727,15,8,"Statuetta raffigurante un Pokémon che viene +considerato una divinità protettrice in alcuni +luoghi molto lontani da Kalos." +727,15,9,"An ornament depicting a Pokémon +that is venerated as a protector +in some region far from Kalos." +727,15,11,"カロス地方から 遠く 離れた +場所で 守り神 とされる +ポケモンを かたどった 置物。" +728,15,1,"ミアレシティで にんきの おかし。 +ポケモン 1ひきの じょうたいの +いじょうを すべて かいふくする。" +728,15,3,"미르시티에서 인기 있는 과자. +포켓몬 1마리의 상태 이상을 +모두 회복한다." +728,15,5,"La spécialité d’Illumis. +Elle soigne tous les problèmes de statut +d’un Pokémon." +728,15,6,"Eine beliebte Süßigkeit in Illumina City, die alle +Statusprobleme eines Pokémon behebt." +728,15,7, +728,15,8,"Un famoso dolce di Luminopoli. +Può guarire un Pokémon da tutti i problemi +di stato." +728,15,9,"A popular treat in Lumiose City. +It can be used once to heal all the +status conditions of a Pokémon." +728,15,11,"ミアレシティで 人気の お菓子。 +ポケモン 1匹の 状態の +異常を すべて 回復する。" +729,15,1,"おおむかし ちじょうで くらした +こだい ポケモンの カセキ。 +おおきな アゴの いちぶ らしい。" +729,15,3,"오랜 옛날 지상에서 살았던 +고대 포켓몬의 화석. +커다란 턱의 일부인 듯하다." +729,15,5,"Le fossile d’un Pokémon préhistorique terrestre. +On dirait un fragment de mâchoire." +729,15,6,"Das Fossil eines uralten Pokémon, das an Land +lebte. Es sieht wie ein Kieferknochen aus." +729,15,7, +729,15,8,"Fossile di un Pokémon preistorico che viveva +sulla terraferma. Sembra far parte di una grossa +mascella." +729,15,9,"A fossil from a prehistoric Pokémon +that once lived on the land. It looks as +if it could be a piece of a large jaw." +729,15,11,"大昔 地上で 暮らした +古代ポケモンの カセキ。 +大きな アゴの 一部らしい。" +730,15,1,"おおむかし ちじょうで くらした +こだい ポケモンの カセキ。 +くびの ヒレの いちぶ らしい。" +730,15,3,"오랜 옛날 지상에서 살았던 +고대 포켓몬의 화석. +목지느러미의 일부인 듯하다." +730,15,5,"Le fossile d’un Pokémon préhistorique terrestre. +On dirait un fragment de nageoire." +730,15,6,"Das Fossil eines uralten Pokémon, das an Land +lebte. Es sieht wie eine Flosse aus." +730,15,7, +730,15,8,"Fossile di un Pokémon preistorico che viveva +sulla terraferma. Sembra far parte di una pinna." +730,15,9,"A fossil from a prehistoric Pokémon +that once lived on the land. It looks +like the impression from a skin sail." +730,15,11,"大昔 地上で 暮らした +古代ポケモンの カセキ。 +首の ヒレの 一部らしい。" +731,15,1,"フェアリーの タイプの ジュエル。 +もたせると いちどだけ フェアリーの +わざの いりょくが つよまる。" +731,15,3,"페어리타입의 주얼. +지니게 하면 한 번만 페어리 +기술의 위력이 강해진다." +731,15,5,"Objet à tenir. Un joyau augmentant une fois +la puissance des capacités de type Fée." +731,15,6,"Ein Juwel vom Typ Fee. Es erhöht einmalig +die Stärke einer Attacke vom Typ Fee." +731,15,7, +731,15,8,"Strumento da dare a un Pokémon. +Gioiello che potenzia una sola volta le mosse +di tipo Folletto." +731,15,9,"A gem with an essence of the fey. +When held, it strengthens the power +of a Fairy-type move one time." +731,15,11,"フェアリーの タイプの ジュエル。 +持たせると 1度だけ フェアリーの +技の 威力が 強まる。" +732,15,1,"トレーナーが たびを するときの +ポイントが まとめられている +ともだち てづくりの ガイドブック。" +732,15,3,"트레이너가 여행할 때의 +포인트가 정리되어 있는 +친구가 직접 만든 가이드북." +732,15,5,"Un manuel détaillant le savoir indispensable +à un Dresseur partant à l’aventure. +Écrit par une connaissance." +732,15,6,"Dieses von einem deiner Freunde erstellte Buch +enthält nützliche Informationen zu allen Themen, +die für einen Trainer auf Reisen von Belang sind." +732,15,7, +732,15,8,"Guida che contiene consigli utili per +gli Allenatori in viaggio. +È stata scritta da qualcuno di tua conoscenza." +732,15,9,"This book contains all the points a new +Trainer needs to know on a journey. +It was handmade by a kind friend." +732,15,11,"トレーナーが 旅を するときの +ポイントが まとめられている +友達 手作りの ガイドブック。" +733,15,1,"フラダリラボに ある +エレベータを うごかす カードキー。 +フレアだんの マークいり。" +733,15,3,"플라드리 래버러토리에 있는 +엘리베이터를 작동시키는 카드키. +플레어단의 마크가 새겨져 있다." +733,15,5,"Un passe de sécurité permettant d’accéder à +l’ascenseur des Laboratoires Lysandre. +Il est décoré du logo de la Team Flare." +733,15,6,"Eine Schlüsselkarte mit dem Logo von +Team Flare. Sie aktiviert den Fahrstuhl +im Labor von Flordelis." +733,15,7, +733,15,8,"Tessera magnetica con il simbolo del Team Flare +che attiva l’ascensore dei Laboratori Elisio." +733,15,9,"A card key that activates the elevator +in Lysandre Labs. +It is emblazoned with Team Flare’s logo." +733,15,11,"フラダリラボに ある +エレベータを 動かす カードキー。 +フレア団の マークいり。" +734,15,1,"じゅしんした ホログラムの +えいぞうデータを いつでも +みることが できる そうち。" +734,15,3,"수신한 홀로그램 +영상 데이터를 언제라도 +볼 수 있는 장치." +734,15,5,"Un appareil portable permettant de recevoir et +de visualiser des hologrammes à volonté." +734,15,6,"Ein Gerät, das Hologramm-Nachrichten +empfangen und jederzeit abspielen kann." +734,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Charizard en combate." +734,15,8,"Dispositivo in grado di ricevere e riprodurre +in qualsiasi momento comunicazioni olografiche." +734,15,9,"A device that allows users to receive +and view hologram clips at any time. +It is also used to chat with others." +734,15,11,"受信した ホログラムの +映像データを いつでも +観ることが できる 装置。" +735,15,1,"カロスちほうで すばらしい +かつやくを した じんぶつに +おくられる きちょうな シンボル。" +735,15,3,"칼로스지방에서 +훌륭한 활약을 한 인물에게 +주어지는 귀중한 심볼." +735,15,5,"Une récompense symbolique offerte à ceux qui +ont contribué de manière exceptionnelle à +la grandeur de Kalos." +735,15,6,"Ein wertvolles Emblem, das all jenen überreicht +wird, die Großes für die Kalos-Region vollbracht +haben." +735,15,7, +735,15,8,"Prezioso riconoscimento conferito a coloro che +si sono distinti per le gesta eccezionali nella +regione di Kalos." +735,15,9,"A precious symbol that is awarded +only to an individual who has done +great things for the Kalos region." +735,15,11,"カロス地方で すばらしい +活躍を した 人物に +贈られる 貴重な シンボル。" +736,15,1,"みる ひとに よっては +きちょう かもしれない +かなり かわった いし。" +736,15,3,"보는 사람에 따라서는 +귀중할지도 모르는 +꽤 특이한 돌." +736,15,5,"Une pierre assez étrange qui pourrait avoir de la +valeur pour certains." +736,15,6,"Ein ungewöhnlicher Stein, dessen Wert je nach +Betrachter unterschiedlich eingeschätzt wird." +736,15,7,"Amuleto con un poder misterioso que permite +megaevolucionar a Pokémon que lleven una +Megapiedra adecuada." +736,15,8,"Un sasso piuttosto singolare che qualcuno +potrebbe ritenere di valore." +736,15,9,"A rather curious stone that might +appear to be valuable to some. +It’s all in the eye of the beholder." +736,15,11,"みる 人に よっては +貴重 かもしれない +かなり 変わった 石。" +737,15,1,"コンタクトレンズを しまっておける +ちょっと おしゃれな ケース。 +" +737,15,3,"콘택트렌즈를 담아둘 수 있는 +살짝 멋진 케이스." +737,15,5,"Un étui plutôt chic destiné aux lentilles de +contact." +737,15,6,"Ein sehr stilvolles Etui zur Aufbewahrung +von Kontaktlinsen." +737,15,7, +737,15,8,Un’elegante custodia per lenti a contatto. +737,15,9,"A rather chic-looking case +for carrying contact lenses." +737,15,11,"コンタクトレンズを しまっておける +ちょっと おしゃれな ケース。 +" +738,15,1,"きらきら かがやく +とりょうが ふきつけられた +ハンサム てづくりの チケット。" +738,15,3,"번쩍번쩍 빛나는 +스프레이가 뿌려진 +핸섬이 직접 만든 티켓." +738,15,5,"Un ticket brillant de mille feux, peint à la main +par Beladonis." +738,15,6,"Ein von LeBelle persönlich gebasteltes Ticket. +Es ist mit einer leuchtenden Farbschicht +überzogen." +738,15,7, +738,15,8,"Un biglietto realizzato a mano da Bellocchio, +dipinto con colori brillanti." +738,15,9,"A ticket that was handmade by +Looker. It’s decorated with a +liberal amount of glittery paint." +738,15,11,"きらきら かがやく +塗料が 吹きつけられた +ハンサム てづくりの チケット。" +739,15,1,"メガストーンを もったまま たたかう +ポケモンを メガシンカさせる +みちのパワーを ひめた リング。" +739,15,3,"메가스톤을 지닌 채로 싸우는 +포켓몬을 메가진화시키는 +미지의 힘을 가진 링." +739,15,5,"Un anneau aux pouvoirs mystérieux permettant à +un Pokémon de méga-évoluer au combat s’il tient +la bonne Méga-Gemme." +739,15,6,"Ein Armband mit geheimnisvollen Kräften. +Es erlaubt Pokémon, die einen Mega-Stein tragen, +eine Mega-Entwicklung durchzuführen." +739,15,7,"Joya de un solo uso que potencia los +movimientos de tipo Hada. +Debe llevarla un Pokémon." +739,15,8,"Cerchio che nasconde un misterioso potere. +Consente a un Pokémon che ha una +Megapietra di megaevolversi durante la lotta." +739,15,9,"This ring contains an untold power that +somehow enables Pokémon carrying +Mega Stones to Mega Evolve in battle." +739,15,11,"メガストーンを 持ったまま 戦う +ポケモンを メガシンカさせる +未知のパワーを 秘めた リング。" +740,15,1,"13ばんどうろに ある +はつでんしょに はいるための +みぶんしょうとなる パス。" +740,15,3,"13번도로에 있는 +발전소에 들어가기 위한 +신분증이 되는 패스." +740,15,5,"Un passe de sécurité permettant d’accéder à la +Centrale de Kalos, à proximité de la Route 13." +740,15,6,"Dieser Pass gewährt Zutritt zum Kraftwerk +auf Route 13." +740,15,7,"Este aparato permite recibir vídeos holográficos +y visualizarlos en cualquier momento." +740,15,8,"Tesserino di riconoscimento che consente +l’accesso alla Centrale di Kalos che si trova +nel Percorso 13." +740,15,9,"This pass serves as an ID card +for gaining access to the power +plant that lies along Route 13." +740,15,11,"13番道路に ある +発電所に 入るための +身分証となる パス。" +741,15,1,"プラターヌはかせから +ママあてに かかれた てがみ。 +ほんのり いい かおりがする。" +741,15,3,"플라타느박사가 +엄마에게 쓴 편지. +은은하게 좋은 향기가 난다." +741,15,5,"Une lettre du Professeur Platane à Maman. +Elle dégage un parfum subtil." +741,15,6,"Ein an deine Mutter adressierter Brief von +Professor Platan. Ihm haftet ein schwacher +Parfümduft an." +741,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Blastoise en combate." +741,15,8,"Lettera del Professor Platan per la mamma. +Emana un delicato profumo." +741,15,9,"A letter that Professor Sycamore wrote +to your mother. A faint but pleasant +perfume seems to cling to the paper." +741,15,11,"プラターヌ博士から +ママあてに 書かれた 手紙。 +ほんのり いい 香りがする。" +742,15,1,"クツぞこに ローラーが ついている。 +じめんを かっそう したり +トリックプレイを きめたりできる。" +742,15,3,"신발 바닥에 롤러가 달려 있다. +지면을 활주하거나 +트릭플레이를 할 수 있다." +742,15,5,"Aussi connus sous le nom de patins à roulettes, +ils permettent de se déplacer rapidement +et éventuellement de réaliser des figures." +742,15,6,"Schuhe mit Rädern an der Sohle. Mit ihnen kannst +du über den Boden rollen und Tricks ausführen." +742,15,7,"Una de las misteriosas Megapiedras. Permite +megaevolucionar a Mewtwo en combate." +742,15,8,"Pattini applicati alla suola delle scarpe. +Permettono di pattinare e di eseguire figure." +742,15,9,"Attaches roller skates to the bottom +of your shoes, allowing you to glide +quickly around and perform tricks." +742,15,11,"クツ底に ローラーが ついている。 +地面を 滑走 したり +トリックプレイを 決めたりできる。" +743,15,1,"みずを かける どうぐ。 +ふかふかのつちに うめた +きのみを すくすく そだてる。" +743,15,3,"물을 주는 도구. +푹신푹신한 땅에 심은 +나무열매를 쑥쑥 키운다." +743,15,5,"Un arrosoir en forme de Nénupiot +qui aide à la croissance des Baies +plantées dans les sols meubles." +743,15,6,"Eine Gießkanne in Form von Loturzel. Gieße +gepflanzte Beeren, damit sie besser wachsen." +743,15,7,"El dulce estrella de Ciudad Luminalia. Cura los +problemas de estado de un Pokémon." +743,15,8,"Strumento per annaffiare a forma di Lotad. +Favorisce la crescita delle bacche piantate +nel terreno soffice." +743,15,9,"A watering can shaped like a Lotad. +It helps promote the healthy growth of +any Berries planted in good, soft soil." +743,15,11,"水を かける 道具。 +ふかふかのつちに 埋めた +きのみを すくすく 育てる。" +744,15,1,"ミアレシティと キナンシティを +むすぶ ちょうこうそくてつどうに +いつでも のれる チケット。" +744,15,3,"미르시티와 기남시티를 잇는 +초고속철도를 언제든지 +탈 수 있는 티켓." +744,15,5,"Un abonnement à vie à la ligne de TMV qui relie +Illumis à Batisques." +744,15,6,"Mit dieser Fahrkarte kannst du jederzeit den +Hochgeschwindigkeitszug nehmen, der zwischen +Illumina City und Batika City verkehrt." +744,15,7, +744,15,8,"Biglietto che permette di salire liberamente +sul treno a megavelocità che collega +Luminopoli e Batikopoli." +744,15,9,"A commuter pass that allows the +holder to ride the TMV between Lumiose +City and Kiloude City at any time." +744,15,11,"ミアレシティと キナンシティを +結ぶ 超高速鉄道に +いつでも 乗れる チケット。" +745,15,1,"しぜんの ちからで こうげきする。 +つかう ばしょで +でてくる わざが へんかする。" +745,15,3,"자연의 힘으로 공격한다. +사용하는 장소에 따라 +나오는 기술이 변화한다." +745,15,5,"Une attaque qui tire sa force de la nature. +Son type varie selon le terrain." +745,15,6,"Angriff mit der Kraft der Natur, dessen Typ +vom Ort abhängt, wo er durchgeführt wird." +745,15,7,"Especialidad de Ciudad Yantra. Cura los +problemas de estado de un Pokémon." +745,15,8,"Mossa che fa uso della forza della natura. +Il suo effetto varia in base all’ambiente." +745,15,9,"An attack that makes use of nature’s +power. Its effects vary depending on +the user’s environment." +745,15,11,"自然の 力で 攻撃する。 +使う 場所で +でてくる 技が 変化する。" +746,15,1,"からだから あくいに +みちた おそろしい オーラを はっする。 +あいてを ひるませる ことが ある。" +746,15,3,"몸에서 악의로 가득한 +무서운 오라를 발한다. +상대를 풀죽게 만들 때가 있다." +746,15,5,"Le lanceur dégage une horrible aura chargée +d’idées noires. Peut aussi apeurer l’ennemi." +746,15,6,"Anwender greift mit fürchterlicher Aura schlechter +Gedanken an. Ziel schreckt eventuell zurück." +746,15,7,"Fósil de un Pokémon prehistórico terrestre. +Parece ser parte de una mandíbula." +746,15,8,"Chi la usa emana un’aura impregnata di oscuri +pensieri. Può anche far tentennare il Pokémon +colpito." +746,15,9,"The user releases a horrible aura +imbued with dark thoughts. This +may also make the target flinch." +746,15,11,"体から 悪意に みちた +恐ろしい オーラを 発する。 +相手を ひるませることが ある。" +747,15,1,"くりかえし うつことで +だんだん こぶしが かたくなる。 +あいてに あてると こうげきが あがる。" +747,15,3,"반복해서 쓰면 +점점 주먹이 단단해진다. +상대에게 맞히면 공격이 올라간다." +747,15,5,"À force de frapper, les poings deviennent plus +durs. Augmente l’Attaque du lanceur si l’ennemi +est touché." +747,15,6,"Durch wiederholtes Zuschlagen werden die +Fäuste des Anwenders allmählich härter. +Trifft er den Gegner, steigt sein Angriffs-Wert." +747,15,7,"Fósil de un Pokémon prehistórico terrestre. +Parece la impresión de una aleta." +747,15,8,"Rende i pugni più duri a ogni colpo inferto. +Se i pugni vanno a segno, aumenta l’Attacco." +747,15,9,"Striking opponents over and over +makes the user’s fists harder. +Hitting a target raises the Attack stat." +747,15,11,"くり返し 打つことで +だんだん こぶしが 固くなる。 +相手に あてると 攻撃が あがる。" +748,15,1,"きょうりょくな ひかりを はなち +あいてに ダメージを あたえる。 +" +748,15,3,"강력한 빛을 쏴서 +상대에게 데미지를 준다." +748,15,5,"Libère une puissante décharge lumineuse qui +inflige des dégâts à l’ennemi." +748,15,6,"Angriff mit einem starken Lichtstrahl, der dem +Gegner Schaden zufügt." +748,15,7,"Boleto hecho a mano por Handsome, decorado +con una generosa cantidad de purpurina." +748,15,8,"Emette una luce potentissima che infligge danni +al bersaglio." +748,15,9,"The user damages opposing Pokémon +by emitting a powerful flash." +748,15,11,"強力な 光を 放ち +相手に ダメージを 与える。 +" +749,15,1,"ないしょばなしを することで あいての +しゅうちゅうりょくを うしなわせ +あいての とくこうを さげる。" +749,15,3,"비밀 이야기를 함으로써 +상대의 집중력을 잃게 하여 +특수공격을 떨어뜨린다." +749,15,5,"Dévoile des secrets à l’ennemi qui perd sa +concentration et voit son Attaque Spéciale +diminuer." +749,15,6,"Der Anwender vertraut dem Ziel ein Geheimnis an. +Dadurch stört er dessen Konzentration und senkt +dessen Spezial-Angriff." +749,15,7,"Bicicleta plegable con la que se va más rápido +que corriendo." +749,15,8,"Chi la usa svela dei segreti al bersaglio, +distraendolo e riducendone l’Attacco Speciale." +749,15,9,"The user tells the target a secret, and +the target loses its ability to concentrate. +This lowers the target’s Sp. Atk stat." +749,15,11,"ないしょばなしを することで 相手の +集中力を 失わせ +相手の 特攻を さげる。" diff --git a/data/v2/csv/item_fling_effect_prose.csv b/data/v2/csv/item_fling_effect_prose.csv new file mode 100644 index 00000000..038d3935 --- /dev/null +++ b/data/v2/csv/item_fling_effect_prose.csv @@ -0,0 +1,8 @@ +item_fling_effect_id,local_language_id,effect +1,9,Badly poisons the target. +2,9,Burns the target. +3,9,Immediately activates the berry's effect on the target. +4,9,Immediately activates the herb's effect on the target. +5,9,Paralyzes the target. +6,9,Poisons the target. +7,9,Target will flinch if it has not yet gone this turn. diff --git a/data/v2/csv/item_fling_effects.csv b/data/v2/csv/item_fling_effects.csv new file mode 100644 index 00000000..a58fa572 --- /dev/null +++ b/data/v2/csv/item_fling_effects.csv @@ -0,0 +1,8 @@ +id +1 +2 +3 +4 +5 +6 +7 diff --git a/data/v2/csv/item_game_indices.csv b/data/v2/csv/item_game_indices.csv new file mode 100644 index 00000000..b20e5be2 --- /dev/null +++ b/data/v2/csv/item_game_indices.csv @@ -0,0 +1,2125 @@ +item_id,generation_id,game_index +1,3,1 +1,4,1 +1,5,1 +1,6,1 +2,3,2 +2,4,2 +2,5,2 +2,6,2 +3,3,3 +3,4,3 +3,5,3 +3,6,3 +4,3,4 +4,4,4 +4,5,4 +4,6,4 +5,3,5 +5,4,5 +5,5,5 +5,6,5 +6,3,6 +6,4,6 +6,5,6 +6,6,6 +7,3,7 +7,4,7 +7,5,7 +7,6,7 +8,3,8 +8,4,8 +8,5,8 +8,6,8 +9,3,9 +9,4,9 +9,5,9 +9,6,9 +10,3,10 +10,4,10 +10,5,10 +10,6,10 +11,3,11 +11,4,11 +11,5,11 +11,6,11 +12,3,12 +12,4,12 +12,5,12 +12,6,12 +13,4,13 +13,5,13 +13,6,13 +14,4,14 +14,5,14 +14,6,14 +15,4,15 +15,5,15 +15,6,15 +16,4,16 +16,5,16 +16,6,16 +17,3,13 +17,4,17 +17,5,17 +17,6,17 +18,3,14 +18,4,18 +18,5,18 +18,6,18 +19,3,15 +19,4,19 +19,5,19 +19,6,19 +20,3,16 +20,4,20 +20,5,20 +20,6,20 +21,3,17 +21,4,21 +21,5,21 +21,6,21 +22,3,18 +22,4,22 +22,5,22 +22,6,22 +23,3,19 +23,4,23 +23,5,23 +23,6,23 +24,3,20 +24,4,24 +24,5,24 +24,6,24 +25,3,21 +25,4,25 +25,5,25 +25,6,25 +26,3,22 +26,4,26 +26,5,26 +26,6,26 +27,3,23 +27,4,27 +27,5,27 +27,6,27 +28,3,24 +28,4,28 +28,5,28 +28,6,28 +29,3,25 +29,4,29 +29,5,29 +29,6,29 +30,3,26 +30,4,30 +30,5,30 +30,6,30 +31,3,27 +31,4,31 +31,5,31 +31,6,31 +32,3,28 +32,4,32 +32,5,32 +32,6,32 +33,3,29 +33,4,33 +33,5,33 +33,6,33 +34,3,30 +34,4,34 +34,5,34 +34,6,34 +35,3,31 +35,4,35 +35,5,35 +35,6,35 +36,3,32 +36,4,36 +36,5,36 +36,6,36 +37,3,33 +37,4,37 +37,5,37 +37,6,37 +38,3,34 +38,4,38 +38,5,38 +38,6,38 +39,3,35 +39,4,39 +39,5,39 +39,6,39 +40,3,36 +40,4,40 +40,5,40 +40,6,40 +41,3,37 +41,4,41 +41,5,41 +41,6,41 +42,3,38 +42,4,42 +42,5,42 +42,6,42 +43,3,44 +43,4,43 +43,5,43 +43,6,43 +44,3,45 +44,4,44 +44,5,44 +44,6,44 +45,3,63 +45,4,45 +45,5,45 +45,6,45 +46,3,64 +46,4,46 +46,5,46 +46,6,46 +47,3,65 +47,4,47 +47,5,47 +47,6,47 +48,3,66 +48,4,48 +48,5,48 +48,6,48 +49,3,67 +49,4,49 +49,5,49 +49,6,49 +50,3,68 +50,4,50 +50,5,50 +50,6,50 +51,3,69 +51,4,51 +51,5,51 +51,6,51 +52,3,70 +52,4,52 +52,5,52 +52,6,52 +53,3,71 +53,4,53 +53,5,53 +53,6,53 +54,4,54 +54,5,54 +54,6,54 +55,3,73 +55,4,55 +55,5,55 +55,6,55 +56,3,74 +56,4,56 +56,5,56 +56,6,56 +57,3,75 +57,4,57 +57,5,57 +57,6,57 +58,3,76 +58,4,58 +58,5,58 +58,6,58 +59,3,77 +59,4,59 +59,5,59 +59,6,59 +60,3,78 +60,4,60 +60,5,60 +60,6,60 +61,3,79 +61,4,61 +61,5,61 +61,6,61 +62,4,62 +62,5,62 +62,6,62 +63,3,80 +63,4,63 +63,5,63 +63,6,63 +64,3,81 +64,4,64 +64,5,64 +64,6,64 +65,3,39 +65,4,65 +65,5,65 +65,6,65 +66,3,40 +66,4,66 +66,5,66 +66,6,66 +67,3,41 +67,4,67 +67,5,67 +67,6,67 +68,3,42 +68,4,68 +68,5,68 +68,6,68 +69,3,43 +69,4,69 +69,5,69 +69,6,69 +70,3,46 +70,4,70 +70,5,70 +70,6,70 +71,3,47 +71,4,71 +71,5,71 +71,6,71 +72,3,48 +72,4,72 +72,5,72 +72,6,72 +73,3,49 +73,4,73 +73,5,73 +73,6,73 +74,3,50 +74,4,74 +74,5,74 +74,6,74 +75,3,51 +75,4,75 +75,5,75 +75,6,75 +76,3,83 +76,4,76 +76,5,76 +76,6,76 +77,3,84 +77,4,77 +77,5,77 +77,6,77 +78,3,85 +78,4,78 +78,5,78 +78,6,78 +79,3,86 +79,4,79 +79,5,79 +79,6,79 +80,3,93 +80,4,80 +80,5,80 +80,6,80 +81,3,94 +81,4,81 +81,5,81 +81,6,81 +82,3,95 +82,4,82 +82,5,82 +82,6,82 +83,3,96 +83,4,83 +83,5,83 +83,6,83 +84,3,97 +84,4,84 +84,5,84 +84,6,84 +85,3,98 +85,4,85 +85,5,85 +85,6,85 +86,3,103 +86,4,86 +86,5,86 +86,6,86 +87,3,104 +87,4,87 +87,5,87 +87,6,87 +88,3,106 +88,4,88 +88,5,88 +88,6,88 +89,3,107 +89,4,89 +89,5,89 +89,6,89 +90,3,108 +90,4,90 +90,5,90 +90,6,90 +91,3,109 +91,4,91 +91,5,91 +91,6,91 +92,3,110 +92,4,92 +92,5,92 +92,6,92 +93,3,111 +93,4,93 +93,5,93 +93,6,93 +94,4,94 +94,5,94 +94,6,94 +95,4,95 +95,5,95 +95,6,95 +96,4,96 +96,5,96 +96,6,96 +97,4,97 +97,5,97 +97,6,97 +98,4,98 +98,5,98 +98,6,98 +99,3,286 +99,4,99 +99,5,99 +99,6,99 +100,3,287 +100,4,100 +100,5,100 +100,6,100 +101,3,357 +101,4,101 +101,5,101 +101,6,101 +102,3,358 +102,4,102 +102,5,102 +102,6,102 +103,3,354 +103,4,103 +103,5,103 +103,6,103 +104,4,104 +104,5,104 +104,6,104 +105,4,105 +105,5,105 +105,6,105 +106,4,106 +106,5,106 +106,6,106 +107,4,107 +107,5,107 +107,6,107 +108,4,108 +108,5,108 +108,6,108 +109,4,109 +109,5,109 +109,6,109 +110,4,110 +110,5,110 +110,6,110 +111,4,111 +111,5,111 +111,6,111 +112,4,135 +112,5,135 +112,6,135 +113,4,136 +113,5,136 +113,6,136 +114,4,137 +115,4,138 +116,4,139 +117,4,140 +118,4,141 +119,4,142 +120,4,143 +121,4,144 +122,4,145 +123,4,146 +124,4,147 +125,4,148 +126,3,133 +126,4,149 +126,5,149 +126,6,149 +127,3,134 +127,4,150 +127,5,150 +127,6,150 +128,3,135 +128,4,151 +128,5,151 +128,6,151 +129,3,136 +129,4,152 +129,5,152 +129,6,152 +130,3,137 +130,4,153 +130,5,153 +130,6,153 +131,3,138 +131,4,154 +131,5,154 +131,6,154 +132,3,139 +132,4,155 +132,5,155 +132,6,155 +133,3,140 +133,4,156 +133,5,156 +133,6,156 +134,3,141 +134,4,157 +134,5,157 +134,6,157 +135,3,142 +135,4,158 +135,5,158 +135,6,158 +136,3,143 +136,4,159 +136,5,159 +136,6,159 +137,3,144 +137,4,160 +137,5,160 +137,6,160 +138,3,145 +138,4,161 +138,5,161 +138,6,161 +139,3,146 +139,4,162 +139,5,162 +139,6,162 +140,3,147 +140,4,163 +140,5,163 +140,6,163 +141,3,148 +141,4,164 +141,5,164 +141,6,164 +142,3,149 +142,4,165 +142,5,165 +142,6,165 +143,3,150 +143,4,166 +143,5,166 +143,6,166 +144,3,151 +144,4,167 +144,5,167 +144,6,167 +145,3,152 +145,4,168 +145,5,168 +145,6,168 +146,3,153 +146,4,169 +146,5,169 +146,6,169 +147,3,154 +147,4,170 +147,5,170 +147,6,170 +148,3,155 +148,4,171 +148,5,171 +148,6,171 +149,3,156 +149,4,172 +149,5,172 +149,6,172 +150,3,157 +150,4,173 +150,5,173 +150,6,173 +151,3,158 +151,4,174 +151,5,174 +151,6,174 +152,3,159 +152,4,175 +152,5,175 +152,6,175 +153,3,160 +153,4,176 +153,5,176 +153,6,176 +154,3,161 +154,4,177 +154,5,177 +154,6,177 +155,3,162 +155,4,178 +155,5,178 +155,6,178 +156,3,163 +156,4,179 +156,5,179 +156,6,179 +157,3,164 +157,4,180 +157,5,180 +157,6,180 +158,3,165 +158,4,181 +158,5,181 +158,6,181 +159,3,166 +159,4,182 +159,5,182 +159,6,182 +160,3,167 +160,4,183 +160,5,183 +160,6,183 +161,4,184 +161,5,184 +161,6,184 +162,4,185 +162,5,185 +162,6,185 +163,4,186 +163,5,186 +163,6,186 +164,4,187 +164,5,187 +164,6,187 +165,4,188 +165,5,188 +165,6,188 +166,4,189 +166,5,189 +166,6,189 +167,4,190 +167,5,190 +167,6,190 +168,4,191 +168,5,191 +168,6,191 +169,4,192 +169,5,192 +169,6,192 +170,4,193 +170,5,193 +170,6,193 +171,4,194 +171,5,194 +171,6,194 +172,4,195 +172,5,195 +172,6,195 +173,4,196 +173,5,196 +173,6,196 +174,4,197 +174,5,197 +174,6,197 +175,4,198 +175,5,198 +175,6,198 +176,4,199 +176,5,199 +176,6,199 +177,4,200 +177,5,200 +177,6,200 +178,3,168 +178,4,201 +178,5,201 +178,6,201 +179,3,169 +179,4,202 +179,5,202 +179,6,202 +180,3,170 +180,4,203 +180,5,203 +180,6,203 +181,3,171 +181,4,204 +181,5,204 +181,6,204 +182,3,172 +182,4,205 +182,5,205 +182,6,205 +183,3,173 +183,4,206 +183,5,206 +183,6,206 +184,3,174 +184,4,207 +184,5,207 +184,6,207 +185,3,175 +185,4,208 +185,5,208 +185,6,208 +186,4,209 +186,5,209 +186,6,209 +187,4,210 +187,5,210 +187,6,210 +188,4,211 +188,5,211 +188,6,211 +189,4,212 +189,5,212 +189,6,212 +190,3,179 +190,4,213 +190,5,213 +190,6,213 +191,3,180 +191,4,214 +191,5,214 +191,6,214 +192,3,181 +192,4,215 +192,5,215 +192,6,215 +193,3,182 +193,4,216 +193,5,216 +193,6,216 +194,3,183 +194,4,217 +194,5,217 +194,6,217 +195,3,184 +195,4,218 +195,5,218 +195,6,218 +196,3,185 +196,4,219 +196,5,219 +196,6,219 +197,3,186 +197,4,220 +197,5,220 +197,6,220 +198,3,187 +198,4,221 +198,5,221 +198,6,221 +199,3,188 +199,4,222 +199,5,222 +199,6,222 +200,3,189 +200,4,223 +200,5,223 +200,6,223 +201,3,190 +201,4,224 +201,5,224 +201,6,224 +202,3,191 +202,4,225 +202,5,225 +202,6,225 +203,3,192 +203,4,226 +203,5,226 +203,6,226 +204,3,193 +204,4,227 +204,5,227 +204,6,227 +205,3,194 +205,4,228 +205,5,228 +205,6,228 +206,3,195 +206,4,229 +206,5,229 +206,6,229 +207,3,196 +207,4,230 +207,5,230 +207,6,230 +208,3,197 +208,4,231 +208,5,231 +208,6,231 +209,3,198 +209,4,232 +209,5,232 +209,6,232 +210,3,199 +210,4,233 +210,5,233 +210,6,233 +211,3,200 +211,4,234 +211,5,234 +211,6,234 +212,3,201 +212,4,235 +212,5,235 +212,6,235 +213,3,202 +213,4,236 +213,5,236 +213,6,236 +214,3,203 +214,4,237 +214,5,237 +214,6,237 +215,3,204 +215,4,238 +215,5,238 +215,6,238 +216,3,205 +216,4,239 +216,5,239 +216,6,239 +217,3,206 +217,4,240 +217,5,240 +217,6,240 +218,3,207 +218,4,241 +218,5,241 +218,6,241 +219,3,208 +219,4,242 +219,5,242 +219,6,242 +220,3,209 +220,4,243 +220,5,243 +220,6,243 +221,3,210 +221,4,244 +221,5,244 +221,6,244 +222,3,211 +222,4,245 +222,5,245 +222,6,245 +223,3,212 +223,4,246 +223,5,246 +223,6,246 +224,3,213 +224,4,247 +224,5,247 +224,6,247 +225,3,214 +225,4,248 +225,5,248 +225,6,248 +226,3,215 +226,4,249 +226,5,249 +226,6,249 +227,3,216 +227,4,250 +227,5,250 +227,6,250 +228,3,217 +228,4,251 +228,5,251 +228,6,251 +229,3,218 +229,4,252 +229,5,252 +229,6,252 +230,3,219 +230,4,253 +230,5,253 +230,6,253 +231,3,220 +231,4,254 +231,5,254 +231,6,254 +232,3,221 +232,4,255 +232,5,255 +232,6,255 +233,3,222 +233,4,256 +233,5,256 +233,6,256 +234,3,223 +234,4,257 +234,5,257 +234,6,257 +235,3,224 +235,4,258 +235,5,258 +235,6,258 +236,3,225 +236,4,259 +236,5,259 +236,6,259 +237,3,254 +237,4,260 +237,5,260 +237,6,260 +238,3,255 +238,4,261 +238,5,261 +238,6,261 +239,3,256 +239,4,262 +239,5,262 +239,6,262 +240,3,257 +240,4,263 +240,5,263 +240,6,263 +241,3,258 +241,4,264 +241,5,264 +241,6,264 +242,4,265 +242,5,265 +242,6,265 +243,4,266 +243,5,266 +243,6,266 +244,4,267 +244,5,267 +244,6,267 +245,4,268 +245,5,268 +245,6,268 +246,4,269 +246,5,269 +246,6,269 +247,4,270 +247,5,270 +247,6,270 +248,4,271 +248,5,271 +248,6,271 +249,4,272 +249,5,272 +249,6,272 +250,4,273 +250,5,273 +250,6,273 +251,4,274 +251,5,274 +251,6,274 +252,4,275 +252,5,275 +252,6,275 +253,4,276 +253,5,276 +253,6,276 +254,4,277 +254,5,277 +254,6,277 +255,4,278 +255,5,278 +255,6,278 +256,4,279 +256,5,279 +256,6,279 +257,4,280 +257,5,280 +257,6,280 +258,4,281 +258,5,281 +258,6,281 +259,4,282 +259,5,282 +259,6,282 +260,4,283 +260,5,283 +260,6,283 +261,4,284 +261,5,284 +261,6,284 +262,4,285 +262,5,285 +262,6,285 +263,4,286 +263,5,286 +263,6,286 +264,4,287 +264,5,287 +264,6,287 +265,4,288 +265,5,288 +265,6,288 +266,4,289 +266,5,289 +266,6,289 +267,4,290 +267,5,290 +267,6,290 +268,4,291 +268,5,291 +268,6,291 +269,4,292 +269,5,292 +269,6,292 +270,4,293 +270,5,293 +270,6,293 +271,4,294 +271,5,294 +271,6,294 +272,4,295 +272,5,295 +272,6,295 +273,4,296 +273,5,296 +273,6,296 +274,4,297 +274,5,297 +274,6,297 +275,4,298 +275,5,298 +275,6,298 +276,4,299 +276,5,299 +276,6,299 +277,4,300 +277,5,300 +277,6,300 +278,4,301 +278,5,301 +278,6,301 +279,4,302 +279,5,302 +279,6,302 +280,4,303 +280,5,303 +280,6,303 +281,4,304 +281,5,304 +281,6,304 +282,4,305 +282,5,305 +282,6,305 +283,4,306 +283,5,306 +283,6,306 +284,4,307 +284,5,307 +284,6,307 +285,4,308 +285,5,308 +285,6,308 +286,4,309 +286,5,309 +286,6,309 +287,4,310 +287,5,310 +287,6,310 +288,4,311 +288,5,311 +288,6,311 +289,4,312 +289,5,312 +289,6,312 +290,4,313 +290,5,313 +290,6,313 +291,4,314 +291,5,314 +291,6,314 +292,4,315 +292,5,315 +292,6,315 +293,4,316 +293,5,316 +293,6,316 +294,4,317 +294,5,317 +294,6,317 +295,4,318 +295,5,318 +295,6,318 +296,4,319 +296,5,319 +296,6,319 +297,4,320 +297,5,320 +297,6,320 +298,4,321 +298,5,321 +298,6,321 +299,4,322 +299,5,322 +299,6,322 +300,4,323 +300,5,323 +300,6,323 +301,4,324 +301,5,324 +301,6,324 +302,4,325 +302,5,325 +302,6,325 +303,4,326 +303,5,326 +303,6,326 +304,4,327 +304,5,327 +304,6,327 +305,3,289 +305,4,328 +305,5,328 +305,6,328 +306,3,290 +306,4,329 +306,5,329 +306,6,329 +307,3,291 +307,4,330 +307,5,330 +307,6,330 +308,3,292 +308,4,331 +308,5,331 +308,6,331 +309,3,293 +309,4,332 +309,5,332 +309,6,332 +310,3,294 +310,4,333 +310,5,333 +310,6,333 +311,3,295 +311,4,334 +311,5,334 +311,6,334 +312,3,296 +312,4,335 +312,5,335 +312,6,335 +313,3,297 +313,4,336 +313,5,336 +313,6,336 +314,3,298 +314,4,337 +314,5,337 +314,6,337 +315,3,299 +315,4,338 +315,5,338 +315,6,338 +316,3,300 +316,4,339 +316,5,339 +316,6,339 +317,3,301 +317,4,340 +317,5,340 +317,6,340 +318,3,302 +318,4,341 +318,5,341 +318,6,341 +319,3,303 +319,4,342 +319,5,342 +319,6,342 +320,3,304 +320,4,343 +320,5,343 +320,6,343 +321,3,305 +321,4,344 +321,5,344 +321,6,344 +322,3,306 +322,4,345 +322,5,345 +322,6,345 +323,3,307 +323,4,346 +323,5,346 +323,6,346 +324,3,308 +324,4,347 +324,5,347 +324,6,347 +325,3,309 +325,4,348 +325,5,348 +325,6,348 +326,3,310 +326,4,349 +326,5,349 +326,6,349 +327,3,311 +327,4,350 +327,5,350 +327,6,350 +328,3,312 +328,4,351 +328,5,351 +328,6,351 +329,3,313 +329,4,352 +329,5,352 +329,6,352 +330,3,314 +330,4,353 +330,5,353 +330,6,353 +331,3,315 +331,4,354 +331,5,354 +331,6,354 +332,3,316 +332,4,355 +332,5,355 +332,6,355 +333,3,317 +333,4,356 +333,5,356 +333,6,356 +334,3,318 +334,4,357 +334,5,357 +334,6,357 +335,3,319 +335,4,358 +335,5,358 +335,6,358 +336,3,320 +336,4,359 +336,5,359 +336,6,359 +337,3,321 +337,4,360 +337,5,360 +337,6,360 +338,3,322 +338,4,361 +338,5,361 +338,6,361 +339,3,323 +339,4,362 +339,5,362 +339,6,362 +340,3,324 +340,4,363 +340,5,363 +340,6,363 +341,3,325 +341,4,364 +341,5,364 +341,6,364 +342,3,326 +342,4,365 +342,5,365 +342,6,365 +343,3,327 +343,4,366 +343,5,366 +343,6,366 +344,3,328 +344,4,367 +344,5,367 +344,6,367 +345,3,329 +345,4,368 +345,5,368 +345,6,368 +346,3,330 +346,4,369 +346,5,369 +346,6,369 +347,3,331 +347,4,370 +347,5,370 +347,6,370 +348,3,332 +348,4,371 +348,5,371 +348,6,371 +349,3,333 +349,4,372 +349,5,372 +349,6,372 +350,3,334 +350,4,373 +350,5,373 +350,6,373 +351,3,335 +351,4,374 +351,5,374 +351,6,374 +352,3,336 +352,4,375 +352,5,375 +352,6,375 +353,3,337 +353,4,376 +353,5,376 +353,6,376 +354,3,338 +354,4,377 +354,5,377 +354,6,377 +355,4,378 +355,5,378 +355,6,378 +356,4,379 +356,5,379 +356,6,379 +357,4,380 +357,5,380 +357,6,380 +358,4,381 +358,5,381 +358,6,381 +359,4,382 +359,5,382 +359,6,382 +360,4,383 +360,5,383 +360,6,383 +361,4,384 +361,5,384 +361,6,384 +362,4,385 +362,5,385 +362,6,385 +363,4,386 +363,5,386 +363,6,386 +364,4,387 +364,5,387 +364,6,387 +365,4,388 +365,5,388 +365,6,388 +366,4,389 +366,5,389 +366,6,389 +367,4,390 +367,5,390 +367,6,390 +368,4,391 +368,5,391 +368,6,391 +369,4,392 +369,5,392 +369,6,392 +370,4,393 +370,5,393 +370,6,393 +371,4,394 +371,5,394 +371,6,394 +372,4,395 +372,5,395 +372,6,395 +373,4,396 +373,5,396 +373,6,396 +374,4,397 +374,5,397 +374,6,397 +375,4,398 +375,5,398 +375,6,398 +376,4,399 +376,5,399 +376,6,399 +377,4,400 +377,5,400 +377,6,400 +378,4,401 +378,5,401 +378,6,401 +379,4,402 +379,5,402 +379,6,402 +380,4,403 +380,5,403 +380,6,403 +381,4,404 +381,5,404 +381,6,404 +382,4,405 +382,5,405 +382,6,405 +383,4,406 +383,5,406 +383,6,406 +384,4,407 +384,5,407 +384,6,407 +385,4,408 +385,5,408 +385,6,408 +386,4,409 +386,5,409 +386,6,409 +387,4,410 +387,5,410 +387,6,410 +388,4,411 +388,5,411 +388,6,411 +389,4,412 +389,5,412 +389,6,412 +390,4,413 +390,5,413 +390,6,413 +391,4,414 +391,5,414 +391,6,414 +392,4,415 +392,5,415 +392,6,415 +393,4,416 +393,5,416 +393,6,416 +394,4,417 +394,5,417 +394,6,417 +395,4,418 +395,5,418 +395,6,418 +396,4,419 +396,5,419 +396,6,419 +397,3,339 +397,4,420 +397,5,420 +397,6,420 +398,3,340 +398,4,421 +398,5,421 +398,6,421 +399,3,341 +399,4,422 +399,5,422 +399,6,422 +400,3,342 +400,4,423 +400,5,423 +400,6,423 +401,3,343 +401,4,424 +401,5,424 +401,6,424 +402,3,344 +402,4,425 +402,5,425 +402,6,425 +403,3,345 +403,4,426 +404,3,346 +404,4,427 +405,4,428 +405,5,428 +405,6,428 +406,4,429 +406,5,429 +406,6,429 +407,4,430 +407,5,430 +407,6,430 +408,4,431 +408,5,431 +408,6,431 +409,4,432 +409,5,432 +409,6,432 +410,4,433 +410,5,433 +410,6,433 +411,4,434 +411,5,434 +411,6,434 +412,4,435 +412,5,435 +412,6,435 +413,4,436 +413,5,436 +413,6,436 +414,4,437 +414,5,437 +414,6,437 +415,4,438 +415,5,438 +415,6,438 +416,4,439 +416,5,439 +416,6,439 +417,4,440 +417,5,440 +417,6,440 +418,4,441 +418,5,441 +418,6,441 +419,3,361 +419,4,442 +419,5,442 +419,6,442 +420,3,362 +420,4,443 +420,5,443 +420,6,443 +421,3,260 +421,4,444 +421,5,444 +421,6,444 +422,3,262 +422,4,445 +422,5,445 +422,6,445 +423,3,263 +423,4,446 +423,5,446 +423,6,446 +424,3,264 +424,4,447 +424,5,447 +424,6,447 +425,4,448 +425,5,448 +425,6,448 +426,4,449 +426,5,449 +426,6,449 +427,3,360 +427,4,450 +427,5,450 +427,6,713 +428,4,451 +428,5,451 +428,6,451 +429,4,452 +429,5,452 +429,6,452 +430,4,453 +430,5,453 +430,6,453 +431,4,454 +431,5,454 +431,6,454 +432,4,455 +432,5,455 +432,6,455 +433,3,265 +433,4,456 +433,5,456 +433,6,456 +434,3,266 +434,4,457 +434,5,457 +434,6,457 +435,4,458 +435,5,458 +435,6,458 +436,4,459 +436,5,459 +436,6,459 +437,4,460 +437,5,460 +437,6,460 +438,4,461 +438,5,461 +438,6,461 +439,4,462 +439,5,462 +439,6,462 +440,3,285 +440,4,463 +440,5,463 +440,6,463 +441,4,464 +441,5,464 +441,6,464 +442,4,112 +442,5,112 +442,6,112 +443,4,465 +443,5,465 +443,6,465 +444,4,466 +444,5,466 +444,6,466 +445,3,351 +445,4,467 +445,5,467 +445,6,467 +446,4,468 +446,5,468 +446,6,468 +447,4,470 +447,5,470 +447,6,470 +448,4,477 +448,5,477 +448,6,477 +449,4,494 +449,5,494 +449,6,494 +450,4,493 +450,5,493 +450,6,493 +451,4,498 +451,5,498 +451,6,498 +452,4,495 +452,5,495 +452,6,495 +453,4,492 +453,5,492 +453,6,492 +454,4,497 +454,5,497 +454,6,497 +455,4,496 +455,5,496 +455,6,496 +456,4,500 +456,5,500 +456,6,500 +457,4,499 +457,5,499 +457,6,499 +458,4,485 +458,5,485 +458,6,485 +459,4,487 +459,5,486 +459,6,486 +460,4,486 +460,5,487 +460,6,487 +461,4,488 +461,5,488 +461,6,488 +462,4,489 +462,5,489 +462,6,489 +463,4,490 +463,5,490 +463,6,490 +464,4,491 +464,5,491 +464,6,491 +465,3,261 +465,4,471 +465,5,471 +465,6,471 +466,4,504 +466,5,504 +466,6,504 +467,3,276 +467,4,534 +467,5,534 +467,6,534 +468,3,277 +468,4,535 +468,5,535 +468,6,535 +469,4,532 +469,5,532 +469,6,532 +470,4,536 +470,5,536 +470,6,536 +471,4,469 +471,5,469 +471,6,469 +472,4,472 +472,5,472 +472,6,472 +473,4,473 +473,5,473 +473,6,473 +474,4,474 +474,5,474 +474,6,474 +475,3,355 +475,4,475 +475,5,475 +475,6,475 +476,3,271 +476,4,476 +476,5,476 +476,6,476 +477,4,478 +477,5,478 +477,6,478 +478,4,479 +478,5,479 +478,6,479 +479,4,480 +479,5,480 +479,6,480 +480,4,481 +480,5,481 +480,6,481 +481,4,482 +481,5,482 +481,6,482 +482,4,483 +482,5,483 +482,6,483 +483,4,484 +483,5,484 +483,6,484 +484,4,502 +484,5,502 +484,6,502 +485,4,503 +485,5,503 +485,6,503 +486,4,505 +486,5,505 +486,6,505 +487,4,506 +487,5,506 +487,6,506 +488,4,507 +488,5,507 +488,6,507 +489,4,508 +489,5,508 +489,6,508 +490,4,509 +490,5,509 +490,6,509 +491,4,510 +491,5,510 +491,6,510 +492,4,511 +492,5,511 +492,6,511 +493,4,512 +493,5,512 +493,6,512 +494,4,513 +494,5,513 +494,6,513 +495,4,514 +495,5,514 +495,6,514 +496,4,515 +496,5,515 +496,6,515 +497,4,516 +497,5,516 +497,6,516 +498,4,517 +498,5,517 +498,6,517 +499,4,518 +499,5,518 +499,6,518 +500,4,519 +500,5,519 +500,6,519 +501,4,520 +501,5,520 +501,6,520 +502,4,521 +502,5,521 +502,6,521 +503,4,522 +503,5,522 +503,6,522 +504,4,523 +504,5,523 +504,6,523 +505,4,524 +505,5,524 +505,6,524 +506,4,525 +506,5,525 +506,6,525 +507,4,526 +507,5,526 +507,6,526 +508,4,527 +508,5,527 +508,6,527 +509,4,528 +509,5,528 +509,6,528 +510,4,529 +510,5,529 +510,6,529 +511,4,530 +511,5,530 +511,6,530 +512,4,531 +512,5,531 +512,6,531 +513,4,533 +513,5,533 +513,6,533 +514,4,501 +514,5,501 +514,6,501 +515,3,121 +516,3,122 +517,3,123 +518,3,124 +519,3,125 +520,3,126 +521,3,127 +522,3,128 +523,3,129 +524,3,130 +525,3,131 +526,3,132 +527,3,259 +528,3,272 +529,3,268 +530,3,269 +531,3,270 +532,3,273 +533,3,274 +534,3,275 +535,3,278 +536,3,279 +537,3,280 +538,3,281 +539,3,282 +540,3,283 +541,3,284 +542,3,288 +543,3,349 +544,3,350 +544,6,651 +545,3,352 +546,3,353 +547,3,356 +548,3,359 +549,3,363 +550,3,364 +551,3,365 +552,3,366 +553,3,367 +554,3,368 +555,3,369 +556,3,370 +557,3,371 +558,3,372 +559,3,373 +560,3,374 +561,3,375 +562,3,376 +563,5,116 +563,6,116 +564,5,117 +564,6,117 +565,5,118 +565,6,118 +566,5,119 +566,6,119 +567,5,134 +567,6,134 +568,5,137 +568,6,137 +569,5,138 +569,6,138 +570,5,139 +570,6,139 +571,5,140 +571,6,140 +572,5,141 +572,6,141 +573,5,142 +573,6,142 +574,5,143 +574,6,143 +575,5,144 +575,6,144 +576,5,145 +576,6,145 +577,5,146 +577,6,146 +578,5,147 +578,6,147 +579,5,148 +579,6,148 +580,5,537 +580,6,537 +581,5,538 +581,6,538 +582,5,539 +582,6,539 +583,5,540 +583,6,540 +584,5,541 +584,6,541 +585,5,542 +585,6,542 +586,5,543 +586,6,543 +587,5,544 +587,6,544 +588,5,545 +588,6,545 +589,5,546 +589,6,546 +590,5,547 +590,6,547 +591,5,548 +591,6,548 +592,5,549 +592,6,549 +593,5,550 +593,6,550 +594,5,551 +594,6,551 +595,5,552 +595,6,552 +596,5,553 +596,6,553 +597,5,554 +597,6,554 +598,5,555 +598,6,555 +599,5,556 +599,6,556 +600,5,557 +600,6,557 +601,5,558 +601,6,558 +602,5,559 +602,6,559 +603,5,560 +603,6,560 +604,5,562 +604,6,562 +605,5,563 +605,6,563 +606,5,565 +606,6,565 +607,5,566 +607,6,566 +608,5,567 +608,6,567 +609,5,568 +609,6,568 +610,5,569 +610,6,569 +611,5,570 +611,6,570 +612,5,571 +612,6,571 +613,5,572 +613,6,572 +614,5,573 +614,6,573 +615,5,574 +615,6,574 +616,5,575 +616,6,575 +617,5,576 +617,6,576 +618,5,577 +618,6,577 +619,5,578 +619,6,578 +620,5,579 +620,6,579 +621,5,580 +621,6,580 +622,5,581 +622,6,581 +623,5,582 +623,6,582 +624,5,583 +624,6,583 +625,5,584 +625,6,584 +626,5,585 +626,6,585 +627,5,586 +627,6,586 +628,5,587 +628,6,587 +629,5,588 +629,6,588 +630,5,589 +630,6,589 +631,5,590 +631,6,590 +632,5,591 +632,6,591 +633,5,592 +633,6,592 +634,5,593 +634,6,593 +635,5,594 +635,6,594 +636,5,595 +636,6,595 +637,5,596 +637,6,596 +638,5,597 +638,6,597 +639,5,598 +639,6,598 +640,5,599 +640,6,599 +641,5,600 +641,6,600 +642,5,601 +642,6,601 +643,5,602 +643,6,602 +644,5,603 +644,6,603 +645,5,604 +645,6,604 +646,5,605 +646,6,605 +647,5,606 +647,6,606 +648,5,607 +648,6,607 +649,5,608 +649,6,608 +650,5,609 +650,6,609 +651,5,610 +651,6,610 +652,5,611 +652,6,611 +653,5,612 +653,6,612 +654,5,613 +654,6,613 +655,5,614 +655,6,614 +656,5,615 +656,6,615 +657,5,616 +657,6,616 +658,5,617 +658,6,617 +659,5,618 +659,6,618 +660,5,619 +660,6,619 +661,5,620 +661,6,620 +662,5,621 +662,6,621 +663,5,622 +663,6,622 +664,5,623 +664,6,623 +665,5,624 +665,6,624 +666,5,625 +666,6,625 +668,5,561 +668,6,561 +669,5,564 +669,6,564 +670,5,627 +670,6,627 +671,5,628 +671,6,628 +673,5,630 +673,6,630 +674,5,631 +674,6,631 +675,5,632 +675,6,632 +676,5,633 +676,6,633 +677,5,634 +677,6,634 +678,5,635 +678,6,635 +679,5,636 +679,6,636 +681,5,638 +681,6,638 +682,6,639 +683,6,640 +684,6,644 +685,6,645 +686,6,646 +687,6,647 +688,6,648 +689,6,649 +690,6,650 +691,6,652 +692,6,653 +693,6,654 +694,6,655 +695,6,656 +696,6,657 +697,6,658 +698,6,659 +699,6,660 +700,6,661 +701,6,662 +702,6,663 +703,6,664 +704,6,665 +705,6,666 +706,6,667 +707,6,668 +708,6,669 +709,6,670 +710,6,671 +711,6,672 +712,6,673 +713,6,674 +714,6,675 +715,6,676 +716,6,677 +717,6,678 +718,6,679 +719,6,680 +720,6,681 +721,6,682 +722,6,683 +723,6,686 +724,6,687 +725,6,688 +726,6,699 +727,6,704 +728,6,708 +729,6,710 +730,6,711 +731,6,715 +732,6,703 +733,6,700 +734,6,641 +735,6,702 +736,6,697 +737,6,705 +738,6,712 +739,6,696 +740,6,695 +741,6,642 +742,6,643 +743,6,689 +744,6,701 +745,6,690 +746,6,691 +747,6,692 +748,6,693 +749,6,694 diff --git a/data/v2/csv/item_names.csv b/data/v2/csv/item_names.csv new file mode 100644 index 00000000..dc0fdc8a --- /dev/null +++ b/data/v2/csv/item_names.csv @@ -0,0 +1,5157 @@ +item_id,local_language_id,name +1,1,マスターボール +1,3,마스터볼 +1,5,Master Ball +1,6,Meisterball +1,7,Master Ball +1,8,Master Ball +1,9,Master Ball +2,1,ハイパーボール +2,3,하이퍼볼 +2,5,Hyper Ball +2,6,Hyperball +2,7,Ultra Ball +2,8,Ultra Ball +2,9,Ultra Ball +3,1,スーパーボール +3,3,수퍼볼 +3,5,Super Ball +3,6,Superball +3,7,Super Ball +3,8,Mega Ball +3,9,Great Ball +4,1,モンスターボール +4,3,몬스터볼 +4,5,Poké Ball +4,6,Pokéball +4,7,Poké Ball +4,8,Poké Ball +4,9,Poké Ball +5,1,サファリボール +5,3,사파리볼 +5,5,Safari Ball +5,6,Safariball +5,7,Safari Ball +5,8,Safari Ball +5,9,Safari Ball +6,1,ネットボール +6,3,넷트볼 +6,5,Filet Ball +6,6,Netzball +6,7,Malla Ball +6,8,Rete Ball +6,9,Net Ball +7,1,ダイブボール +7,3,다이브볼 +7,5,Scuba Ball +7,6,Tauchball +7,7,Buceo Ball +7,8,Sub Ball +7,9,Dive Ball +8,1,ネストボール +8,3,네스트볼 +8,5,Faiblo Ball +8,6,Nestball +8,7,Nido Ball +8,8,Minor Ball +8,9,Nest Ball +9,1,リピートボール +9,3,리피드볼 +9,5,Bis Ball +9,6,Wiederball +9,7,Acopio Ball +9,8,Bis Ball +9,9,Repeat Ball +10,1,タイマーボール +10,3,타이마볼 +10,5,Chrono Ball +10,6,Timerball +10,7,Turno Ball +10,8,Timer Ball +10,9,Timer Ball +11,1,ゴージャスボール +11,3,럭셔리볼 +11,5,Luxe Ball +11,6,Luxusball +11,7,Lujo Ball +11,8,Chic Ball +11,9,Luxury Ball +12,1,プレミアボール +12,3,프레미어볼 +12,5,Honor Ball +12,6,Premierball +12,7,Honor Ball +12,8,Premier Ball +12,9,Premier Ball +13,1,ダークボール +13,3,다크볼 +13,5,Sombre Ball +13,6,Finsterball +13,7,Ocaso Ball +13,8,Scuro Ball +13,9,Dusk Ball +14,1,ヒールボール +14,3,힐볼 +14,5,Soin Ball +14,6,Heilball +14,7,Sana Ball +14,8,Cura Ball +14,9,Heal Ball +15,1,クイックボール +15,3,퀵볼 +15,5,Rapide Ball +15,6,Flottball +15,7,Veloz Ball +15,8,Velox Ball +15,9,Quick Ball +16,1,プレシャスボール +16,3,프레셔스볼 +16,5,Mémoire Ball +16,6,Jubelball +16,7,Gloria Ball +16,8,Pregio Ball +16,9,Cherish Ball +17,1,キズぐすり +17,3,상처약 +17,5,Potion +17,6,Trank +17,7,Poción +17,8,Pozione +17,9,Potion +18,1,どくけし +18,3,해독제 +18,5,Antidote +18,6,Gegengift +18,7,Antídoto +18,8,Antidoto +18,9,Antidote +19,1,やけどなおし +19,3,화상치료제 +19,5,Anti-Brûle +19,6,Feuerheiler +19,7,Antiquemar +19,8,Antiscottatura +19,9,Burn Heal +20,1,こおりなおし +20,3,얼음상태치료제 +20,5,Antigel +20,6,Eisheiler +20,7,Antihielo +20,8,Antigelo +20,9,Ice Heal +21,1,ねむけざまし +21,3,잠깨는약 +21,5,Réveil +21,6,Aufwecker +21,7,Despertar +21,8,Sveglia +21,9,Awakening +22,1,まひなおし +22,3,마비치료제 +22,5,Anti-Para +22,6,Para-Heiler +22,7,Antiparalizador +22,8,Antiparalisi +22,9,Paralyze Heal +23,1,かいふくのくすり +23,3,회복약 +23,5,Guérison +23,6,Top-Genesung +23,7,Restaurar Todo +23,8,Ricarica Totale +23,9,Full Restore +24,1,まんたんのくすり +24,3,풀회복약 +24,5,Potion Max +24,6,Top-Trank +24,7,Poción Máxima +24,8,Pozione Max +24,9,Max Potion +25,1,すごいキズぐすり +25,3,고급상처약 +25,5,Hyper Potion +25,6,Hypertrank +25,7,Hiperpoción +25,8,Iperpozione +25,9,Hyper Potion +26,1,いいキズぐすり +26,3,좋은상처약 +26,5,Super Potion +26,6,Supertrank +26,7,Superpoción +26,8,Superpozione +26,9,Super Potion +27,1,なんでもなおし +27,3,만병통치제 +27,5,Total Soin +27,6,Hyperheiler +27,7,Cura Total +27,8,Cura Totale +27,9,Full Heal +28,1,げんきのかけら +28,3,기력의조각 +28,5,Rappel +28,6,Beleber +28,7,Revivir +28,8,Revitalizzante +28,9,Revive +29,1,げんきのかたまり +29,3,기력의덩어리 +29,5,Rappel Max +29,6,Top-Beleber +29,7,Revivir Máximo +29,8,Revitalizz. Max +29,9,Max Revive +30,1,おいしいみず +30,3,맛있는물 +30,5,Eau Fraîche +30,6,Tafelwasser +30,7,Agua Fresca +30,8,Acqua Fresca +30,9,Fresh Water +31,1,サイコソーダ +31,3,미네랄사이다 +31,5,Soda Cool +31,6,Sprudel +31,7,Refresco +31,8,Gassosa +31,9,Soda Pop +32,1,ミックスオレ +32,3,후르츠밀크 +32,5,Limonade +32,6,Limonade +32,7,Limonada +32,8,Lemonsucco +32,9,Lemonade +33,1,モーモーミルク +33,3,튼튼밀크 +33,5,Lait Meumeu +33,6,Kuhmuh-Milch +33,7,Leche Mu-mu +33,8,Latte Mumu +33,9,Moomoo Milk +34,1,ちからのこな +34,3,힘의가루 +34,5,Poudrénergie +34,6,Energiestaub +34,7,Polvo Energía +34,8,Polvenergia +34,9,Energy Powder +35,1,ちからのねっこ +35,3,힘의뿌리 +35,5,Racinénergie +35,6,Kraftwurzel +35,7,Raíz Energía +35,8,Radicenergia +35,9,Energy Root +36,1,ばんのうごな +36,3,만능가루 +36,5,Poudre Soin +36,6,Heilpuder +36,7,Polvo Curación +36,8,Polvocura +36,9,Heal Powder +37,1,ふっかつそう +37,3,부활초 +37,5,Herbe Rappel +37,6,Vitalkraut +37,7,Hierba Revivir +37,8,Vitalerba +37,9,Revival Herb +38,1,ピーピーエイド +38,3,PP에이드 +38,5,Huile +38,6,Äther +38,7,Éter +38,8,Etere +38,9,Ether +39,1,ピーピーリカバー +39,3,PP회복 +39,5,Huile Max +39,6,Top-Äther +39,7,Éter Máximo +39,8,Etere Max +39,9,Max Ether +40,1,ピーピーエイダー +40,3,PP에이더 +40,5,Élixir +40,6,Elixier +40,7,Elixir +40,8,Elisir +40,9,Elixir +41,1,ピーピーマックス +41,3,PP맥스 +41,5,Max Élixir +41,6,Top-Elixier +41,7,Elixir Máximo +41,8,Elisir Max +41,9,Max Elixir +42,1,フエンせんべい +42,3,용암전병 +42,5,Lava Cookie +42,6,Lavakeks +42,7,Galleta Lava +42,8,Lavottino +42,9,Lava Cookie +43,1,きのみジュース +43,3,나무열매쥬스 +43,5,Jus de Baie +43,6,Beerensaft +43,7,Zumo de Baya +43,8,Succodibacca +43,9,Berry Juice +44,1,せいなるはい +44,3,성스러운분말 +44,5,Cendre Sacrée +44,6,Zauberasche +44,7,Ceniza Sagrada +44,8,Ceneremagica +44,9,Sacred Ash +45,1,マックスアップ +45,3,맥스업 +45,5,PV Plus +45,6,KP-Plus +45,7,Más PS +45,8,PS-Su +45,9,HP Up +46,1,タウリン +46,3,타우린 +46,5,Protéine +46,6,Protein +46,7,Proteína +46,8,Proteina +46,9,Protein +47,1,ブロムヘキシン +47,3,사포닌 +47,5,Fer +47,6,Eisen +47,7,Hierro +47,8,Ferro +47,9,Iron +48,1,インドメタシン +48,3,알칼로이드 +48,5,Carbone +48,6,Carbon +48,7,Carburante +48,8,Carburante +48,9,Carbos +49,1,リゾチウム +49,3,리보플라빈 +49,5,Calcium +49,6,Kalzium +49,7,Calcio +49,8,Calcio +49,9,Calcium +50,1,ふしぎなアメ +50,3,이상한사탕 +50,5,Super Bonbon +50,6,Sonderbonbon +50,7,Caramelo Raro +50,8,Caramella Rara +50,9,Rare Candy +51,1,ポイントアップ +51,3,포인트업 +51,5,PP Plus +51,6,AP-Plus +51,7,Más PP +51,8,PP-Su +51,9,PP Up +52,1,キトサン +52,3,키토산 +52,5,Zinc +52,6,Zink +52,7,Zinc +52,8,Zinco +52,9,Zinc +53,1,ポイントマックス +53,3,포인트맥스 +53,5,PP Max +53,6,AP-Top +53,7,PP Máximos +53,8,PP-Max +53,9,PP Max +54,1,もりのヨウカン +54,3,숲의양갱 +54,5,Vieux Gâteau +54,6,Spezialität +54,7,Barrita Plus +54,8,Dolce Gateau +54,9,Old Gateau +55,1,エフェクトガード +55,3,이펙트가드 +55,5,Défense Spéciale +55,6,Megablock +55,7,Protec. Especial +55,8,Superguardia +55,9,Guard Spec. +56,1,クリティカット +56,3,크리티컬커터 +56,5,Muscle + +56,6,Angriffplus +56,7,Directo +56,8,Supercolpo +56,9,Dire Hit +57,1,プラスパワー +57,3,플러스파워 +57,5,Attaque + +57,6,X-Angriff +57,7,Ataque X +57,8,Attacco X +57,9,X Attack +58,1,ディフェンダー +58,3,디펜드업 +58,5,Défense + +58,6,X-Abwehr +58,7,Defensa X +58,8,Difesa X +58,9,X Defense +59,1,スピーダー +59,3,스피드업 +59,5,Vitesse + +59,6,X-Tempo +59,7,Velocidad X +59,8,Velocità X +59,9,X Speed +60,1,ヨクアタール +60,3,잘-맞히기 +60,5,Précision + +60,6,X-Treffer +60,7,Precisión X +60,8,Precisione X +60,9,X Accuracy +61,1,スペシャルアップ +61,3,스페셜업 +61,5,Spécial + +61,6,X-Spezial +61,7,Especial X +61,8,Special X +61,9,X Sp. Atk +62,1,スペシャルガード +62,3,스페셜가드 +62,5,Déf. Spé. + +62,6,X-SpezialVer +62,7,Def. Especial X +62,8,Dif. Speciale X +62,9,X Sp. Def +63,1,ピッピにんぎょう +63,3,삐삐인형 +63,5,Poképoupée +63,6,Poképuppe +63,7,Poké Muñeco +63,8,Poké Bambola +63,9,Poké Doll +64,1,エネコのシッポ +64,3,에나비꼬리 +64,5,Queue Skitty +64,6,Eneco-Rute +64,7,Cola Skitty +64,8,Coda Skitty +64,9,Fluffy Tail +65,1,あおいビードロ +65,3,파랑비드로 +65,5,Flûte Bleue +65,6,Blaue Flöte +65,7,Flauta Azul +65,8,Flauto Blu +65,9,Blue Flute +66,1,きいろビードロ +66,3,노랑비드로 +66,5,Flûte Jaune +66,6,Gelbe Flöte +66,7,Flauta Amarilla +66,8,Flauto Giallo +66,9,Yellow Flute +67,1,あかいビードロ +67,3,빨강비드로 +67,5,Flûte Rouge +67,6,Rote Flöte +67,7,Flauta Roja +67,8,Flauto Rosso +67,9,Red Flute +68,1,くろいビードロ +68,3,검정비드로 +68,5,Flûte Noire +68,6,Schw. Flöte +68,7,Flauta Negra +68,8,Flauto Nero +68,9,Black Flute +69,1,しろいビードロ +69,3,하양비드로 +69,5,Flûte Blanche +69,6,Weiße Flöte +69,7,Flauta Blanca +69,8,Flauto Bianco +69,9,White Flute +70,1,あさせのしお +70,3,여울소금 +70,5,Sel Tréfonds +70,6,Küstensalz +70,7,Sal Cardumen +70,8,Sale Ondoso +70,9,Shoal Salt +71,1,あさせのかいがら +71,3,여울조개껍질 +71,5,CoquilleTréfonds +71,6,Küstenschale +71,7,Concha Cardumen +71,8,Gusciondoso +71,9,Shoal Shell +72,1,あかいかけら +72,3,빨강조각 +72,5,Tesson Rouge +72,6,Purpurstück +72,7,Parte Roja +72,8,Coccio Rosso +72,9,Red Shard +73,1,あおいかけら +73,3,파랑조각 +73,5,Tesson Bleu +73,6,Indigostück +73,7,Parte Azul +73,8,Coccio Blu +73,9,Blue Shard +74,1,きいろいかけら +74,3,노랑조각 +74,5,Tesson Jaune +74,6,Gelbstück +74,7,Parte Amarilla +74,8,Coccio Giallo +74,9,Yellow Shard +75,1,みどりのかけら +75,3,초록조각 +75,5,Tesson Vert +75,6,Grünstück +75,7,Parte Verde +75,8,Coccio Verde +75,9,Green Shard +76,1,シルバースプレー +76,3,실버스프레이 +76,5,Superepousse +76,6,Superschutz +76,7,Superrepelente +76,8,Superrepellente +76,9,Super Repel +77,1,ゴールドスプレー +77,3,골드스프레이 +77,5,Max Repousse +77,6,Top-Schutz +77,7,Repelente Máximo +77,8,Repellente Max +77,9,Max Repel +78,1,あなぬけのヒモ +78,3,동굴탈출로프 +78,5,Corde Sortie +78,6,Fluchtseil +78,7,Cuerda Huida +78,8,Fune di Fuga +78,9,Escape Rope +79,1,むしよけスプレー +79,3,벌레회피스프레이 +79,5,Repousse +79,6,Schutz +79,7,Repelente +79,8,Repellente +79,9,Repel +80,1,たいようのいし +80,3,태양의돌 +80,5,Pierre Soleil +80,6,Sonnenstein +80,7,Piedra Solar +80,8,Pietrasolare +80,9,Sun Stone +81,1,つきのいし +81,3,달의돌 +81,5,Pierre Lune +81,6,Mondstein +81,7,Piedra Lunar +81,8,Pietralunare +81,9,Moon Stone +82,1,ほのおのいし +82,3,불꽃의돌 +82,5,Pierre Feu +82,6,Feuerstein +82,7,Piedra Fuego +82,8,Pietrafocaia +82,9,Fire Stone +83,1,かみなりのいし +83,3,천둥의돌 +83,5,Pierre Foudre +83,6,Donnerstein +83,7,Piedra Trueno +83,8,Pietratuono +83,9,Thunder Stone +84,1,みずのいし +84,3,물의돌 +84,5,Pierre Eau +84,6,Wasserstein +84,7,Piedra Agua +84,8,Pietraidrica +84,9,Water Stone +85,1,リーフのいし +85,3,리프의돌 +85,5,Pierre Plante +85,6,Blattstein +85,7,Piedra Hoja +85,8,Pietrafoglia +85,9,Leaf Stone +86,1,ちいさなキノコ +86,3,작은버섯 +86,5,Petit Champi +86,6,Minipilz +86,7,Mini Seta +86,8,Minifungo +86,9,Tiny Mushroom +87,1,おおきなキノコ +87,3,큰버섯 +87,5,Gros Champi +87,6,Riesenpilz +87,7,Seta Grande +87,8,Grande Fungo +87,9,Big Mushroom +88,1,しんじゅ +88,3,진주 +88,5,Perle +88,6,Perle +88,7,Perla +88,8,Perla +88,9,Pearl +89,1,おおきなしんじゅ +89,3,큰진주 +89,5,Grande Perle +89,6,Riesenperle +89,7,Perla Grande +89,8,Grande Perla +89,9,Big Pearl +90,1,ほしのすな +90,3,별의모래 +90,5,Poussière Étoile +90,6,Sternenstaub +90,7,Polvoestelar +90,8,Polvostella +90,9,Stardust +91,1,ほしのかけら +91,3,별의조각 +91,5,Morceau d'Étoile +91,6,Sternenstück +91,7,Trozo Estrella +91,8,Pezzo Stella +91,9,Star Piece +92,1,きんのたま +92,3,금구슬 +92,5,Pépite +92,6,Nugget +92,7,Pepita +92,8,Pepita +92,9,Nugget +93,1,ハートのウロコ +93,3,하트비늘 +93,5,Écaille Cœur +93,6,Herzschuppe +93,7,Escama Corazón +93,8,Squama Cuore +93,9,Heart Scale +94,1,あまいミツ +94,3,달콤한꿀 +94,5,Miel +94,6,Honig +94,7,Miel +94,8,Miele +94,9,Honey +95,1,すくすくこやし +95,3,무럭무럭비료 +95,5,Fertipousse +95,6,Wachsmulch +95,7,Abono Rápido +95,8,Fertilrapido +95,9,Growth Mulch +96,1,じめじめこやし +96,3,축축이비료 +96,5,Fertihumide +96,6,Feuchtmulch +96,7,Abono Lento +96,8,Fertilidro +96,9,Damp Mulch +97,1,ながながこやし +97,3,오래오래비료 +97,5,Fertistable +97,6,Stabilmulch +97,7,Abono Fijador +97,8,Fertilsaldo +97,9,Stable Mulch +98,1,ねばねばこやし +98,3,끈적끈적비료 +98,5,Fertiglu +98,6,Neumulch +98,7,Abono Brote +98,8,Fertilcolla +98,9,Gooey Mulch +99,1,ねっこのカセキ +99,3,뿌리화석 +99,5,Fossile Racine +99,6,Wurzelfossil +99,7,Fósil Raíz +99,8,Radifossile +99,9,Root Fossil +100,1,ツメのカセキ +100,3,발톱화석 +100,5,Fossile Griffe +100,6,Klauenfossil +100,7,Fósil Garra +100,8,Fossilunghia +100,9,Claw Fossil +101,1,かいのカセキ +101,3,조개화석 +101,5,Nautile +101,6,Helixfossil +101,7,Fósil Hélix +101,8,Helixfossile +101,9,Helix Fossil +102,1,こうらのカセキ +102,3,껍질화석 +102,5,Fossile Dôme +102,6,Domfossil +102,7,Fósil Domo +102,8,Domofossile +102,9,Dome Fossil +103,1,ひみつのコハク +103,3,비밀의호박 +103,5,Vieil Ambre +103,6,Altbernstein +103,7,Ámbar Viejo +103,8,Ambra Antica +103,9,Old Amber +104,1,たてのカセキ +104,3,방패의화석 +104,5,Fossile Armure +104,6,Panzerfossil +104,7,Fósil Coraza +104,8,Fossilscudo +104,9,Armor Fossil +105,1,ずがいのカセキ +105,3,두개의화석 +105,5,Fossile Crâne +105,6,Kopffossil +105,7,Fósil Cráneo +105,8,Fossilcranio +105,9,Skull Fossil +106,1,きちょうなホネ +106,3,귀중한뼈 +106,5,Os Rare +106,6,Steinknochen +106,7,Hueso Raro +106,8,Osso Raro +106,9,Rare Bone +107,1,ひかりのいし +107,3,빛의돌 +107,5,Pierre Éclat +107,6,Leuchtstein +107,7,Piedra Día +107,8,Pietrabrillo +107,9,Shiny Stone +108,1,やみのいし +108,3,어둠의돌 +108,5,Pierre Nuit +108,6,Finsterstein +108,7,Piedra Noche +108,8,Neropietra +108,9,Dusk Stone +109,1,めざめいし +109,3,각성의돌 +109,5,Pierre Aube +109,6,Funkelstein +109,7,Piedra Alba +109,8,Pietralbore +109,9,Dawn Stone +110,1,まんまるいし +110,3,동글동글돌 +110,5,Pierre Ovale +110,6,Ovaler Stein +110,7,Piedra Oval +110,8,Pietraovale +110,9,Oval Stone +111,1,かなめいし +111,3,쐐기돌 +111,5,Clé de Voûte +111,6,Spiritkern +111,7,Piedra Espíritu +111,8,Roccianima +111,9,Odd Keystone +112,1,こんごうだま +112,3,금강옥 +112,5,Orbe Adamant +112,6,Adamant-Orb +112,7,Diamansfera +112,8,Adamasfera +112,9,Adamant Orb +113,1,しらたま +113,3,백옥 +113,5,Orbe Perlé +113,6,Weiß-Orb +113,7,Lustresfera +113,8,Splendisfera +113,9,Lustrous Orb +114,1,グラスメール +114,5,Lettre Herbe +114,6,Wiesenbrief +114,7,Carta Hierba +114,8,Mess. Erba +114,9,Grass Mail +115,1,フレイムメール +115,5,Lettre Feu +115,6,Feuerbrief +115,7,Carta Fuego +115,8,Mess. Fiamma +115,9,Flame Mail +116,1,ブルーメール +116,5,Lettre Mer +116,6,Wasserbrief +116,7,Carta Pompas +116,8,Mess. Bolla +116,9,Bubble Mail +117,1,ブルームメール +117,5,Lett. Pétale +117,6,Blütenbrief +117,7,Carta Flores +117,8,Mess. Petalo +117,9,Bloom Mail +118,1,トンネルメール +118,5,Lettre Mine +118,6,Minenbrief +118,7,Carta Mina +118,8,Mess. Tunnel +118,9,Tunnel Mail +119,1,スチールメール +119,5,Lettre Acier +119,6,Stahlbrief +119,7,Carta Acero +119,8,Mess. Lega +119,9,Steel Mail +120,1,ラブラブメール +120,5,Lettre Coeur +120,6,Rosabrief +120,7,Car. Corazón +120,8,Mess. Cuore +120,9,Heart Mail +121,1,ブリザードメール +121,5,Lettre Neige +121,6,Schneebrief +121,7,Carta Nieve +121,8,Mess. Neve +121,9,Snow Mail +122,1,スペースメール +122,5,Lettre Cosmo +122,6,Sternbrief +122,7,Car. Sideral +122,8,Mess. Spazio +122,9,Space Mail +123,1,エアメール +123,5,Lettre Avion +123,6,Luftbrief +123,7,Carta Aérea +123,8,Mess. Aereo +123,9,Air Mail +124,1,モザイクメール +124,5,Lettremosaïk +124,6,Mosaikbrief +124,7,Car. Mosaico +124,8,Mess. Iride +124,9,Mosaic Mail +125,1,ブリックメール +125,5,Lettre Brik +125,6,Ziegelbrief +125,7,Carta Pared +125,8,Mess. Muro +125,9,Brick Mail +126,1,クラボのみ +126,3,버치열매 +126,5,Baie Ceriz +126,6,Amrenabeere +126,7,Baya Zreza +126,8,Baccaliegia +126,9,Cheri Berry +127,1,カゴのみ +127,3,유루열매 +127,5,Baie Maron +127,6,Maronbeere +127,7,Baya Atania +127,8,Baccastagna +127,9,Chesto Berry +128,1,モモンのみ +128,3,복슝열매 +128,5,Baie Pêcha +128,6,Pirsifbeere +128,7,Baya Meloc +128,8,Baccapesca +128,9,Pecha Berry +129,1,チーゴのみ +129,3,복분열매 +129,5,Baie Fraive +129,6,Fragiabeere +129,7,Baya Safre +129,8,Baccafrago +129,9,Rawst Berry +130,1,ナナシのみ +130,3,배리열매 +130,5,Baie Willia +130,6,Wilbirbeere +130,7,Baya Perasi +130,8,Baccaperina +130,9,Aspear Berry +131,1,ヒメリのみ +131,3,과사열매 +131,5,Baie Mepo +131,6,Jonagobeere +131,7,Baya Zanama +131,8,Baccamela +131,9,Leppa Berry +132,1,オレンのみ +132,3,오랭열매 +132,5,Baie Oran +132,6,Sinelbeere +132,7,Baya Aranja +132,8,Baccarancia +132,9,Oran Berry +133,1,キーのみ +133,3,시몬열매 +133,5,Baie Kika +133,6,Persimbeere +133,7,Baya Caquic +133,8,Baccaki +133,9,Persim Berry +134,1,ラムのみ +134,3,리샘열매 +134,5,Baie Prine +134,6,Prunusbeere +134,7,Baya Ziuela +134,8,Baccaprugna +134,9,Lum Berry +135,1,オボンのみ +135,3,자뭉열매 +135,5,Baie Sitrus +135,6,Tsitrubeere +135,7,Baya Zidra +135,8,Baccacedro +135,9,Sitrus Berry +136,1,フィラのみ +136,3,무화열매 +136,5,Baie Figuy +136,6,Giefebeere +136,7,Baya Higog +136,8,Baccafico +136,9,Figy Berry +137,1,ウイのみ +137,3,위키열매 +137,5,Baie Wiki +137,6,Wikibeere +137,7,Baya Wiki +137,8,Baccakiwi +137,9,Wiki Berry +138,1,マゴのみ +138,3,마고열매 +138,5,Baie Mago +138,6,Magobeere +138,7,Baya Ango +138,8,Baccamango +138,9,Mago Berry +139,1,バンジのみ +139,3,아바열매 +139,5,Baie Gowav +139,6,Gauvebeere +139,7,Baya Guaya +139,8,Baccaguava +139,9,Aguav Berry +140,1,イアのみ +140,3,파야열매 +140,5,Baie Papaya +140,6,Yapabeere +140,7,Baya Pabaya +140,8,Baccapaia +140,9,Iapapa Berry +141,1,ズリのみ +141,3,라즈열매 +141,5,Baie Framby +141,6,Himmihbeere +141,7,Baya Frambu +141,8,Baccalampon +141,9,Razz Berry +142,1,ブリーのみ +142,3,블리열매 +142,5,Baie Remu +142,6,Morbbeere +142,7,Baya Oram +142,8,Baccamora +142,9,Bluk Berry +143,1,ナナのみ +143,3,나나열매 +143,5,Baie Nanab +143,6,Nanabbeere +143,7,Baya Latano +143,8,Baccabana +143,9,Nanab Berry +144,1,セシナのみ +144,3,서배열매 +144,5,Baie Repoi +144,6,Nirbebeere +144,7,Baya Peragu +144,8,Baccapera +144,9,Wepear Berry +145,1,パイルのみ +145,3,파인열매 +145,5,Baie Nanana +145,6,Sananabeere +145,7,Baya Pinia +145,8,Baccananas +145,9,Pinap Berry +146,1,ザロクのみ +146,3,유석열매 +146,5,Baie Grena +146,6,Granabeere +146,7,Baya Grana +146,8,Baccagrana +146,9,Pomeg Berry +147,1,ネコブのみ +147,3,시마열매 +147,5,Baie Alga +147,6,Setangbeere +147,7,Baya Algama +147,8,Baccalga +147,9,Kelpsy Berry +148,1,タポルのみ +148,3,파비열매 +148,5,Baie Qualot +148,6,Qualotbeere +148,7,Baya Ispero +148,8,Baccaloquat +148,9,Qualot Berry +149,1,ロメのみ +149,3,로매열매 +149,5,Baie Lonme +149,6,Honmelbeere +149,7,Baya Meluce +149,8,Baccamelon +149,9,Hondew Berry +150,1,ウブのみ +150,3,또뽀열매 +150,5,Baie Résin +150,6,Labrusbeere +150,7,Baya Uvav +150,8,Baccauva +150,9,Grepa Berry +151,1,マトマのみ +151,3,토망열매 +151,5,Baie Tamato +151,6,Tamotbeere +151,7,Baya Tamate +151,8,Baccamodoro +151,9,Tamato Berry +152,1,モコシのみ +152,3,수숙열매 +152,5,Baie Siam +152,6,Saimbeere +152,7,Baya Mais +152,8,Baccavena +152,9,Cornn Berry +153,1,ゴスのみ +153,3,고스티열매 +153,5,Baie Mangou +153,6,Magostbeere +153,7,Baya Aostan +153,8,Baccagostan +153,9,Magost Berry +154,1,ラブタのみ +154,3,라부탐열매 +154,5,Baie Rabuta +154,6,Rabutabeere +154,7,Baya Rautan +154,8,Baccambutan +154,9,Rabuta Berry +155,1,ノメルのみ +155,3,노멜열매 +155,5,Baie Tronci +155,6,Tronzibeere +155,7,Baya Monli +155,8,Baccalemon +155,9,Nomel Berry +156,1,ノワキのみ +156,3,메호키열매 +156,5,Baie Kiwan +156,6,Kiwanbeere +156,7,Baya Wikano +156,8,Baccamelos +156,9,Spelon Berry +157,1,シーヤのみ +157,3,자야열매 +157,5,Baie Palma +157,6,Pallmbeere +157,7,Baya Plama +157,8,Baccapalma +157,9,Pamtre Berry +158,1,カイスのみ +158,3,슈박열매 +158,5,Baie Stekpa +158,6,Wasmelbeere +158,7,Baya Sambia +158,8,Baccacomero +158,9,Watmel Berry +159,1,ドリのみ +159,3,두리열매 +159,5,Baie Durin +159,6,Durinbeere +159,7,Baya Rudion +159,8,Baccadurian +159,9,Durin Berry +160,1,ベリブのみ +160,3,루베열매 +160,5,Baie Myrte +160,6,Myrtilbeere +160,7,Baya Andano +160,8,Baccartillo +160,9,Belue Berry +161,1,オッカのみ +161,3,오카열매 +161,5,Baie Chocco +161,6,Koakobeere +161,7,Baya Caoca +161,8,Baccacao +161,9,Occa Berry +162,1,イトケのみ +162,3,꼬시개열매 +162,5,Baie Pocpoc +162,6,Foepasbeere +162,7,Baya Pasio +162,8,Baccapasflo +162,9,Passho Berry +163,1,ソクノのみ +163,3,초나열매 +163,5,Baie Parma +163,6,Kerzalbeere +163,7,Baya Gualot +163,8,Baccaparmen +163,9,Wacan Berry +164,1,リンドのみ +164,3,린드열매 +164,5,Baie Ratam +164,6,Grindobeere +164,7,Baya Tamar +164,8,Baccarindo +164,9,Rindo Berry +165,1,ヤチェのみ +165,3,플카열매 +165,5,Baie Nanone +165,6,Kiroyabeere +165,7,Baya Rimoya +165,8,Baccamoya +165,9,Yache Berry +166,1,ヨプのみ +166,3,로플열매 +166,5,Baie Pomroz +166,6,Rospelbeere +166,7,Baya Pomaro +166,8,Baccarosmel +166,9,Chople Berry +167,1,ビアーのみ +167,3,으름열매 +167,5,Baie Kébia +167,6,Grarzbeere +167,7,Baya Kebia +167,8,Baccakebia +167,9,Kebia Berry +168,1,シュカのみ +168,3,슈캐열매 +168,5,Baie Jouca +168,6,Schukebeere +168,7,Baya Acardo +168,8,Baccanaca +168,9,Shuca Berry +169,1,バコウのみ +169,3,바코열매 +169,5,Baie Cobaba +169,6,Kobabeere +169,7,Baya Kouba +169,8,Baccababa +169,9,Coba Berry +170,1,ウタンのみ +170,3,야파열매 +170,5,Baie Yapap +170,6,Pyapabeere +170,7,Baya Payapa +170,8,Baccapayapa +170,9,Payapa Berry +171,1,タンガのみ +171,3,리체열매 +171,5,Baie Panga +171,6,Tanigabeere +171,7,Baya Yecana +171,8,Baccaitan +171,9,Tanga Berry +172,1,ヨロギのみ +172,3,루미열매 +172,5,Baie Charti +172,6,Chiaribeere +172,7,Baya Alcho +172,8,Baccaciofo +172,9,Charti Berry +173,1,カシブのみ +173,3,수불열매 +173,5,Baie Sédra +173,6,Zitarzbeere +173,7,Baya Drasi +173,8,Baccacitrus +173,9,Kasib Berry +174,1,ハバンのみ +174,3,하반열매 +174,5,Baie Fraigo +174,6,Terirobeere +174,7,Baya Anjiro +174,8,Baccahaban +174,9,Haban Berry +175,1,ナモのみ +175,3,마코열매 +175,5,Baie Lampou +175,6,Burleobeere +175,7,Baya Dillo +175,8,Baccaxan +175,9,Colbur Berry +176,1,リリバのみ +176,3,바리비열매 +176,5,Baie Babiri +176,6,Babiribeere +176,7,Baya Baribá +176,8,Baccababiri +176,9,Babiri Berry +177,1,ホズのみ +177,3,카리열매 +177,5,Baie Zalis +177,6,Latchibeere +177,7,Baya Chilan +177,8,Baccacinlan +177,9,Chilan Berry +178,1,チイラのみ +178,3,치리열매 +178,5,Baie Lichii +178,6,Lydzibeere +178,7,Baya Lichi +178,8,Baccalici +178,9,Liechi Berry +179,1,リュガのみ +179,3,용아열매 +179,5,Baie Lingan +179,6,Linganbeere +179,7,Baya Gonlan +179,8,Baccalongan +179,9,Ganlon Berry +180,1,カムラのみ +180,3,캄라열매 +180,5,Baie Sailak +180,6,Salkabeere +180,7,Baya Aslac +180,8,Baccasalak +180,9,Salac Berry +181,1,ヤタピのみ +181,3,야타비열매 +181,5,Baie Pitaye +181,6,Tahaybeere +181,7,Baya Yapati +181,8,Baccapitaya +181,9,Petaya Berry +182,1,ズアのみ +182,3,규살열매 +182,5,Baie Abriko +182,6,Apikobeere +182,7,Baya Aricoc +182,8,Baccacocca +182,9,Apicot Berry +183,1,サンのみ +183,3,랑사열매 +183,5,Baie Lansat +183,6,Lansatbeere +183,7,Baya Zonlan +183,8,Baccalangsa +183,9,Lansat Berry +184,1,スターのみ +184,3,스타열매 +184,5,Baie Frista +184,6,Krambobeere +184,7,Baya Arabol +184,8,Baccambola +184,9,Starf Berry +185,1,ナゾのみ +185,3,의문열매 +185,5,Baie Enigma +185,6,Enigmabeere +185,7,Baya Enigma +185,8,Baccaenigma +185,9,Enigma Berry +186,1,ミクルのみ +186,3,미클열매 +186,5,Baie Micle +186,6,Wunfrubeere +186,7,Baya Lagro +186,8,Baccaracolo +186,9,Micle Berry +187,1,イバンのみ +187,3,애슈열매 +187,5,Baie Chérim +187,6,Eipfelbeere +187,7,Baya Chiri +187,8,Baccacrela +187,9,Custap Berry +188,1,ジャポのみ +188,3,자보열매 +188,5,Baie Jaboca +188,6,Jabocabeere +188,7,Baya Jaboca +188,8,Baccajaba +188,9,Jaboca Berry +189,1,レンブのみ +189,3,애터열매 +189,5,Baie Pommo +189,6,Roselbeere +189,7,Baya Magua +189,8,Baccaroam +189,9,Rowap Berry +190,1,ひかりのこな +190,3,반짝가루 +190,5,Poudre Claire +190,6,Blendpuder +190,7,Polvo Brillo +190,8,Luminpolvere +190,9,Bright Powder +191,1,しろいハーブ +191,3,하양허브 +191,5,Herbe Blanche +191,6,Schlohkraut +191,7,Hierba Blanca +191,8,Erbachiara +191,9,White Herb +192,1,きょうせいギプス +192,3,교정깁스 +192,5,Bracelet Macho +192,6,Machoband +192,7,Brazal Firme +192,8,Crescicappa +192,9,Macho Brace +193,1,がくしゅうそうち +193,3,학습장치 +193,5,Multi Exp +193,6,EP-Teiler +193,7,Repartir Exp +193,8,Condividi Esp. +193,9,Exp. Share +194,1,せんせいのツメ +194,3,선제공격손톱 +194,5,Vive Griffe +194,6,Flinkklaue +194,7,Garra Rápida +194,8,Rapidartigli +194,9,Quick Claw +195,1,やすらぎのすず +195,3,평온의방울 +195,5,Grelot Zen +195,6,Sanftglocke +195,7,Campana Alivio +195,8,Calmanella +195,9,Soothe Bell +196,1,メンタルハーブ +196,3,멘탈허브 +196,5,Herbe Mental +196,6,Mentalkraut +196,7,Hierba Mental +196,8,Mentalerba +196,9,Mental Herb +197,1,こだわりハチマキ +197,3,구애머리띠 +197,5,Bandeau Choix +197,6,Wahlband +197,7,Cinta Elegida +197,8,Bendascelta +197,9,Choice Band +198,1,おうじゃのしるし +198,3,왕의징표석 +198,5,Roche Royale +198,6,King-Stein +198,7,Roca del Rey +198,8,Roccia di Re +198,9,King's Rock +199,1,ぎんのこな +199,3,은빛가루 +199,5,Poudre Argentée +199,6,Silberstaub +199,7,Polvo Plata +199,8,Argenpolvere +199,9,Silver Powder +200,1,おまもりこばん +200,3,부적금화 +200,5,Pièce Rune +200,6,Münzamulett +200,7,Moneda Amuleto +200,8,Monetamuleto +200,9,Amulet Coin +201,1,きよめのおふだ +201,3,순결의부적 +201,5,Rune Purifiante +201,6,Schutzband +201,7,Amuleto +201,8,Velopuro +201,9,Cleanse Tag +202,1,こころのしずく +202,3,마음의물방울 +202,5,Rosée Âme +202,6,Seelentau +202,7,Rocío Bondad +202,8,Cuorugiada +202,9,Soul Dew +203,1,しんかいのキバ +203,3,심해의이빨 +203,5,Dent Océan +203,6,Abysszahn +203,7,Diente Marino +203,8,Dente Abissi +203,9,Deep Sea Tooth +204,1,しんかいのウロコ +204,3,심해의비늘 +204,5,Écaille Océan +204,6,Abyssplatte +204,7,Escama Marina +204,8,Squamabissi +204,9,Deep Sea Scale +205,1,けむりだま +205,3,연막탄 +205,5,Boule Fumée +205,6,Rauchball +205,7,Bola Humo +205,8,Palla Fumo +205,9,Smoke Ball +206,1,かわらずのいし +206,3,변함없는돌 +206,5,Pierre Stase +206,6,Ewigstein +206,7,Piedra Eterna +206,8,Pietrastante +206,9,Everstone +207,1,きあいのハチマキ +207,3,기합의머리띠 +207,5,Bandeau +207,6,Fokus-Band +207,7,Cinta Focus +207,8,Bandana +207,9,Focus Band +208,1,しあわせタマゴ +208,3,행복의알 +208,5,Œuf Chance +208,6,Glücks-Ei +208,7,Huevo Suerte +208,8,Fortunuovo +208,9,Lucky Egg +209,1,ピントレンズ +209,3,초점렌즈 +209,5,Lentilscope +209,6,Scope-Linse +209,7,Periscopio +209,8,Mirino +209,9,Scope Lens +210,1,メタルコート +210,3,금속코트 +210,5,Peau Métal +210,6,Metallmantel +210,7,Revest. Metálico +210,8,Metalcoperta +210,9,Metal Coat +211,1,たべのこし +211,3,먹다남은음식 +211,5,Restes +211,6,Überreste +211,7,Restos +211,8,Avanzi +211,9,Leftovers +212,1,りゅうのウロコ +212,3,용의비늘 +212,5,Écaille Draco +212,6,Drachenhaut +212,7,Escamadragón +212,8,Squama Drago +212,9,Dragon Scale +213,1,でんきだま +213,3,전기구슬 +213,5,Balle Lumière +213,6,Kugelblitz +213,7,Bolaluminosa +213,8,Elettropalla +213,9,Light Ball +214,1,やわらかいすな +214,3,부드러운모래 +214,5,Sable Doux +214,6,Pudersand +214,7,Arena Fina +214,8,Sabbia Soffice +214,9,Soft Sand +215,1,かたいいし +215,3,딱딱한돌 +215,5,Pierre Dure +215,6,Granitstein +215,7,Piedra Dura +215,8,Pietradura +215,9,Hard Stone +216,1,きせきのタネ +216,3,기적의씨 +216,5,Grain Miracle +216,6,Wundersaat +216,7,Semilla Milagro +216,8,Miracolseme +216,9,Miracle Seed +217,1,くろいメガネ +217,3,검은안경 +217,5,Lunettes Noires +217,6,Schattenglas +217,7,Gafas de Sol +217,8,Occhialineri +217,9,Black Glasses +218,1,くろおび +218,3,검은띠 +218,5,Ceinture Noire +218,6,Schwarzgurt +218,7,Cinturón Negro +218,8,Cinturanera +218,9,Black Belt +219,1,じしゃく +219,3,자석 +219,5,Aimant +219,6,Magnet +219,7,Imán +219,8,Calamita +219,9,Magnet +220,1,しんぴのしずく +220,3,신비의물방울 +220,5,Eau Mystique +220,6,Zauberwasser +220,7,Agua Mística +220,8,Acqua Magica +220,9,Mystic Water +221,1,するどいくちばし +221,3,예리한부리 +221,5,Bec Pointu +221,6,Hackattack +221,7,Pico Afilado +221,8,Beccaffilato +221,9,Sharp Beak +222,1,どくバリ +222,3,독바늘 +222,5,Pic Venin +222,6,Giftstich +222,7,Flecha Venenosa +222,8,Velenaculeo +222,9,Poison Barb +223,1,とけないこおり +223,3,녹지않는얼음 +223,5,Glace Éternelle +223,6,Ewiges Eis +223,7,Antiderretir +223,8,Gelomai +223,9,Never-Melt Ice +224,1,のろいのおふだ +224,3,저주의부적 +224,5,Rune Sort +224,6,Bannsticker +224,7,Hechizo +224,8,Spettrotarga +224,9,Spell Tag +225,1,まがったスプーン +225,3,휘어진스푼 +225,5,Cuiller Tordue +225,6,Krummlöffel +225,7,Cuchara Torcida +225,8,Cucchiaio Torto +225,9,Twisted Spoon +226,1,もくたん +226,3,목탄 +226,5,Charbon +226,6,Holzkohle +226,7,Carbón +226,8,Carbonella +226,9,Charcoal +227,1,りゅうのキバ +227,3,용의이빨 +227,5,Croc Dragon +227,6,Drachenzahn +227,7,Colmillo Dragón +227,8,Dentedidrago +227,9,Dragon Fang +228,1,シルクのスカーフ +228,3,실크스카프 +228,5,Mouchoir Soie +228,6,Seidenschal +228,7,Pañuelo Seda +228,8,Sciarpa Seta +228,9,Silk Scarf +229,1,アップグレード +229,3,업그레이드 +229,5,Améliorator +229,6,Up-Grade +229,7,Mejora +229,8,Upgrade +229,9,Up-Grade +230,1,かいがらのすず +230,3,조개껍질방울 +230,5,Grelot Coque +230,6,Seegesang +230,7,Campana Concha +230,8,Conchinella +230,9,Shell Bell +231,1,うしおのおこう +231,3,바닷물향로 +231,5,Encens Mer +231,6,Seerauch +231,7,Incienso Marino +231,8,Marearoma +231,9,Sea Incense +232,1,のんきのおこう +232,3,무사태평향로 +232,5,Encens Doux +232,6,Laxrauch +232,7,Incienso Suave +232,8,Distraroma +232,9,Lax Incense +233,1,ラッキーパンチ +233,3,럭키펀치 +233,5,Poing Chance +233,6,Lucky Punch +233,7,Puño Suerte +233,8,Fortunpugno +233,9,Lucky Punch +234,1,メタルパウダー +234,3,금속파우더 +234,5,Poudre Métal +234,6,Metallstaub +234,7,Polvo Metálico +234,8,Metalpolvere +234,9,Metal Powder +235,1,ふといホネ +235,3,굵은뼈 +235,5,Masse Os +235,6,Kampfknochen +235,7,Hueso Grueso +235,8,Ossospesso +235,9,Thick Club +236,1,ながねぎ +236,3,대파 +236,5,Bâton +236,6,Lauchstange +236,7,Palo +236,8,Gambo +236,9,Stick +237,1,あかいバンダナ +237,3,빨강밴드 +237,5,Foulard Rouge +237,6,Roter Schal +237,7,Pañuelo Rojo +237,8,Fascia Rossa +237,9,Red Scarf +238,1,あおいバンダナ +238,3,파랑밴드 +238,5,Foulard Bleu +238,6,Blauer Schal +238,7,Pañuelo Azul +238,8,Fascia Blu +238,9,Blue Scarf +239,1,ピンクのバンダナ +239,3,분홍밴드 +239,5,Foulard Rose +239,6,Rosa Schal +239,7,Pañuelo Rosa +239,8,Fascia Rosa +239,9,Pink Scarf +240,1,みどりのバンダナ +240,3,초록밴드 +240,5,Foulard Vert +240,6,Grüner Schal +240,7,Pañuelo Verde +240,8,Fascia Verde +240,9,Green Scarf +241,1,きいろのバンダナ +241,3,노랑밴드 +241,5,Foulard Jaune +241,6,Gelber Schal +241,7,Pañuelo Amarillo +241,8,Fascia Gialla +241,9,Yellow Scarf +242,1,こうかくレンズ +242,3,광각렌즈 +242,5,Loupe +242,6,Großlinse +242,7,Lupa +242,8,Grandelente +242,9,Wide Lens +243,1,ちからのハチマキ +243,3,힘의머리띠 +243,5,Bandeau Muscle +243,6,Muskelband +243,7,Cinta Fuerte +243,8,Muscolbanda +243,9,Muscle Band +244,1,ものしりメガネ +244,3,박식안경 +244,5,Lunettes Sages +244,6,Schlauglas +244,7,Gafas Especiales +244,8,Saviocchiali +244,9,Wise Glasses +245,1,たつじんのおび +245,3,달인의띠 +245,5,Ceinture Pro +245,6,Expertengurt +245,7,Cinta Experto +245,8,Abilcintura +245,9,Expert Belt +246,1,ひかりのねんど +246,3,빛의점토 +246,5,Lumargile +246,6,Lichtlehm +246,7,Refleluz +246,8,Creta Luce +246,9,Light Clay +247,1,いのちのたま +247,3,생명의구슬 +247,5,Orbe Vie +247,6,Leben-Orb +247,7,Vidasfera +247,8,Assorbisfera +247,9,Life Orb +248,1,パワフルハーブ +248,3,파워풀허브 +248,5,Herbe Pouvoir +248,6,Energiekraut +248,7,Hierba Única +248,8,Vigorerba +248,9,Power Herb +249,1,どくどくだま +249,3,맹독구슬 +249,5,Orbe Toxique +249,6,Toxik-Orb +249,7,Toxisfera +249,8,Tossicsfera +249,9,Toxic Orb +250,1,かえんだま +250,3,화염구슬 +250,5,Orbe Flamme +250,6,Heiß-Orb +250,7,Llamasfera +250,8,Fiammosfera +250,9,Flame Orb +251,1,スピードパウダー +251,3,스피드파우더 +251,5,Poudre Vite +251,6,Flottstaub +251,7,Polvo Veloz +251,8,Velopolvere +251,9,Quick Powder +252,1,きあいのタスキ +252,3,기합의띠 +252,5,Ceinture Force +252,6,Fokusgurt +252,7,Banda Focus +252,8,Focalnastro +252,9,Focus Sash +253,1,フォーカスレンズ +253,3,포커스렌즈 +253,5,Lentille Zoom +253,6,Zoomlinse +253,7,Telescopio +253,8,Zoomlente +253,9,Zoom Lens +254,1,メトロノーム +254,3,메트로놈 +254,5,Métronome +254,6,Metronom +254,7,Metrónomo +254,8,Plessimetro +254,9,Metronome +255,1,くろいてっきゅう +255,3,검은철구 +255,5,Balle Fer +255,6,Eisenkugel +255,7,Bola Férrea +255,8,Ferropalla +255,9,Iron Ball +256,1,こうこうのしっぽ +256,3,느림보꼬리 +256,5,Ralentiqueue +256,6,Schwerschwf. +256,7,Cola Plúmbea +256,8,Rallentocoda +256,9,Lagging Tail +257,1,あかいいと +257,3,빨간실 +257,5,Nœud Destin +257,6,Fatumknoten +257,7,Lazo Destino +257,8,Destincomune +257,9,Destiny Knot +258,1,くろいヘドロ +258,3,검은진흙 +258,5,Boue Noire +258,6,Giftschleim +258,7,Lodo Negro +258,8,Fangopece +258,9,Black Sludge +259,1,つめたいいわ +259,3,차가운바위 +259,5,Roche Glace +259,6,Eisbrocken +259,7,Roca Helada +259,8,Rocciafredda +259,9,Icy Rock +260,1,さらさらいわ +260,3,보송보송바위 +260,5,Roche Lisse +260,6,Glattbrocken +260,7,Roca Suave +260,8,Roccialiscia +260,9,Smooth Rock +261,1,あついいわ +261,3,뜨거운바위 +261,5,Roche Chaude +261,6,Heißbrocken +261,7,Roca Calor +261,8,Rocciacalda +261,9,Heat Rock +262,1,しめったいわ +262,3,축축한바위 +262,5,Roche Humide +262,6,Nassbrocken +262,7,Roca Lluvia +262,8,Rocciaumida +262,9,Damp Rock +263,1,ねばりのかぎづめ +263,3,끈기갈고리손톱 +263,5,Accro Griffe +263,6,Griffklaue +263,7,Garra Garfio +263,8,Presartigli +263,9,Grip Claw +264,1,こだわりスカーフ +264,3,구애스카프 +264,5,Mouchoir Choix +264,6,Wahlschal +264,7,Pañuelo Elegido +264,8,Stolascelta +264,9,Choice Scarf +265,1,くっつきバリ +265,3,끈적끈적바늘 +265,5,Piquants +265,6,Klettdorn +265,7,Toxiestrella +265,8,Vischiopunta +265,9,Sticky Barb +266,1,パワーリスト +266,3,파워리스트 +266,5,Poignée Pouvoir +266,6,Machtreif +266,7,Brazal Recio +266,8,Vigorcerchio +266,9,Power Bracer +267,1,パワーベルト +267,3,파워벨트 +267,5,Ceinture Pouvoir +267,6,Machtgurt +267,7,Cinto Recio +267,8,Vigorfascia +267,9,Power Belt +268,1,パワーレンズ +268,3,파워렌즈 +268,5,Lentille Pouvoir +268,6,Machtlinse +268,7,Lente Recia +268,8,Vigorlente +268,9,Power Lens +269,1,パワーバンド +269,3,파워밴드 +269,5,Bandeau Pouvoir +269,6,Machtband +269,7,Banda Recia +269,8,Vigorbanda +269,9,Power Band +270,1,パワーアンクル +270,3,파워앵클릿 +270,5,Chaîne Pouvoir +270,6,Machtkette +270,7,Franja Recia +270,8,Vigorgliera +270,9,Power Anklet +271,1,パワーウエイト +271,3,파워웨이트 +271,5,Poids Pouvoir +271,6,Machtgewicht +271,7,Pesa Recia +271,8,Vigorpeso +271,9,Power Weight +272,1,きれいなぬけがら +272,3,아름다운허물 +272,5,Carapace Mue +272,6,Wechselhülle +272,7,Muda Concha +272,8,Disfoguscio +272,9,Shed Shell +273,1,おおきなねっこ +273,3,큰뿌리 +273,5,Grosse Racine +273,6,Großwurzel +273,7,Raíz Grande +273,8,Granradice +273,9,Big Root +274,1,こだわりメガネ +274,3,구애안경 +274,5,Lunettes Choix +274,6,Wahlglas +274,7,Gafas Elegid +274,8,Lentiscelta +274,9,Choice Specs +275,1,ひのたまプレート +275,3,불구슬플레이트 +275,5,Plaque Flamme +275,6,Feuertafel +275,7,Tabla Llama +275,8,Lastrarogo +275,9,Flame Plate +276,1,しずくプレート +276,3,물방울플레이트 +276,5,Plaque Hydro +276,6,Wassertafel +276,7,Tabla Linfa +276,8,Lastraidro +276,9,Splash Plate +277,1,いかずちプレート +277,3,우뢰플레이트 +277,5,Plaque Volt +277,6,Blitztafel +277,7,Tabla Trueno +277,8,Lastrasaetta +277,9,Zap Plate +278,1,みどりのプレート +278,3,초록플레이트 +278,5,Plaque Herbe +278,6,Wiesentafel +278,7,Tabla Pradal +278,8,Lastraprato +278,9,Meadow Plate +279,1,つららのプレート +279,3,고드름플레이트 +279,5,Plaque Glace +279,6,Frosttafel +279,7,Tabla Helada +279,8,Lastragelo +279,9,Icicle Plate +280,1,こぶしのプレート +280,3,주먹플레이트 +280,5,Plaque Poing +280,6,Fausttafel +280,7,Tabla Fuerte +280,8,Lastrapugno +280,9,Fist Plate +281,1,もうどくプレート +281,3,맹독플레이트 +281,5,Plaque Toxik +281,6,Gifttafel +281,7,Tabla Tóxica +281,8,Lastrafiele +281,9,Toxic Plate +282,1,だいちのプレート +282,3,대지플레이트 +282,5,Plaque Terre +282,6,Erdtafel +282,7,Tabla Terrax +282,8,Lastrageo +282,9,Earth Plate +283,1,あおぞらプレート +283,3,푸른하늘플레이트 +283,5,Plaque Ciel +283,6,Wolkentafel +283,7,Tabla Cielo +283,8,Lastracielo +283,9,Sky Plate +284,1,ふしぎのプレート +284,3,이상한플레이트 +284,5,Plaque Esprit +284,6,Hirntafel +284,7,Tabla Mental +284,8,Lastramente +284,9,Mind Plate +285,1,たまむしプレート +285,3,비단벌레플레이트 +285,5,Plaque Insecte +285,6,Käfertafel +285,7,Tabla Bicho +285,8,Lastrabaco +285,9,Insect Plate +286,1,がんせきプレート +286,3,암석플레이트 +286,5,Plaque Roc +286,6,Steintafel +286,7,Tabla Pétrea +286,8,Lastrapietra +286,9,Stone Plate +287,1,もののけプレート +287,3,원령플레이트 +287,5,Plaque Fantô +287,6,Spuktafel +287,7,Tabla Terror +287,8,Lastratetra +287,9,Spooky Plate +288,1,りゅうのプレート +288,3,용의플레이트 +288,5,Plaque Draco +288,6,Dracotafel +288,7,Tabla Draco +288,8,Lastradrakon +288,9,Draco Plate +289,1,こわもてプレート +289,3,공포플레이트 +289,5,Plaque Ombre +289,6,Furchttafel +289,7,Tabla Oscura +289,8,Lastratimore +289,9,Dread Plate +290,1,こうてつプレート +290,3,강철플레이트 +290,5,Plaque Fer +290,6,Eisentafel +290,7,Tabla Acero +290,8,Lastraferro +290,9,Iron Plate +291,1,あやしいおこう +291,3,괴상한향로 +291,5,Encens Bizarre +291,6,Schrägrauch +291,7,Incienso Raro +291,8,Bizzoaroma +291,9,Odd Incense +292,1,がんせきおこう +292,3,암석향로 +292,5,Encens Roc +292,6,Steinrauch +292,7,Incienso Roca +292,8,Roccioaroma +292,9,Rock Incense +293,1,まんぷくおこう +293,3,만복향로 +293,5,Encens Plein +293,6,Lahmrauch +293,7,Incienso Lento +293,8,Gonfioaroma +293,9,Full Incense +294,1,さざなみのおこう +294,3,잔물결향로 +294,5,Encens Vague +294,6,Wellenrauch +294,7,Incienso Aqua +294,8,Ondaroma +294,9,Wave Incense +295,1,おはなのおこう +295,3,꽃향로 +295,5,Encens Fleur +295,6,Rosenrauch +295,7,Incienso Floral +295,8,Rosaroma +295,9,Rose Incense +296,1,こううんのおこう +296,3,행운의향로 +296,5,Encens Veine +296,6,Glücksrauch +296,7,Incienso Duplo +296,8,Fortunaroma +296,9,Luck Incense +297,1,きよめのおこう +297,3,순결의향로 +297,5,Encens Pur +297,6,Scheuchrauch +297,7,Incienso Puro +297,8,Puroaroma +297,9,Pure Incense +298,1,プロテクター +298,3,프로텍터 +298,5,Protecteur +298,6,Schützer +298,7,Protector +298,8,Copertura +298,9,Protector +299,1,エレキブースター +299,3,에레키부스터 +299,5,Électriseur +299,6,Stromisierer +299,7,Electrizador +299,8,Elettritore +299,9,Electirizer +300,1,マグマブースター +300,3,마그마부스터 +300,5,Magmariseur +300,6,Magmaisierer +300,7,Magmatizador +300,8,Magmatore +300,9,Magmarizer +301,1,あやしいパッチ +301,3,괴상한패치 +301,5,CD Douteux +301,6,Dubiosdisc +301,7,Disco Extraño +301,8,Dubbiodisco +301,9,Dubious Disc +302,1,れいかいのぬの +302,3,영계의천 +302,5,Tissu Fauche +302,6,Düsterumhang +302,7,Tela Terrible +302,8,Terrorpanno +302,9,Reaper Cloth +303,1,するどいツメ +303,3,예리한손톱 +303,5,Griffe Rasoir +303,6,Scharfklaue +303,7,Garra Afilada +303,8,Affilartigli +303,9,Razor Claw +304,1,するどいキバ +304,3,예리한이빨 +304,5,Croc Rasoir +304,6,Scharfzahn +304,7,Colmillo Agudo +304,8,Affilodente +304,9,Razor Fang +305,1,わざマシン01 +305,3,기술머신01 +305,5,CT01 +305,6,TM01 +305,7,MT01 +305,8,MT01 +305,9,TM01 +306,1,わざマシン02 +306,3,기술머신02 +306,5,CT02 +306,6,TM02 +306,7,MT02 +306,8,MT02 +306,9,TM02 +307,1,わざマシン03 +307,3,기술머신03 +307,5,CT03 +307,6,TM03 +307,7,MT03 +307,8,MT03 +307,9,TM03 +308,1,わざマシン04 +308,3,기술머신04 +308,5,CT04 +308,6,TM04 +308,7,MT04 +308,8,MT04 +308,9,TM04 +309,1,わざマシン05 +309,3,기술머신05 +309,5,CT05 +309,6,TM05 +309,7,MT05 +309,8,MT05 +309,9,TM05 +310,1,わざマシン06 +310,3,기술머신06 +310,5,CT06 +310,6,TM06 +310,7,MT06 +310,8,MT06 +310,9,TM06 +311,1,わざマシン07 +311,3,기술머신07 +311,5,CT07 +311,6,TM07 +311,7,MT07 +311,8,MT07 +311,9,TM07 +312,1,わざマシン08 +312,3,기술머신08 +312,5,CT08 +312,6,TM08 +312,7,MT08 +312,8,MT08 +312,9,TM08 +313,1,わざマシン09 +313,3,기술머신09 +313,5,CT09 +313,6,TM09 +313,7,MT09 +313,8,MT09 +313,9,TM09 +314,1,わざマシン10 +314,3,기술머신10 +314,5,CT10 +314,6,TM10 +314,7,MT10 +314,8,MT10 +314,9,TM10 +315,1,わざマシン11 +315,3,기술머신11 +315,5,CT11 +315,6,TM11 +315,7,MT11 +315,8,MT11 +315,9,TM11 +316,1,わざマシン12 +316,3,기술머신12 +316,5,CT12 +316,6,TM12 +316,7,MT12 +316,8,MT12 +316,9,TM12 +317,1,わざマシン13 +317,3,기술머신13 +317,5,CT13 +317,6,TM13 +317,7,MT13 +317,8,MT13 +317,9,TM13 +318,1,わざマシン14 +318,3,기술머신14 +318,5,CT14 +318,6,TM14 +318,7,MT14 +318,8,MT14 +318,9,TM14 +319,1,わざマシン15 +319,3,기술머신15 +319,5,CT15 +319,6,TM15 +319,7,MT15 +319,8,MT15 +319,9,TM15 +320,1,わざマシン16 +320,3,기술머신16 +320,5,CT16 +320,6,TM16 +320,7,MT16 +320,8,MT16 +320,9,TM16 +321,1,わざマシン17 +321,3,기술머신17 +321,5,CT17 +321,6,TM17 +321,7,MT17 +321,8,MT17 +321,9,TM17 +322,1,わざマシン18 +322,3,기술머신18 +322,5,CT18 +322,6,TM18 +322,7,MT18 +322,8,MT18 +322,9,TM18 +323,1,わざマシン19 +323,3,기술머신19 +323,5,CT19 +323,6,TM19 +323,7,MT19 +323,8,MT19 +323,9,TM19 +324,1,わざマシン20 +324,3,기술머신20 +324,5,CT20 +324,6,TM20 +324,7,MT20 +324,8,MT20 +324,9,TM20 +325,1,わざマシン21 +325,3,기술머신21 +325,5,CT21 +325,6,TM21 +325,7,MT21 +325,8,MT21 +325,9,TM21 +326,1,わざマシン22 +326,3,기술머신22 +326,5,CT22 +326,6,TM22 +326,7,MT22 +326,8,MT22 +326,9,TM22 +327,1,わざマシン23 +327,3,기술머신23 +327,5,CT23 +327,6,TM23 +327,7,MT23 +327,8,MT23 +327,9,TM23 +328,1,わざマシン24 +328,3,기술머신24 +328,5,CT24 +328,6,TM24 +328,7,MT24 +328,8,MT24 +328,9,TM24 +329,1,わざマシン25 +329,3,기술머신25 +329,5,CT25 +329,6,TM25 +329,7,MT25 +329,8,MT25 +329,9,TM25 +330,1,わざマシン26 +330,3,기술머신26 +330,5,CT26 +330,6,TM26 +330,7,MT26 +330,8,MT26 +330,9,TM26 +331,1,わざマシン27 +331,3,기술머신27 +331,5,CT27 +331,6,TM27 +331,7,MT27 +331,8,MT27 +331,9,TM27 +332,1,わざマシン28 +332,3,기술머신28 +332,5,CT28 +332,6,TM28 +332,7,MT28 +332,8,MT28 +332,9,TM28 +333,1,わざマシン29 +333,3,기술머신29 +333,5,CT29 +333,6,TM29 +333,7,MT29 +333,8,MT29 +333,9,TM29 +334,1,わざマシン30 +334,3,기술머신30 +334,5,CT30 +334,6,TM30 +334,7,MT30 +334,8,MT30 +334,9,TM30 +335,1,わざマシン31 +335,3,기술머신31 +335,5,CT31 +335,6,TM31 +335,7,MT31 +335,8,MT31 +335,9,TM31 +336,1,わざマシン32 +336,3,기술머신32 +336,5,CT32 +336,6,TM32 +336,7,MT32 +336,8,MT32 +336,9,TM32 +337,1,わざマシン33 +337,3,기술머신33 +337,5,CT33 +337,6,TM33 +337,7,MT33 +337,8,MT33 +337,9,TM33 +338,1,わざマシン34 +338,3,기술머신34 +338,5,CT34 +338,6,TM34 +338,7,MT34 +338,8,MT34 +338,9,TM34 +339,1,わざマシン35 +339,3,기술머신35 +339,5,CT35 +339,6,TM35 +339,7,MT35 +339,8,MT35 +339,9,TM35 +340,1,わざマシン36 +340,3,기술머신36 +340,5,CT36 +340,6,TM36 +340,7,MT36 +340,8,MT36 +340,9,TM36 +341,1,わざマシン37 +341,3,기술머신37 +341,5,CT37 +341,6,TM37 +341,7,MT37 +341,8,MT37 +341,9,TM37 +342,1,わざマシン38 +342,3,기술머신38 +342,5,CT38 +342,6,TM38 +342,7,MT38 +342,8,MT38 +342,9,TM38 +343,1,わざマシン39 +343,3,기술머신39 +343,5,CT39 +343,6,TM39 +343,7,MT39 +343,8,MT39 +343,9,TM39 +344,1,わざマシン40 +344,3,기술머신40 +344,5,CT40 +344,6,TM40 +344,7,MT40 +344,8,MT40 +344,9,TM40 +345,1,わざマシン41 +345,3,기술머신41 +345,5,CT41 +345,6,TM41 +345,7,MT41 +345,8,MT41 +345,9,TM41 +346,1,わざマシン42 +346,3,기술머신42 +346,5,CT42 +346,6,TM42 +346,7,MT42 +346,8,MT42 +346,9,TM42 +347,1,わざマシン43 +347,3,기술머신43 +347,5,CT43 +347,6,TM43 +347,7,MT43 +347,8,MT43 +347,9,TM43 +348,1,わざマシン44 +348,3,기술머신44 +348,5,CT44 +348,6,TM44 +348,7,MT44 +348,8,MT44 +348,9,TM44 +349,1,わざマシン45 +349,3,기술머신45 +349,5,CT45 +349,6,TM45 +349,7,MT45 +349,8,MT45 +349,9,TM45 +350,1,わざマシン46 +350,3,기술머신46 +350,5,CT46 +350,6,TM46 +350,7,MT46 +350,8,MT46 +350,9,TM46 +351,1,わざマシン47 +351,3,기술머신47 +351,5,CT47 +351,6,TM47 +351,7,MT47 +351,8,MT47 +351,9,TM47 +352,1,わざマシン48 +352,3,기술머신48 +352,5,CT48 +352,6,TM48 +352,7,MT48 +352,8,MT48 +352,9,TM48 +353,1,わざマシン49 +353,3,기술머신49 +353,5,CT49 +353,6,TM49 +353,7,MT49 +353,8,MT49 +353,9,TM49 +354,1,わざマシン50 +354,3,기술머신50 +354,5,CT50 +354,6,TM50 +354,7,MT50 +354,8,MT50 +354,9,TM50 +355,1,わざマシン51 +355,3,기술머신51 +355,5,CT51 +355,6,TM51 +355,7,MT51 +355,8,MT51 +355,9,TM51 +356,1,わざマシン52 +356,3,기술머신52 +356,5,CT52 +356,6,TM52 +356,7,MT52 +356,8,MT52 +356,9,TM52 +357,1,わざマシン53 +357,3,기술머신53 +357,5,CT53 +357,6,TM53 +357,7,MT53 +357,8,MT53 +357,9,TM53 +358,1,わざマシン54 +358,3,기술머신54 +358,5,CT54 +358,6,TM54 +358,7,MT54 +358,8,MT54 +358,9,TM54 +359,1,わざマシン55 +359,3,기술머신55 +359,5,CT55 +359,6,TM55 +359,7,MT55 +359,8,MT55 +359,9,TM55 +360,1,わざマシン56 +360,3,기술머신56 +360,5,CT56 +360,6,TM56 +360,7,MT56 +360,8,MT56 +360,9,TM56 +361,1,わざマシン57 +361,3,기술머신57 +361,5,CT57 +361,6,TM57 +361,7,MT57 +361,8,MT57 +361,9,TM57 +362,1,わざマシン58 +362,3,기술머신58 +362,5,CT58 +362,6,TM58 +362,7,MT58 +362,8,MT58 +362,9,TM58 +363,1,わざマシン59 +363,3,기술머신59 +363,5,CT59 +363,6,TM59 +363,7,MT59 +363,8,MT59 +363,9,TM59 +364,1,わざマシン60 +364,3,기술머신60 +364,5,CT60 +364,6,TM60 +364,7,MT60 +364,8,MT60 +364,9,TM60 +365,1,わざマシン61 +365,3,기술머신61 +365,5,CT61 +365,6,TM61 +365,7,MT61 +365,8,MT61 +365,9,TM61 +366,1,わざマシン62 +366,3,기술머신62 +366,5,CT62 +366,6,TM62 +366,7,MT62 +366,8,MT62 +366,9,TM62 +367,1,わざマシン63 +367,3,기술머신63 +367,5,CT63 +367,6,TM63 +367,7,MT63 +367,8,MT63 +367,9,TM63 +368,1,わざマシン64 +368,3,기술머신64 +368,5,CT64 +368,6,TM64 +368,7,MT64 +368,8,MT64 +368,9,TM64 +369,1,わざマシン65 +369,3,기술머신65 +369,5,CT65 +369,6,TM65 +369,7,MT65 +369,8,MT65 +369,9,TM65 +370,1,わざマシン66 +370,3,기술머신66 +370,5,CT66 +370,6,TM66 +370,7,MT66 +370,8,MT66 +370,9,TM66 +371,1,わざマシン67 +371,3,기술머신67 +371,5,CT67 +371,6,TM67 +371,7,MT67 +371,8,MT67 +371,9,TM67 +372,1,わざマシン68 +372,3,기술머신68 +372,5,CT68 +372,6,TM68 +372,7,MT68 +372,8,MT68 +372,9,TM68 +373,1,わざマシン69 +373,3,기술머신69 +373,5,CT69 +373,6,TM69 +373,7,MT69 +373,8,MT69 +373,9,TM69 +374,1,わざマシン70 +374,3,기술머신70 +374,5,CT70 +374,6,TM70 +374,7,MT70 +374,8,MT70 +374,9,TM70 +375,1,わざマシン71 +375,3,기술머신71 +375,5,CT71 +375,6,TM71 +375,7,MT71 +375,8,MT71 +375,9,TM71 +376,1,わざマシン72 +376,3,기술머신72 +376,5,CT72 +376,6,TM72 +376,7,MT72 +376,8,MT72 +376,9,TM72 +377,1,わざマシン73 +377,3,기술머신73 +377,5,CT73 +377,6,TM73 +377,7,MT73 +377,8,MT73 +377,9,TM73 +378,1,わざマシン74 +378,3,기술머신74 +378,5,CT74 +378,6,TM74 +378,7,MT74 +378,8,MT74 +378,9,TM74 +379,1,わざマシン75 +379,3,기술머신75 +379,5,CT75 +379,6,TM75 +379,7,MT75 +379,8,MT75 +379,9,TM75 +380,1,わざマシン76 +380,3,기술머신76 +380,5,CT76 +380,6,TM76 +380,7,MT76 +380,8,MT76 +380,9,TM76 +381,1,わざマシン77 +381,3,기술머신77 +381,5,CT77 +381,6,TM77 +381,7,MT77 +381,8,MT77 +381,9,TM77 +382,1,わざマシン78 +382,3,기술머신78 +382,5,CT78 +382,6,TM78 +382,7,MT78 +382,8,MT78 +382,9,TM78 +383,1,わざマシン79 +383,3,기술머신79 +383,5,CT79 +383,6,TM79 +383,7,MT79 +383,8,MT79 +383,9,TM79 +384,1,わざマシン80 +384,3,기술머신80 +384,5,CT80 +384,6,TM80 +384,7,MT80 +384,8,MT80 +384,9,TM80 +385,1,わざマシン81 +385,3,기술머신81 +385,5,CT81 +385,6,TM81 +385,7,MT81 +385,8,MT81 +385,9,TM81 +386,1,わざマシン82 +386,3,기술머신82 +386,5,CT82 +386,6,TM82 +386,7,MT82 +386,8,MT82 +386,9,TM82 +387,1,わざマシン83 +387,3,기술머신83 +387,5,CT83 +387,6,TM83 +387,7,MT83 +387,8,MT83 +387,9,TM83 +388,1,わざマシン84 +388,3,기술머신84 +388,5,CT84 +388,6,TM84 +388,7,MT84 +388,8,MT84 +388,9,TM84 +389,1,わざマシン85 +389,3,기술머신85 +389,5,CT85 +389,6,TM85 +389,7,MT85 +389,8,MT85 +389,9,TM85 +390,1,わざマシン86 +390,3,기술머신86 +390,5,CT86 +390,6,TM86 +390,7,MT86 +390,8,MT86 +390,9,TM86 +391,1,わざマシン87 +391,3,기술머신87 +391,5,CT87 +391,6,TM87 +391,7,MT87 +391,8,MT87 +391,9,TM87 +392,1,わざマシン88 +392,3,기술머신88 +392,5,CT88 +392,6,TM88 +392,7,MT88 +392,8,MT88 +392,9,TM88 +393,1,わざマシン89 +393,3,기술머신89 +393,5,CT89 +393,6,TM89 +393,7,MT89 +393,8,MT89 +393,9,TM89 +394,1,わざマシン90 +394,3,기술머신90 +394,5,CT90 +394,6,TM90 +394,7,MT90 +394,8,MT90 +394,9,TM90 +395,1,わざマシン91 +395,3,기술머신91 +395,5,CT91 +395,6,TM91 +395,7,MT91 +395,8,MT91 +395,9,TM91 +396,1,わざマシン92 +396,3,기술머신92 +396,5,CT92 +396,6,TM92 +396,7,MT92 +396,8,MT92 +396,9,TM92 +397,1,ひでんマシン01 +397,3,비전머신01 +397,5,CS01 +397,6,VM01 +397,7,MO01 +397,8,MN01 +397,9,HM01 +398,1,ひでんマシン02 +398,3,비전머신02 +398,5,CS02 +398,6,VM02 +398,7,MO02 +398,8,MN02 +398,9,HM02 +399,1,ひでんマシン03 +399,3,비전머신03 +399,5,CS03 +399,6,VM03 +399,7,MO03 +399,8,MN03 +399,9,HM03 +400,1,ひでんマシン04 +400,3,비전머신04 +400,5,CS04 +400,6,VM04 +400,7,MO04 +400,8,MN04 +400,9,HM04 +401,1,ひでんマシン05 +401,3,비전머신05 +401,5,CS05 +401,6,VM05 +401,7,MO05 +401,8,MN05 +401,9,HM05 +402,1,ひでんマシン06 +402,3,비전머신06 +402,5,CS06 +402,6,VM06 +402,7,MO06 +402,8,MN06 +402,9,HM06 +403,1,ひでんマシン07 +403,5,CS07 +403,6,VM07 +403,7,MO07 +403,8,MN07 +403,9,HM07 +404,1,ひでんマシン08 +404,5,CS08 +404,6,VM08 +404,7,MO08 +404,8,MN08 +404,9,HM08 +405,1,たんけんセット +405,3,탐험세트 +405,5,Explorakit +405,6,Forschersack +405,7,Kit Explorador +405,8,Esplorokit +405,9,Explorer Kit +406,1,たからぶくろ +406,3,보물주머니 +406,5,Sac Butin +406,6,Beutesack +406,7,Saca Botín +406,8,Bottinosacca +406,9,Loot Sack +407,1,ルールブック +407,3,룰북 +407,5,Livre Règles +407,6,Regelbuch +407,7,Reglamento +407,8,Libro Regole +407,9,Rule Book +408,1,ポケトレ +408,3,포켓트레 +408,5,Poké Radar +408,6,Pokéradar +408,7,Pokéradar +408,8,Poké Radar +408,9,Poké Radar +409,1,ポイントカード +409,3,포인트카드 +409,5,Carte Points +409,6,Punktekarte +409,7,Tarjeta Puntos +409,8,Scheda Punti +409,9,Point Card +410,1,ぼうけんノート +410,3,모험노트 +410,5,Journal +410,6,Tagebuch +410,7,Diario +410,8,Agenda +410,9,Journal +411,1,シールいれ +411,3,실상자 +411,5,Boîte Sceaux +411,6,Stick.Koffer +411,7,Caja Sellos +411,8,Portabolli +411,9,Seal Case +412,1,アクセサリーいれ +412,3,액세서리상자 +412,5,Coffret Mode +412,6,Modekoffer +412,7,Caja Corazón +412,8,Scatola Chic +412,9,Fashion Case +413,1,シールぶくろ +413,3,실주머니 +413,5,Sac Sceaux +413,6,Stickertüte +413,7,Bolsa Sellos +413,8,Bollosacca +413,9,Seal Bag +414,1,ともだちてちょう +414,3,친구수첩 +414,5,Registre Ami +414,6,Adressbuch +414,7,Bloc amigos +414,8,Blocco Amici +414,9,Pal Pad +415,1,はつでんしょキー +415,3,발전소키 +415,5,Clé Centrale +415,6,K-Schlüssel +415,7,Llave Central +415,8,Turbinchiave +415,9,Works Key +416,1,こだいのおまもり +416,3,고대의부적 +416,5,Vieux Grigri +416,6,Talisman +416,7,Talismán +416,8,Arcamuleto +416,9,Old Charm +417,1,ギンガだんのカギ +417,3,갤럭시단의열쇠 +417,5,Clé Galaxie +417,6,G-Schlüssel +417,7,Llave Galaxia +417,8,Galachiave +417,9,Galactic Key +418,1,あかいくさり +418,3,빨강쇠사슬 +418,5,Chaîne Rouge +418,6,Rote Kette +418,7,Cadena Roja +418,8,Rossocatena +418,9,Red Chain +419,1,タウンマップ +419,3,타운맵 +419,5,Carte +419,6,Karte +419,7,Mapa +419,8,Mappa Città +419,9,Town Map +420,1,バトルサーチャー +420,3,배틀서처 +420,5,Cherche VS +420,6,Kampffahnder +420,7,Buscapelea +420,8,Cercasfide +420,9,Vs. Seeker +421,1,コインケース +421,3,동전케이스 +421,5,Boîte Jetons +421,6,Münzkorb +421,7,Monedero +421,8,Salvadanaio +421,9,Coin Case +422,1,ボロのつりざお +422,3,낡은낚싯대 +422,5,Canne +422,6,Angel +422,7,Caña Vieja +422,8,Amo Vecchio +422,9,Old Rod +423,1,いいつりざお +423,3,좋은낚싯대 +423,5,Super Canne +423,6,Profiangel +423,7,Caña Buena +423,8,Amo Buono +423,9,Good Rod +424,1,すごいつりざお +424,3,대단한낚싯대 +424,5,Méga Canne +424,6,Superangel +424,7,Supercaña +424,8,Super Amo +424,9,Super Rod +425,1,コダックじょうろ +425,3,고라파덕물뿌리개 +425,5,Kwakarrosoir +425,6,Entonkanne +425,7,Psydugadera +425,8,Sprayduck +425,9,Sprayduck +426,1,ポフィンケース +426,3,포핀케이스 +426,5,Boîte Poffin +426,6,Knurspbox +426,7,Pokochera +426,8,Portapoffin +426,9,Poffin Case +427,1,じてんしゃ +427,3,자전거 +427,5,Bicyclette +427,6,Fahrrad +427,7,Bici +427,8,Bicicletta +427,9,Bicycle +428,1,ルームキー +428,3,룸키 +428,5,Clé Chambre +428,6,B-Schlüssel +428,7,Llave Suite +428,8,Chiave Suite +428,9,Suite Key +429,1,オーキドのてがみ +429,3,오박사의편지 +429,5,Lettre Chen +429,6,Eichs Brief +429,7,Carta Prof. Oak +429,8,Lettera Oak +429,9,Oak's Letter +430,1,みかづきのはね +430,3,초승달날개 +430,5,Lun'Aile +430,6,Lunarfeder +430,7,Pluma Lunar +430,8,Alalunare +430,9,Lunar Wing +431,1,メンバーズカード +431,3,멤버스카드 +431,5,Carte Membre +431,6,Mitgl.Karte +431,7,Carné Socio +431,8,Scheda Soci +431,9,Member Card +432,1,てんかいのふえ +432,3,천계의피리 +432,5,Flûte Azur +432,6,Azurflöte +432,7,Flauta Azur +432,8,Flauto Cielo +432,9,Azure Flute +433,1,ふねのチケット +433,3,승선티켓 +433,5,Passe Bateau +433,6,Bootsticket +433,7,Ticket Barco +433,8,Biglietto Nave +433,9,S.S. Ticket +434,1,コンテストパス +434,3,콘테스트패스 +434,5,Passe Concours +434,6,Wettb.-Karte +434,7,Pase Concurso +434,8,Tessera Gare +434,9,Contest Pass +435,1,かざんのおきいし +435,3,화산의돌 +435,5,Pierre Magma +435,6,Magmastein +435,7,Piedra Magma +435,8,Magmapietra +435,9,Magma Stone +436,1,おとどけもの +436,3,전해줄물건 +436,5,Colis +436,6,Paket +436,7,Paquete +436,8,Pacco +436,9,Parcel +437,1,ひきかえけん1 +437,3,교환권1 +437,5,Bon 1 +437,6,Kupon 1 +437,7,Cupón 1 +437,8,Coupon 1 +437,9,Coupon 1 +438,1,ひきかえけん2 +438,3,교환권2 +438,5,Bon 2 +438,6,Kupon 2 +438,7,Cupón 2 +438,8,Coupon 2 +438,9,Coupon 2 +439,1,ひきかえけん3 +439,3,교환권3 +439,5,Bon 3 +439,6,Kupon 3 +439,7,Cupón 3 +439,8,Coupon 3 +439,9,Coupon 3 +440,1,そうこのカギ +440,3,창고열쇠 +440,5,Clé Stockage +440,6,L-Schlüssel +440,7,Llave Almacén +440,8,Depochiave +440,9,Storage Key +441,1,ひでんのくすり +441,3,비전신약 +441,5,Potion Secrète +441,6,Geheimtrank +441,7,Poción Secreta +441,8,Pozione Segreta +441,9,Secret Potion +442,1,はっきんだま +442,3,백금옥 +442,5,Orbe Platiné +442,6,Platinum-Orb +442,7,Griseosfera +442,8,Grigiosfera +442,9,Griseous Orb +443,1,バトルレコーダー +443,3,배틀레코더 +443,5,Magnéto VS +443,6,Kampfkamera +443,7,Cámara Lucha +443,8,Registradati +443,9,Vs. Recorder +444,1,グラシデアのはな +444,3,그라시데아꽃 +444,5,Gracidée +444,6,Gracidea +444,7,Gracídea +444,8,Gracidea +444,9,Gracidea +445,1,ひみつのカギ +445,3,비밀의열쇠 +445,5,Clé Secrète +445,6,?-Öffner +445,7,Llave Secreta +445,8,Chiave Segreta +445,9,Secret Key +446,1,ぼんぐりケース +446,3,규토리케이스 +446,5,Boîte Noigrume +446,6,Aprikokobox +446,7,Caja Bonguri +446,8,Ghicobox +446,9,Apricorn Box +447,1,きのみプランター +447,3,나무열매플랜터 +447,5,Plante-Baies +447,6,Pflanzset +447,7,Plantabayas +447,8,Piantabacche +447,9,Berry Pots +448,1,ゼニガメじょうろ +448,3,꼬부기물뿌리개 +448,5,Carapuce à O +448,6,Schiggykanne +448,7,Regadera +448,8,Annaffiatoio +448,9,Squirt Bottle +449,1,ルアーボール +449,3,루어볼 +449,5,Appât Ball +449,6,Köderball +449,7,Cebo Ball +449,8,Esca Ball +449,9,Lure Ball +450,1,レベルボール +450,3,레벨볼 +450,5,Niveau Ball +450,6,Levelball +450,7,Nivel Ball +450,8,Level Ball +450,9,Level Ball +451,1,ムーンボール +451,3,문볼 +451,5,Lune Ball +451,6,Mondball +451,7,Luna Ball +451,8,Luna Ball +451,9,Moon Ball +452,1,ヘビーボール +452,3,헤비볼 +452,5,Masse Ball +452,6,Schwerball +452,7,Peso Ball +452,8,Peso Ball +452,9,Heavy Ball +453,1,スピードボール +453,3,스피드볼 +453,5,Speed Ball +453,6,Turboball +453,7,Rapid Ball +453,8,Rapid Ball +453,9,Fast Ball +454,1,フレンドボール +454,3,프렌드볼 +454,5,Copain Ball +454,6,Freundesball +454,7,Amigo Ball +454,8,Friend Ball +454,9,Friend Ball +455,1,ラブラブボール +455,3,러브러브볼 +455,5,Love Ball +455,6,Sympaball +455,7,Amor Ball +455,8,Love Ball +455,9,Love Ball +456,1,パークボール +456,3,파크볼 +456,5,Parc Ball +456,6,Parkball +456,7,Parque Ball +456,8,Parco Ball +456,9,Park Ball +457,1,コンペボール +457,3,콤페볼 +457,5,Compét'Ball +457,6,Turnierball +457,7,Competi Ball +457,8,Gara Ball +457,9,Sport Ball +458,1,あかぼんぐり +458,3,빨간규토리 +458,5,Noigrume Rge +458,6,Aprikoko Rot +458,7,Bonguri Rojo +458,8,Ghicocca Rossa +458,9,Red Apricorn +459,1,あおぼんぐり +459,3,파란규토리 +459,5,Noigrume Blu +459,6,Aprikoko Blu +459,7,Bonguri Azul +459,8,Ghicocca Blu +459,9,Blue Apricorn +460,1,きぼんぐり +460,3,노랑규토리 +460,5,Noigrume Jne +460,6,Aprikoko Glb +460,7,Bonguri Amarillo +460,8,Ghicocca Gialla +460,9,Yellow Apricorn +461,1,みどぼんぐり +461,3,초록규토리 +461,5,Noigrume Ver +461,6,Aprikoko Grn +461,7,Bonguri Verde +461,8,Ghicocca Verde +461,9,Green Apricorn +462,1,ももぼんぐり +462,3,담홍규토리 +462,5,Noigrume Ros +462,6,Aprikoko Pnk +462,7,Bonguri Rosa +462,8,Ghicocca Rosa +462,9,Pink Apricorn +463,1,しろぼんぐり +463,3,하얀규토리 +463,5,Noigrume Blc +463,6,Aprikoko Wss +463,7,Bonguri Blanco +463,8,Ghicocca Bianca +463,9,White Apricorn +464,1,くろぼんぐり +464,3,검은규토리 +464,5,Noigrume Noi +464,6,Aprikoko Swz +464,7,Bonguri Negro +464,8,Ghicocca Nera +464,9,Black Apricorn +465,1,ダウジングマシン +465,3,다우징머신 +465,5,Cherch'Objet +465,6,Itemradar +465,7,Zahorí +465,8,Ricerca Strum. +465,9,Dowsing Machine +466,1,いかりまんじゅう +466,3,분노의호두과자 +466,5,Bonbon Rage +466,6,Wutkeks +466,7,Caramelo Furia +466,8,Iramella +466,9,Rage Candy Bar +467,1,べにいろのたま +467,3,주홍구슬 +467,5,Orbe Rouge +467,6,Rote Kugel +467,7,Esfera Roja +467,8,Sfera Rossa +467,9,Red Orb +468,1,あいいろのたま +468,3,쪽빛구슬 +468,5,Orbe Bleu +468,6,Blaue Kugel +468,7,Esfera Azul +468,8,Sfera Blu +468,9,Blue Orb +469,1,もえぎいろのたま +469,3,연둣빛구슬 +469,5,Orbe Vert +469,6,Grüne Kugel +469,7,Esfera Verde +469,8,Sfera Verde +469,9,Jade Orb +470,1,なぞのすいしょう +470,3,수수께끼의수정 +470,5,Mystécristal +470,6,Mytokristall +470,7,Misticristal +470,8,Misticristal +470,9,Enigma Stone +471,1,アンノーンノート +471,3,안농노트 +471,5,Carnet Zarbi +471,6,Icognitoheft +471,7,Bloc Unown +471,8,UnownBloc +471,9,Unown Report +472,1,ブルーカード +472,3,블루카드 +472,5,Carte Bleue +472,6,Blaue Karte +472,7,Tarjeta Azul +472,8,Carta Blu +472,9,Blue Card +473,1,おいしいシッポ +473,3,맛있는꼬리 +473,5,Queueramolos +473,6,Flegmon-Rute +473,7,Colaslowpoke +473,8,Codaslowpoke +473,9,Slowpoke Tail +474,1,とうめいなスズ +474,3,크리스탈방울 +474,5,Glas Transparent +474,6,Klarglocke +474,7,Campana Clara +474,8,Campana Chiara +474,9,Clear Bell +475,1,カードキー +475,3,카드키 +475,5,Carte Magnétique +475,6,Türöffner +475,7,Llave Magnética +475,8,Apriporta +475,9,Card Key +476,1,ちかのかぎ +476,3,지하의열쇠 +476,5,Clé Sous-Sol +476,6,Kelleröffner +476,7,Llave Sótano +476,8,Chiave Sotterr. +476,9,Basement Key +477,1,あかいウロコ +477,3,빨간비늘 +477,5,Écaillerouge +477,6,Rote Haut +477,7,Escama Roja +477,8,Squama Rossa +477,9,Red Scale +478,1,おとしもの +478,3,분실물 +478,5,Objet perdu +478,6,Fundsache +478,7,Objeto Perdido +478,8,Strumento perso +478,9,Lost Item +479,1,リニアパス +479,3,리니어패스 +479,5,Passe Train +479,6,Fahrschein +479,7,Magnetopase +479,8,Superpass +479,9,Pass +480,1,きかいのぶひん +480,3,기계부품 +480,5,Partie Machine +480,6,Spule +480,7,Maquinaria +480,8,Pezzo macch. +480,9,Machine Part +481,1,ぎんいろのはね +481,3,은빛날개 +481,5,Argent'Aile +481,6,Silberflügel +481,7,Ala Plateada +481,8,Aladargento +481,9,Silver Wing +482,1,にじいろのはね +482,3,무지갯빛날개 +482,5,Arcenci'Aile +482,6,Buntschwinge +482,7,Ala Arcoíris +482,8,Ala d'Iride +482,9,Rainbow Wing +483,1,ふしぎなタマゴ +483,3,이상한알 +483,5,Œuf Mystère +483,6,Rätsel-Ei +483,7,Huevo Misterioso +483,8,Uovo Mistero +483,9,Mystery Egg +484,1,GBプレイヤー +484,3,GB플레이어 +484,5,Lecteur GB +484,6,GB-Player +484,7,Lector GB +484,8,Lettore GB +484,9,GB Sounds +485,1,うみなりのスズ +485,3,해명의방울 +485,5,Glas Tempête +485,6,Gischtglocke +485,7,Campana Oleaje +485,8,Campana Onda +485,9,Tidal Bell +486,1,データカード01 +486,3,데이터카드01 +486,5,Carte Mémo01 +486,6,Datenkarte01 +486,7,Tarjeta Datos 01 +486,8,Scheda Dati 01 +486,9,Data Card 01 +487,1,データカード02 +487,3,데이터카드02 +487,5,Carte Mémo02 +487,6,Datenkarte02 +487,7,Tarjeta Datos 02 +487,8,Scheda Dati 02 +487,9,Data Card 02 +488,1,データカード03 +488,3,데이터카드03 +488,5,Carte Mémo03 +488,6,Datenkarte03 +488,7,Tarjeta Datos 03 +488,8,Scheda Dati 03 +488,9,Data Card 03 +489,1,データカード04 +489,3,데이터카드04 +489,5,Carte Mémo04 +489,6,Datenkarte04 +489,7,Tarjeta Datos 04 +489,8,Scheda Dati 04 +489,9,Data Card 04 +490,1,データカード05 +490,3,데이터카드05 +490,5,Carte Mémo05 +490,6,Datenkarte05 +490,7,Tarjeta Datos 05 +490,8,Scheda Dati 05 +490,9,Data Card 05 +491,1,データカード06 +491,3,데이터카드06 +491,5,Carte Mémo06 +491,6,Datenkarte06 +491,7,Tarjeta Datos 06 +491,8,Scheda Dati 06 +491,9,Data Card 06 +492,1,データカード07 +492,3,데이터카드07 +492,5,Carte Mémo07 +492,6,Datenkarte07 +492,7,Tarjeta Datos 07 +492,8,Scheda Dati 07 +492,9,Data Card 07 +493,1,データカード08 +493,3,데이터카드08 +493,5,Carte Mémo08 +493,6,Datenkarte08 +493,7,Tarjeta Datos 08 +493,8,Scheda Dati 08 +493,9,Data Card 08 +494,1,データカード09 +494,3,데이터카드09 +494,5,Carte Mémo09 +494,6,Datenkarte09 +494,7,Tarjeta Datos 09 +494,8,Scheda Dati 09 +494,9,Data Card 09 +495,1,データカード10 +495,3,데이터카드10 +495,5,Carte Mémo10 +495,6,Datenkarte10 +495,7,Tarjeta Datos 10 +495,8,Scheda Dati 10 +495,9,Data Card 10 +496,1,データカード11 +496,3,데이터카드11 +496,5,Carte Mémo11 +496,6,Datenkarte11 +496,7,Tarjeta Datos 11 +496,8,Scheda Dati 11 +496,9,Data Card 11 +497,1,データカード12 +497,3,데이터카드12 +497,5,Carte Mémo12 +497,6,Datenkarte12 +497,7,Tarjeta Datos 12 +497,8,Scheda Dati 12 +497,9,Data Card 12 +498,1,データカード13 +498,3,데이터카드13 +498,5,Carte Mémo13 +498,6,Datenkarte13 +498,7,Tarjeta Datos 13 +498,8,Scheda Dati 13 +498,9,Data Card 13 +499,1,データカード14 +499,3,데이터카드14 +499,5,Carte Mémo14 +499,6,Datenkarte14 +499,7,Tarjeta Datos 14 +499,8,Scheda Dati 14 +499,9,Data Card 14 +500,1,データカード15 +500,3,데이터카드15 +500,5,Carte Mémo15 +500,6,Datenkarte15 +500,7,Tarjeta Datos 15 +500,8,Scheda Dati 15 +500,9,Data Card 15 +501,1,データカード16 +501,3,데이터카드16 +501,5,Carte Mémo16 +501,6,Datenkarte16 +501,7,Tarjeta Datos 16 +501,8,Scheda Dati 16 +501,9,Data Card 16 +502,1,データカード17 +502,3,데이터카드17 +502,5,Carte Mémo17 +502,6,Datenkarte17 +502,7,Tarjeta Datos 17 +502,8,Scheda Dati 17 +502,9,Data Card 17 +503,1,データカード18 +503,3,데이터카드18 +503,5,Carte Mémo18 +503,6,Datenkarte18 +503,7,Tarjeta Datos 18 +503,8,Scheda Dati 18 +503,9,Data Card 18 +504,1,データカード19 +504,3,데이터카드19 +504,5,Carte Mémo19 +504,6,Datenkarte19 +504,7,Tarjeta Datos 19 +504,8,Scheda Dati 19 +504,9,Data Card 19 +505,1,データカード20 +505,3,데이터카드20 +505,5,Carte Mémo20 +505,6,Datenkarte20 +505,7,Tarjeta Datos 20 +505,8,Scheda Dati 20 +505,9,Data Card 20 +506,1,データカード21 +506,3,데이터카드21 +506,5,Carte Mémo21 +506,6,Datenkarte21 +506,7,Tarjeta Datos 21 +506,8,Scheda Dati 21 +506,9,Data Card 21 +507,1,データカード22 +507,3,데이터카드22 +507,5,Carte Mémo22 +507,6,Datenkarte22 +507,7,Tarjeta Datos 22 +507,8,Scheda Dati 22 +507,9,Data Card 22 +508,1,データカード23 +508,3,데이터카드23 +508,5,Carte Mémo23 +508,6,Datenkarte23 +508,7,Tarjeta Datos 23 +508,8,Scheda Dati 23 +508,9,Data Card 23 +509,1,データカード24 +509,3,데이터카드24 +509,5,Carte Mémo24 +509,6,Datenkarte24 +509,7,Tarjeta Datos 24 +509,8,Scheda Dati 24 +509,9,Data Card 24 +510,1,データカード25 +510,3,데이터카드25 +510,5,Carte Mémo25 +510,6,Datenkarte25 +510,7,Tarjeta Datos 25 +510,8,Scheda Dati 25 +510,9,Data Card 25 +511,1,データカード26 +511,3,데이터카드26 +511,5,Carte Mémo26 +511,6,Datenkarte26 +511,7,Tarjeta Datos 26 +511,8,Scheda Dati 26 +511,9,Data Card 26 +512,1,データカード27 +512,3,데이터카드27 +512,5,Carte Mémo27 +512,6,Datenkarte27 +512,7,Tarjeta Datos 27 +512,8,Scheda Dati 27 +512,9,Data Card 27 +513,1,ロックカプセル +513,3,록캡슐 +513,5,Poké Écrin +513,6,Tresorkapsel +513,7,Cápsula Candado +513,8,Capsula Scrigno +513,9,Lock Capsule +514,1,フォトアルバム +514,3,포토앨범 +514,5,Album Photo +514,6,Fotoalbum +514,7,Álbum +514,8,Album +514,9,Photo Album +515,1,オレンジメール +515,5,Lettre Oranj +515,6,Zigzagbrief +515,7,Car. Naranja +515,8,Mess. Agrume +515,9,Orange Mail +516,1,ハーバーメール +516,5,Lettre Port +516,6,Hafenbrief +516,7,Carta Puerto +516,8,Mess. Porto +516,9,Harbor Mail +517,1,キラキラメール +517,5,Lettre Brill +517,6,Glitzerbrief +517,7,Carta Brillo +517,8,Mess. Luci +517,9,Glitter Mail +518,1,メカニカルメール +518,5,Lettre Méca +518,6,Eilbrief +518,7,Carta Imán +518,8,Mess. Tecno +518,9,Mech Mail +519,1,ウッディメール +519,5,Lettre Bois +519,6,Waldbrief +519,7,Carta Madera +519,8,Mess. Bosco +519,9,Wood Mail +520,1,クロスメール +520,5,Lettre Vague +520,6,Wellenbrief +520,7,Carta Ola +520,8,Mess. Onda +520,9,Wave Mail +521,1,トレジャーメール +521,5,Lettre Bulle +521,6,Perlenbrief +521,7,Carta Imagen +521,8,Mess. Perle +521,9,Bead Mail +522,1,シャドーメール +522,5,Lettre Ombre +522,6,Dunkelbrief +522,7,Carta Sombra +522,8,Mess. Ombra +522,9,Shadow Mail +523,1,トロピカルメール +523,5,Lettre Tropi +523,6,Tropenbrief +523,7,Car. Tropic. +523,8,Mess. Tropic +523,9,Tropic Mail +524,1,ドリームメール +524,5,Lettre Songe +524,6,Traumbrief +524,7,Carta Sueño +524,8,Mess. Sogno +524,9,Dream Mail +525,1,ミラクルメール +525,5,Lettre Cool +525,6,Edelbrief +525,7,Carta Fab. +525,8,Mess. Lusso +525,9,Fab Mail +526,1,レトロメール +526,5,Lettre Retro +526,6,Retrobrief +526,7,Carta Retro. +526,8,Mess. Rétro +526,9,Retro Mail +527,1,マッハじてんしゃ +527,5,Vélo Course +527,6,Eilrad +527,7,Bici Carrera +527,8,Bici Corsa +527,9,Mach Bike +528,1,ダートじてんしゃ +528,5,Vélo Cross +528,6,Kunstrad +528,7,Bici Acrob. +528,8,Bici Cross +528,9,Acro Bike +529,1,ホエルコじょうろ +529,5,Seau Wailmer +529,6,Wailmerkanne +529,7,Cubo Wailmer +529,8,Vaso Wailmer +529,9,Wailmer Pail +530,1,デボンのにもつ +530,5,Pack Devon +530,6,Devon-Waren +530,7,Piezas Devon +530,8,Merce Devon +530,9,Devon Goods +531,1,はいぶくろ +531,5,Sac à Suie +531,6,Aschetasche +531,7,Saco Hollín +531,8,Sacco Cenere +531,9,Soot Sack +532,1,ポロックケース +532,5,Boîte Pokéblocs +532,6,Pokériegelbox +532,7,Tubo Pokécubos +532,8,PortaPokémelle +532,9,Pokéblock Case +533,1,ダイゴへのてがみ +533,5,Lettre +533,6,Brief +533,7,Carta +533,8,Lettera +533,9,Letter +534,1,むげんのチケット +534,5,Passe Éon +534,6,Äon-Ticket +534,7,Ticket Eón +534,8,Bigl. Eone +534,9,Eon Ticket +535,1,たんちき +535,5,Scanner +535,6,Scanner +535,7,Escáner +535,8,Scanner +535,9,Scanner +536,1,ゴーゴーゴーグル +536,5,Lunet. Sable +536,6,Wüstenglas +536,7,Gaf. Aislan. +536,8,Occhialoni +536,9,Go-Goggles +537,1,いんせき +537,5,Météorite +537,6,Meteorit +537,7,Meteorito +537,8,Meteorite +537,9,Meteorite +538,1,1ごうしつのカギ +538,5,Clé Salle 1 +538,6,K1-Schlüssel +538,7,Ll. Cabina 1 +538,8,Chiave Cab.1 +538,9,Rm. 1 Key +539,1,2ごうしつのカギ +539,5,Clé Salle 2 +539,6,K2-Schlüssel +539,7,Ll. Cabina 2 +539,8,Chiave Cab.2 +539,9,Rm. 2 Key +540,1,4ごうしつのカギ +540,5,Clé Salle 4 +540,6,K4-Schlüssel +540,7,Ll. Cabina 4 +540,8,Chiave Cab.4 +540,9,Rm. 4 Key +541,1,6ごうしつのカギ +541,5,Clé Salle 6 +541,6,K6-Schlüssel +541,7,Ll. Cabina 6 +541,8,Chiave Cab.6 +541,9,Rm. 6 Key +542,1,デボンスコープ +542,5,Devon Scope +542,6,Devon-Scope +542,7,Detec. Devon +542,8,Devonscopio +542,9,Devon Scope +543,1,おとどけもの +543,5,Colis Chen +543,6,Eichs Paket +543,7,Correo-Oak +543,8,Pacco di Oak +543,9,Oak's Parcel +544,1,ポケモンのふえ +544,3,포켓몬피리 +544,5,Pokéflûte +544,6,Pokéflöte +544,7,Poké Flauta +544,8,Poké Flauto +544,9,Poké Flute +545,1,ひきかえけん +545,5,Bon Commande +545,6,Rad-Coupon +545,7,Bono Bici +545,8,Buono Bici +545,9,Bike Voucher +546,1,きんのいれば +546,5,Dent d'Or +546,6,Goldzähne +546,7,Dientes Oro +546,8,Denti d'Oro +546,9,Gold Teeth +547,1,エレベータのカギ +547,5,Clé Asc. +547,6,Liftöffner +547,7,Ll. Ascensor +547,8,Chiave Asc. +547,9,Lift Key +548,1,シルフスコープ +548,5,Scope Sylphe +548,6,Silph Scope +548,7,Scope Silph +548,8,Spettrosonda +548,9,Silph Scope +549,1,ボイスチェッカー +549,5,Memorydex +549,6,Ruhmesdatei +549,7,Memorín +549,8,PokéVIP +549,9,Fame Checker +550,1,わざマシンケース +550,5,Boîte CT +550,6,VM/TM-Box +550,7,Tubo MT-MO +550,8,Porta-MT +550,9,TM Case +551,1,きのみぶくろ +551,5,Sac à Baies +551,6,Beerentüte +551,7,Saco Bayas +551,8,Portabacche +551,9,Berry Pouch +552,1,おしえテレビ +552,5,TV ABC +552,6,Lehrkanal +552,7,Poké Tele +552,8,Pokétivù +552,9,Teachy TV +553,1,トライパス +553,5,Tri-Passe +553,6,Tri-Pass +553,7,Tri-Ticket +553,8,Tris Pass +553,9,Tri-Pass +554,1,レインボーパス +554,5,Passe Prisme +554,6,Bunt-Pass +554,7,Iris-Ticket +554,8,Sette Pass +554,9,Rainbow Pass +555,1,おちゃ +555,5,Thé +555,6,Tee +555,7,Té +555,8,Tè +555,9,Tea +556,1,しんぴのチケット +556,5,Ticketmystik +556,6,Geheimticket +556,7,Misti-Ticket +556,8,Bigl. Magico +556,9,MysticTicket +557,1,オーロラチケット +557,5,Ticketaurora +557,6,Auroraticket +557,7,Ori-Ticket +557,8,Bigl. Aurora +557,9,AuroraTicket +558,1,こないれ +558,5,Pot Poudre +558,6,Puderdöschen +558,7,Bote Polvos +558,8,Portafarina +558,9,Powder Jar +559,1,ルビー +559,5,Rubis +559,6,Rubin +559,7,Rubí +559,8,Rubino +559,9,Ruby +560,1,サファイア +560,5,Saphir +560,6,Saphir +560,7,Zafiro +560,8,Zaffiro +560,9,Sapphire +561,1,マグマのしるし +561,5,Sceau Magma +561,6,Magmaemblem +561,7,Signo Magma +561,8,Stemma Magma +561,9,Magma Emblem +562,1,ふるびたかいず +562,5,Vieillecarte +562,6,Alte Karte +562,7,Mapa Viejo +562,8,Mappa Stinta +562,9,Old Sea Map +563,1,アクアカセット +563,3,아쿠아카세트 +563,5,Module Aqua +563,6,Aquamodul +563,7,HidroROM +563,8,Idromodulo +563,9,Douse Drive +564,1,イナズマカセット +564,3,번개카세트 +564,5,Module Choc +564,6,Blitzmodul +564,7,FulgoROM +564,8,Voltmodulo +564,9,Shock Drive +565,1,ブレイズカセット +565,3,블레이즈카세트 +565,5,Module Pyro +565,6,Flammenmodul +565,7,PiroROM +565,8,Piromodulo +565,9,Burn Drive +566,1,フリーズカセット +566,3,프리즈카세트 +566,5,Module Cryo +566,6,Gefriermodul +566,7,CrioROM +566,8,Gelomodulo +566,9,Chill Drive +567,1,ハートスイーツ +567,3,하트스위트 +567,5,Chococœur +567,6,Herzkonfekt +567,7,Corazón Dulce +567,8,Dolcecuore +567,9,Sweet Heart +568,1,はじめてメール +568,3,첫메일 +568,5,Lettre Salut +568,6,Grußbrief +568,7,Carta Inicial +568,8,Messaggio Inizio +568,9,Greet Mail +569,1,だいすきメール +569,3,애호메일 +569,5,Lettre Fan +569,6,Faiblebrief +569,7,Carta Favoritos +569,8,Messaggio TVB +569,9,Favored Mail +570,1,おさそいメール +570,3,권유메일 +570,5,Lettre Invit +570,6,Einladebrief +570,7,Carta Invitar +570,8,Messaggio Invito +570,9,RSVP Mail +571,1,かんしゃメール +571,3,감사메일 +571,5,Lettre Merci +571,6,Dankesbrief +571,7,Carta Gracias +571,8,Messaggio Grazie +571,9,Thanks Mail +572,1,しつもんメール +572,3,질문메일 +572,5,Lettre Demande +572,6,Fragebrief +572,7,Carta Pregunta +572,8,Messaggio Chiedi +572,9,Inquiry Mail +573,1,おすすめメール +573,3,추천메일 +573,5,Lettre Avis +573,6,Insiderbrief +573,7,Carta Gustos +573,8,Mess. Sugg. +573,9,Like Mail +574,1,おかえしメール +574,3,답장메일 +574,5,Lettre Réponse +574,6,Rückbrief +574,7,Carta Respuesta +574,8,Mess. Risp. +574,9,Reply Mail +575,1,ブリッジメールS +575,3,브리지메일S +575,5,Lettre PontS +575,6,Brückbrief H +575,7,Carta Puente S +575,8,Mess. Frec. +575,9,Bridge Mail S +576,1,ブリッジメールH +576,3,브리지메일M +576,5,Lettre PontY +576,6,Brückbrief M +576,7,Carta Puente F +576,8,Mess. Libec. +576,9,Bridge Mail D +577,1,ブリッジメールC +577,3,브리지메일C +577,5,Lettre PontF +577,6,Brückbrief Z +577,7,Carta Puente A +577,8,Mess. Prop. +577,9,Bridge Mail T +578,1,ブリッジメールV +578,3,브리지메일V +578,5,Lettre PontH +578,6,Brückbrief D +578,7,Carta Puente V +578,8,Mess. Vill. +578,9,Bridge Mail V +579,1,ブリッジメールW +579,3,브리지메일W +579,5,Lettre PontI +579,6,Brückbrief W +579,7,Carta Puente P +579,8,Mess. Merav. +579,9,Bridge Mail M +580,1,きれいなウロコ +580,3,고운비늘 +580,5,Bel'Écaille +580,6,Schönschuppe +580,7,Escama Bella +580,8,Squama Bella +580,9,Prism Scale +581,1,しんかのきせき +581,3,진화의휘석 +581,5,Évoluroc +581,6,Evolith +581,7,Mineral Evol +581,8,Evolcondensa +581,9,Eviolite +582,1,かるいし +582,3,가벼운돌 +582,5,Pierrallégée +582,6,Leichtstein +582,7,Piedra Pómez +582,8,Pietralieve +582,9,Float Stone +583,1,ゴツゴツメット +583,3,울퉁불퉁멧 +583,5,Casque Brut +583,6,Beulenhelm +583,7,Casco Dentado +583,8,Bitorzolelmo +583,9,Rocky Helmet +584,1,ふうせん +584,3,풍선 +584,5,Ballon +584,6,Luftballon +584,7,Globo Helio +584,8,Palloncino +584,9,Air Balloon +585,1,レッドカード +585,3,레드카드 +585,5,Carton Rouge +585,6,Rote Karte +585,7,Tarjeta Roja +585,8,Cartelrosso +585,9,Red Card +586,1,ねらいのまと +586,3,겨냥표적 +586,5,Point de Mire +586,6,Zielscheibe +586,7,Blanco +586,8,Facilsaglio +586,9,Ring Target +587,1,しめつけバンド +587,3,조임밴드 +587,5,Bande Étreinte +587,6,Klammerband +587,7,Banda Atadura +587,8,Legafascia +587,9,Binding Band +588,1,きゅうこん +588,3,구근 +588,5,Bulbe +588,6,Knolle +588,7,Tubérculo +588,8,Bulbo +588,9,Absorb Bulb +589,1,じゅうでんち +589,3,충전지 +589,5,Pile +589,6,Akku +589,7,Pila +589,8,Ricaripila +589,9,Cell Battery +590,1,だっしゅつボタン +590,3,탈출버튼 +590,5,Bouton Fuite +590,6,Fluchtknopf +590,7,Botón Escape +590,8,Pulsantefuga +590,9,Eject Button +591,1,ほのおのジュエル +591,3,불꽃주얼 +591,5,Joyau Feu +591,6,Feuerjuwel +591,7,Gema Fuego +591,8,Bijoufuoco +591,9,Fire Gem +592,1,みずのジュエル +592,3,물주얼 +592,5,Joyau Eau +592,6,Wasserjuwel +592,7,Gema Agua +592,8,Bijouacqua +592,9,Water Gem +593,1,でんきのジュエル +593,3,전기주얼 +593,5,Joyau Électrik +593,6,Elektrojuwel +593,7,Gema Eléctrica +593,8,Bijouelettro +593,9,Electric Gem +594,1,くさのジュエル +594,3,풀주얼 +594,5,Joyau Plante +594,6,Pflanzjuwel +594,7,Gema Planta +594,8,Bijouerba +594,9,Grass Gem +595,1,こおりのジュエル +595,3,얼음주얼 +595,5,Joyau Glace +595,6,Eisjuwel +595,7,Gema Hielo +595,8,Bijoughiaccio +595,9,Ice Gem +596,1,かくとうジュエル +596,3,격투주얼 +596,5,Joyau Combat +596,6,Kampfjuwel +596,7,Gema Lucha +596,8,Bijoulotta +596,9,Fighting Gem +597,1,どくのジュエル +597,3,독주얼 +597,5,Joyau Poison +597,6,Giftjuwel +597,7,Gema Veneno +597,8,Bijouveleno +597,9,Poison Gem +598,1,じめんのジュエル +598,3,땅주얼 +598,5,Joyau Sol +598,6,Bodenjuwel +598,7,Gema Tierra +598,8,Bijouterra +598,9,Ground Gem +599,1,ひこうのジュエル +599,3,비행주얼 +599,5,Joyau Vol +599,6,Flugjuwel +599,7,Gema Voladora +599,8,Bijouvolante +599,9,Flying Gem +600,1,エスパージュエル +600,3,에스퍼주얼 +600,5,Joyau Psy +600,6,Psychojuwel +600,7,Gema Psíquica +600,8,Bijoupsico +600,9,Psychic Gem +601,1,むしのジュエル +601,3,벌레주얼 +601,5,Joyau Insecte +601,6,Käferjuwel +601,7,Gema Bicho +601,8,Bijoucoleottero +601,9,Bug Gem +602,1,いわのジュエル +602,3,바위주얼 +602,5,Joyau Roche +602,6,Gesteinjuwel +602,7,Gema Roca +602,8,Bijouroccia +602,9,Rock Gem +603,1,ゴーストジュエル +603,3,고스트주얼 +603,5,Joyau Spectre +603,6,Geistjuwel +603,7,Gema Fantasma +603,8,Bijouspettro +603,9,Ghost Gem +604,1,あくのジュエル +604,3,악주얼 +604,5,Joyau Ténèbres +604,6,Unlichtjuwel +604,7,Gema Siniestra +604,8,Bijoubuio +604,9,Dark Gem +605,1,はがねのジュエル +605,3,강철주얼 +605,5,Joyau Acier +605,6,Stahljuwel +605,7,Gema Acero +605,8,Bijouacciaio +605,9,Steel Gem +606,1,たいりょくのハネ +606,3,체력날개 +606,5,Aile Santé +606,6,Heilfeder +606,7,Pluma Vigor +606,8,Piumsalute +606,9,Health Wing +607,1,きんりょくのハネ +607,3,근력날개 +607,5,Aile Force +607,6,Kraftfeder +607,7,Pluma Músculo +607,8,Piumpotenza +607,9,Muscle Wing +608,1,ていこうのハネ +608,3,저항력날개 +608,5,Aile Armure +608,6,Abwehrfeder +608,7,Pluma Aguante +608,8,Piumtutela +608,9,Resist Wing +609,1,ちりょくのハネ +609,3,지력날개 +609,5,Aile Esprit +609,6,Geniefeder +609,7,Pluma Intelecto +609,8,Piumingegno +609,9,Genius Wing +610,1,せいしんのハネ +610,3,정신력날개 +610,5,Aile Mental +610,6,Espritfeder +610,7,Pluma Mente +610,8,Piumintuito +610,9,Clever Wing +611,1,しゅんぱつのハネ +611,3,순발력날개 +611,5,Aile Sprint +611,6,Flinkfeder +611,7,Pluma Ímpetu +611,8,Piumreazione +611,9,Swift Wing +612,1,きれいなハネ +612,3,고운날개 +612,5,Jolie Aile +612,6,Prachtfeder +612,7,Pluma Bella +612,8,Piumabella +612,9,Pretty Wing +613,1,ふたのカセキ +613,3,덮개화석 +613,5,Fossile Plaque +613,6,Schildfossil +613,7,Fósil Tapa +613,8,Fossiltappo +613,9,Cover Fossil +614,1,はねのカセキ +614,3,날개화석 +614,5,Fossile Plume +614,6,Federfossil +614,7,Fósil Pluma +614,8,Fossilpiuma +614,9,Plume Fossil +615,1,リバティチケット +615,3,리버티티켓 +615,5,Pass Liberté +615,6,Gartenpass +615,7,Tarjeta Libertad +615,8,Liberticket +615,9,Liberty Pass +616,1,デルダマ +616,3,딜구슬 +616,5,Offrisphère +616,6,Transferorb +616,7,Regalosfera +616,8,Passabilia +616,9,Pass Orb +617,1,ドリームボール +617,3,드림볼 +617,5,Rêve Ball +617,6,Traumball +617,7,Ensueño Ball +617,8,Dream Ball +617,9,Dream Ball +618,1,ポケじゃらし +618,3,포켓풀 +618,5,Poképlumet +618,6,Pokéwedel +618,7,Pokéseñuelo +618,8,Pokégingillo +618,9,Poké Toy +619,1,グッズケース +619,3,굿즈케이스 +619,5,Boîte Parure +619,6,Deko-Box +619,7,Neceser +619,8,Portagadget +619,9,Prop Case +620,1,ドラゴンのホネ +620,3,드래곤의뼈 +620,5,Crâne Dragon +620,6,Drakoschädel +620,7,Cráneo Dragón +620,8,Teschio +620,9,Dragon Skull +621,1,かおるキノコ +621,3,향기버섯 +621,5,Champi Suave +621,6,Duftpilz +621,7,Seta Aroma +621,8,Profumfungo +621,9,Balm Mushroom +622,1,でかいきんのたま +622,3,큰금구슬 +622,5,Maxi Pépite +622,6,Riesennugget +622,7,Maxipepita +622,8,Granpepita +622,9,Big Nugget +623,1,おだんごしんじゅ +623,3,경단진주 +623,5,Perle Triple +623,6,Triperle +623,7,Sarta Perlas +623,8,Trittiperla +623,9,Pearl String +624,1,すいせいのかけら +624,3,혜성조각 +624,5,Morceau Comète +624,6,Kometstück +624,7,Fragmento Cometa +624,8,Pezzo Cometa +624,9,Comet Shard +625,1,こだいのどうか +625,3,고대의동화 +625,5,Vieux Sou +625,6,Alter Heller +625,7,Real Cobre +625,8,Soldantico +625,9,Relic Copper +626,1,こだいのぎんか +626,3,고대의은화 +626,5,Vieil Écu +626,6,Alter Taler +626,7,Real Plata +626,8,Ducatantico +626,9,Relic Silver +627,1,こだいのきんか +627,3,고대의금화 +627,5,Vieux Ducat +627,6,Alter Dukat +627,7,Real Oro +627,8,Doblonantico +627,9,Relic Gold +628,1,こだいのツボ +628,3,고대의항아리 +628,5,Vieux Vase +628,6,Alte Vase +628,7,Ánfora +628,8,Vasantico +628,9,Relic Vase +629,1,こだいのうでわ +629,3,고대의팔찌 +629,5,Vieux Bijou +629,6,Alter Reif +629,7,Brazal +629,8,Bracciantico +629,9,Relic Band +630,1,こだいのせきぞう +630,3,고대의석상 +630,5,Vieux Santon +630,6,Alte Statue +630,7,Efigie Antigua +630,8,Statuantica +630,9,Relic Statue +631,1,こだいのおうかん +631,3,고대의왕관 +631,5,Vieux Tortil +631,6,Alte Krone +631,7,Corona Antigua +631,8,Coronantica +631,9,Relic Crown +632,1,ヒウンアイス +632,3,구름아이스 +632,5,Glace Volute +632,6,Stratos-Eis +632,7,Porcehelado +632,8,Conostropoli +632,9,Casteliacone +633,1,クリティカット2 +633,3,크리티컬커터2 +633,5,Muscle 2 +633,6,Angriffplus2 +633,7,Directo 2 +633,8,Supercolpo 2 +633,9,Dire Hit 2 +634,1,スピーダー2 +634,3,스피드업2 +634,5,Vitesse 2 +634,6,X-Tempo2 +634,7,Velocidad X 2 +634,8,Velocità X-2 +634,9,X Speed 2 +635,1,SPアップ2 +635,3,스페셜업2 +635,5,Atq. Spé. 2 +635,6,X-Spezial2 +635,7,Especial X 2 +635,8,Special X-2 +635,9,X Sp. Atk 2 +636,1,SPガード2 +636,3,스페셜가드2 +636,5,Déf. Spé. 2 +636,6,X-Sp. Ver.2 +636,7,Def. Esp. X 2 +636,8,Dif. Spec. X-2 +636,9,X Sp. Def 2 +637,1,ディフェンダー2 +637,3,디펜드업2 +637,5,Défense 2 +637,6,X-Abwehr2 +637,7,Defensa X 2 +637,8,Difesa X-2 +637,9,X Defense 2 +638,1,プラスパワー2 +638,3,플러스파워2 +638,5,Attaque 2 +638,6,X-Angriff2 +638,7,Ataque X 2 +638,8,Attacco X-2 +638,9,X Attack 2 +639,1,ヨクアタール2 +639,3,잘-맞히기2 +639,5,Précision 2 +639,6,X-Treffer2 +639,7,Precisión X 2 +639,8,Precisione X-2 +639,9,X Accuracy 2 +640,1,スピーダー3 +640,3,스피드업3 +640,5,Vitesse 3 +640,6,X-Tempo3 +640,7,Velocidad X 3 +640,8,Velocità X-3 +640,9,X Speed 3 +641,1,SPアップ3 +641,3,스페셜업3 +641,5,Atq. Spé. 3 +641,6,X-Spezial3 +641,7,Especial X 3 +641,8,Special X-3 +641,9,X Sp. Atk 3 +642,1,SPガード3 +642,3,스페셜가드3 +642,5,Déf. Spé. 3 +642,6,X-Sp. Ver.3 +642,7,Def. Esp. X 3 +642,8,Dif. Spec. X-3 +642,9,X Sp. Def 3 +643,1,ディフェンダー3 +643,3,디펜드업3 +643,5,Défense 3 +643,6,X-Abwehr3 +643,7,Defensa X 3 +643,8,Difesa X-3 +643,9,X Defense 3 +644,1,プラスパワー3 +644,3,플러스파워3 +644,5,Attaque 3 +644,6,X-Angriff3 +644,7,Ataque X 3 +644,8,Attacco X-3 +644,9,X Attack 3 +645,1,ヨクアタール3 +645,3,잘-맞히기3 +645,5,Précision 3 +645,6,X-Treffer3 +645,7,Precisión X 3 +645,8,Precisione X-3 +645,9,X Accuracy 3 +646,1,スピーダー6 +646,3,스피드업6 +646,5,Vitesse 6 +646,6,X-Tempo6 +646,7,Velocidad X 6 +646,8,Velocità X-6 +646,9,X Speed 6 +647,1,SPアップ6 +647,3,스페셜업6 +647,5,Atq. Spé. 6 +647,6,X-Spezial6 +647,7,Especial X 6 +647,8,Special X-6 +647,9,X Sp. Atk 6 +648,1,SPガード6 +648,3,스페셜가드6 +648,5,Déf. Spé. 6 +648,6,X-Sp. Ver.6 +648,7,Def. Esp. X 6 +648,8,Dif. Spec. X-6 +648,9,X Sp. Def 6 +649,1,ディフェンダー6 +649,3,디펜드업6 +649,5,Défense 6 +649,6,X-Abwehr6 +649,7,Defensa X 6 +649,8,Difesa X-6 +649,9,X Defense 6 +650,1,プラスパワー6 +650,3,플러스파워6 +650,5,Attaque 6 +650,6,X-Angriff6 +650,7,Ataque X 6 +650,8,Attacco X-6 +650,9,X Attack 6 +651,1,ヨクアタール6 +651,3,잘-맞히기6 +651,5,Précision 6 +651,6,X-Treffer6 +651,7,Precisión X 6 +651,8,Precisione X-6 +651,9,X Accuracy 6 +652,1,スキルコール +652,3,스킬콜 +652,5,Appel Talent +652,6,Fäh.-Appell +652,7,Habilitador +652,8,Chiamabilità +652,9,Ability Urge +653,1,アイテムドロップ +653,3,아이템드롭 +653,5,Jette Objet +653,6,Itemabwurf +653,7,Tiraobjeto +653,8,Lascioggetto +653,9,Item Drop +654,1,アイテムコール +654,3,아이템콜 +654,5,Appel Objet +654,6,Itemappell +654,7,Activaobjeto +654,8,Chiamoggetto +654,9,Item Urge +655,1,フラットコール +655,3,플랫콜 +655,5,Réamorçage +655,6,Umkehrappell +655,7,Quitaestado +655,8,Ripristino +655,9,Reset Urge +656,1,クリティカット3 +656,3,크리티컬커터3 +656,5,Muscle 3 +656,6,Angriffplus3 +656,7,Directo 3 +656,8,Supercolpo 3 +656,9,Dire Hit 3 +657,1,ライトストーン +657,3,라이트스톤 +657,5,Galet Blanc +657,6,Lichtstein +657,7,Orbe Claro +657,8,Chiarolite +657,9,Light Stone +658,1,ダークストーン +658,3,다크스톤 +658,5,Galet Noir +658,6,Dunkelstein +658,7,Orbe Oscuro +658,8,Scurolite +658,9,Dark Stone +659,1,わざマシン93 +659,3,기술머신93 +659,5,CT93 +659,6,TM93 +659,7,MT93 +659,8,MT93 +659,9,TM93 +660,1,わざマシン94 +660,3,기술머신94 +660,5,CT94 +660,6,TM94 +660,7,MT94 +660,8,MT94 +660,9,TM94 +661,1,わざマシン95 +661,3,기술머신95 +661,5,CT95 +661,6,TM95 +661,7,MT95 +661,8,MT95 +661,9,TM95 +662,1,ライブキャスター +662,3,라이브캐스터 +662,5,Vokit +662,6,Viso-Caster +662,7,Videomisor +662,8,Interpoké +662,9,Xtransceiver +663,1,ゴッドストーン +663,9,god stone +664,1,はいたつぶつ1 +664,3,배달물1 +664,5,Courrier 1 +664,6,Briefpost 1 +664,7,Envío 1 +664,8,Missiva 1 +664,9,Gram 1 +665,1,はいたつぶつ2 +665,3,배달물2 +665,5,Courrier 2 +665,6,Briefpost 2 +665,7,Envío 2 +665,8,Missiva 2 +665,9,Gram 2 +666,1,はいたつぶつ3 +666,3,배달물3 +666,5,Courrier 3 +666,6,Briefpost 3 +666,7,Envío 3 +666,8,Missiva 3 +666,9,Gram 3 +668,1,ドラゴンジュエル +668,3,드래곤주얼 +668,5,Joyau Dragon +668,6,Drakojuwel +668,7,Gema Dragón +668,8,Bijoudrago +668,9,Dragon Gem +669,1,ノーマルジュエル +669,3,노말주얼 +669,5,Joyau Normal +669,6,Normaljuwel +669,7,Gema Normal +669,8,Bijounormale +669,9,Normal Gem +670,1,メダルボックス +670,3,메달박스 +670,5,Boîte Médailles +670,6,Medaillenbox +670,7,Caja Insignias +670,8,Box Premi +670,9,Medal Box +671,1,いでんしのくさび +671,3,유전자쐐기 +671,5,Pointeau ADN +671,6,DNS-Keil +671,7,Punta ADN +671,8,Cuneo DNA +671,9,DNA Splicers +673,1,きょかしょう +673,3,허가증 +673,5,Permis +673,6,Genehmigung +673,7,Pase +673,8,Permesso +673,9,Permit +674,1,まるいおまもり +674,3,둥근부적 +674,5,Charme Ovale +674,6,Ovalpin +674,7,Amuleto Oval +674,8,Ovamuleto +674,9,Oval Charm +675,1,ひかるおまもり +675,3,빛나는부적 +675,5,Charme Chroma +675,6,Schillerpin +675,7,Amuleto Iris +675,8,Cromamuleto +675,9,Shiny Charm +676,1,プラズマカード +676,3,플라스마카드 +676,5,Carte Plasma +676,6,Plasmakarte +676,7,Tarjeta Plasma +676,8,Carta Plasma +676,9,Plasma Card +677,1,よごれたハンカチ +677,3,더러운손수건 +677,5,Mouchoir Sale +677,6,Schnäuztuch +677,7,Pañuelo Sucio +677,8,Pezza Sporca +677,9,Grubby Hanky +678,1,アクロママシーン +678,3,아크로마머신 +678,5,Nikodule +678,6,Achromat +678,7,Acromáquina +678,8,Acrocongegno +678,9,Colress Machine +679,1,わすれもの +679,3,잊은물건 +679,5,Objet Trouvé +679,6,Fundsache +679,7,Objeto Perdido +679,8,Oggetto perso +679,9,Dropped Item +681,1,うつしかがみ +681,3,비추는거울 +681,5,Miroir Sacré +681,6,Wahrspiegel +681,7,Espejo Veraz +681,8,Verispecchio +681,9,Reveal Glass +682,1,じゃくてんほけん +682,3,약점보험 +682,5,Vulné-Assurance +682,6,Schwächenschutz +682,7,Seguro Debilidad +682,8,Vulneropolizza +682,9,Weakness Policy +683,1,とつげきチョッキ +683,3,돌격조끼 +683,5,Veste de Combat +683,6,Offensivweste +683,7,Chaleco Asalto +683,8,Corpetto assalto +683,9,Assault Vest +684,1,せいれいプレート +684,3,정령플레이트 +684,5,Plaque Pixie +684,6,Feentafel +684,7,Tabla Duende +684,8,Lastraspiritello +684,9,Pixie Plate +685,1,とくせいカプセル +685,3,특성캡슐 +685,5,Pilule Talent +685,6,Fähigk.-Kapsel +685,7,Cáps. Habilidad +685,8,Capsula abilità +685,9,Ability Capsule +686,1,ホイップポップ +686,3,휘핑팝 +686,5,Chantibonbon +686,6,Sahnehäubchen +686,7,Dulce de Nata +686,8,Dolcespuma +686,9,Whipped Dream +687,1,においぶくろ +687,3,향기주머니 +687,5,Sachet Senteur +687,6,Duftbeutel +687,7,Saquito Fragante +687,8,Bustina aromi +687,9,Sachet +688,1,ひかりごけ +688,3,빛이끼 +688,5,Lichen Lumineux +688,6,Leuchtmoos +688,7,Musgo Brillante +688,8,Muschioluce +688,9,Luminous Moss +689,1,ゆきだま +689,3,눈덩이 +689,5,Boule de Neige +689,6,Schneeball +689,7,Bola de Nieve +689,8,Palla di neve +689,9,Snowball +690,1,ぼうじんゴーグル +690,3,방진고글 +690,5,Lunettes Filtre +690,6,Schutzbrille +690,7,Gafa Protectora +690,8,Visierantisabbia +690,9,Safety Goggles +691,1,たわわこやし +691,3,주렁주렁비료 +691,5,Fertibondance +691,6,Sprießmulch +691,7,Abono Fértil +691,8,Fertilflorido +691,9,Rich Mulch +692,1,びっくりこやし +692,3,깜놀비료 +692,5,Fertistantané +692,6,Wundermulch +692,7,Abono Sorpresa +692,8,Fertilsorpresa +692,9,Surprise Mulch +693,1,ぐんぐんこやし +693,3,부쩍부쩍비료 +693,5,Fertibérance +693,6,Wuchermulch +693,7,Abono Fructífero +693,8,Fertilcopioso +693,9,Boost Mulch +694,1,とんでもこやし +694,3,기절초풍비료 +694,5,Fertiprodige +694,6,Ultramulch +694,7,Abono Insólito +694,8,Fertilprodigio +694,9,Amaze Mulch +695,1,ゲンガナイト +695,3,팬텀나이트 +695,5,Ectoplasmite +695,6,Gengarnit +695,7,Gengarita +695,8,Gengarite +695,9,Gengarite +696,1,サーナイトナイト +696,3,가디안나이트 +696,5,Gardevoirite +696,6,Guardevoirnit +696,7,Gardevoirita +696,8,Gardevoirite +696,9,Gardevoirite +697,1,デンリュウナイト +697,3,전룡나이트 +697,5,Pharampite +697,6,Ampharosnit +697,7,Ampharosita +697,8,Ampharosite +697,9,Ampharosite +698,1,フシギバナイト +698,3,이상해꽃나이트 +698,5,Florizarrite +698,6,Bisaflornit +698,7,Venusaurita +698,8,Venusaurite +698,9,Venusaurite +699,1,リザードナイトX +699,3,리자몽나이트X +699,5,Dracaufite X +699,6,Gluraknit X +699,7,Charizardita X +699,8,Charizardite X +699,9,Charizardite X +700,1,カメックスナイト +700,3,거북왕나이트 +700,5,Tortankite +700,6,Turtoknit +700,7,Blastoisita +700,8,Blastoisite +700,9,Blastoisinite +701,1,ミュウツナイトX +701,3,뮤츠나이트X +701,5,Mewtwoïte X +701,6,Mewtunit X +701,7,Mewtwoita X +701,8,Mewtwoite X +701,9,Mewtwonite X +702,1,ミュウツナイトY +702,3,뮤츠나이트Y +702,5,Mewtwoïte Y +702,6,Mewtunit Y +702,7,Mewtwoita Y +702,8,Mewtwoite Y +702,9,Mewtwonite Y +703,1,バシャーモナイト +703,3,번치코나이트 +703,5,Braségalite +703,6,Lohgocknit +703,7,Blazikenita +703,8,Blazikenite +703,9,Blazikenite +704,1,チャーレムナイト +704,3,요가램나이트 +704,5,Charminite +704,6,Meditalisnit +704,7,Medichamita +704,8,Medichamite +704,9,Medichamite +705,1,ヘルガナイト +705,3,헬가나이트 +705,5,Démolossite +705,6,Hundemonit +705,7,Houndoomita +705,8,Houndoomite +705,9,Houndoominite +706,1,ボスゴドラナイト +706,3,보스로라나이트 +706,5,Galekingite +706,6,Stollossnit +706,7,Aggronita +706,8,Aggronite +706,9,Aggronite +707,1,ジュペッタナイト +707,3,다크펫나이트 +707,5,Branettite +707,6,Banetteonit +707,7,Banettita +707,8,Banettite +707,9,Banettite +708,1,バンギラスナイト +708,3,마기라스나이트 +708,5,Tyranocivite +708,6,Despotarnit +708,7,Tyranitarita +708,8,Tyranitarite +708,9,Tyranitarite +709,1,ハッサムナイト +709,3,핫삼나이트 +709,5,Cizayoxite +709,6,Scheroxnit +709,7,Scizorita +709,8,Scizorite +709,9,Scizorite +710,1,カイロスナイト +710,3,쁘사이저나이트 +710,5,Scarabruite +710,6,Pinsirnit +710,7,Pinsirita +710,8,Pinsirite +710,9,Pinsirite +711,1,プテラナイト +711,3,프테라나이트 +711,5,Ptéraïte +711,6,Aerodactylonit +711,7,Aerodactylita +711,8,Aerodactylite +711,9,Aerodactylite +712,1,ルカリオナイト +712,3,루카리오나이트 +712,5,Lucarite +712,6,Lucarionit +712,7,Lucarita +712,8,Lucarite +712,9,Lucarionite +713,1,ユキノオナイト +713,3,눈설왕나이트 +713,5,Blizzarite +713,6,Rexblisarnit +713,7,Abomasnowita +713,8,Abomasnowite +713,9,Abomasite +714,1,ガルーラナイト +714,3,캥카나이트 +714,5,Kangourexite +714,6,Kangamanit +714,7,Kangaskhanita +714,8,Kangaskhanite +714,9,Kangaskhanite +715,1,ギャラドスナイト +715,3,갸라도스나이트 +715,5,Léviatorite +715,6,Garadosnit +715,7,Gyaradosita +715,8,Gyaradosite +715,9,Gyaradosite +716,1,アブソルナイト +716,3,앱솔나이트 +716,5,Absolite +716,6,Absolnit +716,7,Absolita +716,8,Absolite +716,9,Absolite +717,1,リザードナイトY +717,3,리자몽나이트Y +717,5,Dracaufite Y +717,6,Gluraknit Y +717,7,Charizardita Y +717,8,Charizardite Y +717,9,Charizardite Y +718,1,フーディナイト +718,3,후디나이트 +718,5,Alakazamite +718,6,Simsalanit +718,7,Alakazamita +718,8,Alakazamite +718,9,Alakazite +719,1,ヘラクロスナイト +719,3,헤라크로스나이트 +719,5,Scarhinoïte +719,6,Skarabornit +719,7,Heracrossita +719,8,Heracrossite +719,9,Heracronite +720,1,クチートナイト +720,3,입치트나이트 +720,5,Mysdibulite +720,6,Flunkifernit +720,7,Mawilita +720,8,Mawilite +720,9,Mawilite +721,1,ライボルトナイト +721,3,썬더볼트나이트 +721,5,Élecsprintite +721,6,Voltensonit +721,7,Manectricita +721,8,Manectricite +721,9,Manectite +722,1,ガブリアスナイト +722,3,한카리아스나이트 +722,5,Carchacrokite +722,6,Knakracknit +722,7,Garchompita +722,8,Garchompite +722,9,Garchompite +723,1,ロゼルのみ +723,3,로셀열매 +723,5,Baie Selro +723,6,Hibisbeere +723,7,Baya Hibis +723,8,Baccarcadè +723,9,Roseli Berry +724,1,アッキのみ +724,3,악키열매 +724,5,Baie Éka +724,6,Akibeere +724,7,Baya Biglia +724,8,Baccalighia +724,9,Kee Berry +725,1,タラプのみ +725,3,타라프열매 +725,5,Baie Rangma +725,6,Tarabeere +725,7,Baya Maranga +725,8,Baccapane +725,9,Maranga Berry +726,1,バーゲンチケット +726,3,바겐세일티켓 +726,5,Bon Réduction +726,6,Rabattmarke +726,7,Vale Descuento +726,8,Buono sconto +726,9,Discount Coupon +727,1,ふしぎなおきもの +727,3,이상한장식품 +727,5,Bibelot Bizarre +727,6,Skurriloskulptur +727,7,Estatuilla Rara +727,8,Strano ninnolo +727,9,Strange Souvenir +728,1,ミアレガレット +728,3,미르갈레트 +728,5,Galette Illumis +728,6,Illumina-Galette +728,7,Crêpe Luminalia +728,8,Pan di Lumi +728,9,Lumiose Galette +729,1,アゴのカセキ +729,3,턱화석 +729,5,Fossile Mâchoire +729,6,Kieferfossil +729,7,Fósil Mandíbula +729,8,Fossilmascella +729,9,Jaw Fossil +730,1,ヒレのカセキ +730,3,지느러미화석 +730,5,Fossile Nageoire +730,6,Flossenfossil +730,7,Fósil Aleta +730,8,Fossilpinna +730,9,Sail Fossil +731,1,ようせいジュエル +731,3,페어리주얼 +731,5,Joyau Fée +731,6,Feenjuwel +731,7,Gema Hada +731,8,Bijoufolletto +731,9,Fairy Gem +732,1,たんけんこころえ +732,3,탐험수칙 +732,5,ABC Aventure +732,6,Abenteuerfibel +732,7,Guía de Máximas +732,8,Guida Avventura +732,9,Adventure Rules +733,1,エレベータのキー +733,3,엘리베이터키 +733,5,Clé Ascenseur +733,6,Liftschlüssel +733,7,Llave Ascensor +733,8,Chiave ascensore +733,9,Elevator Key +734,1,ホロキャスター +734,3,홀로캐스터 +734,5,Holokit +734,6,Holo-Log +734,7,Holomisor +734,8,Holovox +734,9,Holo Caster +735,1,カロスエンブレム +735,3,칼로스엠블럼 +735,5,Insigne de Kalos +735,6,Kalos-Emblem +735,7,Emblema Kalos +735,8,Emblema di Kalos +735,9,Honor of Kalos +736,1,すごそうないし +736,3,대단할듯한돌 +736,5,Pierre Insolite +736,6,Kurioser Stein +736,7,Piedra Insólita +736,8,Sasso suggestivo +736,9,Intriguing Stone +737,1,レンズケース +737,3,렌즈케이스 +737,5,Boîte Lentilles +737,6,Linsenetui +737,7,Portalentillas +737,8,Portalenti +737,9,Lens Case +738,1,ハンサムチケット +738,3,핸섬티켓 +738,5,Ticket Beladonis +738,6,LeBelle-Ticket +738,7,Boleto Handsome +738,8,Carta Bellocchio +738,9,Looker Ticket +739,1,メガリング +739,3,메가링 +739,5,Méga-Anneau +739,6,Mega-Ring +739,7,Mega-Aro +739,8,Megacerchio +739,9,Mega Ring +740,1,はつでんしょパス +740,3,발전소패스 +740,5,Passe Centrale +740,6,Kraftwerks-Pass +740,7,Pase Central +740,8,Pass Centrale +740,9,Power Plant Pass +741,1,はかせのてがみ +741,3,박사의편지 +741,5,Lettre du Prof +741,6,Brief vom Prof +741,7,Carta Profesor +741,8,Lettera del Prof +741,9,Prof's Letter +742,1,ローラースケート +742,3,롤러스케이트 +742,5,Rollers +742,6,Rollerskates +742,7,Patines +742,8,Pattini +742,9,Roller Skates +743,1,ハスボーじょうろ +743,3,연꽃몬물뿌리개 +743,5,Nénurrosoir +743,6,Loturzelkanne +743,7,Lotadgadera +743,8,Irrigalotad +743,9,Sprinklotad +744,1,TMVパス +744,3,TMV패스 +744,5,Passe TMV +744,6,TMV-Pass +744,7,Abono del TMV +744,8,Pass TMV +744,9,TMV Pass +745,1,わざマシン96 +745,3,기술머신96 +745,5,CT96 +745,6,TM96 +745,7,MT96 +745,8,MT96 +745,9,TM96 +746,1,わざマシン97 +746,3,기술머신97 +746,5,CT97 +746,6,TM97 +746,7,MT97 +746,8,MT97 +746,9,TM97 +747,1,わざマシン98 +747,3,기술머신98 +747,5,CT98 +747,6,TM98 +747,7,MT98 +747,8,MT98 +747,9,TM98 +748,1,わざマシン99 +748,3,기술머신99 +748,5,CT99 +748,6,TM99 +748,7,MT99 +748,8,MT99 +748,9,TM99 +749,1,わざマシン100 +749,3,기술머신100 +749,5,CT100 +749,6,TM100 +749,7,MT100 +749,8,MT100 +749,9,TM100 diff --git a/data/v2/csv/item_pocket_names.csv b/data/v2/csv/item_pocket_names.csv new file mode 100644 index 00000000..ca85fd6a --- /dev/null +++ b/data/v2/csv/item_pocket_names.csv @@ -0,0 +1,9 @@ +item_pocket_id,local_language_id,name +1,9,Items +2,9,Medicine +3,9,Poké Balls +4,9,TMs and HMs +5,9,Berries +6,9,Mail +7,9,Battle Items +8,9,Key Items diff --git a/data/v2/csv/item_pockets.csv b/data/v2/csv/item_pockets.csv new file mode 100644 index 00000000..421470df --- /dev/null +++ b/data/v2/csv/item_pockets.csv @@ -0,0 +1,9 @@ +id,identifier +1,misc +2,medicine +3,pokeballs +4,machines +5,berries +6,mail +7,battle +8,key diff --git a/data/v2/csv/item_prose.csv b/data/v2/csv/item_prose.csv new file mode 100644 index 00000000..41713ea0 --- /dev/null +++ b/data/v2/csv/item_prose.csv @@ -0,0 +1,1241 @@ +item_id,local_language_id,short_effect,effect +1,9,Catches a wild Pokémon every time.,"Used in battle +: [Catches]{mechanic:catch} a wild Pokémon without fail. + + If used in a trainer battle, nothing happens and the ball is lost." +2,9,Tries to catch a wild Pokémon. Success rate is 2×.,"Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon, using a catch rate of 2×. + + If used in a trainer battle, nothing happens and the ball is lost." +3,9,Tries to catch a wild Pokémon. Success rate is 1.5×.,"Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon, using a catch rate of 1.5×. + + If used in a trainer battle, nothing happens and the ball is lost." +4,9,Tries to catch a wild Pokémon.,"Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon, using a catch rate of 1×. + + If used in a trainer battle, nothing happens and the ball is lost." +5,9,Tries to catch a wild Pokémon in the Great Marsh or Safari Zone. Success rate is 1.5×.,"Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon, using a catch rate of 1.5×. + +This item can only be used in the []{location:great-marsh} or []{location:kanto-safari-zone}." +6,9,Tries to catch a wild Pokémon. Success rate is 3× for water and bug Pokémon.,"Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. If the wild Pokémon is []{type:water}- or []{type:bug}-type, this ball has a catch rate of 3×. Otherwise, it has a catch rate of 1×. + + If used in a trainer battle, nothing happens and the ball is lost." +7,9,"Tries to catch a wild Pokémon. Success rate is 3.5× when underwater, fishing, or surfing.","Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. If the wild Pokémon was encountered by surfing or fishing, this ball has a catch rate of 3.5×. Otherwise, it has a catch rate of 1×. + + If used in a trainer battle, nothing happens and the ball is lost." +8,9,"Tries to catch a wild Pokémon. Success rate is 3.9× for level 1 Pokémon, and drops steadily to 1× at level 30.","Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. Has a catch rate of given by `(40 - level) / 10`, where `level` is the wild Pokémon's level, to a maximum of 3.9× for level 1 Pokémon. If the wild Pokémon's level is higher than 30, this ball has a catch rate of 1×. + + If used in a trainer battle, nothing happens and the ball is lost." +9,9,Tries to catch a wild Pokémon. Success rate is 3× for previously-caught Pokémon.,"Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. If the wild Pokémon's species is marked as caught in the trainer's Pokédex, this ball has a catch rate of 3×. Otherwise, it has a catch rate of 1×. + + If used in a trainer battle, nothing happens and the ball is lost." +10,9,"Tries to catch a wild Pokémon. Success rate increases by 0.1× (Gen V: 0.3×) every turn, to a max of 4×.","Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. Has a catch rate of 1.1× on the first turn of the battle and increases by 0.1× every turn, to a maximum of 4× on turn 30. + + If used in a trainer battle, nothing happens and the ball is lost." +11,9,Tries to catch a wild Pokémon. Caught Pokémon start with 200 happiness.,"Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon, using a catch rate of 1×. Whenever the caught Pokémon's [happiness]{mechanic:happiness} increases, it increases by one extra point. + + If used in a trainer battle, nothing happens and the ball is lost." +12,9,Tries to catch a wild Pokémon.,"Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon, using a catch rate of 1×. + + If used in a trainer battle, nothing happens and the ball is lost." +13,9,Tries to catch a wild Pokémon. Success rate is 3.5× at night and in caves.,"Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. If it's currently nighttime or the wild Pokémon was encountered while walking in a cave, this ball has a catch rate of 3.5×. Otherwise, it has a catch rate of 1×. + + If used in a trainer battle, nothing happens and the ball is lost." +14,9,Tries to catch a wild Pokémon. Caught Pokémon are immediately healed.,"Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon, using a catch rate of 1×. The caught Pokémon's [HP]{mechanic:hp} is immediately restored, [PP]{mechanic:pp} for all its moves is restored, and any [status ailment]{mechanic:status-ailment} is cured. + + If used in a trainer battle, nothing happens and the ball is lost." +15,9,"Tries to catch a wild Pokémon. Success rate is 4× (Gen V: 5×), but only on the first turn.","Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon, using a catch rate of 4× on the first turn of a battle, but 1× any other time. + + If used in a trainer battle, nothing happens and the ball is lost." +16,9,Tries to catch a wild Pokémon.,"Used in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon, using a catch rate of 1×. + + If used in a trainer battle, nothing happens and the ball is lost." +17,9,Restores 20 HP.,"Used on a friendly Pokémon +: Restores 20 [HP]{mechanic:hp}." +18,9,Cures poison.,"Used on a party Pokémon +: Cures [poison]{mechanic:poison}." +19,9,Cures a burn.,"Used on a party Pokémon +: Cures a [burn]{mechanic:burn}." +20,9,Cures freezing.,"Used on a party Pokémon +: Cures [freezing]{mechanic:freezing}." +21,9,Cures sleep.,"Used on a party Pokémon +: Cures [sleep]{mechanic:sleep}." +22,9,Cures paralysis.,"Used on a party Pokémon +: Cures [paralysis]{mechanic:paralysis}." +23,9,Restores HP to full and cures any status ailment and confusion.,"Used on a party Pokémon +: Restores [HP]{mechanic:hp} to full and cures any [status ailment]{mechanic:status-ailment} and [confusion]{mechanic:confusion}." +24,9,Restores HP to full.,"Used on a party Pokémon +: Restores [HP]{mechanic:hp} to full." +25,9,Restores 200 HP.,"Used on a party Pokémon +: Restores 200 [HP]{mechanic:hp}." +26,9,Restores 50 HP.,"Used on a party Pokémon +: Restores 50 [HP]{mechanic:hp}." +27,9,Cures any status ailment and confusion.,"Used on a party Pokémon +: Cures any [status ailment]{mechanic:status-ailment} and [confusion]{mechanic:confusion}." +28,9,Revives with half HP.,"Used on a party Pokémon +: Revives the Pokémon and restores half its [HP]{mechanic:hp}." +29,9,Revives with full HP.,"Used on a party Pokémon +: Revives the Pokémon and restores its [HP]{mechanic:hp} to full." +30,9,Restores 50 HP.,"Used on a party Pokémon +: Restores 50 [HP]{mechanic:hp}." +31,9,Restores 60 HP.,"Used on a party Pokémon +: Restores 60 [HP]{mechanic:hp}." +32,9,Restores 80 HP.,"Used on a party Pokémon +: Restores 80 [HP]{mechanic:hp}." +33,9,Restores 100 HP.,"Used on a party Pokémon +: Restores 100 [HP]{mechanic:hp}." +34,9,"Restores 50 HP, but lowers happiness.","Used on a party Pokémon +: Restores 50 [HP]{mechanic:hp}. Decreases [happiness]{mechanic:happiness} by 5/5/10." +35,9,"Restores 200 HP, but lowers happiness.","Used on a party Pokémon +: Restores 200 [HP]{mechanic:hp}. Decreases [happiness]{mechanic:happiness} by 10/10/15." +36,9,"Cures any status ailment, but lowers happiness.","Used on a party Pokémon +: Cures any [status ailment]{mechanic:status-ailment}. Decreases [happiness]{mechanic:happiness} by 5/5/10." +37,9,"Revives with full HP, but lowers happiness.","Used on a party Pokémon +: Revives a [fainted]{mechanic:faint} Pokémon and restores its [HP]{mechanic:hp} to full. Decreases [happiness]{mechanic:happiness} by 10/10/15." +38,9,Restores 10 PP for one move.,"Used on a party Pokémon +: Restores 10 [PP]{mechanic:pp} for a selected move." +39,9,Restores PP to full for one move.,"Used on a party Pokémon +: Restores [PP]{mechanic:pp} to full for a selected move." +40,9,Restores 10 PP for each move.,"Used on a party Pokémon +: Restores 10 [PP]{mechanic:pp} for each move." +41,9,Restores PP to full for each move.,"Used on a party Pokémon +: Restores [PP]{mechanic:pp} to full for each move." +42,9,Cures any status ailment and confusion.,"Used on a party Pokémon +: Cures any [status ailment]{mechanic:status-ailment} and [confusion]{mechanic:confusion}." +43,9,Restores 20 HP.,"Used on a party Pokémon +: Restores 20 [HP]{mechanic:hp}." +44,9,Revives all fainted Pokémon with full HP.,"Used +: Revives all [fainted]{mechanic:faint} Pokémon in the party and restores their [HP]{mechanic:hp} to full." +45,9,Raises HP effort and happiness.,"Used on a party Pokémon +: Increases [HP]{mechanic:hp} [effort]{mechanic:effort} by 10, but won't increase it beyond 100. Increases [happiness]{mechanic:happiness} by 5/3/2." +46,9,Raises Attack effort and happiness.,"Used on a party Pokémon +: Increases [Attack]{mechanic:attack} [effort]{mechanic:effort} by 10, but won't increase it beyond 100. Increases [happiness]{mechanic:happiness} by 5/3/2." +47,9,Raises Defense effort and happiness.,"Used on a party Pokémon +: Increases [Defense]{mechanic:defense} [effort]{mechanic:effort} by 10, but won't increase it beyond 100. Increases [happiness]{mechanic:happiness} by 5/3/2." +48,9,Raises Speed effort and happiness.,"Used on a party Pokémon +: Increases [Speed]{mechanic:speed} [effort]{mechanic:effort} by 10, but won't increase it beyond 100. Increases [happiness]{mechanic:happiness} by 5/3/2." +49,9,Raises Special Attack effort and happiness.,"Used on a party Pokémon +: Increases [Special Attack]{mechanic:special-attack} [effort]{mechanic:effort} by 10, but won't increase it beyond 100. Increases [happiness]{mechanic:happiness} by 5/3/2." +50,9,Causes a level-up and raises happiness.,"Used on a party Pokémon +: Increases level by 1. Increases [happiness]{mechanic:happiness} by 5/3/2." +51,9,Raises a move's max PP by 20%.,"Used on a party Pokémon +: Increases a selected move's max [PP]{mechanic:pp} by 20% its original max PP, to a maximum of 1.6×. Increases [happiness]{mechanic:happiness} by 5/3/2." +52,9,Raises Special Defense and happiness.,"Used on a party Pokémon +: Increases [Special Defense]{mechanic:special-defense} [effort]{mechanic:effort} by 10, but won't increase it beyond 100. Increases [happiness]{mechanic:happiness} by 5/3/2." +53,9,Raises a move's max PP by 60%.,"Used on a party Pokémon +: Increases a selected move's max [PP]{mechanic:pp} to 1.6× its original max PP. Increases [happiness]{mechanic:happiness} by 5/3/2." +54,9,Cures any status ailment and confusion.,"Used on a party Pokémon +: Cures any [status ailment]{mechanic:status-ailment} and [confusion]{mechanic:confusion}." +55,9,Prevents stat changes in battle for five turns in battle. Raises happiness.,"Used on a party Pokémon in battle +: Protects the target's stats from being [lowered]{mechanic:lower} for the next five turns. Increases happiness by 1/1/0." +56,9,Increases the chance of a critical hit in battle. Raises happiness.,"Used on a party Pokémon in battle +: Increases the target's [critical hit chance]{mechanic:critical-hit-chance} by one stage until it leaves the field. Increases happiness by 1/1/0." +57,9,Raises Attack by one stage in battle. Raises happiness.,"Used on a party Pokémon in battle +: [Raises]{mechanic:raise} the target's [Attack]{mechanic:attack} by one stage. Increases happiness by 1/1/0." +58,9,Raises Defense by one stage in battle. Raises happiness.,"Used on a party Pokémon in battle +: [Raises]{mechanic:raise} the target's [Defense]{mechanic:defense} by one stage. Increases happiness by 1/1/0." +59,9,Raises Speed by one stage in battle. Raises happiness.,"Used on a party Pokémon in battle +: [Raises]{mechanic:raise} the target's [Speed]{mechanic:speed} by one stage. Increases happiness by 1/1/0." +60,9,Raises accuracy by one stage in battle. Raises happiness.,"Used on a party Pokémon in battle +: [Raises]{mechanic:raise} the target's [accuracy]{mechanic:accuracy} by one stage. Increases happiness by 1/1/0." +61,9,Raises Special Attack by one stage in battle. Raises happiness.,"Used on a party Pokémon in battle +: [Raises]{mechanic:raise} the target's [Special Attack]{mechanic:special-attack} by one stage. Increases happiness by 1/1/0." +62,9,Raises Special Defense by one stage in battle. Raises happiness.,"Used on a party Pokémon in battle +: [Raises]{mechanic:raise} the target's [Special Defense]{mechanic:special-defense} by one stage. Increases happiness by 1/1/0." +63,9,Ends a wild battle.,"Used in battle +: Ends a wild battle. Cannot be used in trainer battles." +64,9,Ends a wild battle.,"Used in battle +: Ends a wild battle. Cannot be used in trainer battles." +65,9,Cures sleep.,"Used on a party Pokémon +: Cures [sleep]{mechanic:sleep}." +66,9,Cures confusion.,"Used on a party Pokémon in battle +: Cures [confusion]{mechanic:confusion}." +67,9,Cures attraction.,"Used on a party Pokémon in battle +: Cures [attraction]{mechanic:attraction}." +68,9,Halves the wild Pokémon encounter rate.,"Used outside of battle +: Decreases the wild Pokémon encounter rate by 50%." +69,9,Doubles the wild Pokémon encounter rate.,"Used outside of battle +: Doubles the wild Pokémon encounter rate." +70,9,No effect. Gen III: Trade four and four Shoal Shells for a Shell Bell.,No effect. +71,9,No effect. Gen III: Trade four and four Shoal Salts for a Shell Bell.,No effect. +72,9,No effect. Can be traded for items or moves.,"No effect. + +In Diamond and Pearl, trade ten for a []{move:sunny-day} [TM]{item:tm11} in the house midway along the southern section of []{location:sinnoh-route-212}. + +In Platinum, trade to [move tutors]{mechanic:move-tutor} on []{location:sinnoh-route-212}, in []{location:snowpoint-city}, and in the []{location:survival-area}. Eight shards total are required per tutelage, but the particular combination of colors varies by move. + +In HeartGold and SoulSilver, trade one for a []{item:cheri-berry}, a []{item:leppa-berry}, and a []{item:pecha-berry} with the Juggler near the Pokémon Center in []{location:violet-city}. + +In HeartGold and SoulSilver, trade one for a []{item:persim-berry}, a []{item:pomeg-berry}, and a []{item:razz-berry} with the Juggler near the []{location:pal-park} entrance in []{location:fuchsia-city}." +73,9,No effect. Can be traded for items or moves.,"No effect. + +In Diamond and Pearl, trade ten for a []{move:rain-dance} [TM]{item:tm18} in the house midway along the southern section of []{location:sinnoh-route-212}. + +In Platinum, trade to [move tutors]{mechanic:move-tutor} on []{location:sinnoh-route-212}, in []{location:snowpoint-city}, and in the []{location:survival-area}. Eight shards total are required per tutelage, but the particular combination of colors varies by move. + +In HeartGold and SoulSilver, trade one for a []{item:chesto-berry}, an []{item:oran-berry}, and a []{item:wiki-berry} with the Juggler near the Pokémon Center in []{location:violet-city}. + +In HeartGold and SoulSilver, trade one for a []{item:bluk-berry}, a []{item:cornn-berry}, and a []{item:kelpsy-berry} with the Juggler near the []{location:pal-park} entrance in []{location:fuchsia-city}." +74,9,No effect. Can be traded for items or moves.,"No effect. + +In Diamond and Pearl, trade ten for a []{move:sandstorm} [TM]{item:tm37} in the house midway along the southern section of []{location:sinnoh-route-212}. + +In Platinum, trade to [move tutors]{mechanic:move-tutor} on []{location:sinnoh-route-212}, in []{location:snowpoint-city}, and in the []{location:survival-area}. Eight shards total are required per tutelage, but the particular combination of colors varies by move. + +In HeartGold and SoulSilver, trade one for an []{item:aspear-berry}, a []{item:iapapa-berry}, and a []{item:sitrus-berry} with the Juggler near the Pokémon Center in []{location:violet-city}. + +In HeartGold and SoulSilver, trade one for a []{item:grepa-berry}, a []{item:nomel-berry}, and a []{item:pinap-berry} with the Juggler near the []{location:pal-park} entrance in []{location:fuchsia-city}." +75,9,No effect. Can be traded for items or moves.,"No effect. + +In Diamond and Pearl, trade ten for a []{move:hail} [TM]{item:tm07} in the house midway along the southern section of []{location:sinnoh-route-212}. + +In Platinum, trade to [move tutors]{mechanic:move-tutor} on []{location:sinnoh-route-212}, in []{location:snowpoint-city}, and in the []{location:survival-area}. Eight shards total are required per tutelage, but the particular combination of colors varies by move. + +In HeartGold and SoulSilver, trade one for an []{item:aguav-berry}, a []{item:lum-berry}, and a []{item:rawst-berry} with the Juggler near the Pokémon Center in []{location:violet-city}. + +In HeartGold and SoulSilver, trade one for a []{item:durin-berry}, a []{item:hondew-berry}, and a []{item:wepear-berry} with the Juggler near the []{location:pal-park} entrance in []{location:fuchsia-city}." +76,9,"For 200 steps, prevents wild encounters of level lower than your party's lead Pokémon.","Used outside of battle +: Trainer will skip encounters with wild Pokémon of a lower level than the lead party Pokémon. This effect wears off after the trainer takes 200 steps." +77,9,"For 250 steps, prevents wild encounters of level lower than your party's lead Pokémon.","Used outside of battle +: Trainer will skip encounters with wild Pokémon of a lower level than the lead party Pokémon. This effect wears off after the trainer takes 250 steps." +78,9,Transports user to the outside entrance of a cave.,"Used outside of battle +: Transports the trainer to the last-entered dungeon entrance. Cannot be used outside, in buildings, or in []{location:distortion-world}, []{location:sinnoh-hall-of-origin-1}, []{location:spear-pillar}, or []{location:turnback-cave}." +79,9,"For 100 steps, prevents wild encounters of level lower than your party's lead Pokémon.","Used outside of battle +: Trainer will skip encounters with wild Pokémon of a lower level than the lead party Pokémon. This effect wears off after the trainer takes 100 steps." +80,9,"Evolves a Cottonee into Whimsicott, a Gloom into Bellossom, a Petilil into Lilligant, or a Sunkern into Sunflora.","Used on a party Pokémon +: Evolves a []{pokemon:cottonee} into []{pokemon:whimsicott}, a []{pokemon:gloom} into []{pokemon:bellossom}, a []{pokemon:petilil} into []{pokemon:lilligant}, or a []{pokemon:sunkern} into []{pokemon:sunflora}." +81,9,"Evolves a Clefairy into Clefable, a Jigglypuff into Wigglytuff, a Munna into Musharna, a Nidorina into Nidoqueen, a Nidorino into Nidoking, or a Skitty into Delcatty.","Used on a party Pokémon +: Evolves a []{pokemon:clefairy} into []{pokemon:clefable}, a []{pokemon:jigglypuff} into []{pokemon:wigglytuff}, a []{pokemon:munna} into []{pokemon:musharna}, a []{pokemon:nidorina} into []{pokemon:nidoqueen}, a []{pokemon:nidorino} into []{pokemon:nidoking}, or a []{pokemon:skitty} into []{pokemon:delcatty}." +82,9,"Evolves an Eevee into Flareon, a Growlithe into Arcanine, a Pansear into Simisear, or a Vulpix into Ninetales.","Used on a party Pokémon +: Evolves an []{pokemon:eevee} into []{pokemon:flareon}, a []{pokemon:growlithe} into []{pokemon:arcanine}, a []{pokemon:pansear} into []{pokemon:simisear}, or a []{pokemon:vulpix} into []{pokemon:ninetales}." +83,9,"Evolves an Eelektrik into Eelektross, an Eevee into Jolteon, or a Pikachu into Raichu.","Used on a party Pokémon +: Evolves an []{pokemon:eelektrik} into []{pokemon:eelektross}, an []{pokemon:eevee} into []{pokemon:jolteon}, or a []{pokemon:pikachu} into []{pokemon:raichu}." +84,9,"Evolves an Eevee into Vaporeon, a Lombre into Ludicolo, a Panpour into Simipour, a Poliwhirl into Poliwrath, a Shellder into Cloyster, or a Staryu into Starmie.","Used on a party Pokémon +: Evolves an []{pokemon:eevee} into []{pokemon:vaporeon}, a []{pokemon:lombre} into []{pokemon:ludicolo}, a []{pokemon:panpour} into []{pokemon:simipour}, a []{pokemon:poliwhirl} into []{pokemon:poliwrath}, a []{pokemon:shellder} into []{pokemon:cloyster}, or a []{pokemon:staryu} into []{pokemon:starmie}." +85,9,"Evolves an Exeggcute into Exeggutor, a Gloom into Vileplume, a Nuzleaf into Shiftry, a Pansage into Simisage, or a Weepinbell into Victreebel.","Used on a party Pokémon +: Evolves an []{pokemon:exeggcute} into []{pokemon:exeggutor}, a []{pokemon:gloom} into []{pokemon:vileplume}, a []{pokemon:nuzleaf} into []{pokemon:shiftry}, a []{pokemon:pansage} into []{pokemon:simisage}, or a []{pokemon:weepinbell} into []{pokemon:victreebel}." +86,9,"Fire Red and Leaf Green: Trade two for prior Level-up moves. Sell for 250 Pokédollars, or to Hungry Maid for 500 Pokédollars.",Vendor trash. +87,9,"Fire Red and Leaf Green: Trade for prior Level-up moves. Sell for 2500 Pokédollars, or to Hungry Maid for 5000 Pokédollars.",Vendor trash. +88,9,"Sell for 700 Pokédollars, or to Ore Collector for 1400 Pokédollars.",Vendor trash. +89,9,"Sell for 3750 Pokédollars, or to Ore Collector for 7500 Pokédollars.",Vendor trash. +90,9,"Sell for 1000 Pokédollars, or to Ore Collector for 2000 Pokédollars.",Vendor trash. +91,9,"Platinum: Trade for one of each color Shard. Black and White: Trade for PP Up. Sell for 4900 Pokédollars, or to Ore Collector for 9800 Pokédollars.",Vendor trash. +92,9,"Sell for 5000 Pokédollars, or to Ore Collector for 10000 Pokédollars.",Vendor trash. +93,9,No effect. Can be traded for prior Level-up moves.,Trade one to the Move Relearner near the shore in []{location:pastoria-city} or with the Move Deleter in []{location:blackthorn-city} to teach one party Pokémon a prior level-up move. +94,9,,"Used outside of battle +: Immediately triggers a wild Pokémon battle, as long as the trainer is somewhere with wild Pokémon—i.e., in tall grass, in a cave, or surfing. + +Can be smeared on sweet-smelling trees to attract tree-dwelling Pokémon after six hours." +95,9,"Growing time of berries is reduced, but the soil dries out faster.","Used on a patch of soil +: Plant's growth stages will each last 25% less time. Dries soil out more quickly." +96,9,"Growing time of berries is increased, but the soil dries out slower.","Used on a patch of soil +: Plant's growth stages will each last 25% more time. Dries soil out more slowly." +97,9,Berries stay on the plant for longer than their usual time.,"Used on a patch of soil +: Fully-grown plant will last 25% longer before dying and possibly regrowing." +98,9,Berries regrow from dead plants an increased number of times.,"Used on a path of soil +: Plant will regrow after dying 25% more times." +99,9,Can be revived into a Lileep.,Give to a scientist in the []{location:mining-museum} in []{location:oreburgh-city} or the Museum of Science in []{location:pewter-city} to receive a []{pokemon:lileep}. +100,9,Can be revived into an Anorith.,Give to a scientist in the []{location:mining-museum} in []{location:oreburgh-city} or the Museum of Science in []{location:pewter-city} to receive a []{pokemon:anorith}. +101,9,Can be revived into an Omanyte.,Give to a scientist in the []{location:mining-museum} in []{location:oreburgh-city} or the Museum of Science in []{location:pewter-city} to receive a []{pokemon:omanyte}. +102,9,Can be revived into a Kabuto.,Give to a scientist in the []{location:mining-museum} in []{location:oreburgh-city} or the Museum of Science in []{location:pewter-city} to receive a []{pokemon:kabuto}. +103,9,Can be revived into an Aerodactyl.,Give to a scientist in the []{location:mining-museum} in []{location:oreburgh-city} or the Museum of Science in []{location:pewter-city} to receive a []{pokemon:aerodactyl}. +104,9,Can be revived into a Shieldon.,Give to a scientist in the []{location:mining-museum} in []{location:oreburgh-city} or the Museum of Science in []{location:pewter-city} to receive a []{pokemon:shieldon}. +105,9,Can be revived into a Cranidos.,Give to a scientist in the []{location:mining-museum} in []{location:oreburgh-city} or the Museum of Science in []{location:pewter-city} to receive a []{pokemon:cranidos}. +106,9,"Sell for 5000 Pokédollars, or to Bone Man for 10000 Pokédollars.",Vendor trash. +107,9,"Evolves a Minccino into Cinccino, a Roselia into Roserade, or a Togetic into Togekiss.","Used on a party Pokémon +: Evolves a []{pokemon:minccino} into []{pokemon:cinccino}, a []{pokemon:roselia} into []{pokemon:roserade}, or a []{pokemon:togetic} into []{pokemon:togekiss}." +108,9,"Evolves a Lampent into Chandelure, a Misdreavus into Mismagius, or a Murkrow into Honchkrow.","Used on a party Pokémon +: Evolves a []{pokemon:lampent} into []{pokemon:chandelure}, a []{pokemon:misdreavus} into []{pokemon:mismagius}, or a []{pokemon:murkrow} into []{pokemon:honchkrow}." +109,9,Evolves a male Kirlia into Gallade or a female Snorunt into Froslass.,"Used on a party Pokémon +: Evolves a male []{pokemon:kirlia} into []{pokemon:gallade} or a female []{pokemon:snorunt} into []{pokemon:froslass}." +110,9,Level-up during Day on a Happiny: Holder evolves into Chansey.,"Held by []{pokemon:happiny} +: Holder evolves into []{pokemon:chansey} when it levels up during the daytime." +111,9,Use on the tower on Route 209 to encounter Spiritomb if you have at least 32 Underground greetings.,"Place in the tower on []{location:sinnoh-route-209}. Check the stone to encounter a []{pokemon:spiritomb}, as long as the trainer's Underground status card counts at least 32 greetings." +112,9,Boosts the damage from Dialga's Dragon-type and Steel-type moves by 20%.,"Held by []{pokemon:dialga} +: Holder's []{type:dragon}- and []{type:steel}-type moves have 1.2× their usual power." +113,9,Boosts the damage from Palkia's Dragon-type and Water-type moves by 20%.,"Held by []{pokemon:palkia} +: Holder's []{type:dragon}- and []{type:water}-type moves have 1.2× their usual power." +114,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +115,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +116,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +117,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +118,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +119,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +120,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +121,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +122,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +123,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +124,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +125,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +126,9,Held: Consumed when paralyzed to cure paralysis.,"Held in battle +: When the holder is [paralyzed]{mechanic:paralysis}, it consumes this item to cure the paralysis. + +Used on a party Pokémon +: Cures [paralysis]{mechanic:paralysis}." +127,9,Held: Consumed when asleep to cure sleep.,"Held in battle +: When the holder is [asleep]{mechanic:sleep}, it consumes this item to wake up. + +Used on a party Pokémon +: Cures [sleep]{mechanic:sleep}." +128,9,Held: Consumed when poisoned to cure poison.,"Held in battle +: When the holder is [poisoned]{mechanic:poison}, it consumes this item to cure the poison. + +Used on a party Pokémon +: Cures [poison]{mechanic:poison}." +129,9,Held: Consumed when burned to cure a burn.,"Held in battle +: When the holder is [burned]{mechanic:burn}, it consumes this item to cure the burn. + +Used on a party Pokémon +: Cures a [burn]{mechanic:burn}." +130,9,Held: Consumed when frozen to cure frozen.,"Held in battle +: When the holder is [frozen]{mechanic:freezing}, it consumes this item to thaw itself. + +Used on a party Pokémon +: Cures [freezing]{mechanic:freezing}." +131,9,Held: Consumed when a move runs out of PP to restore its PP by 10.,"Held in battle +: When the holder is out of [PP]{mechanic:pp} for one of its moves, it consumes this item to restore 10 of that move's PP. + +Used on a party Pokémon +: Restores 10 [PP]{mechanic:pp} for a selected move." +132,9,Held: Consumed at 1/2 max HP to recover 10 HP.,"Held in battle +: When the holder has 1/2 its max [HP]{mechanic:hp} remaining or less, it consumes this item to restore 10 HP. + +Used on a party Pokémon +: Restores 10 [HP]{mechanic:hp}." +133,9,Held: Consumed when confused to cure confusion.,"Held in battle +: When the holder is [confused]{mechanic:confusion}, it consumes this item to cure the confusion. + +Used on a party Pokémon +: Cures [confusion]{mechanic:confusion}." +134,9,Held: Consumed to cure any status condition or confusion.,"Held in battle +: When the holder is afflicted with a [major status ailment]{mechanic:major-status-ailment}, it consumes this item to cure the ailment. + +Used on a party Pokémon +: Cures any [major status ailment]{mechanic:major-status-ailment}." +135,9,Held: Consumed at 1/2 max HP to recover 1/4 max HP.,"Held in battle +: When the holder has 1/2 its max [HP]{mechanic:hp} remaining or less, it consumes this item to restore 1/4 its max HP. + +Used on a party Pokémon +: Restores 1/4 the Pokémon's max [HP]{mechanic:hp}." +136,9,Held: Consumed at 1/2 max HP to restore 1/8 max HP. Confuses Pokémon that dislike spicy flavor.,"Held in battle +: When the holder has 1/2 its max [HP]{mechanic:hp} remaining or less, it consumes this item to restore 1/8 its max HP. If the holder dislikes spicy flavors (i.e., has a nature that lowers [Attack]{mechanic:attack}), it will also become [confused]{mechanic:confusion}." +137,9,Held: Consumed at 1/2 max HP to restore 1/8 max HP. Confuses Pokémon that dislike dry flavor.,"Held in battle +: When the holder has 1/2 its max [HP]{mechanic:hp} remaining or less, it consumes this item to restore 1/8 its max HP. If the holder dislikes dry flavors (i.e., has a nature that lowers [Special Attack]{mechanic:special-attack}), it will also become [confused]{mechanic:confusion}." +138,9,Held: Consumed at 1/2 max HP to restore 1/8 max HP. Confuses Pokémon that dislike sweet flavor.,"Held in battle +: When the holder has 1/2 its max [HP]{mechanic:hp} remaining or less, it consumes this item to restore 1/8 its max HP. If the holder dislikes sweet flavors (i.e., has a nature that lowers [Speed]{mechanic:speed}), it will also become [confused]{mechanic:confusion}." +139,9,Held: Consumed at 1/2 max HP to restore 1/8 max HP. Confuses Pokémon that dislike bitter flavor.,"Held in battle +: When the holder has 1/2 its max [HP]{mechanic:hp} remaining or less, it consumes this item to restore 1/8 its max HP. If the holder dislikes bitter flavors (i.e., has a nature that lowers [Special Defense]{mechanic:special-defense}), it will also become [confused]{mechanic:confusion}." +140,9,Held: Consumed at 1/2 max HP to restore 1/8 max HP. Confuses Pokémon that dislike sour flavor.,"Held in battle +: When the holder has 1/2 its max [HP]{mechanic:hp} remaining or less, it consumes this item to restore 1/8 its max HP. If the holder dislikes sour flavors (i.e., has a nature that lowers [Defense]{mechanic:defense}), it will also become [confused]{mechanic:confusion}." +141,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +142,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +143,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +144,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +145,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +146,9,Drops HP Effort Values by 10 and raises happiness.,"Used on a party Pokémon +: Increases [happiness]{mechanic:happiness} by 10/5/2. Lowers [HP]{mechanic:hp} [effort]{mechanic:effort} by 10." +147,9,Drops Attack Effort Values by 10 and raises happiness.,"Used on a party Pokémon +: Increases [happiness]{mechanic:happiness} by 10/5/2. Lowers [Attack]{mechanic:attack} [effort]{mechanic:effort} by 10." +148,9,Drops Defense Effort Values by 10 and raises happiness.,"Used on a party Pokémon +: Increases [happiness]{mechanic:happiness} by 10/5/2. Lowers [Defense]{mechanic:defense} [effort]{mechanic:effort} by 10." +149,9,Drops Special Attack Effort Values by 10 and raises happiness.,"Used on a party Pokémon +: Increases [happiness]{mechanic:happiness} by 10/5/2. Lowers [Special Attack]{mechanic:special-attack} [effort]{mechanic:effort} by 10." +150,9,Drops Special Defense Effort Values by 10 and raises happiness.,"Used on a party Pokémon +: Increases [happiness]{mechanic:happiness} by 10/5/2. Lowers [Special Defense]{mechanic:special-defense} [effort]{mechanic:effort} by 10." +151,9,Drops Speed Effort Values by 10 and raises happiness.,"Used on a party Pokémon +: Increases [happiness]{mechanic:happiness} by 10/5/2. Lowers [Speed]{mechanic:speed} [effort]{mechanic:effort} by 10." +152,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +153,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +154,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +155,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +156,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +157,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +158,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +159,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +160,9,Used for creating PokéBlocks and Poffins.,No effect; only useful for planting and cooking. +161,9,Held: Consumed when struck by a super-effective Fire-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:fire}-type damage, it consumes this item to halve the amount of damage taken." +162,9,Held: Consumed when struck by a super-effective Water-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:water}-type damage, it consumes this item to halve the amount of damage taken." +163,9,Held: Consumed when struck by a super-effective Electric-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:electric}-type damage, it consumes this item to halve the amount of damage taken." +164,9,Held: Consumed when struck by a super-effective Grass-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:grass}-type damage, it consumes this item to halve the amount of damage taken." +165,9,Held: Consumed when struck by a super-effective Ice-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:ice}-type damage, it consumes this item to halve the amount of damage taken." +166,9,Held: Consumed when struck by a super-effective Fighting-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:fighting}-type damage, it consumes this item to halve the amount of damage taken." +167,9,Held: Consumed when struck by a super-effective Poison-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:poison}-type damage, it consumes this item to halve the amount of damage taken." +168,9,Held: Consumed when struck by a super-effective Ground-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:ground}-type damage, it consumes this item to halve the amount of damage taken." +169,9,Held: Consumed when struck by a super-effective Flying-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:flying}-type damage, it consumes this item to halve the amount of damage taken." +170,9,Held: Consumed when struck by a super-effective Psychic-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:psychic}-type damage, it consumes this item to halve the amount of damage taken." +171,9,Held: Consumed when struck by a super-effective Bug-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:bug}-type damage, it consumes this item to halve the amount of damage taken." +172,9,Held: Consumed when struck by a super-effective Rock-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:rock}-type damage, it consumes this item to halve the amount of damage taken." +173,9,Held: Consumed when struck by a super-effective Ghost-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:ghost}-type damage, it consumes this item to halve the amount of damage taken." +174,9,Held: Consumed when struck by a super-effective Dragon-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:dragon}-type damage, it consumes this item to halve the amount of damage taken." +175,9,Held: Consumed when struck by a super-effective Dark-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:dark}-type damage, it consumes this item to halve the amount of damage taken." +176,9,Held: Consumed when struck by a super-effective Steel-type attack to halve the damage.,"Held in battle +: When the holder would take [super-effective]{mechanic:super-effective} []{type:steel}-type damage, it consumes this item to halve the amount of damage taken." +177,9,Held: Consumed when struck by a Normal-type attack to halve the damage.,"Held in battle +: When the holder would take []{type:normal}-type damage, it consumes this item to halve the amount of damage taken." +178,9,Held: Consumed at 1/4 max HP to boost Attack.,"Held in battle +: When the holder has 1/4 its max [HP]{mechanic:hp} remaining or less, it consumes this item to [raise]{mechanic:raise} its [Attack]{mechanic:attack} by one stage." +179,9,Held: Consumed at 1/4 max HP to boost Defense.,"Held in battle +: When the holder has 1/4 its max [HP]{mechanic:hp} remaining or less, it consumes this item to [raise]{mechanic:raise} its [Defense]{mechanic:defense} by one stage." +180,9,Held: Consumed at 1/4 max HP to boost Speed.,"Held in battle +: When the holder has 1/4 its max [HP]{mechanic:hp} remaining or less, it consumes this item to [raise]{mechanic:raise} its [Speed]{mechanic:speed} by one stage." +181,9,Held: Consumed at 1/4 max HP to boost Special Attack.,"Held in battle +: When the holder has 1/4 its max [HP]{mechanic:hp} remaining or less, it consumes this item to [raise]{mechanic:raise} its [Special Attack]{mechanic:special-attack} by one stage." +182,9,Held: Consumed at 1/4 max HP to boost Special Defense.,"Held in battle +: When the holder has 1/4 its max [HP]{mechanic:hp} remaining or less, it consumes this item to [raise]{mechanic:raise} its [Special Defense]{mechanic:special-defense} by one stage." +183,9,Held: Consumed at 1/4 max HP to boost critical hit ratio by two stages.,"Held in battle +: When the holder has 1/4 its max [HP]{mechanic:hp} remaining or less, it consumes this item to [raise]{mechanic:raise} its [critical hit chance]{mechanic:critical-hit-chance} by one stage." +184,9,Held: Consumed at 1/4 max HP to boost a random stat by two stages.,"Held in battle +: When the holder has 1/4 its max [HP]{mechanic:hp} remaining or less, it consumes this item to [raise]{mechanic:raise} a random stat by two stages." +185,9,Held: Consumed when struck by a super-effective attack to restore 1/4 max HP.,"Held in battle +: When the holder takes [super-effective]{mechanic:super-effective} damage, it consumes this item to restore 1/4 its max [HP]{mechanic:hp}." +186,9,Held: Consumed at 1/4 max HP to boost accuracy of next move by 20%. (Gen IV: Perfect accuracy),"Held in battle +: When the holder has 1/4 its max [HP]{mechanic:hp} remaining or less, it consumes this item, and its next used move has 1.2× its normal accuracy." +187,9,Held: Consumed at 1/4 max HP when using a move to go first.,"Held in battle +: When the holder has 1/4 its max [HP]{mechanic:hp} remaining or less, it consumes this item. On the following turn, the holder will act first among moves with the same [priority]{mechanic:priority}, regardless of [Speed]{mechanic:speed}." +188,9,Held: Consumed to deal 1/8 attacker's max HP when holder is struck by a physical attack.,"Held in battle +: When the holder takes [physical]{mechanic:physical} damage, it consumes this item to damage the attacking Pokémon for 1/8 its max [HP]{mechanic:hp}." +189,9,Held: Consumed to deal 1/8 attacker's max HP when holder is struck by a special attack.,"Held in battle +: When the holder takes [special]{mechanic:special} damage, it consumes this item to damage the attacking Pokémon for 1/8 its max [HP]{mechanic:hp}." +190,9,Held: Increases the holder's evasion by 1/9 (11 1/9%).,"Held in battle +: Moves targeting the holder have 0.9× [chance to hit]{mechanic:chance-to-hit}." +191,9,Held: Resets all lowered stats to normal at end of turn. Consumed after use.,"Held in battle +: At the end of each turn, if any of the holder's stats have a negative [stat modifier]{mechanic:stat-modifier}, the holder consumes this item to remove the modifiers from those stats." +192,9,"Held: Holder gains double effort values from battles, but has halved Speed in battle.","Held +: When the holder would gain [effort]{mechanic:effort} due to battle, it gains double that effort instead. + +Held in battle +: Holder has half its [Speed]{mechanic:speed}." +193,9,Held: Half the experience from a battle is split between Pokémon holding this item.,"Held +: [Experience]{mechanic:experience} is split across two groups: Pokémon who participated in battle, and Pokémon holding this item. Each Pokémon earns experience as though it had battled alone, divided by the number of Pokémon in its group, then divided by the number of groups. Pokémon holding this item who also participated in battle effectively earn experience twice. + + [Fainted]{mechanic:fainted} Pokémon never earn experience, and empty groups are +ignored; thus, if a single Pokémon is holding this item and the only Pokémon who battled faints from []{move:explosion}, the holder will gain full experience." +194,9,Held: Holder has a 3/16 (18.75%) chance to move first.,"Held in battle +: Whenever the holder attempts to use a move, it has a 3/16 chance to act first among moves with the same [priority]{mechanic:priority}. If multiple Pokémon have this effect at the same time, [Speed]{mechanic:speed} is the tie-breaker as normal, but the effect of []{move:trick-room} is ignored." +195,9,Held: Doubles the happiness earned by the holder.,"Held +: When the holder would earn [happiness]{mechanic:happiness} for any reason, it earns twice that amount instead." +196,9,"Held: Consumed to cure infatuation. Gen V: Also removes Taunt, Encore, Torment, Disable, and Cursed Body.","Held in battle +: When the holder is [attracted]{move:attract}, it consumes this item to cure the attraction." +197,9,"Held: Increases Attack by 50%, but restricts the holder to only one move.","Held in battle +: Holder has 1.5× its [Attack]{mechanic:attack}. When the holder attempts to use a move, all its other moves are disabled until it leaves battle or loses this item. + + The restriction ends even if this item is swapped for another Choice item +via []{move:trick} or []{move:switcheroo}." +198,9,Held: Damaging moves gain a 10% chance to make their target flinch. Traded on a Poliwhirl: Holder evolves into Politoed. Traded on a Slowpoke: Holder evolves into Slowking.,"Held in battle +: Holder's damaging moves have a 10% chance to make their target [flinch]{mechanic:flinch}. This chance applies independently to each hit of a multi-hit move. + + This item's chance is rolled independently of any other move effects; +e.g., a move with a 30% chance to flinch normally will have a 37% total chance to flinch when used with this item, because 3% of the time, both effects activate. + +Held by []{pokemon:poliwhirl} or []{pokemon:slowbro} +: Holder evolves into []{pokemon:politoed} or []{pokemon:slowking}, respectively, when traded." +199,9,Held: Bug-Type moves from holder do 20% more damage.,"Held in battle +: Holder's []{type:bug}-type moves have 1.2× their power. +" +200,9,Held: Doubles the money earned from a battle. Does not stack with Luck Incense.,"Held +: If the holder participated in a trainer battle, the trainer earns twice the usual prize money. This effect applies even if the holder [fainted]{mechanic:fainted}. + + This effect does not stack with any other similar effect." +201,9,Prevents wild encounters of level lower than your party's lead Pokémon.,Held by lead Pokémon: Prevents wild battles with Pokémon that are lower level than the holder. +202,9,Raises Latias and Latios's Special Attack and Special Defense by 50%.,Held by Latias or Latios: Increases the holder's Special Attack and Special Defense by 50%. +203,9,Doubles Clamperl's Special Attack. Traded on a Clamperl: Holder evolves into Huntail.,Held by Clamperl: Doubles the holder's Special Attack. Evolves the holder into Huntail when traded. +204,9,Doubles Clamperl's Special Defense. Traded on a Clamperl: Holder evolves into Gorebyss.,Held by Clamperl: Doubles the holder's Special Defense. Evolves the holder into Gorebyss when traded. +205,9,Held: Allows the Holder to escape from any wild battle.,"Held: In wild battles, attempts to run away on the holder's turn will always succeed." +206,9,Held: Prevents level-based evolution from occuring.,"Held: Prevents the holder from evolving naturally. Evolution initiated by the trainer (Stones, etc) will still work." +207,9,Held: Holder has 10% chance to survive attacks or self-inflicted damage at 1 HP.,"Held: If the holder is attacked for regular damage that would faint it, this item has a 10% chance to prevent the holder's HP from lowering below 1." +208,9,Held: Increases EXP earned in battle by 50%.,Held: Increases any Exp the holder gains by 50%. +209,9,Held: Raises the holder's critical hit ratio by one stage.,Held: Raises the holder's critical hit counter by 1. +210,9,Held: Steel-Type moves from holder do 20% more damage.,"Held: Increases the power of the holder's Steel moves by 20%. +Held by Onix or Scyther: Evolves the holder into Steelix or Scizor when traded, respectively." +211,9,Held: Restores 1/16 (6.25%) holder's max HP at the end of each turn.,Held: Heals the holder by 1/16 its max HP at the end of each turn. +212,9,Traded on a Seadra: Holder evolves into Kingdra.,Held by Seadra: Evolves the holder into Kingdra when traded. +213,9,Doubles Pikachu's Attack and Special Attack. Breed on Pikachu or Raichu: Pichu Egg will have Volt Tackle.,Held by Pikachu: Doubles the holder's initial Attack and Special Attack. +214,9,Held: Ground-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Ground moves by 20%. +215,9,Held: Rock-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Rock moves by 20%. +216,9,Held: Grass-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Grass moves by 20%. +217,9,Held: Dark-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Dark moves by 20%. +218,9,Held: Fighting-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Fighting moves by 20%. +219,9,Held: Electric-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Electric moves by 20%. +220,9,Held: Water-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Water moves by 20%. +221,9,Held: Flying-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Flying moves by 20%. +222,9,Held: Poison-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Poison moves by 20%. +223,9,Held: Ice-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Ice moves by 20%. +224,9,Held: Ghost-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Ghost moves by 20%. +225,9,Held: Psychic-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Psychic moves by 20%. +226,9,Held: Fire-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Fire moves by 20%. +227,9,Held: Dragon-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Dragon moves by 20%. +228,9,Held: Normal-Type moves from holder do 20% more damage.,Held: Increases the power of the holder's Normal moves by 20%. +229,9,Traded on a Porygon: Holder evolves into Porygon2.,Held by Porygon: Evolves the holder into Porygon2 when traded. +230,9,Held: Holder receives 1/8 of the damage it deals when attacking.,Held: Heals the holder by 1/8 of any damage it inflicts. +231,9,Held: Water-Type moves from holder do 20% more damage. Breeding: Marill or Azumarill beget an Azurill Egg.,Held: Increases the power of the holder's Water moves by 20%. +232,9,Held: Holder's evasion is increased by 5%. Breeding: Wobbuffet begets a Wynaut Egg.,Held: Increases the holder's Evasion by 5%. +233,9,Raises Chansey's critical hit ratio by two stages.,Held by Chansey: Raises the holder's critical hit counter by 2. +234,9,Raises Ditto's Defense and Special Defense by 50%. The boost is lost after transforming.,Held by Ditto: Increases the holder's initial Defense and Special Defense by 50%. +235,9,Doubles Cubone or Marowak's Attack.,Held by Cubone or Marowak: Doubles the holder's Attack. +236,9,Raises Farfetch'd's critical hit ratio by two stages.,Held by Farfetch'd: Raises the holder's critical hit counter by 2. +237,9,Raises the holder's Coolness while in a contest.,Held: Increases the holder's Coolness during a Super Contest's Visual Competition. +238,9,Raises the holder's Beauty while in a contest.,Held: Increases the holder's Beauty during a Super Contest's Visual Competition. +239,9,Raises the holder's Cuteness while in a contest.,Held: Increases the holder's Cuteness during a Super Contest's Visual Competition. +240,9,Raises the holder's Smartness while in a contest.,Held: Increases the holder's Smartness during a Super Contest's Visual Competition. +241,9,Raises the holder's Toughness while in a contest.,Held: Increases the holder's Toughness during a Super Contest's Visual Competition. +242,9,Held: Provides a 1/10 (10%) boost in accuracy to the holder.,Held: Increases the accuracy of any move the holder uses by 10% (multiplied; i.e. 70% accuracy is increased to 77%). +243,9,Held: Boosts the damage of physical moves used by the holder by 10%.,Held: Increases the power of the holder's physical moves by 10%. +244,9,Held: Boosts the damage of special moves used by the holder by 1/10 (10%).,Held: Increases the power of the holder's special moves by 10%. +245,9,Held: Holder's Super Effective moves do 20% extra damage.,"Held: When the holder hits with a super-effective move, its power is raised by 20%." +246,9,Held: Light Screen and Reflect used by the holder last 8 rounds instead of 5.,"Held: The holder's Reflect and Light Screen will create effects lasting for eight turns rather than five. As this item affects the move rather than the barrier itself, the effect is not lost if the holder leaves battle or drops this item." +247,9,"Held: Holder's moves inflict 30% extra damage, but cost 10% max HP.","Held: Damage from the holder's moves is increased by 30%. On each turn the holder uses a damage-inflicting move, it takes 10% its max HP in damage." +248,9,Held: Both turns of a two-turn charge move happen at once. Consumed upon use.,"Held: Whenever the holder uses a move that requires a turn to charge first (Bounce, Dig, Dive, Fly, Razor Wind, Skull Bash, Sky Attack, or Solarbeam), this item is consumed and the charge is skipped. Skull Bash still provides a Defense boost." +249,9,Held: Inflicts Toxic on the holder at the end of the turn. Activates after Poison damage would occur.,Held: Badly poisons the holder at the end of each turn. +250,9,Held: Inflicts Burn on the holder at the end of the turn. Activates after Burn damage would occur.,Held: Burns the holder at the end of each turn. +251,9,Doubles Ditto's Speed when held. The boost is lost after transforming.,Held by Ditto: Doubles the holder's initial Speed. +252,9,"Held: Holder survives any single-hit attack at 1 HP if at max HP, then the item is consumed.","Held: If the holder has full HP and is attacked for regular damage that would faint it, this item is consumed and prevents the holder's HP from lowering below 1. This effect works against multi-hit attacks, but does not work against the effects of Doom Desire or Future Sight." +253,9,Held: Provides a 1/5 (20%) boost in accuracy if the holder moves after the target.,"Held: Raises the holder's Accuracy by 20% when it goes last. +Ingame description is incorrect." +254,9,Held: Consectutive uses of the same attack have a cumulative damage boost of 10%. Maximum 100% boost.,"Held: Each time the holder uses the same move consecutively, its power is increased by another 10% of its original, to a maximum of 100%." +255,9,"Held: Holder's Speed is halved. Negates all Ground-type immunities, and makes Flying-types take neutral damage from Ground-type moves. Arena Trap. Spikes, and Toxic Spikes affect the holder.","Held: Decreases the holder's Speed by 50%. If the holder is Flying or has Levitate, it takes regular damage from Ground attacks and is suspectible to Spikes and Toxic Spikes." +256,9,Held: Holder moves last in its priority bracket.,"Held: The holder will go last within its move's priority bracket, regardless of Speed. If multiple Pokémon within the same priority bracket are subject to this effect, the slower Pokémon will go first. The holder will move after Pokémon with Stall. If the holder has Stall, Stall is ignored. This item ignores Trick Room." +257,9,Held: Infatuates opposing Pokémon when holder is inflicted with infatuation.,"Held: When the holder becomes Attracted, the Pokémon it is Attracted to becomes Attracted back." +258,9,Held: Poison-type holder recovers 1/16 (6.25%) max HP each turn. Non-Poison-Types take 1/8 (12.5%) max HP damage.,"Held: If the holder is Poison-type, restores 1/16 max HP at the end of each turn. Otherwise, damages the holder by 1/16 its max HP at the end of each turn." +259,9,Held: Hail by the holder lasts 8 rounds instead of 5.,"Held: The holder's Hail will create a hailstorm lasting for eight turns rather than five. As this item affects the move rather than the weather itself, the effect is not lost if the holder leaves battle or drops this item." +260,9,Held: Sandstorm by the holder lasts 8 rounds instead of 5.,"Held: The holder's Sandstorm will create a sandstorm lasting for eight turns rather than five. As this item affects the move rather than the weather itself, the effect is not lost if the holder leaves battle or drops this item." +261,9,Held: Sunny Day by the holder lasts 8 rounds instead of 5.,"Held: The holder's Sunny Day will create sunshine lasting for eight turns rather than five. As this item affects the move rather than the weather itself, the effect is not lost if the holder leaves battle or drops this item." +262,9,Held: Rain Dance by the holder lasts 8 rounds instead of 5.,"Held: The holder's Rain Dance will create rain lasting for eight turns rather than five. As this item affects the move rather than the weather itself, the effect is not lost if the holder leaves battle or drops this item." +263,9,Held: Holder's multi-turn trapping moves last 5 turns.,Held: Increases the duration of the holder's multiturn (2-5 turn) moves by three turns. +264,9,"Held: Increases Speed by 50%, but restricts the holder to only one move.","Held: Increases the holder's Speed by 50%, but restricts it to the first move it uses until it leaves battle or loses this item. If this item is swapped for another Choice item via Trick or Switcheroo, the holder's restriction is still lifted, but it will again be restricted to the next move it uses. +(Quirk: If the holder is switched in by U-Turn and it also knows U-Turn, U-Turn becomes its restricted move.)" +265,9,"Held: Holder takes 1/8 (12.5%) its max HP at the end of each turn. When the holder is hit by a contact move, the attacking Pokémon takes 1/8 its max HP in damage and receive the item if not holding one.","Held: Damaged the holder for 1/8 its max HP. When the holder is struck by a contact move, damages the attacker for 1/8 its max HP; if the attacker is not holding an item, it will take this item." +266,9,"Held: Holder gains 4 Attack effort values, but has halved Speed in battle.","Held: Decreases the holder's Speed by 50%. Whenever the holder gains Attack effort from battle, increases that effort by 4; this applies before the PokéRUS doubling effect." +267,9,"Held: Holder gains 4 Defense effort values, but has halved Speed in battle.","Held: Decreases the holder's Speed by 50%. Whenever the holder gains Defense effort from battle, increases that effort by 4; this applies before the PokéRUS doubling effect." +268,9,"Held: Holder gains 4 Special Attack effort values, but has halved Speed in battle.","Held: Decreases the holder's Speed by 50%. Whenever the holder gains Special Attack effort from battle, increases that effort by 4; this applies before the PokéRUS doubling effect." +269,9,"Held: Holder gains 4 Special Defense effort values, but has halved Speed in battle.","Held: Decreases the holder's Speed by 50%. Whenever the holder gains Special Defense effort from battle, increases that effort by 4; this applies before the PokéRUS doubling effect." +270,9,"Held: Holder gains 4 Speed effort values, but has halved Speed in battle.","Held: Decreases the holder's Speed by 50%. Whenever the holder gains Speed effort from battle, increases that effort by 4; this applies before the PokéRUS doubling effect." +271,9,"Held: Holder gains 4 HP effort values, but has halved Speed in battle.","Held: Decreases the holder's Speed by 50%. Whenever the holder gains HP effort from battle, increases that effort by 4; this applies before the PokéRUS doubling effect." +272,9,Held: Holder can bypass all trapping effects and switch out. Multi-turn moves still cannot be switched out of.,Held: The holder is unaffected by any moves or abilities that would prevent it from actively leaving battle. +273,9,"Held: Increases HP recovered from draining moves, Ingrain, and Aqua Ring by 3/10 (30%).","Held: HP restored from Absorb, Aqua Ring, Drain Punch, Dream Eater, Giga Drain, Ingrain, Leech Life, Leech Seed, and Mega Drain is increased by 30%. Damage inflicted is not affected." +274,9,"Held: Increases Special Attack by 50%, but restricts the holder to only one move.","Held: Increases the holder's Special Attack by 50%, but restricts it to the first move it uses until it leaves battle or loses this item. If this item is swapped for another Choice item via Trick or Switcheroo, the holder's restriction is still lifted, but it will again be restricted to the next move it uses. +(Quirk: If the holder is switched in by U-Turn and it also knows U-Turn, U-Turn becomes its restricted move.)" +275,9,Held: Fire-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Fire.,"Held: Increases the power of the holder's Fire moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Fire." +276,9,Held: Water-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Water.,"Held: Increases the power of the holder's Water moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Water." +277,9,Held: Electric-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Electric.,"Held: Increases the power of the holder's Electric moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Electric." +278,9,Held: Grass-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Grass.,"Held: Increases the power of the holder's Grass moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Grass." +279,9,Held: Ice-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Ice.,"Held: Increases the power of the holder's Ice moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Ice." +280,9,Held: Fighting-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Fighting.,"Held: Increases the power of the holder's Fighting moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Fighting." +281,9,Held: Posion-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Posion.,"Held: Increases the power of the holder's Poison moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Poison." +282,9,Held: Ground-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Ground.,"Held: Increases the power of the holder's Ground moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Ground." +283,9,Held: Flying-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Flying.,"Held: Increases the power of the holder's Flying moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Flying." +284,9,Held: Psychic-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Psychic.,"Held: Increases the power of the holder's Psychic moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Psychic." +285,9,Held: Bug-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Bug.,"Held: Increases the power of the holder's Bug moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Bug." +286,9,Held: Rock-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Rock.,"Held: Increases the power of the holder's Rock moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Rock." +287,9,Held: Ghost-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Ghost.,"Held: Increases the power of the holder's Ghost moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Ghost." +288,9,Held: Dragon-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Dragon.,"Held: Increases the power of the holder's Dragon moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Dragon." +289,9,Held: Dark-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Dark.,"Held: Increases the power of the holder's Dark moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Dark." +290,9,Held: Steel-Type moves from holder do 20% more damage. Changes Arceus's and Judgment's type to Steel.,"Held: Increases the power of the holder's Steel moves by 20%. +Held by a Multitype Pokémon: Holder's type becomes Steel." +291,9,Held: Psychic-Type moves from holder do 20% more damage. Breeding: Mr. Mime begets a Mime Jr. Egg.,Held: Increases the power of the holder's Psychic moves by 20%. +292,9,Held: Rock-Type moves from holder do 20% more damage. Breeding: Sudowoodo begets a Bonsly Egg.,Held: Increases the power of the holder's Rock moves by 20%. +293,9,Held: Holder moves last in its priority bracket. Breeding: Snorlax begets a Munchlax Egg.,"Held: The holder will go last within its move's priority bracket, regardless of Speed. If multiple Pokémon within the same priority bracket are subject to this effect, the slower Pokémon will go first. The holder will move after Pokémon with Stall. If the holder has Stall, Stall is ignored. This item ignores Trick Room." +294,9,Held: Water-Type moves from holder do 20% more damage. Breeding: Mantine begets a Mantyke Egg.,Held: Increases the power of the holder's Water moves by 20%. +295,9,Held: Grass-Type moves from holder do 20% more damage. Breeding: Roselia or Roserade beget a Budew Egg.,Held: Increases the power of the holder's Grass moves by 20%. +296,9,Held: Doubles the money earned from a battle. Does not stack with Amulet Coin. Breeding: Chansey and Blissey beget a Happiny Egg.,Held: Doubles the money the trainer receives after an in-game trainer battle. This effect cannot apply more than once to the same battle. +297,9,Prevents wild encounters of level lower than your party's lead Pokémon. Breeding: Chimecho begets a Chingling Egg.,Held by lead Pokémon: Prevents wild battles with Pokémon that are lower level than the holder. +298,9,Traded on a Rhydon: Holder evolves into Rhyperior.,Held by Rhydon: Evolves the holder into Rhyperior when traded. +299,9,Traded on an Electabuzz: Holder evolves into Electivire.,Held by Electabuzz: Evolves the holder into Electivire when traded. +300,9,Traded on a Magmar: Holder evolves into Magmortar.,Held by Magmar: Evolves the holder into Magmortar when traded. +301,9,Traded on a Porygon2: Holder evolves into Porygon-Z.,Held by Porygon2: Evolves the holder into Porygon-Z when traded. +302,9,Traded on a Dusclops: Holder evolves into Dusknoir.,Held by Dusclops: Evolves the holder into Dusknoir when traded. +303,9,Held: Raises the holder's critical hit ratio by one stage. Held by a Sneasel while levelling up at night: Holder evolves into Weavile.,"Held: Raises the holder's critical hit counter by 1. +Held by Sneasel: Evolves the holder into Weavile when it levels up during the night." +304,9,Held: Damaging moves gain a 10% chance to make their target flinch. Held by a Gligar while levelling up: Holder evolves into Gliscor.,"Held: When the holder attacks with most damaging moves, provides an extra 11.7% (30/256) chance for the target to flinch. +Held by Gligar: Evolves the holder into Gliscor when it levels up." +305,9,Teaches Hone Claws to a compatible Pokémon. (Gen IV & III: Focus Punch Gen II: DynamicPunch Gen I: Mega Punch),Teaches Focus Punch to a compatible Pokémon. +306,9,Teaches Dragon Claw to a compatible Pokémon. (Gen II: Headbutt Gen I: Razor Wind),Teaches Dragon Claw to a compatible Pokémon. +307,9,Teaches Psyshock to a compatible Pokémon. (Gen IV & III: Water Pulse Gen II: Curse Gen I: Swords Dance),Teaches Water Pulse to a compatible Pokémon. +308,9,Teaches Calm Mind to a compatible Pokémon. (Gen II: Rollout Gen I: Whirlwind),Teaches Calm Mind to a compatible Pokémon. +309,9,Teaches Roar to a compatible Pokémon. (Gen I: Mega Kick),Teaches Roar to a compatible Pokémon. +310,9,Teaches Toxic to a compatible Pokémon.,Teaches Toxic to a compatible Pokémon. +311,9,Teaches Hail to a compatible Pokémon. (Gen II: Zap Cannon Gen I: Horn Drill),Teaches Hail to a compatible Pokémon. +312,9,Teaches Bulk Up to a compatible Pokémon. (Gen II: Rock Smash Gen I: Body Slam),Teaches Bulk Up to a compatible Pokémon. +313,9,Teaches Venoshock to a compatible Pokémon. (Gen IV & III: Bullet Seed Gen II: Psych Up Gen I: Take Down),Teaches Bullet Seed to a compatible Pokémon. +314,9,Teaches Hidden Power to a compatible Pokémon. (Gen I: Double-Edge),Teaches Hidden Power to a compatible Pokémon. +315,9,Teaches Sunny Day to a compatible Pokémon. (Gen I: BubbleBeam),Teaches Sunny Day to a compatible Pokémon. +316,9,Teaches Taunt to a compatible Pokémon. (Gen II: Sweet Scent Gen I: Water Gun),Teaches Taunt to a compatible Pokémon. +317,9,Teaches Ice Beam to a compatible Pokémon. (Gen II: Snore),Teaches Ice Beam to a compatible Pokémon. +318,9,Teaches Blizzard to a compatible Pokémon.,Teaches Blizzard to a compatible Pokémon. +319,9,Teaches Hyper Beam to a compatible Pokémon.,Teaches Hyper Beam to a compatible Pokémon. +320,9,Teaches Light Screen to a compatible Pokémon. (Gen II: Icy Wind Gen I: Pay Day),Teaches Light Screen to a compatible Pokémon. +321,9,Teaches Protect to a compatible Pokémon. (Gen I: Submission),Teaches Protect to a compatible Pokémon. +322,9,Teaches Rain Dance to a compatible Pokémon. (Gen I: Counter),Teaches Rain Dance to a compatible Pokémon. +323,9,Teaches Telekinesis to a compatible Pokémon. (Gen IV & III & II: Giga Drain Gen I: Seismic Toss),Teaches Giga Drain to a compatible Pokémon. +324,9,Teaches Safeguard to a compatible Pokémon. (Gen II: Endure Gen I: Rage),Teaches Safeguard to a compatible Pokémon. +325,9,Teaches Frustration to a compatible Pokémon. (Gen I: Mega Drain),Teaches Frustration to a compatible Pokémon. +326,9,Teaches SolarBeam to a compatible Pokémon.,Teaches SolarBeam to a compatible Pokémon. +327,9,Teaches Smack Down to a compatible Pokémon. (Gen IV & III & II: Iron Tail Gen I: Dragon Rage),Teaches Iron Tail to a compatible Pokémon. +328,9,Teaches Thunderbolt to a compatible Pokémon. (Gen II: DragonBreath),Teaches Thunderbolt to a compatible Pokémon. +329,9,Teaches Thunder to a compatible Pokémon.,Teaches Thunder to a compatible Pokémon. +330,9,Teaches Earthquake to a compatible Pokémon.,Teaches Earthquake to a compatible Pokémon. +331,9,Teaches Return to a compatible Pokémon. (Gen I: Fissure),Teaches Return to a compatible Pokémon. +332,9,Teaches Dig to a compatible Pokémon.,Teaches Dig to a compatible Pokémon. +333,9,Teaches Psychic to a compatible Pokémon.,Teaches Psychic to a compatible Pokémon. +334,9,Teaches Shadow Ball to a compatible Pokémon. (Gen I: Teleport),Teaches Shadow Ball to a compatible Pokémon. +335,9,Teaches Brick Break to a compatible Pokémon. (Gen II: Mud-Slap Gen I: Mimic),Teaches Brick Break to a compatible Pokémon. +336,9,Teaches Double Team to a compatible Pokémon.,Teaches Double Team to a compatible Pokémon. +337,9,Teaches Reflect to a compatible Pokémon. (Gen II: Ice Punch),Teaches Reflect to a compatible Pokémon. +338,9,Teaches Sludge Wave to a compatible Pokémon. (Gen IV & III: Shock Wave Gen II: Swagger Gen I: Bide),Teaches Shock Wave to a compatible Pokémon. +339,9,Teaches Flamethrower to a compatible Pokémon. (Gen II: Sleep Talk Gen I: Metronome),Teaches Flamethrower to a compatible Pokémon. +340,9,Teaches Sludge Bomb to a compatible Pokémon. (Gen I: Selfdestruct),Teaches Sludge Bomb to a compatible Pokémon. +341,9,Teaches Sandstorm to a compatible Pokémon. (Gen I: Egg Bomb),Teaches Sandstorm to a compatible Pokémon. +342,9,Teaches Fire Blast to a compatible Pokémon.,Teaches Fire Blast to a compatible Pokémon. +343,9,Teaches Rock Tomb to a compatible Pokémon. (Gen II & I: Swift),Teaches Rock Tomb to a compatible Pokémon. +344,9,Teaches Aerial Ace to a compatible Pokémon. (Gen II: Defense Curl Gen I: Skull Bash),Teaches Aerial Ace to a compatible Pokémon. +345,9,Teaches Torment to a compatible Pokémon. (Gen II: ThunderPunch Gen I: Softboiled),Teaches Torment to a compatible Pokémon. +346,9,Teaches Facade to a compatible Pokémon. (Gen II & I: Dream Eater),Teaches Facade to a compatible Pokémon. +347,9,Teaches Flame Charge to a compatible Pokémon. (Gen IV & III: Secret Power Gen II: Detect Gen I: Sky Attack),Teaches Secret Power to a compatible Pokémon. +348,9,Teaches Rest to a compatible Pokémon.,Teaches Rest to a compatible Pokémon. +349,9,Teaches Attract to a compatible Pokémon. (Gen I: Thunder Wave),Teaches Attract to a compatible Pokémon. +350,9,Teaches Thief to a compatible Pokémon. (Gen I: Psywave),Teaches Thief to a compatible Pokémon. +351,9,Teaches Low Sweep to a compatible Pokémon. (Gen IV & III & II: Steel Wing Gen I: Explosion),Teaches Steel Wing to a compatible Pokémon. +352,9,Teaches Round to a compatible Pokémon. (Gen IV & III: Skill Swap Gen II: Fire Punch Gen I: Rock Slide),Teaches Skill Swap to a compatible Pokémon. +353,9,Teaches Echoed Voice to a compatible Pokémon. (Gen IV & III: Snatch Gen II: Fury Cutter Gen I: Tri Attack),Teaches Snatch to a compatible Pokémon. +354,9,Teaches Overheat to a compatible Pokémon. (Gen II: Nightmare Gen I: Substitute),Teaches Overheat to a compatible Pokémon. +355,9,Teaches Ally Switch to a compatible Pokémon. (Gen IV: Roost),Teaches Roost to a compatible Pokémon. +356,9,Teaches Focus Blast to a compatible Pokémon.,Teaches Focus Blast to a compatible Pokémon. +357,9,Teaches Energy Ball to a compatible Pokémon.,Teaches Energy Ball to a compatible Pokémon. +358,9,Teaches False Swipe to a compatible Pokémon.,Teaches False Swipe to a compatible Pokémon. +359,9,Teaches Scald to a compatible Pokémon. (Gen IV: Brine),Teaches Brine to a compatible Pokémon. +360,9,Teaches Fling to a compatible Pokémon.,Teaches Fling to a compatible Pokémon. +361,9,Teaches Charge Beam to a compatible Pokémon.,Teaches Charge Beam to a compatible Pokémon. +362,9,Teaches Sky Drop to a compatible Pokémon. (Gen IV: Endure),Teaches Endure to a compatible Pokémon. +363,9,Teaches Incinerate to a compatible Pokémon. (Gen IV: Dragon Pulse),Teaches Dragon Pulse to a compatible Pokémon. +364,9,Teaches Quash to a compatible Pokémon. (Gen IV: Drain Punch),Teaches Drain Punch to a compatible Pokémon. +365,9,Teaches Will-O-Wisp to a compatible Pokémon.,Teaches Will-O-Wisp to a compatible Pokémon. +366,9,Teaches Acrobatics to a compatible Pokémon. (Gen IV: Silver Wind),Teaches Silver Wind to a compatible Pokémon. +367,9,Teaches Embargo to a compatible Pokémon.,Teaches Embargo to a compatible Pokémon. +368,9,Teaches Explosion to a compatible Pokémon.,Teaches Explosion to a compatible Pokémon. +369,9,Teaches Shadow Claw to a compatible Pokémon.,Teaches Shadow Claw to a compatible Pokémon. +370,9,Teaches Payback to a compatible Pokémon.,Teaches Payback to a compatible Pokémon. +371,9,Teaches Retaliate to a compatible Pokémon. (Gen IV: Recycle),Teaches Recycle to a compatible Pokémon. +372,9,Teaches Giga Impact to a compatible Pokémon.,Teaches Giga Impact to a compatible Pokémon. +373,9,Teaches Rock Polish to a compatible Pokémon.,Teaches Rock Polish to a compatible Pokémon. +374,9,Teaches Flash to a compatible Pokémon.,Teaches Flash to a compatible Pokémon. +375,9,Teaches Stone Edge to a compatible Pokémon.,Teaches Stone Edge to a compatible Pokémon. +376,9,Teaches Volt Switch to a compatible Pokémon. (Gen IV: Avalanche),Teaches Avalanche to a compatible Pokémon. +377,9,Teaches Thunder Wave to a compatible Pokémon.,Teaches Thunder Wave to a compatible Pokémon. +378,9,Teaches Gyro Ball to a compatible Pokémon.,Teaches Gyro Ball to a compatible Pokémon. +379,9,Teaches Swords Dance to a compatible Pokémon.,Teaches Swords Dance to a compatible Pokémon. +380,9,Teaches Struggle Bug to a compatible Pokémon. (Gen IV: Stealth Rock),Teaches Stealth Rock to a compatible Pokémon. +381,9,Teaches Psych Up to a compatible Pokémon.,Teaches Psych Up to a compatible Pokémon. +382,9,Teaches Bulldoze to a compatible Pokémon. (Gen IV: Captivate),Teaches Captivate to a compatible Pokémon. +383,9,Teaches Frost Breath to a compatible Pokémon. (Gen IV: Dark Pulse),Teaches Dark Pulse to a compatible Pokémon. +384,9,Teaches Rock Slide to a compatible Pokémon.,Teaches Rock Slide to a compatible Pokémon. +385,9,Teaches X-Scissor to a compatible Pokémon.,Teaches X-Scissor to a compatible Pokémon. +386,9,Teaches Dragon Tail to a compatible Pokémon. (Gen IV: Sleep Talk),Teaches Sleep Talk to a compatible Pokémon. +387,9,Teaches Work Up to a compatible Pokémon. (Gen IV: Natural Gift),Teaches Natural Gift to a compatible Pokémon. +388,9,Teaches Poison Jab to a compatible Pokémon.,Teaches Poison Jab to a compatible Pokémon. +389,9,Teaches Dream Eater to a compatible Pokémon.,Teaches Dream Eater to a compatible Pokémon. +390,9,Teaches Grass Knot to a compatible Pokémon.,Teaches Grass Knot to a compatible Pokémon. +391,9,Teaches Swagger to a compatible Pokémon.,Teaches Swagger to a compatible Pokémon. +392,9,Teaches Pluck to a compatible Pokémon.,Teaches Pluck to a compatible Pokémon. +393,9,Teaches U-turn to a compatible Pokémon.,Teaches U-Turn to a compatible Pokémon. +394,9,Teaches Substitute to a compatible Pokémon.,Teaches Substitute to a compatible Pokémon. +395,9,Teaches Flash Cannon to a compatible Pokémon.,Teaches Flash Cannon to a compatible Pokémon. +396,9,Teaches Trick Room to a compatible Pokémon.,Teaches Trick Room to a compatible Pokémon. +397,9,Teaches Cut to a compatible Pokémon.,Teaches Cut to a compatible Pokémon. +398,9,Teaches Fly to a compatible Pokémon.,Teaches Fly to a compatible Pokémon. +399,9,Teaches Surf to a compatible Pokémon.,Teaches Surf to a compatible Pokémon. +400,9,Teaches Strength to a compatible Pokémon.,Teaches Strength to a compatible Pokémon. +401,9,Teaches Waterfall to a compatible Pokémon. (HS: Whirlpool DPP: Defog Gen III & II & I: Flash),Teaches Defog to a compatible Pokémon. +402,9,Teaches Dive to a compatible Pokémon. (Gen IV & III: Rock Smash Gen II: Whirlpool),Teaches Rock Smash to a compatible Pokémon. +403,9,Teaches a move to a compatible Pokémon. (Gen IV & III & II: Waterfall),Teaches Waterfall to a compatible Pokémon. +404,9,Teaches a move to a compatible Pokémon. (Gen IV: Rock Climb Gen III: Dive),Teaches Rock Climb to a compatible Pokémon. +405,9,Allows visiting the Underground.,Sends the trainer to the Underground. Only usable outside. +406,9,Carries coal mine loot.,Unused. +407,9,List of battle types and their rules.,Unused. +408,9,Use to track down rare or shiny Pokémon. 50 steps to recharge.,"Designates several nearby patches of grass as containing Pokémon, some of which may be special radar-only Pokémon. Successive uses in a certain way create chains of encounters with the same species; longer chains increase the chance that a shiny Pokémon of that species will appear." +409,9,Keeps count of Battle Points earned.,Tracks Battle Points. +410,9,Records prior significant activities the player took.,Records some of the trainer's activities for the day. +411,9,Stores Seals that can be applied to Poké Ball capsules.,Contains Seals used for decorating Pokéballs. +412,9,Holds Pokémon Accessories for use in Contests.,Contains Pokémon Accessories. +413,9,Holds ten Seals for Poké Balls.,Unused. +414,9,Use to record Friend Codes and check your own.,"Contains friend codes for up to 32 other players, as well as their sprite, gender, and basic statistics for those that have been seen on WFC." +415,9,Grants access to Valley Windworks.,Opens the front door of the Valley Windworks. Reusable. +416,9,Trade to Cynthia's grandmother in Celestic Town for HM04 (Surf).,Given to Cynthia's grandmother to get the Surf HM. +417,9,Grants access to Galactic HQ in Veilstone City.,Grants access to Galactic HQ in Veilstone City. +418,9,Used to bind Palkia and Dialga.,Unused. +419,9,Use to see the overworld map.,"Displays a map of the region including the trainer's position, location names, visited towns, gym locations, and where the trainer has been walking recently." +420,9,Allows rebattling of on-screen trainers. 100 steps to recharge.,"Reveals trainers who want a rematch, by showing !! over their heads. Each use drains the battery; requires 100 steps to charge." +421,9,Holds coins for the Game Corner.,"Contains the Coins used by the Game Corner, to a maximum of 50,000." +422,9,Used to catch Pokémon in bodies of water.,"Used to find Pokémon on the Old Rod list for an area, which are generally Magikarp or similar." +423,9,Used to catch Pokémon in bodies of water.,"Used to find Pokémon on the Good Rod list for an area, which are generally mediocre." +424,9,Used to catch Pokémon in bodies of water.,"Used to find Pokémon on the Super Rod list for an area, which are generally the best available there." +425,9,Used to water berries.,Waters Berry plants. +426,9,Holds Poffins.,Contains up to 100 Poffins. +427,9,Use for fast transit.,"Increases movement speed outside or in caves. In high gear, allows the trainer to hop over some rocks and ascend muddy slopes." +428,9,Opens a locked building in the Lakeside Resort.,Opens the locked building in the lakeside resort. +429,9,"Allows access to Seabreak path, Flower Paradise, and Shaymin.",Grants access to Flower Paradise and Shaymin. +430,9,Cures sailor's son of nightmares in Canalave City.,"Cures the sailor's son of his nightmares; no reward, only a side effect of seeing Cresselia." +431,9,Allows access to Newmoon Island and Darkrai.,Provides access to Newmoon Island and Darkrai. +432,9,Allows entry into the Hall of Origin. Unreleased.,Supposedly related to t +433,9,Ticket for a ship. (RSE: S.S. Tidal LF: S.S. Anne HG: S.S. Aqua),"Allows passage on a ferry. + +The same item is used for different ferries between different games." +434,9,Allows participation in Pokémon Contests.,Allows the trainer to enter Contests. +435,9,Magma is sealed inside.,"Causes Heatran to appear at Reversal Mountain. + +Unused prior to Black and White 2." +436,9,Given to the trainer's rival in Jubilife City. Contains Town Maps.,"Given to the trainer's rival in Jubilife City. Contains two Town Maps, one of which is given to the trainer upon delivery." +437,9,The first of three tickets used to obtain a Pokétch.,One of three coupons needed to receive a Pokétch. +438,9,The second of three tickets used to obtain a Pokétch.,One of three coupons needed to receive a Pokétch. +439,9,The last of three tickets used to obtain a Pokétch.,One of three coupons needed to receive a Pokétch. +440,9,Grants access to the Team Galactic warehouse in Veilstone City.,Grants access to the Team Galactic warehouse in Veilstone City. +441,9,Used to heal the Ampharos at the top of Olivine Lighthouse.,Required to cure the Psyducks blocking Route 210 of their chronic headaches. +442,9,"Boosts the damage from Giratina's Dragon-type and Ghost-type moves by 20%, and transforms it into Origin Forme.","Held by []{pokemon:giratina} +: Holder's []{type:dragon} and []{type:ghost} moves have 1.2× their base power. + + Holder is in Origin Forme. + +This item cannot be held by any Pokémon but Giratina. When you enter the Union Room or connect to Wi-Fi, this item returns to your bag." +443,9,"Records wireless, Wi-Fi, or Battle Frontier battles, and stores points.","Optionally records wireless, Wi-Fi, and Battle Frontier battles. + +Tracks Battle Points earned in the Battle Frontier, and stores commemorative prints." +444,9,Changes an unfrozen Shaymin to Sky Forme in the day.,"Used by trainer on a []{pokemon:shaymin} +: Changes the target Shaymin from Land Forme to Sky Forme. + + This item cannot be used on a [frozen]{mechanic:freezing} Shaymin or at night. Sky Forme Shaymin will revert to Land Forme overnight, when frozen, and upon entering a link battle. This item must be used again to change it back." +445,9,Gen IV: The key to Rotom's appliance room. Gen III: The key to Cinnabar Gym.,"Used by trainer in the Galactic Eterna Building, on the ground floor, to the left of the TV +: Unlocks the secret []{pokemon:rotom} room, in which there are five appliances which can change Rotom's form." +446,9,Holds Apricorns.,Stores Apricorns. +447,9,Allows portable berry growing.,Contains four portable pots of soil suitable for growing berries. +448,9,Use on Sudowoodo blocking the path on Route 36. Also waters berries.,"Required to water berries within the []{item:berry-pots}. + +Required to battle the []{pokemon:sudowoodo} on []{location:johto-route-36}. + +This item cannot be directly used from the bag." +449,9,3× effectiveness while fishing. Made from Blu Apricorn.,"Used by trainer in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. If used in a trainer battle, nothing happens and the ball is lost. + + If the wild Pokémon was encountered by fishing, the wild Pokémon's catch rate is 3× normal." +450,9,Success rate based off of fraction target Pokémon is of user's Pokémon. Made from Red Apricorn.,"Used by trainer in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. If used in a trainer battle, nothing happens and the ball is lost. + + If the trainer's Pokémon's level is higher than: + + * four times the wild Pokémon's, the wild Pokémon's catch rate is 8× normal. + * than twice the wild Pokémon's, the wild Pokémon's catch rate is 4× normal. + * the wild Pokémon's, the wild Pokémon's catch rate is 2× normal." +451,9,4× effectiveness on familes of Pokémon with a Moon Stone evolution. Made from Ylw Apricorn.,"Used by trainer in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. If used in a trainer battle, nothing happens and the ball is lost. + + If the wild Pokémon is a []{pokemon:clefairy}, []{pokemon:nidoran-m}, []{pokemon:nidoran-f}, []{pokemon:jigglypuff}, []{pokemon:skitty}, or any evolution thereof, the wild Pokémon has 4× its catch rate." +452,9,Has flat bonus or penalty to catch rate depending on weight class of target. Made from Blk Apricorn.,"Used by a trainer in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. If used in a trainer battle, nothing happens and the ball is lost. + + If the wild Pokémon weighs: + + * 409.6 kg (903.0 lb) or more, its catch rate is 40 more than normal. + * 307.2 kg (677.3 lb) or more, its catch rate is 30 more than normal. + * 204.8 kg (451.5 lb) or more, its catch rate is 20 more than normal. + * less than 204.8 kg (451.5 lb), its catch rate is 20 less than normal." +453,9,4× effectiveness on Pokémon with 100 or greater base speed. (Gen II: Roaming or Fleeing Pokémon). Made from Wht Apricorn.,"Used by a trainer in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. If used in a trainer battle, nothing happens and the ball is lost. + +: If the wild Pokémon's base [speed]{mechanic:speed} is 100 or more, its catch rate is 4× normal." +454,9,Caught Pokémon start with 200 happiness. Made from Grn Apricorn.,"Used by a trainer in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. If used in a trainer battle, nothing happens and the ball is lost. + + If caught, the wild Pokémon's [happiness]{mechanic:happiness} starts at 200." +455,9,"8× effectiveness on opposite sex, same species targets of the Active Pokémon. Made from Pnk Apricorn.","Used by a trainer in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. If used in a trainer battle, nothing happens and the ball is lost. + + If the trainer's Pokémon and wild Pokémon are of the same species but opposite genders, the wild Pokémon's catch rate is 8× normal." +456,9,Catches Pokémon in the Pal Park every time.,"Used by a trainer in battle +: [Catches]{mechanic:catch} a wild Pokémon. + +This item can only be used in []{location:pal-park}." +457,9,Tries to catch a Pokémon in the Bug-Catching contest in National Park. (Gen II: Park Ball),"Used by a trainer in battle +: Attempts to [catch]{mechanic:catch} a wild Pokémon. + + The wild Pokémon's catch rate is 1.5× normal." +458,9,Used to make a Level Ball.,May be given to Kurt in []{location:azalea-town} to produce a []{item:level-ball}. +459,9,Used to make a Lure Ball.,May be given to Kurt in []{location:azalea-town} to produce a []{item:lure-ball}. +460,9,Used to make a Moon Ball.,May be given to Kurt in []{location:azalea-town} to produce a []{item:moon-ball}. +461,9,Used to make a Friend Ball.,May be given to Kurt in []{location:azalea-town} to produce a []{item:friend-ball}. +462,9,Used to make a Love Ball.,May be given to Kurt in []{location:azalea-town} to produce a []{item:love-ball}. +463,9,Used to make a Fast Ball.,May be given to Kurt in []{location:azalea-town} to produce a []{item:fast-ball}. +464,9,Used to make a Heavy Ball.,May be given to Kurt in []{location:azalea-town} to produce a []{item:heavy-ball}. +465,9,Use to find hidden items on the field. AKA Itemfinder.,"Used by trainer outside of battle +: Searches for hidden items." +466,9,HS: Traded for TM64. Gen II & Gen V: Acts as a Potion.,May be traded for a []{item:tm64} in the vertical Underground Path. +467,9,Summons Groudon to the Embedded Tower.,Causes []{pokemon:groudon} to appear in the []{location:embedded-tower}. +468,9,Summons Kyogre to the Embedded Tower.,Causes []{pokemon:kyogre} to appear in the []{location:embedded-tower}. +469,9,Summons Rayquaza to the Embedded Tower.,Causes []{pokemon:rayquaza} to appear in the []{location:embedded-tower}. +470,9,S: Summons Latias H: Summons Latios.,"When taken to the []{location:pewter-city} museum, causes []{pokemon:latias} or []{pokemon:latios} to attack the trainer. + +The Pokémon to appear will be whicher can't be encountered roaming in the wild." +471,9,Keeps track of Unown types caught.,Lists which []{pokemon:unown} forms the trainer has caught. +472,9,Keeps track of points from Buena's show.,Allows the trainer to answer the daily question on Buena's radio show. Records the points earned for correct answers. +473,9,A tasty tail that sells for a high price.,Does nothing. +474,9,HS: Allows Kimono-girls to summon Ho-oh. C: Summons Suicune to the Tin Tower.,May be given to the Kimono Girls to summon []{pokemon:ho-oh} to the top of the []{location:bell-tower}. +475,9,HS: Opens doors in the Radio Tower. Gen III: Unlocks Silph Co Doors.,"Used by trainer outside of battle +: Opens doors in the []{location:goldenrod-city} Radio Tower." +476,9,HS: Key to the tunnel under Goldenrod City. Gen III: Key to New Mauville.,"Used by trainer outside of battle +: Opens the door to the basement tunnel under []{location:goldenrod-city}." +477,9,Trade to Mr. Pokémon for an Exp. Share.,May be traded to Mr. Pokémon for an []{item:exp-share}. +478,9,A Poké Doll lost by the Copycat who lives in Saffron City. Trade for a Pass.,May be traded to the Copycat for a []{item:pass}. +479,9,Grants access to ride the Magnet Train between Goldenrod City and Saffron City.,Allows the trainer to ride the Magnet Train between []{location:goldenrod-city} and []{location:saffron-city}. +480,9,Must be replaced in the Power Plant to power the Magnet Train.,Must be replaced in the []{location:power-plant} to power the Magnet Train. +481,9,Summons Lugia to the Whirl Islands.,Causes []{pokemon:lugia} to appear in the []{location:whirl-islands}. +482,9,Summons Ho-Oh at the top of the Bell Tower.,Causes []{pokemon:ho-oh} to appear at the top of []{location:bell-tower}. +483,9,Deliver to Professor Elm.,"Must be obtained to trigger the break-in at Professor Elm's lab, the first rival battle, and access to []{location:johto-route-31}." +484,9,Use to listen to GameBoy era audio.,"Used by trainer outside of battle +: Changes the background music to the equivalent 8-bit music." +485,9,Allows Kimono-girls to summon Lugia.,May be given to the Kimono Girls to summon []{pokemon:lugia} to the top of the []{location:bell-tower}. +486,9,Records the number of times the trainer has come in first place overall in the Pokéathlon.,Records the number of times the trainer has come in first place overall in the Pokéathlon. +487,9,Records the number of times the trainer has come in last place overall in the Pokéathlon.,Records the number of times the trainer has come in last place overall in the Pokéathlon. +488,9,Records the number of times the trainer's Pokémon have dashed in the Pokéathlon.,Records the number of times the trainer's Pokémon have dashed in the Pokéathlon. +489,9,Records the number of times the trainer's Pokémon have jumped in the Pokéathlon.,Records the number of times the trainer's Pokémon have jumped in the Pokéathlon. +490,9,Records the number of times the trainer has come in first in the Pokéathlon Hurdle Dash.,Records the number of times the trainer has come in first in the Pokéathlon Hurdle Dash. +491,9,Records the number of times the trainer has come in first in the Pokéathlon Relay Run.,Records the number of times the trainer has come in first in the Pokéathlon Relay Run. +492,9,Records the number of times the trainer has come in first in the Pokéathlon Pennant Capture.,Records the number of times the trainer has come in first in the Pokéathlon Pennant Capture. +493,9,Records the number of times the trainer has come in first in the Pokéathlon Block Smash.,Records the number of times the trainer has come in first in the Pokéathlon Block Smash. +494,9,Records the number of times the trainer has come in first in the Pokéathlon Disc Catch.,Records the number of times the trainer has come in first in the Pokéathlon Disc Catch. +495,9,Records the number of times the trainer has come in first in the Pokéathlon Snow Throw.,Records the number of times the trainer has come in first in the Pokéathlon Snow Throw. +496,9,Records the number of points the trainer has earned in the Pokéathlon.,Records the number of points the trainer has earned in the Pokéathlon. +497,9,Records the number of times the trainer's Pokémon have messed up in the Pokéathlon.,Records the number of times the trainer's Pokémon have messed up in the Pokéathlon. +498,9,Records the number of times the trainer's Pokémon have defeated themselves in the Pokéathlon.,Records the number of times the trainer's Pokémon have defeated themselves in the Pokéathlon. +499,9,Records the number of times the trainer's Pokémon have tackled in the Pokéathlon.,Records the number of times the trainer's Pokémon have tackled in the Pokéathlon. +500,9,Records the number of times the trainer's Pokémon have fallen in the Pokéathlon.,Records the number of times the trainer's Pokémon have fallen in the Pokéathlon. +501,9,Records the number of times the trainer has come in first in the Pokéathlon Ring Drop.,Records the number of times the trainer has come in first in the Pokéathlon Ring Drop. +502,9,Records the number of times the trainer has come in first in the Pokéathlon Lamp Jump.,Records the number of times the trainer has come in first in the Pokéathlon Lamp Jump. +503,9,Records the number of times the trainer has come in first in the Pokéathlon Circle Push.,Records the number of times the trainer has come in first in the Pokéathlon Circle Push. +504,9,Records the number of times the trainer has come in first place overall in the Pokéathlon over wirelss.,Records the number of times the trainer has come in first place overall in the Pokéathlon over wirelss. +505,9,Records the number of times the trainer has come in last place overall in the Pokéathlon over wireless.,Records the number of times the trainer has come in last place overall in the Pokéathlon over wireless. +506,9,Records the number of times the trainer has come in first across all Pokéathlon events.,Records the number of times the trainer has come in first across all Pokéathlon events. +507,9,Records the number of times the trainer has come in last across all Pokéathlon events.,Records the number of times the trainer has come in last across all Pokéathlon events. +508,9,Records the number of times the trainer has switched Pokémon in the Pokéathlon.,Records the number of times the trainer has switched Pokémon in the Pokéathlon. +509,9,Records the number of times the trainer has come in first in the Pokéathlon Goal Roll.,Records the number of times the trainer has come in first in the Pokéathlon Goal Roll. +510,9,Records the number of times the trainer's Pokémon received prizes in the Pokéathlon.,Records the number of times the trainer's Pokémon received prizes in the Pokéathlon. +511,9,Records the number of times the trainer has instructed Pokémon in the Pokéathlon.,Records the number of times the trainer has instructed Pokémon in the Pokéathlon. +512,9,Records the total time spent in the Pokéathlon.,Records the total time spent in the Pokéathlon. +513,9,Contains TM95 (Snarl).,Does nothing. +514,9,Stores photos from your adventure.,Does nothing. +515,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +516,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +517,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +518,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +519,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +520,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +521,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +522,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +523,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +524,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +525,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +526,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +527,9,"Faster than the Acro Bike, and can ride up sandy slopes and across cracked floors.",Increases movement speed outside or in caves. Faster than the []{item:acro-bike}. Allows the trainer to ascend muddy slopes. +528,9,"More maneuverable than the Mach Bike, and allows hopping along rails.","Increases movement speed outside or in caves. Slower than the []{item:mach-bike}. Can perform various tricks, allowing the trainer to reach certain special areas." +529,9,Used to water berries.,Waters Berry plants. +530,9,Contains mechanical parts to be delivered to Captain Stern.,Contains a machine part to be delivered to Captain Stern. +531,9,Stores volcanic ash from Route 113.,Collects soot when walking through tall grass on []{location:hoenn-route-113}. +532,9,Holds Pokéblocks.,Stores Pokéblocks. +533,9,A letter to Steven from the Devon Corp president.,Contains a letter to be delivered to Steven. +534,9,Provides access to Southern Island and Latias or Latios.,"Provides access to []{location:southern-island} and either []{pokemon:latias} or []{pokemon:latios}, whichever is not available roaming around Hoenn." +535,9,Trade to Captain Stern for a DeepSeaTooth or DeepSeaScale.,May be traded to Captain Stern for a []{item:deep-sea-tooth} or a []{item:deep-sea-scale}. +536,9,Allows passage through windy deserts.,Allows the trainer to enter the desert on []{location:hoenn-route-111}. +537,9,FL: Deliver to Lostelle's father. RSE: Trade to Professor Cozmo for TM27 (Return).,"RSE: May be traded to Professor Cozmo for []{item:tm27}. + +FRLG: A meteorite to be delivered to Lostelle's father." +538,9,Unlocks room 1 on the Abandoned Ship.,Unlocks room 1 on the []{location:abandoned-ship}. +539,9,Unlocks room 2 on the Abandoned Ship.,Unlocks room 2 on the []{location:abandoned-ship}. +540,9,Unlocks room 4 on the Abandoned Ship.,Unlocks room 4 on the []{location:abandoned-ship}. +541,9,Unlocks room 6 on the Abandoned Ship.,Unlocks room 6 on the []{location:abandoned-ship}. +542,9,Allows spotting of invisible Kecleon.,Reveals invisble []{pokemon:kecleon} on the overworld. +543,9,Trade to Prof. Oak for a Pokédex.,A parcel to be delivered to Professor Oak for a Pokédex. +544,9,"Use to awaken sleeping Pokémon, including Snorlax on roads.",Wakes up [sleeping]{mechanic:sleep} Pokémon. Required to wake up sleeping []{pokemon:snorlax} on the overworld. +545,9,Trade in Cerulean bike shop for a Bicycle.,May be traded for a []{item:bicycle}. +546,9,The Safari Zone Warden's dentures. Trade for HM04 (Strength).,"The Safari Zone warden's teeth, to be returned to him for []{item:hm04}." +547,9,Operates the elevator in Team Rocket's Celadon Hideout.,Operates the elevator in the Celadon Rocket Hideout. +548,9,Used to identify the true forms of ghosts in Pokémon Tower.,Identifies ghosts in []{location:pokemon-tower}. +549,9,Records information about NPCs.,Records information on various famous people. +550,9,Holds TMs.,Stores TMs and HMs. +551,9,Holds berries.,Stores Berries. +552,9,Teachers basic trainer advice.,Teaches beginning trainers basic information. +553,9,Grants access to the first three Sevii Islands.,Provides access to the first three Sevii Islands. +554,9,Grants access to all of the Sevii Islands.,Provides access to the Sevii Islands. +555,9,Grants access to Saffron City.,Used to bribe the []{location:saffron-city} guards for entry to the city. +556,9,Allows access to Navel Rock and Lugia or Ho-oh.,"Provides access to Navel Rock, []{pokemon:ho-oh}, and []{pokemon:lugia}." +557,9,Allows access to Birth Island and Deoxys.,Provides access to Birth Island and []{pokemon:deoxys}. +558,9,Stores Berry Powder made using a Berry Crusher.,Holds Berry Powder from Berry Crushing. +559,9,Give to Celio with Sapphire to activate Network Machine and get Rainbow Pass.,Deliver to Celio for use in the Network Machine. +560,9,Give to Celio with Ruby to activate Network Machine and get Rainbow Pass.,Deliver to Celio for use in the Network Machine. +561,9,Provides access to the Team Magma Hideout in the Jagged Pass.,Provides access to the []{location:magma-hideout} in the []{location:jagged-pass}. +562,9,Allows access to Faraway Island and Mew. Unreleased outside of Japan.,Provides access to Faraway Island and []{pokemon:mew}. +563,9,"Grants Genesect a blue, Water-type Techno Blast.","Held by []{pokemon:genesect} +: Holder's buster is blue, and its []{move:techno-blast} is []{type:water}-type." +564,9,"Grants Genesect a yellow, Electric-type Techno Blast.","Held by []{pokemon:genesect} +: Holder's buster is yellow, and its []{move:techno-blast} is []{type:electric}-type." +565,9,"Grants Genesect a red, Fire-type Techno Blast.","Held by []{pokemon:genesect} +: Holder's buster is red, and its []{move:techno-blast} is []{type:fire}-type." +566,9,"Grants Genesect a white, Ice-type Techno Blast.","Held by []{pokemon:genesect} +: Holder's buster is white, and its []{move:techno-blast} becomes []{type:ice}-type." +567,9,Restores 20 HP.,"Used on a friendly Pokémon +: Restores 20 [HP]{mechanic:hp}." +568,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +569,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +570,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +571,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +572,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +573,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +574,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +575,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +576,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +577,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +578,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +579,9,Lets a Trainer write a message and send it via Pokémon trade.,"Used to send short messages to other players via Pokémon trading. Trainer may compose a message from a finite list of words when giving this item to a Pokémon. Once taken and read, a message may be erased and this item can be reused, or the message may be stored in the trainer's PC. + +Held +: Holder cannot be placed in the PC. Any move attempting to remove this item from the holder will fail." +580,9,Traded on a Feebas: Holder evolves into Milotic.,"Held by []{pokemon:feebas} +: Holder evolves into []{pokemon:milotic} when traded." +581,9,"Held: Holder has 1.5× Defense and Special Defense, as long as it's not fully evolved.","Held by a Pokémon that is not fully evolved +: Holder has 1.5× [Defense]{mechanic:defense} and [Special Defense]{mechanic:special-defense}." +582,9,Held: Holder has 0.5× weight.,"Held +: Holder has 0.5× weight." +583,9,"Held: When the holder is hit by a contact move, the attacking Pokémon takes 1/6 its max HP in damage.","Held +: When the holder is hit by a [contact]{mechanic:contact} move, the attacking Pokémon takes 1/6 its max [HP]{mechanic:hp} in damage." +584,9,"Held: Grants immunity to Ground-type moves, Spikes, and Toxic Spikes. Consumed when the holder takes damage from a move.","Held +: Holder is immune to []{type:ground}-type moves, []{move:spikes}, []{move:toxic-spikes}, and []{ability:arena-trap}. + + This effect does not apply during []{move:gravity} or []{move:ingrain}. + + When the holder takes damage from a move, this item is consumed." +585,9,"Held: When the holder takes damage from a move, the opponent switches out for another random party Pokémon. Consumed after use.","Held +: When the holder takes damage directly from a move and does not faint, it [switches out]{mechanic:switching-out} for another random, non-fainted Pokémon in its party. +This effect does not activate if another effect prevents the holder from switching out." +586,9,Held: Negates the holder's type immunities. Ability immunities are not removed.,"Held +: When one of the user's types would render it immune to damage, that type is ignored for damage calculation." +587,9,Held: Doubles the per-turn damage of multi-turn trapping moves.,"Held +: Moves used by the holder that trap and damage a target for multiple turns (e.g. []{move:bind}, []{move:fire-spin}) inflict twice their usual per-turn damage." +588,9,Held: Raises the holder's Special Attack by one stage when it takes Water-type damage.,"Held +: When the holder takes []{type:water}-type damage from a move, its [Special Attack]{mechanic:special-attack} rises by one [stage]{mechanic:stage} and this item is consumed." +589,9,Held: Raises the holder's Attack by one stage when it takes Electric-type damage.,"Held +: When the holder takes []{type:electric}-type damage from a move, its [Attack]{mechanic:attack} rises by one [stage]{mechanic:stage} and this item is consumed." +590,9,"Held: When the holder takes damage from a move, it switches out for a party Pokémon of the Trainer's choice.","Held +: When the holder takes damage directly from a move and does not faint, it [switches out]{mechanic:switching-out} for another non-fainted Pokémon in its party, as chosen by the Trainer. +This effect does not activate if another effect prevents the holder from switching out." +591,9,"Held: When the holder uses a damaging []{type:fire}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:fire}-type move, the move has 1.5× power and this item is consumed." +592,9,"Held: When the holder uses a damaging []{type:water}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:water}-type move, the move has 1.5× power and this item is consumed." +593,9,"Held: When the holder uses a damaging []{type:electric}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:electric}-type move, the move has 1.5× power and this item is consumed." +594,9,"Held: When the holder uses a damaging []{type:grass}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:grass}-type move, the move has 1.5× power and this item is consumed." +595,9,"Held: When the holder uses a damaging []{type:ice}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:ice}-type move, the move has 1.5× power and this item is consumed." +596,9,"Held: When the holder uses a damaging []{type:fighting}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:fighting}-type move, the move has 1.5× power and this item is consumed." +597,9,"Held: When the holder uses a damaging []{type:poison}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:poison}-type move, the move has 1.5× power and this item is consumed." +598,9,"Held: When the holder uses a damaging []{type:ground}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:ground}-type move, the move has 1.5× power and this item is consumed." +599,9,"Held: When the holder uses a damaging []{type:flying}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:flying}-type move, the move has 1.5× power and this item is consumed." +600,9,"Held: When the holder uses a damaging []{type:psychic}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:psychic}-type move, the move has 1.5× power and this item is consumed." +601,9,"Held: When the holder uses a damaging []{type:bug}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:bug}-type move, the move has 1.5× power and this item is consumed." +602,9,"Held: When the holder uses a damaging []{type:rock}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:rock}-type move, the move has 1.5× power and this item is consumed." +603,9,"Held: When the holder uses a damaging []{type:ghost}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:ghost}-type move, the move has 1.5× power and this item is consumed." +604,9,"Held: When the holder uses a damaging []{type:dark}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:dark}-type move, the move has 1.5× power and this item is consumed." +605,9,"Held: When the holder uses a damaging []{type:steel}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:steel}-type move, the move has 1.5× power and this item is consumed." +606,9,Increases [HP]{mechanic:hp} [effort]{mechanic:effort} by 1.,"Used on a party Pokémon +: Increases the target's [HP]{mechanic:hp} [effort]{mechanic:effort} by 1." +607,9,Increases [Attack]{mechanic:attack} [effort]{mechanic:effort} by 1.,"Used on a party Pokémon +: Increases the target's [Attack]{mechanic:attack} [effort]{mechanic:effort} by 1." +608,9,Increases [Defense]{mechanic:defense} [effort]{mechanic:effort} by 1.,"Used on a party Pokémon +: Increases the target's [Defense]{mechanic:defense} [effort]{mechanic:effort} by 1." +609,9,Increases [Special Attack]{mechanic:special-attack} [effort]{mechanic:effort} by 1.,"Used on a party Pokémon +: Increases the target's [Special Attack]{mechanic:special-attack} [effort]{mechanic:effort} by 1." +610,9,Increases [Special Defense]{mechanic:special-defense} [effort]{mechanic:effort} by 1.,"Used on a party Pokémon +: Increases the target's [Special Defense]{mechanic:special-defense} [effort]{mechanic:effort} by 1." +611,9,Increases [Speed]{mechanic:speed} [effort]{mechanic:effort} by 1.,"Used on a party Pokémon +: Increases the target's [Speed]{mechanic:speed} [effort]{mechanic:effort} by 1." +612,9,Sell for 100 Pokédollars.,Vendor trash. +613,9,Can be revived into a []{pokemon:tirtouga}.,Give to a scientist in a museum to receive a []{pokemon:tirtouga}. +614,9,Can be revived into a []{pokemon:archen}.,Give to a scientist in a museum to receive a []{pokemon:archen}. +615,9,Allows access to Liberty Garden and Victini.,"Allows passage on the []{location:castelia-city} ship, which leads to []{location:liberty-garden} and []{pokemon:victini}." +616,9,Activates Pass Powers.,Acts as currency to activate Pass Powers in the Entralink. +617,9,Catches Pokémon found in the Dream World.,"Can only be used in Entree Forest, to catch Pokémon encountered in the Dream World. + +Used in battle +: [Catches]{mechanic:catch} a wild Pokémon without fail." +618,9,Ends a wild battle.,"Used in battle +: Ends a wild battle. Cannot be used in trainer battles." +619,9,Stores props for the Pokémon Musical.,Stores props for the Pokémon Musical. +620,9,Return to the museum in Nacrene City.,Only used as a plot point; this item is given to the player and taken away in the same cutscene. +621,9,Sell to Hungry Maid for 25000 Pokédollars.,Cult vendor trash. +622,9,Sell to Ore Collector for 30000 Pokédollars.,Cult vendor trash. +623,9,Sell to Ore Collector for 25000 Pokédollars.,Cult vendor trash. +624,9,Sell to Ore Collector for 60000 Pokédollars.,Cult vendor trash. +625,9,Sell to Villa Owner for 1000 Pokédollars.,Cult vendor trash. +626,9,Sell to Villa Owner 5000 Pokédollars.,Cult vendor trash. +627,9,Sell to Villa Owner 10000 Pokédollars.,Cult vendor trash. +628,9,Sell to Villa Owner 50000 Pokédollars.,Cult vendor trash. +629,9,Sell to Villa Owner for 100000 Pokédollars.,Cult vendor trash. +630,9,Sell to Villa Owner 200000 Pokédollars.,Cult vendor trash. +631,9,Sell to Villa Owner for 300000 Pokédollars.,Cult vendor trash. +632,9,Cures any status ailment and confusion.,"Used on a party Pokémon +: Cures any [status ailment]{mechanic:status-ailment} and [confusion]{mechanic:confusion}." +633,9,Raises [critical hit]{mechanic:critical-hit} rate by two [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [critical hit]{mechanic:critical-hit} rate by two [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +634,9,Raises [Speed]{mechanic:speed} by two [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Speed]{mechanic:speed} by two [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +635,9,Raises [Special Attack]{mechanic:special-attack} by two [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Special Attack]{mechanic:special-attack} by two [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +636,9,Raises [Special Defense]{mechanic:special-defense} by two [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Special Defense]{mechanic:special-defense} by two [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +637,9,Raises [Defense]{mechanic:defense} by two [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Defense]{mechanic:defense} by two [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +638,9,Raises [Attack]{mechanic:attack} by two [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Attack]{mechanic:attack} by two [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +639,9,Raises [accuracy]{mechanic:accuracy} by two [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [accuracy]{mechanic:accuracy} by two [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +640,9,Raises [Speed]{mechanic:speed} by three [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Speed]{mechanic:speed} by three [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +641,9,Raises [Special Attack]{mechanic:special-attack} by three [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Special Attack]{mechanic:special-attack} by three [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +642,9,Raises [Special Defense]{mechanic:special-defense} by three [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Special Defense]{mechanic:special-defense} by three [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +643,9,Raises [Defense]{mechanic:defense} by three [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Defense]{mechanic:defense} by three [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +644,9,Raises [Attack]{mechanic:attack} by three [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Attack]{mechanic:attack} by three [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +645,9,Raises [accuracy]{mechanic:accuracy} by three [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [accuracy]{mechanic:accuracy} by three [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +646,9,Raises [Speed]{mechanic:speed} by six [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Speed]{mechanic:speed} by six [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +647,9,Raises [Special Attack]{mechanic:special-attack} by six [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Special Attack]{mechanic:special-attack} by six [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +648,9,Raises [Special Defense]{mechanic:special-defense} by six [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Special Defense]{mechanic:special-defense} by six [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +649,9,Raises [Defense]{mechanic:defense} by six [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Defense]{mechanic:defense} by six [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +650,9,Raises [Attack]{mechanic:attack} by six [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [Attack]{mechanic:attack} by six [stages]{mechanic:stage}. + +This item can only be obtained or used via the Wonder Launcher." +651,9,Raises [accuracy]{mechanic:accuracy} by six [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [accuracy]{mechanic:accuracy} by six [stages]{mechanic:stage}. + +This item can only be obtained or used via the Wonder Launcher." +652,9,Forcibly activates a friendly Pokémon's ability.,"Used on a party Pokémon in battle +: Selects another friendly Pokémon at random. If that Pokémon's ability is normally activated by some condition—i.e., is not continuous and passive—its effect is forcibly activated. + +This item can only be obtained or used via the Wonder Launcher." +653,9,Forces a friendly Pokémon to drop its held item.,"Used on a party Pokémon in battle +: Selects another friendly Pokémon at random. If that Pokémon is holding an item, that item is removed for the duration of the battle. + +This item can only be obtained or used via the Wonder Launcher." +654,9,Forcibly activates a friendly Pokémon's held item.,"Used on a party Pokémon in battle +: Selects another friendly Pokémon at random. If that Pokémon is holding an item normally activated by some condition—i.e., not continuous and passive—its effect is forcibly activated. + +This item can only be obtained or used via the Wonder Launcher." +655,9,Resets a friendly Pokémon's stat changes.,"Used on a party Pokémon in battle +: Selects another friendly Pokémon at random. Removes all of that Pokémon's stat changes. + +This item can only be obtained or used via the Wonder Launcher." +656,9,Raises [critical hit]{mechanic:critical-hit} rate by three [stages]{mechanic:stage} in battle. Wonder Launcher only.,"Used on a party Pokémon in battle +: Raises the target's [critical hit]{mechanic:critical-hit} rate by three [stages]{mechanic:stage}. +This item can only be obtained or used via the Wonder Launcher." +657,9,Summons Reshiram for the final battle against N.,Summons []{pokemon:reshiram} for the final battle against N. +658,9,Summons Zekrom for the final battle against N.,Summons []{pokemon:zekrom} for the final battle against N. +659,9,Teaches Wild Charge to a compatible Pokémon.,Teaches []{move:wild-charge} to a compatible Pokémon. +660,9,Teaches Rock Smash to a compatible Pokémon.,Teaches []{move:rock-smash} to a compatible Pokémon. +661,9,Teaches Snarl to a compatible Pokémon.,Teaches []{move:snarl} to a compatible Pokémon. +662,9,Makes four-way video calls.,"Makes four-way video calls. Used for plot advancement in-game, but also works with other players via the C-Gear." +663,9,Unknown. Currently unused.,Unknown. Currently unused. +664,9,Part of a sidequest to obtain []{item:tm89}.,"Give to the []{pokemon:wingull} on []{location:unova-route-13}, along with []{item:gram-2} and []{item:gram-3}, to receive []{item:tm89}." +665,9,Part of a sidequest to obtain []{item:tm89}.,"Give to the []{pokemon:wingull} on []{location:unova-route-13}, along with []{item:gram-1} and []{item:gram-3}, to receive []{item:tm89}." +666,9,Part of a sidequest to obtain []{item:tm89}.,"Give to the []{pokemon:wingull} on []{location:unova-route-13}, along with []{item:gram-1} and []{item:gram-2}, to receive []{item:tm89}." +668,9,"Held: When the holder uses a damaging []{type:dragon}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:dragon}-type move, the move has 1.5× power and this item is consumed." +669,9,"Held: When the holder uses a damaging []{type:normal}-type move, the move has 1.5× power and this item is consumed.","Held +: When the holder uses a damaging []{type:normal}-type move, the move has 1.5× power and this item is consumed." +670,9,Holds medals recieved in the medal rally., +671,9,"Fuses Kyurem with Reshiram or Zekrom, or splits them apart again.", +673,9,Grants access to the Nature Preserve., +674,9,Doubles the chance of two Pokémon producing an egg at the daycare every 255 steps., +675,9,Raises the chance of finding a shiny Pokémon., +676,9,Required to progress in the Plasma Frigate., +677,9,Appears in the Café Warehouse on Sunday; return to the customer with a Patrat on Thursday., +678,9,Wakes up the Crustle blocking the way in Seaside Cave., +679,9,Returned to Curtis or Yancy as part of a sidequest., +681,9,"Switches Tornadus, Thundurus, and Landorus between Incarnate and Therian Forme.", diff --git a/data/v2/csv/items.csv b/data/v2/csv/items.csv new file mode 100644 index 00000000..da290ef6 --- /dev/null +++ b/data/v2/csv/items.csv @@ -0,0 +1,747 @@ +id,identifier,category_id,cost,fling_power,fling_effect_id +1,master-ball,34,0,, +2,ultra-ball,34,1200,, +3,great-ball,34,600,, +4,poke-ball,34,200,, +5,safari-ball,34,0,, +6,net-ball,33,1000,, +7,dive-ball,33,1000,, +8,nest-ball,33,1000,, +9,repeat-ball,33,1000,, +10,timer-ball,33,1000,, +11,luxury-ball,33,1000,, +12,premier-ball,33,200,, +13,dusk-ball,33,1000,, +14,heal-ball,33,300,, +15,quick-ball,33,1000,, +16,cherish-ball,33,200,, +17,potion,27,300,30, +18,antidote,30,100,30, +19,burn-heal,30,250,30, +20,ice-heal,30,250,30, +21,awakening,30,250,30, +22,paralyze-heal,30,200,30, +23,full-restore,27,3000,30, +24,max-potion,27,2500,30, +25,hyper-potion,27,1200,30, +26,super-potion,27,700,30, +27,full-heal,30,600,30, +28,revive,29,1500,30, +29,max-revive,29,4000,30, +30,fresh-water,27,200,30, +31,soda-pop,27,300,30, +32,lemonade,27,350,30, +33,moomoo-milk,27,500,30, +34,energy-powder,27,500,30, +35,energy-root,27,800,30, +36,heal-powder,30,450,30, +37,revival-herb,29,2800,30, +38,ether,28,1200,30, +39,max-ether,28,2000,30, +40,elixir,28,3000,30, +41,max-elixir,28,4500,30, +42,lava-cookie,30,200,30, +43,berry-juice,27,100,30, +44,sacred-ash,29,200,30, +45,hp-up,26,9800,30, +46,protein,26,9800,30, +47,iron,26,9800,30, +48,carbos,26,9800,30, +49,calcium,26,9800,30, +50,rare-candy,26,4800,30, +51,pp-up,26,9800,30, +52,zinc,26,9800,30, +53,pp-max,26,9800,30, +54,old-gateau,30,200,30, +55,guard-spec,1,700,30, +56,dire-hit,1,650,30, +57,x-attack,1,500,30, +58,x-defense,1,550,30, +59,x-speed,1,350,30, +60,x-accuracy,1,950,30, +61,x-sp-atk,1,350,30, +62,x-sp-def,1,350,30, +63,poke-doll,11,1000,30, +64,fluffy-tail,11,1000,30, +65,blue-flute,38,100,30, +66,yellow-flute,38,200,30, +67,red-flute,38,300,30, +68,black-flute,11,400,30, +69,white-flute,11,500,30, +70,shoal-salt,9,20,30, +71,shoal-shell,9,20,30, +72,red-shard,9,200,30, +73,blue-shard,9,200,30, +74,yellow-shard,9,200,30, +75,green-shard,9,200,30, +76,super-repel,11,500,30, +77,max-repel,11,700,30, +78,escape-rope,11,550,30, +79,repel,11,350,30, +80,sun-stone,10,2100,30, +81,moon-stone,10,2100,30, +82,fire-stone,10,2100,30, +83,thunder-stone,10,2100,30, +84,water-stone,10,2100,30, +85,leaf-stone,10,2100,30, +86,tiny-mushroom,24,500,30, +87,big-mushroom,24,5000,30, +88,pearl,24,1400,30, +89,big-pearl,24,7500,30, +90,stardust,24,2000,30, +91,star-piece,24,9800,30, +92,nugget,24,10000,30, +93,heart-scale,9,100,30, +94,honey,35,100,30, +95,growth-mulch,32,200,30, +96,damp-mulch,32,200,30, +97,stable-mulch,32,200,30, +98,gooey-mulch,32,200,30, +99,root-fossil,35,1000,100, +100,claw-fossil,35,1000,100, +101,helix-fossil,35,1000,100, +102,dome-fossil,35,1000,100, +103,old-amber,35,1000,100, +104,armor-fossil,35,1000,100, +105,skull-fossil,35,1000,100, +106,rare-bone,24,10000,100, +107,shiny-stone,10,2100,80, +108,dusk-stone,10,2100,80, +109,dawn-stone,10,2100,80, +110,oval-stone,10,2100,80, +111,odd-keystone,35,2100,80, +112,adamant-orb,18,10000,60, +113,lustrous-orb,18,10000,60, +114,grass-mail,25,50,, +115,flame-mail,25,50,, +116,bubble-mail,25,50,, +117,bloom-mail,25,50,, +118,tunnel-mail,25,50,, +119,steel-mail,25,50,, +120,heart-mail,25,50,, +121,snow-mail,25,50,, +122,space-mail,25,50,, +123,air-mail,25,50,, +124,mosaic-mail,25,50,, +125,brick-mail,25,50,, +126,cheri-berry,3,20,10,3 +127,chesto-berry,3,20,10,3 +128,pecha-berry,3,20,10,3 +129,rawst-berry,3,20,10,3 +130,aspear-berry,3,20,10,3 +131,leppa-berry,3,20,10,3 +132,oran-berry,3,20,10,3 +133,persim-berry,3,20,10,3 +134,lum-berry,3,20,10,3 +135,sitrus-berry,3,20,10,3 +136,figy-berry,6,20,10,3 +137,wiki-berry,6,20,10,3 +138,mago-berry,6,20,10,3 +139,aguav-berry,6,20,10,3 +140,iapapa-berry,6,20,10,3 +141,razz-berry,8,20,10, +142,bluk-berry,8,20,10, +143,nanab-berry,8,20,10, +144,wepear-berry,8,20,10, +145,pinap-berry,8,20,10, +146,pomeg-berry,2,20,10, +147,kelpsy-berry,2,20,10, +148,qualot-berry,2,20,10, +149,hondew-berry,2,20,10, +150,grepa-berry,2,20,10, +151,tamato-berry,2,20,10, +152,cornn-berry,8,20,10, +153,magost-berry,8,20,10, +154,rabuta-berry,8,20,10, +155,nomel-berry,8,20,10, +156,spelon-berry,8,20,10, +157,pamtre-berry,8,20,10, +158,watmel-berry,8,20,10, +159,durin-berry,8,20,10, +160,belue-berry,8,20,10, +161,occa-berry,7,20,10, +162,passho-berry,7,20,10, +163,wacan-berry,7,20,10, +164,rindo-berry,7,20,10, +165,yache-berry,7,20,10, +166,chople-berry,7,20,10, +167,kebia-berry,7,20,10, +168,shuca-berry,7,20,10, +169,coba-berry,7,20,10, +170,payapa-berry,7,20,10, +171,tanga-berry,7,20,10, +172,charti-berry,7,20,10, +173,kasib-berry,7,20,10, +174,haban-berry,7,20,10, +175,colbur-berry,7,20,10, +176,babiri-berry,7,20,10, +177,chilan-berry,7,20,10, +178,liechi-berry,5,20,10,3 +179,ganlon-berry,5,20,10,3 +180,salac-berry,5,20,10,3 +181,petaya-berry,5,20,10,3 +182,apicot-berry,5,20,10,3 +183,lansat-berry,5,20,10,3 +184,starf-berry,5,20,10,3 +185,enigma-berry,4,20,10, +186,micle-berry,5,20,10,3 +187,custap-berry,5,20,10, +188,jaboca-berry,4,20,10, +189,rowap-berry,4,20,10, +190,bright-powder,12,10,10, +191,white-herb,12,100,10,4 +192,macho-brace,14,3000,60, +193,exp-share,16,3000,30, +194,quick-claw,12,100,80, +195,soothe-bell,16,100,10, +196,mental-herb,12,100,10,4 +197,choice-band,13,100,10, +198,kings-rock,12,100,30,7 +199,silver-powder,19,100,10, +200,amulet-coin,16,100,30, +201,cleanse-tag,16,200,30, +202,soul-dew,18,200,30, +203,deep-sea-tooth,18,200,90, +204,deep-sea-scale,18,200,30, +205,smoke-ball,12,200,30, +206,everstone,16,200,30, +207,focus-band,12,200,10, +208,lucky-egg,16,200,30, +209,scope-lens,12,200,30, +210,metal-coat,19,100,30, +211,leftovers,12,200,10, +212,dragon-scale,10,2100,30, +213,light-ball,18,100,30,5 +214,soft-sand,19,100,10, +215,hard-stone,19,100,100, +216,miracle-seed,19,100,30, +217,black-glasses,19,100,30, +218,black-belt,19,100,30, +219,magnet,19,100,30, +220,mystic-water,19,100,30, +221,sharp-beak,19,100,50, +222,poison-barb,19,100,70,6 +223,never-melt-ice,19,100,30, +224,spell-tag,19,100,30, +225,twisted-spoon,19,100,30, +226,charcoal,19,9800,30, +227,dragon-fang,19,100,70, +228,silk-scarf,19,100,10, +229,up-grade,10,2100,30, +230,shell-bell,12,200,30, +231,sea-incense,19,9600,10, +232,lax-incense,12,9600,10, +233,lucky-punch,18,10,40, +234,metal-powder,18,10,10, +235,thick-club,18,500,90, +236,stick,18,200,60, +237,red-scarf,36,100,10, +238,blue-scarf,36,100,10, +239,pink-scarf,36,100,10, +240,green-scarf,36,100,10, +241,yellow-scarf,36,100,10, +242,wide-lens,12,200,10, +243,muscle-band,12,200,10, +244,wise-glasses,12,200,10, +245,expert-belt,12,200,10, +246,light-clay,12,200,30, +247,life-orb,12,200,30, +248,power-herb,12,100,10, +249,toxic-orb,15,100,30,1 +250,flame-orb,15,100,30,2 +251,quick-powder,18,10,10, +252,focus-sash,12,200,10, +253,zoom-lens,12,200,10, +254,metronome,12,200,30, +255,iron-ball,15,200,130, +256,lagging-tail,15,200,10, +257,destiny-knot,12,200,10, +258,black-sludge,12,200,30, +259,icy-rock,12,200,40, +260,smooth-rock,12,200,10, +261,heat-rock,12,200,60, +262,damp-rock,12,200,60, +263,grip-claw,12,200,90, +264,choice-scarf,13,200,10, +265,sticky-barb,15,200,80, +266,power-bracer,14,3000,70, +267,power-belt,14,3000,70, +268,power-lens,14,3000,70, +269,power-band,14,3000,70, +270,power-anklet,14,3000,70, +271,power-weight,14,3000,70, +272,shed-shell,12,100,10, +273,big-root,12,200,10, +274,choice-specs,13,200,10, +275,flame-plate,17,1000,90, +276,splash-plate,17,1000,90, +277,zap-plate,17,1000,90, +278,meadow-plate,17,1000,90, +279,icicle-plate,17,1000,90, +280,fist-plate,17,1000,90, +281,toxic-plate,17,1000,90, +282,earth-plate,17,1000,90, +283,sky-plate,17,1000,90, +284,mind-plate,17,1000,90, +285,insect-plate,17,1000,90, +286,stone-plate,17,1000,90, +287,spooky-plate,17,1000,90, +288,draco-plate,17,1000,90, +289,dread-plate,17,1000,90, +290,iron-plate,17,1000,90, +291,odd-incense,19,9600,10, +292,rock-incense,19,9600,10, +293,full-incense,15,9600,10, +294,wave-incense,19,9600,10, +295,rose-incense,19,9600,10, +296,luck-incense,16,9600,10, +297,pure-incense,16,9600,10, +298,protector,10,2100,80, +299,electirizer,10,2100,80, +300,magmarizer,10,2100,80, +301,dubious-disc,10,2100,50, +302,reaper-cloth,10,2100,10, +303,razor-claw,12,2100,80, +304,razor-fang,12,2100,30,7 +305,tm01,37,3000,, +306,tm02,37,3000,, +307,tm03,37,3000,, +308,tm04,37,1500,, +309,tm05,37,1000,, +310,tm06,37,3000,, +311,tm07,37,2000,, +312,tm08,37,1500,, +313,tm09,37,2000,, +314,tm10,37,2000,, +315,tm11,37,2000,, +316,tm12,37,1500,, +317,tm13,37,3000,, +318,tm14,37,5500,, +319,tm15,37,7500,, +320,tm16,37,2000,, +321,tm17,37,2000,, +322,tm18,37,2000,, +323,tm19,37,3000,, +324,tm20,37,2000,, +325,tm21,37,1000,, +326,tm22,37,3000,, +327,tm23,37,3000,, +328,tm24,37,3000,, +329,tm25,37,5500,, +330,tm26,37,3000,, +331,tm27,37,1000,, +332,tm28,37,2000,, +333,tm29,37,3000,, +334,tm30,37,3000,, +335,tm31,37,3000,, +336,tm32,37,1000,, +337,tm33,37,2000,, +338,tm34,37,3000,, +339,tm35,37,3000,, +340,tm36,37,3000,, +341,tm37,37,2000,, +342,tm38,37,5500,, +343,tm39,37,2000,, +344,tm40,37,3000,, +345,tm41,37,1500,, +346,tm42,37,3000,, +347,tm43,37,2000,, +348,tm44,37,3000,, +349,tm45,37,3000,, +350,tm46,37,2000,, +351,tm47,37,3000,, +352,tm48,37,3000,, +353,tm49,37,1500,, +354,tm50,37,5500,, +355,tm51,37,2000,, +356,tm52,37,5500,, +357,tm53,37,3000,, +358,tm54,37,2000,, +359,tm55,37,3000,, +360,tm56,37,2000,, +361,tm57,37,3000,, +362,tm58,37,2000,, +363,tm59,37,3000,, +364,tm60,37,3000,, +365,tm61,37,2000,, +366,tm62,37,3000,, +367,tm63,37,2000,, +368,tm64,37,7500,, +369,tm65,37,3000,, +370,tm66,37,3000,, +371,tm67,37,1000,, +372,tm68,37,7500,, +373,tm69,37,1500,, +374,tm70,37,1000,, +375,tm71,37,3000,, +376,tm72,37,3000,, +377,tm73,37,2000,, +378,tm74,37,3000,, +379,tm75,37,1500,, +380,tm76,37,2000,, +381,tm77,37,1500,, +382,tm78,37,1500,, +383,tm79,37,3000,, +384,tm80,37,3000,, +385,tm81,37,3000,, +386,tm82,37,1000,, +387,tm83,37,2000,, +388,tm84,37,3000,, +389,tm85,37,3000,, +390,tm86,37,3000,, +391,tm87,37,1500,, +392,tm88,37,3000,, +393,tm89,37,3000,, +394,tm90,37,2000,, +395,tm91,37,3000,, +396,tm92,37,5500,, +397,hm01,37,0,, +398,hm02,37,0,, +399,hm03,37,0,, +400,hm04,37,0,, +401,hm05,37,0,, +402,hm06,37,0,, +403,hm07,37,0,, +404,hm08,37,0,, +405,explorer-kit,21,0,, +406,loot-sack,23,0,, +407,rule-book,23,0,, +408,poke-radar,21,0,, +409,point-card,21,0,, +410,journal,21,0,, +411,seal-case,21,0,, +412,fashion-case,21,0,, +413,seal-bag,23,0,, +414,pal-pad,21,0,, +415,works-key,22,0,, +416,old-charm,22,0,, +417,galactic-key,22,0,, +418,red-chain,23,0,, +419,town-map,21,0,, +420,vs-seeker,21,0,, +421,coin-case,21,0,, +422,old-rod,21,0,, +423,good-rod,21,0,, +424,super-rod,21,0,, +425,sprayduck,21,0,, +426,poffin-case,21,0,, +427,bicycle,21,0,, +428,suite-key,20,0,, +429,oaks-letter,20,0,, +430,lunar-wing,20,0,, +431,member-card,20,0,, +432,azure-flute,20,0,, +433,ss-ticket,22,0,, +434,contest-pass,21,0,, +435,magma-stone,22,0,, +436,parcel,22,0,, +437,coupon-1,22,0,, +438,coupon-2,22,0,, +439,coupon-3,22,0,, +440,storage-key,22,0,, +441,secret-potion,22,0,, +442,griseous-orb,18,10000,, +443,vs-recorder,21,0,, +444,gracidea,20,0,, +445,secret-key,20,0,, +446,apricorn-box,21,0,, +447,berry-pots,21,0,, +448,squirt-bottle,22,0,, +449,lure-ball,39,300,, +450,level-ball,39,300,, +451,moon-ball,39,300,, +452,heavy-ball,39,300,, +453,fast-ball,39,300,, +454,friend-ball,39,300,, +455,love-ball,39,300,, +456,park-ball,34,0,, +457,sport-ball,34,0,, +458,red-apricorn,40,0,, +459,blue-apricorn,40,0,, +460,yellow-apricorn,40,0,, +461,green-apricorn,40,0,, +462,pink-apricorn,40,0,, +463,white-apricorn,40,0,, +464,black-apricorn,40,0,, +465,dowsing-machine,21,0,, +466,rage-candy-bar,21,0,, +467,red-orb,22,0,, +468,blue-orb,22,0,, +469,jade-orb,22,0,, +470,enigma-stone,20,0,, +471,unown-report,21,0,, +472,blue-card,21,0,, +473,slowpoke-tail,23,0,, +474,clear-bell,22,0,, +475,card-key,22,0,, +476,basement-key,22,0,, +477,red-scale,22,0,, +478,lost-item,22,0,, +479,pass,22,0,, +480,machine-part,22,0,, +481,silver-wing,22,0,, +482,rainbow-wing,22,0,, +483,mystery-egg,22,0,, +484,gb-sounds,21,0,, +485,tidal-bell,22,0,, +486,data-card-01,41,0,, +487,data-card-02,41,0,, +488,data-card-03,41,0,, +489,data-card-04,41,0,, +490,data-card-05,41,0,, +491,data-card-06,41,0,, +492,data-card-07,41,0,, +493,data-card-08,41,0,, +494,data-card-09,41,0,, +495,data-card-10,41,0,, +496,data-card-11,41,0,, +497,data-card-12,41,0,, +498,data-card-13,41,0,, +499,data-card-14,41,0,, +500,data-card-15,41,0,, +501,data-card-16,41,0,, +502,data-card-17,41,0,, +503,data-card-18,41,0,, +504,data-card-19,41,0,, +505,data-card-20,41,0,, +506,data-card-21,41,0,, +507,data-card-22,41,0,, +508,data-card-23,41,0,, +509,data-card-24,41,0,, +510,data-card-25,41,0,, +511,data-card-26,41,0,, +512,data-card-27,41,0,, +513,lock-capsule,23,0,, +514,photo-album,23,0,, +515,orange-mail,25,50,, +516,harbor-mail,25,50,, +517,glitter-mail,25,50,, +518,mech-mail,25,50,, +519,wood-mail,25,50,, +520,wave-mail,25,50,, +521,bead-mail,25,50,, +522,shadow-mail,25,50,, +523,tropic-mail,25,50,, +524,dream-mail,25,50,, +525,fab-mail,25,50,, +526,retro-mail,25,0,, +527,mach-bike,21,0,, +528,acro-bike,21,0,, +529,wailmer-pail,21,0,, +530,devon-goods,22,0,, +531,soot-sack,21,0,, +532,pokeblock-case,21,0,, +533,letter,22,0,, +534,eon-ticket,20,0,, +535,scanner,22,0,, +536,go-goggles,21,0,, +537,meteorite,22,0,, +538,rm-1-key,22,0,, +539,rm-2-key,22,0,, +540,rm-4-key,22,0,, +541,rm-6-key,22,0,, +542,devon-scope,21,0,, +543,oaks-parcel,22,0,, +544,poke-flute,22,0,, +545,bike-voucher,22,0,, +546,gold-teeth,22,0,, +547,lift-key,22,0,, +548,silph-scope,22,0,, +549,fame-checker,21,0,, +550,tm-case,21,0,, +551,berry-pouch,21,0,, +552,teachy-tv,21,0,, +553,tri-pass,22,0,, +554,rainbow-pass,22,0,, +555,tea,22,0,, +556,mysticticket,20,0,, +557,auroraticket,20,0,, +558,powder-jar,21,0,, +559,ruby,22,0,, +560,sapphire,22,0,, +561,magma-emblem,22,0,, +562,old-sea-map,20,0,, +563,douse-drive,18,1000,70, +564,shock-drive,18,1000,70, +565,burn-drive,18,1000,70, +566,chill-drive,18,1000,70, +567,sweet-heart,27,100,30, +568,greet-mail,25,50,, +569,favored-mail,25,50,, +570,rsvp-mail,25,50,, +571,thanks-mail,25,50,, +572,inquiry-mail,25,50,, +573,like-mail,25,50,, +574,reply-mail,25,50,, +575,bridge-mail-s,25,50,, +576,bridge-mail-d,25,50,, +577,bridge-mail-t,25,50,, +578,bridge-mail-v,25,50,, +579,bridge-mail-m,25,50,, +580,prism-scale,10,500,30, +581,eviolite,12,200,40, +582,float-stone,12,200,30, +583,rocky-helmet,12,200,60, +584,air-balloon,12,200,10, +585,red-card,12,200,10, +586,ring-target,12,200,10, +587,binding-band,12,200,30, +588,absorb-bulb,12,200,30, +589,cell-battery,12,200,30, +590,eject-button,12,200,30, +591,fire-gem,42,200,, +592,water-gem,42,200,, +593,electric-gem,42,200,, +594,grass-gem,42,200,, +595,ice-gem,42,200,, +596,fighting-gem,42,200,, +597,poison-gem,42,200,, +598,ground-gem,42,200,, +599,flying-gem,42,200,, +600,psychic-gem,42,200,, +601,bug-gem,42,200,, +602,rock-gem,42,200,, +603,ghost-gem,42,200,, +604,dark-gem,42,200,, +605,steel-gem,42,200,, +606,health-wing,26,3000,20, +607,muscle-wing,26,3000,20, +608,resist-wing,26,3000,20, +609,genius-wing,26,3000,20, +610,clever-wing,26,3000,20, +611,swift-wing,26,3000,20, +612,pretty-wing,24,200,20, +613,cover-fossil,35,1000,100, +614,plume-fossil,35,1000,100, +615,liberty-pass,20,0,, +616,pass-orb,12,200,30, +617,dream-ball,33,0,, +618,poke-toy,11,1000,30, +619,prop-case,21,0,, +620,dragon-skull,22,0,, +621,balm-mushroom,24,0,30, +622,big-nugget,24,0,30, +623,pearl-string,24,0,30, +624,comet-shard,24,0,30, +625,relic-copper,24,0,30, +626,relic-silver,24,0,30, +627,relic-gold,24,0,30, +628,relic-vase,24,0,30, +629,relic-band,24,0,30, +630,relic-statue,24,0,30, +631,relic-crown,24,0,30, +632,casteliacone,30,100,30, +633,dire-hit-2,43,0,, +634,x-speed-2,43,0,, +635,x-sp-atk-2,43,0,, +636,x-sp-def-2,43,0,, +637,x-defense-2,43,0,, +638,x-attack-2,43,0,, +639,x-accuracy-2,43,0,, +640,x-speed-3,43,0,, +641,x-sp-atk-3,43,0,, +642,x-sp-def-3,43,0,, +643,x-defense-3,43,0,, +644,x-attack-3,43,0,, +645,x-accuracy-3,43,0,, +646,x-speed-6,43,0,, +647,x-sp-atk-6,43,0,, +648,x-sp-def-6,43,0,, +649,x-defense-6,43,0,, +650,x-attack-6,43,0,, +651,x-accuracy-6,43,0,, +652,ability-urge,43,0,, +653,item-drop,43,0,, +654,item-urge,43,0,, +655,reset-urge,43,0,, +656,dire-hit-3,43,0,, +657,light-stone,22,0,, +658,dark-stone,22,0,, +659,tm93,37,10000,, +660,tm94,37,10000,, +661,tm95,37,10000,, +662,xtransceiver,21,0,, +663,god-stone,23,0,, +664,gram-1,22,0,, +665,gram-2,22,0,, +666,gram-3,22,0,, +668,dragon-gem,42,200,, +669,normal-gem,42,200,, +670,medal-box,21,0,, +671,dna-splicers,21,0,, +673,permit,21,0,, +674,oval-charm,21,0,, +675,shiny-charm,21,0,, +676,plasma-card,22,0,, +677,grubby-hanky,22,0,, +678,colress-machine,22,0,, +679,dropped-item,22,0,, +681,reveal-glass,21,0,, +682,weakness-policy,12,0,, +683,assault-vest,12,0,, +684,pixie-plate,17,0,, +685,ability-capsule,26,0,, +686,whipped-dream,10,0,, +687,sachet,10,0,, +688,luminous-moss,12,0,, +689,snowball,12,0,, +690,safety-goggles,12,0,, +691,rich-mulch,32,0,, +692,surprise-mulch,32,0,, +693,boost-mulch,32,0,, +694,amaze-mulch,32,0,, +695,gengarite,44,0,, +696,gardevoirite,44,0,, +697,ampharosite,44,0,, +698,venusaurite,44,0,, +699,charizardite-x,44,0,, +700,blastoisinite,44,0,, +701,mewtwonite-x,44,0,, +702,mewtwonite-y,44,0,, +703,blazikenite,44,0,, +704,medichamite,44,0,, +705,houndoominite,44,0,, +706,aggronite,44,0,, +707,banettite,44,0,, +708,tyranitarite,44,0,, +709,scizorite,44,0,, +710,pinsirite,44,0,, +711,aerodactylite,44,0,, +712,lucarionite,44,0,, +713,abomasite,44,0,, +714,kangaskhanite,44,0,, +715,gyaradosite,44,0,, +716,absolite,44,0,, +717,charizardite-y,44,0,, +718,alakazite,44,0,, +719,heracronite,44,0,, +720,mawilite,44,0,, +721,manectite,44,0,, +722,garchompite,44,0,, +723,roseli-berry,7,0,, +724,kee-berry,4,0,, +725,maranga-berry,4,0,, +726,discount-coupon,10001,0,, +727,strange-souvenir,10001,0,, +728,lumiose-galette,30,0,, +729,jaw-fossil,35,0,, +730,sail-fossil,35,0,, +731,fairy-gem,42,0,, +732,adventure-rules,21,0,, +733,elevator-key,22,0,, +734,holo-caster,21,0,, +735,honor-of-kalos,22,0,, +736,intriguing-stone,22,0,, +737,lens-case,21,0,, +738,looker-ticket,22,0,, +739,mega-ring,21,0,, +740,power-plant-pass,22,0,, +741,profs-letter,22,0,, +742,roller-skates,21,0,, +743,sprinklotad,21,0,, +744,tmv-pass,21,0,, +745,tm96,37,0,, +746,tm97,37,0,, +747,tm98,37,0,, +748,tm99,37,0,, +749,tm100,37,0,, diff --git a/data/v2/csv/location_area_encounter_rates.csv b/data/v2/csv/location_area_encounter_rates.csv new file mode 100644 index 00000000..39acf863 --- /dev/null +++ b/data/v2/csv/location_area_encounter_rates.csv @@ -0,0 +1,3866 @@ +location_area_id,encounter_method_id,version_id,rate +1,2,12,25 +1,2,13,25 +1,2,14,25 +1,3,12,50 +1,3,13,50 +1,3,14,50 +1,4,12,75 +1,4,13,75 +1,4,14,75 +1,5,12,10 +1,5,13,10 +1,5,14,10 +2,2,12,25 +2,2,13,25 +2,2,14,25 +2,3,12,50 +2,3,13,50 +2,3,14,50 +2,4,12,75 +2,4,13,75 +2,4,14,75 +2,5,12,10 +2,5,13,10 +2,5,14,10 +3,2,12,25 +3,2,13,25 +3,2,14,25 +3,3,12,50 +3,3,13,50 +3,3,14,50 +3,4,12,75 +3,4,13,75 +3,4,14,75 +3,5,12,10 +3,5,13,10 +3,5,14,10 +4,2,12,25 +4,2,13,25 +4,2,14,25 +4,3,12,50 +4,3,13,50 +4,3,14,50 +4,4,12,75 +4,4,13,75 +4,4,14,75 +4,5,12,10 +4,5,13,10 +4,5,14,10 +5,2,12,25 +5,2,13,25 +5,2,14,25 +5,3,12,50 +5,3,13,50 +5,3,14,50 +5,4,12,75 +5,4,13,75 +5,4,14,75 +5,5,12,10 +5,5,13,10 +5,5,14,10 +6,1,12,10 +6,1,13,10 +6,1,14,10 +7,1,12,10 +7,1,13,10 +7,1,14,10 +8,1,12,30 +8,1,13,30 +8,1,14,30 +8,2,12,25 +8,2,13,25 +8,2,14,25 +8,3,12,50 +8,3,13,50 +8,3,14,50 +8,4,12,75 +8,4,13,75 +8,4,14,75 +8,5,12,10 +8,5,13,10 +8,5,14,10 +9,1,12,30 +9,1,13,30 +9,1,14,30 +10,1,12,30 +10,1,13,30 +10,1,14,30 +10,2,12,25 +10,2,13,25 +10,2,14,25 +10,3,12,50 +10,3,13,50 +10,3,14,50 +10,4,12,75 +10,4,13,75 +10,4,14,75 +10,5,12,10 +10,5,13,10 +10,5,14,10 +11,1,12,10 +11,1,13,10 +11,1,14,10 +11,2,12,25 +11,2,13,25 +11,2,14,25 +11,3,12,50 +11,3,13,50 +11,3,14,50 +11,4,12,75 +11,4,13,75 +11,4,14,75 +11,5,12,10 +11,5,13,10 +11,5,14,10 +12,1,12,10 +12,1,13,10 +12,1,14,10 +13,1,12,10 +13,1,13,10 +13,1,14,10 +14,1,12,30 +14,1,13,30 +14,1,14,30 +15,1,12,30 +15,1,13,30 +15,1,14,30 +16,1,12,10 +16,1,13,10 +16,1,14,10 +16,2,12,25 +16,2,13,25 +16,2,14,25 +16,3,12,50 +16,3,13,50 +16,3,14,50 +16,4,12,75 +16,4,13,75 +16,4,14,75 +16,5,12,10 +16,5,13,10 +16,5,14,10 +17,1,12,15 +17,1,13,15 +17,1,14,15 +18,1,12,15 +18,1,13,15 +18,1,14,15 +19,1,12,15 +19,1,13,15 +19,1,14,15 +20,1,12,10 +20,1,13,10 +20,1,14,10 +21,1,12,10 +21,1,13,10 +21,1,14,10 +22,1,12,10 +22,1,13,10 +22,1,14,10 +23,1,12,10 +23,1,13,10 +23,1,14,10 +23,2,12,25 +23,2,13,25 +23,2,14,25 +23,3,12,50 +23,3,13,50 +23,3,14,50 +23,4,12,75 +23,4,13,75 +23,4,14,75 +23,5,12,10 +23,5,13,10 +23,5,14,10 +24,1,12,35 +24,1,13,35 +24,1,14,35 +24,2,12,25 +24,2,13,25 +24,2,14,25 +24,3,12,50 +24,3,13,50 +24,3,14,50 +24,4,12,75 +24,4,13,75 +24,4,14,75 +24,5,12,15 +24,5,13,15 +24,5,14,15 +25,1,12,35 +25,1,13,35 +25,1,14,35 +25,2,12,25 +25,2,13,25 +25,2,14,25 +25,3,12,50 +25,3,13,50 +25,3,14,50 +25,4,12,75 +25,4,13,75 +25,4,14,75 +25,5,12,15 +25,5,13,15 +25,5,14,15 +26,1,12,35 +26,1,13,35 +26,1,14,35 +26,2,12,25 +26,2,13,25 +26,2,14,25 +26,3,12,50 +26,3,13,50 +26,3,14,50 +26,4,12,75 +26,4,13,75 +26,4,14,75 +26,5,12,15 +26,5,13,15 +26,5,14,15 +27,1,12,35 +27,1,13,35 +27,1,14,35 +27,2,12,25 +27,2,13,25 +27,2,14,25 +27,3,12,50 +27,3,13,50 +27,3,14,50 +27,4,12,75 +27,4,13,75 +27,4,14,75 +27,5,12,15 +27,5,13,15 +27,5,14,15 +28,1,12,35 +28,1,13,35 +28,1,14,35 +29,1,12,35 +29,1,13,35 +29,1,14,35 +29,2,12,25 +29,2,13,25 +29,2,14,25 +29,3,12,50 +29,3,13,50 +29,3,14,50 +29,4,12,75 +29,4,13,75 +29,4,14,75 +29,5,12,15 +29,5,13,15 +29,5,14,15 +30,1,12,10 +30,1,13,10 +30,1,14,10 +31,1,12,10 +31,1,13,10 +31,1,14,10 +32,1,12,10 +32,1,13,10 +32,1,14,10 +33,1,12,10 +33,1,13,10 +33,1,14,10 +34,1,12,10 +34,1,13,10 +34,1,14,10 +35,1,12,10 +35,1,13,10 +35,1,14,10 +36,1,12,15 +36,1,13,15 +36,1,14,15 +37,1,12,15 +37,1,13,15 +37,1,14,15 +38,1,12,20 +38,1,13,20 +38,1,14,20 +39,1,12,20 +39,1,13,20 +39,1,14,20 +40,1,12,20 +40,1,13,20 +40,1,14,20 +41,1,12,10 +41,1,13,10 +41,1,14,10 +42,1,12,10 +42,1,13,10 +42,1,14,10 +43,1,12,10 +43,1,13,10 +43,1,14,10 +44,1,12,10 +44,1,13,10 +44,1,14,10 +45,1,12,25 +45,1,13,25 +45,1,14,25 +46,1,12,25 +46,1,13,25 +46,1,14,25 +47,1,12,30 +47,1,13,30 +47,1,14,30 +48,1,12,15 +48,1,13,15 +48,1,14,15 +49,1,12,15 +49,1,13,15 +49,1,14,15 +50,1,12,15 +50,1,13,15 +50,1,14,15 +50,2,12,25 +50,2,13,25 +50,2,14,25 +50,3,12,50 +50,3,13,50 +50,3,14,50 +50,4,12,75 +50,4,13,75 +50,4,14,75 +50,5,12,15 +50,5,13,15 +50,5,14,15 +51,1,12,15 +51,1,13,15 +51,1,14,15 +51,2,12,25 +51,2,13,25 +51,2,14,25 +51,3,12,50 +51,3,13,50 +51,3,14,50 +51,4,12,75 +51,4,13,75 +51,4,14,75 +51,5,12,15 +51,5,13,15 +51,5,14,15 +52,1,12,15 +52,1,13,15 +52,1,14,15 +53,1,12,15 +53,1,13,15 +53,1,14,15 +54,1,12,10 +54,1,13,10 +54,1,14,10 +54,2,12,25 +54,2,13,25 +54,2,14,25 +54,3,12,50 +54,3,13,50 +54,3,14,50 +54,4,12,75 +54,4,13,75 +54,4,14,75 +54,5,12,10 +54,5,13,10 +54,5,14,10 +55,1,12,10 +55,1,13,10 +55,1,14,10 +56,1,12,10 +56,1,13,10 +56,1,14,10 +56,2,12,25 +56,2,13,25 +56,2,14,25 +56,3,12,50 +56,3,13,50 +56,3,14,50 +56,4,12,75 +56,4,13,75 +56,4,14,75 +56,5,12,10 +56,5,13,10 +56,5,14,10 +57,1,12,30 +57,1,13,30 +57,1,14,30 +58,1,12,10 +58,1,13,10 +58,1,14,10 +59,1,12,10 +59,1,13,10 +59,1,14,10 +60,1,12,30 +60,1,13,30 +60,1,14,30 +60,2,12,25 +60,2,13,25 +60,2,14,25 +60,3,12,50 +60,3,13,50 +60,3,14,50 +60,4,12,75 +60,4,13,75 +60,4,14,75 +60,5,12,10 +60,5,13,10 +60,5,14,10 +61,1,12,10 +61,1,13,10 +61,1,14,10 +62,1,12,10 +62,1,13,10 +62,1,14,10 +63,1,12,10 +63,1,13,10 +63,1,14,10 +64,1,12,15 +64,1,13,15 +64,1,14,15 +70,1,12,15 +70,1,13,15 +70,1,14,15 +76,1,12,15 +76,1,13,15 +76,1,14,15 +82,1,12,15 +82,1,13,15 +82,1,14,15 +107,1,12,15 +107,1,13,15 +107,1,14,15 +108,1,12,10 +108,1,13,10 +108,1,14,10 +109,1,12,10 +109,1,13,10 +109,1,14,10 +110,1,12,10 +110,1,13,10 +110,1,14,10 +111,1,12,10 +111,1,13,10 +111,1,14,10 +112,1,12,10 +112,1,13,10 +112,1,14,10 +113,1,12,10 +113,1,13,10 +113,1,14,10 +114,1,12,10 +114,1,13,10 +114,1,14,10 +115,1,12,10 +115,1,13,10 +115,1,14,10 +116,1,12,10 +116,1,13,10 +116,1,14,10 +117,1,12,10 +117,1,13,10 +117,1,14,10 +118,1,12,30 +118,1,13,30 +118,1,14,30 +119,2,12,25 +119,2,13,25 +119,2,14,25 +119,3,12,50 +119,3,13,50 +119,3,14,50 +119,4,12,75 +119,4,13,75 +119,4,14,75 +119,5,12,10 +119,5,13,10 +119,5,14,10 +120,1,12,10 +120,1,13,10 +120,1,14,10 +121,1,12,10 +121,1,13,10 +121,1,14,10 +122,1,12,10 +122,1,13,10 +122,1,14,10 +123,1,12,10 +123,1,13,10 +123,1,14,10 +124,1,12,10 +124,1,13,10 +124,1,14,10 +125,1,12,10 +125,1,13,10 +125,1,14,10 +126,1,12,10 +126,1,13,10 +126,1,14,10 +127,1,12,10 +127,1,13,10 +127,1,14,10 +128,1,12,10 +128,1,13,10 +128,1,14,10 +129,1,12,10 +129,1,13,10 +129,1,14,10 +130,1,12,10 +130,1,13,10 +130,1,14,10 +131,1,12,10 +131,1,13,10 +131,1,14,10 +132,1,12,10 +132,1,13,10 +132,1,14,10 +133,1,12,15 +133,1,13,15 +133,1,14,15 +134,1,12,10 +134,1,13,10 +134,1,14,10 +135,1,12,30 +135,1,13,30 +135,1,14,30 +135,2,12,25 +135,2,13,25 +135,2,14,25 +135,3,12,50 +135,3,13,50 +135,3,14,50 +135,4,12,75 +135,4,13,75 +135,4,14,75 +135,5,12,10 +135,5,13,10 +135,5,14,10 +136,1,12,30 +136,1,13,30 +136,1,14,30 +136,2,12,25 +136,2,13,25 +136,2,14,25 +136,3,12,50 +136,3,13,50 +136,3,14,50 +136,4,12,75 +136,4,13,75 +136,4,14,75 +136,5,12,10 +136,5,13,10 +136,5,14,10 +137,1,12,30 +137,1,13,30 +137,1,14,30 +137,2,12,25 +137,2,13,25 +137,2,14,25 +137,3,12,50 +137,3,13,50 +137,3,14,50 +137,4,12,75 +137,4,13,75 +137,4,14,75 +137,5,12,10 +137,5,13,10 +137,5,14,10 +138,1,12,30 +138,1,13,30 +138,1,14,30 +138,2,12,25 +138,2,13,25 +138,2,14,25 +138,3,12,50 +138,3,13,50 +138,3,14,50 +138,4,12,75 +138,4,13,75 +138,4,14,75 +138,5,12,10 +138,5,13,10 +138,5,14,10 +139,1,12,30 +139,1,13,30 +139,1,14,30 +140,1,12,30 +140,1,13,30 +140,1,14,30 +141,1,12,30 +141,1,13,30 +141,1,14,30 +142,1,12,30 +142,1,13,30 +142,1,14,30 +143,1,12,30 +143,1,13,30 +143,1,14,30 +143,2,12,25 +143,2,13,25 +143,2,14,25 +143,3,12,50 +143,3,13,50 +143,3,14,50 +143,4,12,75 +143,4,13,75 +143,4,14,75 +143,5,12,10 +143,5,13,10 +143,5,14,10 +144,1,12,30 +144,1,13,30 +144,1,14,30 +144,2,12,25 +144,2,13,25 +144,2,14,25 +144,3,12,50 +144,3,13,50 +144,3,14,50 +144,4,12,75 +144,4,13,75 +144,4,14,75 +144,5,12,10 +144,5,13,10 +144,5,14,10 +145,1,12,30 +145,1,13,30 +145,1,14,30 +145,2,12,25 +145,2,13,25 +145,2,14,25 +145,3,12,50 +145,3,13,50 +145,3,14,50 +145,4,12,75 +145,4,13,75 +145,4,14,75 +145,5,12,10 +145,5,13,10 +145,5,14,10 +146,1,12,30 +146,1,13,30 +146,1,14,30 +146,2,12,25 +146,2,13,25 +146,2,14,25 +146,3,12,50 +146,3,13,50 +146,3,14,50 +146,4,12,75 +146,4,13,75 +146,4,14,75 +146,5,12,10 +146,5,13,10 +146,5,14,10 +147,1,12,30 +147,1,13,30 +147,1,14,30 +147,2,12,25 +147,2,13,25 +147,2,14,25 +147,3,12,50 +147,3,13,50 +147,3,14,50 +147,4,12,75 +147,4,13,75 +147,4,14,75 +147,5,12,10 +147,5,13,10 +147,5,14,10 +148,1,12,30 +148,1,13,30 +148,1,14,30 +149,1,12,30 +149,1,13,30 +149,1,14,30 +150,1,12,30 +150,1,13,30 +150,1,14,30 +150,2,12,25 +150,2,13,25 +150,2,14,25 +150,3,12,50 +150,3,13,50 +150,3,14,50 +150,4,12,75 +150,4,13,75 +150,4,14,75 +150,5,12,10 +150,5,13,10 +150,5,14,10 +151,1,12,30 +151,1,13,30 +151,1,14,30 +151,2,12,25 +151,2,13,25 +151,2,14,25 +151,3,12,50 +151,3,13,50 +151,3,14,50 +151,4,12,75 +151,4,13,75 +151,4,14,75 +151,5,12,10 +151,5,13,10 +151,5,14,10 +152,1,12,10 +152,1,13,10 +152,1,14,10 +153,1,12,10 +153,1,13,10 +153,1,14,10 +154,1,12,10 +154,1,13,10 +154,1,14,10 +155,1,12,10 +155,1,13,10 +155,1,14,10 +156,1,12,10 +156,1,13,10 +156,1,14,10 +157,1,12,30 +157,1,13,30 +157,1,14,30 +158,1,12,30 +158,1,13,30 +158,1,14,30 +158,2,12,25 +158,2,13,25 +158,2,14,25 +158,3,12,50 +158,3,13,50 +158,3,14,50 +158,4,12,75 +158,4,13,75 +158,4,14,75 +158,5,12,10 +158,5,13,10 +158,5,14,10 +159,1,12,30 +159,1,13,30 +159,1,14,30 +160,1,12,30 +160,1,13,30 +160,1,14,30 +161,1,12,30 +161,1,13,30 +161,1,14,30 +161,2,12,25 +161,2,13,25 +161,2,14,25 +161,3,12,50 +161,3,13,50 +161,3,14,50 +161,4,12,75 +161,4,13,75 +161,4,14,75 +161,5,12,10 +161,5,13,10 +161,5,14,10 +162,1,12,30 +162,1,13,30 +162,1,14,30 +162,2,12,25 +162,2,13,25 +162,2,14,25 +162,3,12,50 +162,3,13,50 +162,3,14,50 +162,4,12,75 +162,4,13,75 +162,4,14,75 +162,5,12,10 +162,5,13,10 +162,5,14,10 +163,1,12,30 +163,1,13,30 +163,1,14,30 +163,2,12,25 +163,2,13,25 +163,2,14,25 +163,3,12,50 +163,3,13,50 +163,3,14,50 +163,4,12,75 +163,4,13,75 +163,4,14,75 +163,5,12,10 +163,5,13,10 +163,5,14,10 +164,1,12,30 +164,1,13,30 +164,1,14,30 +164,2,12,25 +164,2,13,25 +164,2,14,25 +164,3,12,50 +164,3,13,50 +164,3,14,50 +164,4,12,75 +164,4,13,75 +164,4,14,75 +164,5,12,10 +164,5,13,10 +164,5,14,10 +165,1,12,30 +165,1,13,30 +165,1,14,30 +166,1,12,30 +166,1,13,30 +166,1,14,30 +167,1,12,30 +167,1,13,30 +167,1,14,30 +168,1,12,30 +168,1,13,30 +168,1,14,30 +168,2,12,25 +168,2,13,25 +168,2,14,25 +168,3,12,50 +168,3,13,50 +168,3,14,50 +168,4,12,75 +168,4,13,75 +168,4,14,75 +168,5,12,10 +168,5,13,10 +168,5,14,10 +169,2,12,25 +169,2,13,25 +169,2,14,25 +169,3,12,50 +169,3,13,50 +169,3,14,50 +169,4,12,75 +169,4,13,75 +169,4,14,75 +169,5,12,20 +169,5,13,20 +169,5,14,20 +170,1,12,30 +170,1,13,30 +170,1,14,30 +170,2,12,25 +170,2,13,25 +170,2,14,25 +170,3,12,50 +170,3,13,50 +170,3,14,50 +170,4,12,75 +170,4,13,75 +170,4,14,75 +170,5,12,10 +170,5,13,10 +170,5,14,10 +171,1,12,30 +171,1,13,30 +171,1,14,30 +171,2,12,45 +171,2,13,45 +171,2,14,45 +171,3,12,70 +171,3,13,70 +171,3,14,70 +171,4,12,95 +171,4,13,95 +171,4,14,95 +171,5,12,10 +171,5,13,10 +171,5,14,10 +172,1,12,30 +172,1,13,30 +172,1,14,30 +172,2,12,25 +172,2,13,25 +172,2,14,25 +172,3,12,50 +172,3,13,50 +172,3,14,50 +172,4,12,75 +172,4,13,75 +172,4,14,75 +172,5,12,10 +172,5,13,10 +172,5,14,10 +173,1,12,30 +173,1,13,30 +173,1,14,30 +173,2,12,25 +173,2,13,25 +173,2,14,25 +173,3,12,50 +173,3,13,50 +173,3,14,50 +173,4,12,75 +173,4,13,75 +173,4,14,75 +173,5,12,10 +173,5,13,10 +173,5,14,10 +174,1,12,30 +174,1,13,30 +174,1,14,30 +174,2,12,25 +174,2,13,25 +174,2,14,25 +174,3,12,50 +174,3,13,50 +174,3,14,50 +174,4,12,75 +174,4,13,75 +174,4,14,75 +174,5,12,10 +174,5,13,10 +174,5,14,10 +175,1,12,30 +175,1,13,30 +175,1,14,30 +175,2,12,25 +175,2,13,25 +175,2,14,25 +175,3,12,50 +175,3,13,50 +175,3,14,50 +175,4,12,75 +175,4,13,75 +175,4,14,75 +175,5,12,10 +175,5,13,10 +175,5,14,10 +176,1,12,30 +176,1,13,30 +176,1,14,30 +176,2,12,25 +176,2,13,25 +176,2,14,25 +176,3,12,50 +176,3,13,50 +176,3,14,50 +176,4,12,75 +176,4,13,75 +176,4,14,75 +176,5,12,10 +176,5,13,10 +176,5,14,10 +177,2,12,25 +177,2,13,25 +177,2,14,25 +177,3,12,50 +177,3,13,50 +177,3,14,50 +177,4,12,75 +177,4,13,75 +177,4,14,75 +177,5,12,10 +177,5,13,10 +177,5,14,10 +178,2,12,25 +178,2,13,25 +178,2,14,25 +178,3,12,50 +178,3,13,50 +178,3,14,50 +178,4,12,75 +178,4,13,75 +178,4,14,75 +178,5,12,10 +178,5,13,10 +178,5,14,10 +179,2,12,25 +179,2,13,25 +179,2,14,25 +179,3,12,50 +179,3,13,50 +179,3,14,50 +179,4,12,75 +179,4,13,75 +179,4,14,75 +179,5,12,10 +179,5,13,10 +179,5,14,10 +180,2,12,25 +180,2,13,25 +180,2,14,25 +180,3,12,50 +180,3,13,50 +180,3,14,50 +180,4,12,75 +180,4,13,75 +180,4,14,75 +180,5,12,20 +180,5,13,20 +180,5,14,20 +181,2,12,25 +181,2,13,25 +181,2,14,25 +181,3,12,50 +181,3,13,50 +181,3,14,50 +181,4,12,75 +181,4,13,75 +181,4,14,75 +181,5,12,20 +181,5,13,20 +181,5,14,20 +182,1,12,30 +182,1,13,30 +182,1,14,30 +182,2,12,25 +182,2,13,25 +182,2,14,25 +182,3,12,50 +182,3,13,50 +182,3,14,50 +182,4,12,75 +182,4,13,75 +182,4,14,75 +182,5,12,20 +182,5,13,20 +182,5,14,20 +183,1,12,30 +183,1,13,30 +183,1,14,30 +183,2,12,25 +183,2,13,25 +183,2,14,25 +183,3,12,50 +183,3,13,50 +183,3,14,50 +183,4,12,75 +183,4,13,75 +183,4,14,75 +183,5,12,20 +183,5,13,20 +183,5,14,20 +184,2,15,25 +184,2,16,25 +184,3,15,50 +184,3,16,50 +184,4,15,75 +184,4,16,75 +184,5,15,15 +184,5,16,15 +185,1,15,25 +185,1,16,25 +186,2,15,25 +186,2,16,25 +186,3,15,50 +186,3,16,50 +186,4,15,75 +186,4,16,75 +186,5,15,15 +186,5,16,15 +187,1,15,25 +187,1,16,25 +187,2,15,25 +187,2,16,25 +187,3,15,50 +187,3,16,50 +187,4,15,75 +187,4,16,75 +187,5,15,15 +187,5,16,15 +188,1,15,25 +188,1,16,25 +188,2,15,25 +188,2,16,25 +188,3,15,50 +188,3,16,50 +188,4,15,75 +188,4,16,75 +188,5,15,15 +188,5,16,15 +189,2,15,25 +189,2,16,25 +189,3,15,50 +189,3,16,50 +189,4,15,75 +189,4,16,75 +189,5,15,15 +189,5,16,15 +190,1,15,5 +190,1,16,5 +191,1,15,5 +191,1,16,5 +192,1,15,25 +192,1,16,25 +192,2,15,25 +192,2,16,25 +192,3,15,50 +192,3,16,50 +192,4,15,75 +192,4,16,75 +192,5,15,15 +192,5,16,15 +193,1,15,10 +193,1,16,10 +193,2,15,25 +193,2,16,25 +193,3,15,50 +193,3,16,50 +193,4,15,75 +193,4,16,75 +193,5,15,10 +193,5,16,10 +193,6,15,20 +193,6,16,20 +194,1,15,15 +194,1,16,15 +195,1,15,15 +195,1,16,15 +196,1,15,15 +196,1,16,15 +197,1,15,15 +197,1,16,15 +198,1,15,10 +198,1,16,10 +198,2,15,25 +198,2,16,25 +198,3,15,50 +198,3,16,50 +198,4,15,75 +198,4,16,75 +198,5,15,15 +198,5,16,15 +199,1,15,15 +199,1,16,15 +199,2,15,25 +199,2,16,25 +199,3,15,50 +199,3,16,50 +199,4,15,75 +199,4,16,75 +199,5,15,15 +199,5,16,15 +200,1,15,15 +200,1,16,15 +200,2,15,25 +200,2,16,25 +200,3,15,50 +200,3,16,50 +200,4,15,75 +200,4,16,75 +200,5,15,15 +200,5,16,15 +201,1,15,25 +201,1,16,25 +202,1,15,5 +202,1,16,5 +202,2,15,25 +202,2,16,25 +202,3,15,50 +202,3,16,50 +202,4,15,75 +202,4,16,75 +202,5,15,10 +202,5,16,10 +203,1,15,15 +203,1,16,15 +203,2,15,25 +203,2,16,25 +203,3,15,50 +203,3,16,50 +203,4,15,75 +203,4,16,75 +203,5,15,10 +203,5,16,10 +204,1,15,5 +204,1,16,5 +204,2,15,25 +204,2,16,25 +204,3,15,50 +204,3,16,50 +204,4,15,75 +204,4,16,75 +204,5,15,15 +204,5,16,15 +205,1,15,25 +205,1,16,25 +205,2,15,25 +205,2,16,25 +205,3,15,50 +205,3,16,50 +205,4,15,75 +205,4,16,75 +205,5,15,15 +205,5,16,15 +206,1,15,25 +206,1,16,25 +206,2,15,25 +206,2,16,25 +206,3,15,50 +206,3,16,50 +206,4,15,75 +206,4,16,75 +206,5,15,15 +206,5,16,15 +207,1,15,25 +207,1,16,25 +208,1,15,25 +208,1,16,25 +209,1,15,25 +209,1,16,25 +210,1,15,25 +210,1,16,25 +211,2,15,25 +211,2,16,25 +211,3,15,50 +211,3,16,50 +211,4,15,75 +211,4,16,75 +211,5,15,15 +211,5,16,15 +212,1,15,10 +212,1,16,10 +213,1,15,10 +213,1,16,10 +214,1,15,5 +214,1,16,5 +215,1,15,5 +215,1,16,5 +216,1,15,5 +216,1,16,5 +217,1,15,5 +217,1,16,5 +218,1,15,5 +218,1,16,5 +219,1,15,5 +219,1,16,5 +220,1,15,5 +220,1,16,5 +221,1,15,5 +221,1,16,5 +222,1,15,25 +222,1,16,25 +223,1,15,25 +223,1,16,25 +224,2,15,25 +224,2,16,25 +224,3,15,50 +224,3,16,50 +224,4,15,75 +224,4,16,75 +224,5,15,15 +224,5,16,15 +225,2,15,25 +225,2,16,25 +225,3,15,50 +225,3,16,50 +225,4,15,75 +225,4,16,75 +225,5,15,10 +225,5,16,10 +226,2,15,25 +226,2,16,25 +226,3,15,50 +226,3,16,50 +226,4,15,75 +226,4,16,75 +226,5,15,10 +226,5,16,10 +227,1,15,5 +227,1,16,5 +227,2,15,25 +227,2,16,25 +227,3,15,50 +227,3,16,50 +227,4,15,75 +227,4,16,75 +227,5,15,10 +227,5,16,10 +228,1,15,5 +228,1,16,5 +230,1,15,5 +230,1,16,5 +230,2,15,25 +230,2,16,25 +230,3,15,50 +230,3,16,50 +230,4,15,75 +230,4,16,75 +230,5,15,10 +230,5,16,10 +232,1,15,5 +232,1,16,5 +235,2,15,25 +235,2,16,25 +235,3,15,50 +235,3,16,50 +235,4,15,75 +235,4,16,75 +235,5,15,15 +235,5,16,15 +235,6,15,30 +235,6,16,30 +236,1,15,25 +236,1,16,25 +236,2,15,25 +236,2,16,25 +236,3,15,50 +236,3,16,50 +236,4,15,75 +236,4,16,75 +236,5,15,10 +236,5,16,10 +237,1,15,10 +237,1,16,10 +237,2,15,25 +237,2,16,25 +237,3,15,50 +237,3,16,50 +237,4,15,75 +237,4,16,75 +237,5,15,10 +237,5,16,10 +238,1,15,10 +238,1,16,10 +239,1,15,10 +239,1,16,10 +239,2,15,25 +239,2,16,25 +239,3,15,50 +239,3,16,50 +239,4,15,75 +239,4,16,75 +239,5,15,10 +239,5,16,10 +240,1,15,10 +240,1,16,10 +240,2,15,25 +240,2,16,25 +240,3,15,50 +240,3,16,50 +240,4,15,75 +240,4,16,75 +240,5,15,10 +240,5,16,10 +241,1,15,20 +241,1,16,20 +241,2,15,25 +241,2,16,25 +241,3,15,50 +241,3,16,50 +241,4,15,75 +241,4,16,75 +241,5,15,10 +241,5,16,10 +242,2,15,25 +242,2,16,25 +242,3,15,50 +242,3,16,50 +242,4,15,75 +242,4,16,75 +242,5,15,10 +242,5,16,10 +243,1,15,25 +243,1,16,25 +243,2,15,25 +243,2,16,25 +243,3,15,50 +243,3,16,50 +243,4,15,75 +243,4,16,75 +243,5,15,10 +243,5,16,10 +244,1,15,5 +244,1,16,5 +245,1,15,5 +245,1,16,5 +246,1,15,5 +246,1,16,5 +247,1,15,5 +247,1,16,5 +249,2,15,25 +249,2,16,25 +249,3,15,50 +249,3,16,50 +249,4,15,75 +249,4,16,75 +249,5,15,10 +249,5,16,10 +250,2,15,25 +250,2,16,25 +250,3,15,50 +250,3,16,50 +250,4,15,75 +250,4,16,75 +250,5,15,10 +250,5,16,10 +251,1,15,25 +251,1,16,25 +251,2,15,25 +251,2,16,25 +251,3,15,50 +251,3,16,50 +251,4,15,75 +251,4,16,75 +251,5,15,10 +251,5,16,10 +252,1,15,25 +252,1,16,25 +253,1,15,10 +253,1,16,10 +253,2,15,25 +253,2,16,25 +253,3,15,50 +253,3,16,50 +253,4,15,75 +253,4,16,75 +253,5,15,10 +253,5,16,10 +253,6,15,50 +253,6,16,50 +254,1,15,10 +254,1,16,10 +254,2,15,25 +254,2,16,25 +254,3,15,50 +254,3,16,50 +254,4,15,75 +254,4,16,75 +254,5,15,10 +254,5,16,10 +255,1,15,25 +255,1,16,25 +255,2,15,25 +255,2,16,25 +255,3,15,50 +255,3,16,50 +255,4,15,75 +255,4,16,75 +255,5,15,15 +255,5,16,15 +256,2,15,25 +256,2,16,25 +256,3,15,50 +256,3,16,50 +256,4,15,75 +256,4,16,75 +256,5,15,15 +256,5,16,15 +257,2,15,25 +257,2,16,25 +257,3,15,50 +257,3,16,50 +257,4,15,75 +257,4,16,75 +257,5,15,15 +257,5,16,15 +258,1,15,5 +258,1,16,5 +259,1,15,5 +259,1,16,5 +260,1,15,5 +260,1,16,5 +261,1,15,10 +261,1,16,10 +262,1,15,10 +262,1,16,10 +262,2,15,25 +262,2,16,25 +262,3,15,50 +262,3,16,50 +262,4,15,75 +262,4,16,75 +262,5,15,5 +262,5,16,5 +263,1,15,5 +263,1,16,5 +263,2,15,25 +263,2,16,25 +263,3,15,50 +263,3,16,50 +263,4,15,75 +263,4,16,75 +263,5,15,10 +263,5,16,10 +264,1,15,10 +264,1,16,10 +264,2,15,25 +264,2,16,25 +264,3,15,50 +264,3,16,50 +264,4,15,75 +264,4,16,75 +264,5,15,10 +264,5,16,10 +265,1,15,10 +265,1,16,10 +265,2,15,25 +265,2,16,25 +265,3,15,50 +265,3,16,50 +265,4,15,75 +265,4,16,75 +265,5,15,10 +265,5,16,10 +266,2,15,25 +266,2,16,25 +266,3,15,50 +266,3,16,50 +266,4,15,75 +266,4,16,75 +266,5,15,15 +266,5,16,15 +267,1,15,10 +267,1,16,10 +267,6,15,30 +267,6,16,30 +268,1,15,5 +268,1,16,5 +269,1,15,25 +269,1,16,25 +269,2,15,25 +269,2,16,25 +269,3,15,50 +269,3,16,50 +269,4,15,75 +269,4,16,75 +269,5,15,10 +269,5,16,10 +270,1,15,10 +270,1,16,10 +270,2,15,25 +270,2,16,25 +270,3,15,50 +270,3,16,50 +270,4,15,75 +270,4,16,75 +270,5,15,10 +270,5,16,10 +271,1,15,20 +271,1,16,20 +272,1,15,10 +272,1,16,10 +273,1,15,20 +273,1,16,20 +273,2,15,25 +273,2,16,25 +273,3,15,50 +273,3,16,50 +273,4,15,75 +273,4,16,75 +273,5,15,10 +273,5,16,10 +275,1,15,20 +275,1,16,20 +275,2,15,100 +275,2,16,100 +275,3,15,100 +275,3,16,100 +275,4,15,100 +275,4,16,100 +275,5,15,15 +275,5,16,15 +276,2,15,25 +276,2,16,25 +276,3,15,50 +276,3,16,50 +276,4,15,75 +276,4,16,75 +276,5,15,15 +276,5,16,15 +277,2,15,25 +277,2,16,25 +277,3,15,50 +277,3,16,50 +277,4,15,75 +277,4,16,75 +277,5,15,10 +277,5,16,10 +277,6,15,30 +277,6,16,30 +278,2,15,25 +278,2,16,25 +278,3,15,50 +278,3,16,50 +278,4,15,75 +278,4,16,75 +278,5,15,10 +278,5,16,10 +279,2,15,25 +279,2,16,25 +279,3,15,50 +279,3,16,50 +279,4,15,75 +279,4,16,75 +279,5,15,15 +279,5,16,15 +280,2,15,25 +280,2,16,25 +280,3,15,50 +280,3,16,50 +280,4,15,75 +280,4,16,75 +280,5,15,15 +280,5,16,15 +281,2,15,25 +281,2,16,25 +281,3,15,50 +281,3,16,50 +281,4,15,75 +281,4,16,75 +281,5,15,10 +281,5,16,10 +282,2,15,25 +282,2,16,25 +282,3,15,50 +282,3,16,50 +282,4,15,75 +282,4,16,75 +282,5,15,15 +282,5,16,15 +282,6,15,40 +282,6,16,40 +283,5,15,15 +283,5,16,15 +284,2,15,25 +284,2,16,25 +284,3,15,50 +284,3,16,50 +284,4,15,75 +284,4,16,75 +284,5,15,15 +284,5,16,15 +285,2,15,25 +285,2,16,25 +285,3,15,50 +285,3,16,50 +285,4,15,75 +285,4,16,75 +285,5,15,15 +285,5,16,15 +286,1,15,25 +286,1,16,25 +287,1,15,25 +287,1,16,25 +287,2,15,25 +287,2,16,25 +287,3,15,50 +287,3,16,50 +287,4,15,75 +287,4,16,75 +287,5,15,10 +287,5,16,10 +288,1,15,25 +288,1,16,25 +288,2,15,25 +288,2,16,25 +288,3,15,50 +288,3,16,50 +288,4,15,75 +288,4,16,75 +288,5,15,10 +288,5,16,10 +289,1,15,25 +289,1,16,25 +289,2,15,25 +289,2,16,25 +289,3,15,50 +289,3,16,50 +289,4,15,75 +289,4,16,75 +289,5,15,10 +289,5,16,10 +290,1,15,15 +290,1,16,15 +291,1,15,15 +291,1,16,15 +292,1,15,15 +292,1,16,15 +293,1,15,15 +293,1,16,15 +293,6,15,20 +293,6,16,20 +294,1,15,10 +294,1,16,10 +295,1,15,20 +295,1,16,20 +296,1,15,20 +296,1,16,20 +297,1,15,20 +297,1,16,20 +298,1,15,20 +298,1,16,20 +298,2,15,25 +298,2,16,25 +298,3,15,50 +298,3,16,50 +298,4,15,75 +298,4,16,75 +298,5,15,15 +298,5,16,15 +299,1,15,20 +299,1,16,20 +300,1,15,20 +300,1,16,20 +300,2,15,25 +300,2,16,25 +300,3,15,50 +300,3,16,50 +300,4,15,75 +300,4,16,75 +300,5,15,15 +300,5,16,15 +301,1,15,20 +301,1,16,20 +302,1,15,20 +302,1,16,20 +303,1,15,20 +303,1,16,20 +303,2,15,25 +303,2,16,25 +303,3,15,50 +303,3,16,50 +303,4,15,75 +303,4,16,75 +303,5,15,15 +303,5,16,15 +304,1,15,20 +304,1,16,20 +304,2,15,25 +304,2,16,25 +304,3,15,50 +304,3,16,50 +304,4,15,75 +304,4,16,75 +304,5,15,15 +304,5,16,15 +305,1,15,20 +305,1,16,20 +306,1,15,20 +306,1,16,20 +306,2,15,25 +306,2,16,25 +306,3,15,50 +306,3,16,50 +306,4,15,75 +306,4,16,75 +306,5,15,15 +306,5,16,15 +307,1,15,20 +307,1,16,20 +308,1,15,20 +308,1,16,20 +309,1,15,20 +309,1,16,20 +310,1,15,20 +310,1,16,20 +311,1,15,20 +311,1,16,20 +312,1,15,20 +312,1,16,20 +312,2,15,25 +312,2,16,25 +312,3,15,50 +312,3,16,50 +312,4,15,75 +312,4,16,75 +312,5,15,10 +312,5,16,10 +313,1,15,20 +313,1,16,20 +313,2,15,25 +313,2,16,25 +313,3,15,50 +313,3,16,50 +313,4,15,75 +313,4,16,75 +313,5,15,10 +313,5,16,10 +314,1,15,20 +314,1,16,20 +314,2,15,25 +314,2,16,25 +314,3,15,50 +314,3,16,50 +314,4,15,75 +314,4,16,75 +314,5,15,10 +314,5,16,10 +315,1,15,20 +315,1,16,20 +315,2,15,25 +315,2,16,25 +315,3,15,50 +315,3,16,50 +315,4,15,75 +315,4,16,75 +315,5,15,10 +315,5,16,10 +316,1,15,15 +316,1,16,15 +316,2,15,25 +316,2,16,25 +316,3,15,50 +316,3,16,50 +316,4,15,75 +316,4,16,75 +316,5,15,10 +316,5,16,10 +317,1,15,10 +317,1,16,10 +318,1,15,10 +318,1,16,10 +319,1,15,10 +319,1,16,10 +319,6,15,40 +319,6,16,40 +320,1,15,20 +320,1,16,20 +321,1,15,15 +321,1,16,15 +323,1,15,10 +323,1,16,10 +323,2,15,25 +323,2,16,25 +323,3,15,50 +323,3,16,50 +323,4,15,75 +323,4,16,75 +323,5,15,10 +323,5,16,10 +323,6,15,5 +323,6,16,5 +324,1,15,10 +324,1,16,10 +324,2,15,25 +324,2,16,25 +324,3,15,50 +324,3,16,50 +324,4,15,75 +324,4,16,75 +324,5,15,10 +324,5,16,10 +325,1,15,10 +325,1,16,10 +325,2,15,25 +325,2,16,25 +325,3,15,50 +325,3,16,50 +325,4,15,75 +325,4,16,75 +325,5,15,10 +325,5,16,10 +325,6,15,5 +325,6,16,5 +350,2,7,10 +350,2,8,10 +350,2,9,10 +350,3,7,10 +350,3,8,10 +350,3,9,10 +350,4,7,10 +350,4,8,10 +350,4,9,10 +350,5,7,1 +350,5,8,1 +350,5,9,1 +351,2,7,10 +351,2,8,10 +351,2,9,10 +351,3,7,10 +351,3,8,10 +351,3,9,10 +351,4,7,10 +351,4,8,10 +351,4,9,10 +351,5,7,4 +351,5,8,4 +351,5,9,4 +352,2,7,10 +352,2,8,10 +352,2,9,10 +352,3,7,10 +352,3,8,10 +352,3,9,10 +352,4,7,10 +352,4,8,10 +352,4,9,10 +352,5,7,4 +352,5,8,4 +352,5,9,4 +353,2,7,10 +353,2,8,10 +353,2,9,10 +353,3,7,10 +353,3,8,10 +353,3,9,10 +353,4,7,10 +353,4,8,10 +353,4,9,10 +353,5,7,4 +353,5,8,4 +353,5,9,4 +354,2,7,10 +354,2,8,10 +354,2,9,10 +354,3,7,10 +354,3,8,10 +354,3,9,10 +354,4,7,10 +354,4,8,10 +354,4,9,10 +354,5,7,1 +354,5,8,1 +354,5,9,1 +355,2,7,10 +355,2,8,10 +355,2,9,10 +355,3,7,10 +355,3,8,10 +355,3,9,10 +355,4,7,10 +355,4,8,10 +355,4,9,10 +355,5,7,4 +355,5,8,4 +355,5,9,4 +356,1,7,10 +356,1,8,10 +356,1,9,10 +356,2,7,30 +356,2,8,30 +356,2,9,30 +356,3,7,30 +356,3,8,30 +356,3,9,30 +356,4,7,30 +356,4,8,30 +356,4,9,30 +356,5,7,4 +356,5,8,4 +356,5,9,4 +357,1,7,10 +357,1,8,10 +357,1,9,10 +357,2,7,30 +357,2,8,30 +357,2,9,30 +357,3,7,30 +357,3,8,30 +357,3,9,30 +357,4,7,30 +357,4,8,30 +357,4,9,30 +357,5,7,4 +357,5,8,4 +357,5,9,4 +358,1,7,10 +358,1,8,10 +358,1,9,10 +358,2,7,30 +358,2,8,30 +358,2,9,30 +358,3,7,30 +358,3,8,30 +358,3,9,30 +358,4,7,30 +358,4,8,30 +358,4,9,30 +358,5,7,4 +358,5,8,4 +358,5,9,4 +359,1,7,10 +359,1,8,10 +359,1,9,10 +359,2,7,30 +359,2,8,30 +359,2,9,30 +359,3,7,30 +359,3,8,30 +359,3,9,30 +359,4,7,30 +359,4,8,30 +359,4,9,30 +359,5,7,4 +359,5,8,4 +359,5,9,4 +360,1,7,10 +360,1,8,10 +360,1,9,10 +361,1,7,10 +361,1,8,10 +361,1,9,10 +362,1,7,10 +362,1,8,10 +362,1,9,10 +363,1,7,10 +363,1,8,10 +363,1,9,10 +363,6,7,20 +363,6,8,20 +363,6,9,20 +364,1,7,10 +364,1,8,10 +364,1,9,10 +365,1,7,20 +365,1,8,20 +365,1,9,20 +366,1,7,20 +366,1,8,20 +366,1,9,20 +367,1,7,10 +367,1,8,10 +367,1,9,10 +368,1,7,10 +368,1,8,10 +368,1,9,10 +369,1,7,10 +369,1,8,10 +369,1,9,10 +370,1,7,10 +370,1,8,10 +370,1,9,10 +371,1,7,10 +371,1,8,10 +371,1,9,10 +372,1,7,10 +372,1,8,10 +372,1,9,10 +373,1,7,10 +373,1,8,10 +373,1,9,10 +374,1,7,10 +374,1,8,10 +374,1,9,10 +375,1,7,10 +375,1,8,10 +375,1,9,10 +376,1,7,4 +376,1,8,4 +376,1,9,4 +376,2,7,10 +376,2,8,10 +376,2,9,10 +376,3,7,10 +376,3,8,10 +376,3,9,10 +376,4,7,10 +376,4,8,10 +376,4,9,10 +376,5,7,4 +376,5,8,4 +376,5,9,4 +377,1,7,4 +377,1,8,4 +377,1,9,4 +378,1,7,4 +378,1,8,4 +378,1,9,4 +379,1,7,4 +379,1,8,4 +379,1,9,4 +380,1,7,4 +380,1,8,4 +380,1,9,4 +381,1,7,4 +381,1,8,4 +381,1,9,4 +382,1,7,10 +382,1,8,10 +382,1,9,10 +383,1,7,10 +383,1,8,10 +383,1,9,10 +383,6,7,20 +383,6,8,20 +383,6,9,20 +384,1,7,10 +384,1,8,10 +384,1,9,10 +384,2,7,30 +384,2,8,30 +384,2,9,30 +384,3,7,30 +384,3,8,30 +384,3,9,30 +384,4,7,30 +384,4,8,30 +384,4,9,30 +384,5,7,4 +384,5,8,4 +384,5,9,4 +385,1,7,10 +385,1,8,10 +385,1,9,10 +385,2,7,10 +385,2,8,10 +385,2,9,10 +385,3,7,10 +385,3,8,10 +385,3,9,10 +385,4,7,10 +385,4,8,10 +385,4,9,10 +385,5,7,4 +385,5,8,4 +385,5,9,4 +386,1,7,10 +386,1,8,10 +386,1,9,10 +387,1,7,10 +387,1,8,10 +387,1,9,10 +388,1,7,10 +388,1,8,10 +388,1,9,10 +389,2,7,20 +389,2,8,20 +389,2,9,20 +389,3,7,20 +389,3,8,20 +389,3,9,20 +389,4,7,20 +389,4,8,20 +389,4,9,20 +389,5,7,4 +389,5,8,4 +389,5,9,4 +390,1,7,10 +390,1,8,10 +390,1,9,10 +391,1,7,10 +391,1,8,10 +391,1,9,10 +392,1,7,10 +392,1,8,10 +392,1,9,10 +393,1,7,20 +393,1,8,20 +393,1,9,20 +394,1,7,20 +394,1,8,20 +394,1,9,20 +394,2,7,30 +394,2,8,30 +394,2,9,30 +394,3,7,30 +394,3,8,30 +394,3,9,30 +394,4,7,30 +394,4,8,30 +394,4,9,30 +394,5,7,4 +394,5,8,4 +394,5,9,4 +395,1,7,20 +395,1,8,20 +395,1,9,20 +395,2,7,30 +395,2,8,30 +395,2,9,30 +395,3,7,30 +395,3,8,30 +395,3,9,30 +395,4,7,30 +395,4,8,30 +395,4,9,30 +395,5,7,4 +395,5,8,4 +395,5,9,4 +396,1,7,20 +396,1,8,20 +396,1,9,20 +396,2,7,30 +396,2,8,30 +396,2,9,30 +396,3,7,30 +396,3,8,30 +396,3,9,30 +396,4,7,30 +396,4,8,30 +396,4,9,30 +396,5,7,4 +396,5,8,4 +396,5,9,4 +397,2,7,30 +397,2,8,30 +397,2,9,30 +397,3,7,30 +397,3,8,30 +397,3,9,30 +397,4,7,30 +397,4,8,30 +397,4,9,30 +397,5,7,4 +397,5,8,4 +397,5,9,4 +398,2,7,30 +398,2,8,30 +398,2,9,30 +398,3,7,30 +398,3,8,30 +398,3,9,30 +398,4,7,30 +398,4,8,30 +398,4,9,30 +398,5,7,4 +398,5,8,4 +398,5,9,4 +399,2,7,30 +399,2,8,30 +399,2,9,30 +399,3,7,30 +399,3,8,30 +399,3,9,30 +399,4,7,30 +399,4,8,30 +399,4,9,30 +399,5,7,4 +399,5,8,4 +399,5,9,4 +400,2,7,30 +400,2,8,30 +400,2,9,30 +400,3,7,30 +400,3,8,30 +400,3,9,30 +400,4,7,30 +400,4,8,30 +400,4,9,30 +400,5,7,4 +400,5,8,4 +400,5,9,4 +401,2,7,30 +401,2,8,30 +401,2,9,30 +401,3,7,30 +401,3,8,30 +401,3,9,30 +401,4,7,30 +401,4,8,30 +401,4,9,30 +401,5,7,4 +401,5,8,4 +401,5,9,4 +402,1,7,20 +402,1,8,20 +402,1,9,20 +402,2,7,30 +402,2,8,30 +402,2,9,30 +402,3,7,30 +402,3,8,30 +402,3,9,30 +402,4,7,30 +402,4,8,30 +402,4,9,30 +402,5,7,4 +402,5,8,4 +402,5,9,4 +403,1,7,10 +403,1,8,10 +403,1,9,10 +403,2,7,30 +403,2,8,30 +403,2,9,30 +403,3,7,30 +403,3,8,30 +403,3,9,30 +403,4,7,30 +403,4,8,30 +403,4,9,30 +403,5,7,4 +403,5,8,4 +403,5,9,4 +403,6,7,20 +403,6,8,20 +403,6,9,20 +404,1,7,20 +404,1,8,20 +404,1,9,20 +405,1,7,20 +405,1,8,20 +405,1,9,20 +406,1,7,20 +406,1,8,20 +406,1,9,20 +406,2,7,30 +406,2,8,30 +406,2,9,30 +406,3,7,30 +406,3,8,30 +406,3,9,30 +406,4,7,30 +406,4,8,30 +406,4,9,30 +406,5,7,4 +406,5,8,4 +406,5,9,4 +406,6,7,20 +406,6,8,20 +406,6,9,20 +407,1,7,20 +407,1,8,20 +407,1,9,20 +407,2,7,30 +407,2,8,30 +407,2,9,30 +407,3,7,30 +407,3,8,30 +407,3,9,30 +407,4,7,30 +407,4,8,30 +407,4,9,30 +407,5,7,4 +407,5,8,4 +407,5,9,4 +408,1,7,20 +408,1,8,20 +408,1,9,20 +409,1,7,20 +409,1,8,20 +409,1,9,20 +409,2,7,30 +409,2,8,30 +409,2,9,30 +409,3,7,30 +409,3,8,30 +409,3,9,30 +409,4,7,30 +409,4,8,30 +409,4,9,30 +409,5,7,4 +409,5,8,4 +409,5,9,4 +410,1,7,20 +410,1,8,20 +410,1,9,20 +410,2,7,30 +410,2,8,30 +410,2,9,30 +410,3,7,30 +410,3,8,30 +410,3,9,30 +410,4,7,30 +410,4,8,30 +410,4,9,30 +410,5,7,4 +410,5,8,4 +410,5,9,4 +411,1,7,15 +411,1,8,15 +411,1,9,15 +411,2,7,30 +411,2,8,30 +411,2,9,30 +411,3,7,30 +411,3,8,30 +411,3,9,30 +411,4,7,30 +411,4,8,30 +411,4,9,30 +411,5,7,4 +411,5,8,4 +411,5,9,4 +412,1,7,20 +412,1,8,20 +412,1,9,20 +412,2,7,30 +412,2,8,30 +412,2,9,30 +412,3,7,30 +412,3,8,30 +412,3,9,30 +412,4,7,30 +412,4,8,30 +412,4,9,30 +412,5,7,4 +412,5,8,4 +412,5,9,4 +413,1,7,20 +413,1,8,20 +413,1,9,20 +413,2,7,30 +413,2,8,30 +413,2,9,30 +413,3,7,30 +413,3,8,30 +413,3,9,30 +413,4,7,30 +413,4,8,30 +413,4,9,30 +413,5,7,4 +413,5,8,4 +413,5,9,4 +414,2,7,30 +414,2,8,30 +414,2,9,30 +414,3,7,30 +414,3,8,30 +414,3,9,30 +414,4,7,30 +414,4,8,30 +414,4,9,30 +414,5,7,4 +414,5,8,4 +414,5,9,4 +415,1,7,20 +415,1,8,20 +415,1,9,20 +415,2,7,30 +415,2,8,30 +415,2,9,30 +415,3,7,30 +415,3,8,30 +415,3,9,30 +415,4,7,30 +415,4,8,30 +415,4,9,30 +415,5,7,4 +415,5,8,4 +415,5,9,4 +416,2,7,30 +416,2,8,30 +416,2,9,30 +416,3,7,30 +416,3,8,30 +416,3,9,30 +416,4,7,30 +416,4,8,30 +416,4,9,30 +416,5,7,4 +416,5,8,4 +416,5,9,4 +417,5,7,4 +417,5,8,4 +417,5,9,4 +418,2,7,30 +418,2,8,30 +418,2,9,30 +418,3,7,30 +418,3,8,30 +418,3,9,30 +418,4,7,30 +418,4,8,30 +418,4,9,30 +418,5,7,4 +418,5,8,4 +418,5,9,4 +419,2,7,30 +419,2,8,30 +419,2,9,30 +419,3,7,30 +419,3,8,30 +419,3,9,30 +419,4,7,30 +419,4,8,30 +419,4,9,30 +419,5,7,4 +419,5,8,4 +419,5,9,4 +420,5,7,4 +420,5,8,4 +420,5,9,4 +421,2,7,30 +421,2,8,30 +421,2,9,30 +421,3,7,30 +421,3,8,30 +421,3,9,30 +421,4,7,30 +421,4,8,30 +421,4,9,30 +421,5,7,4 +421,5,8,4 +421,5,9,4 +422,2,7,30 +422,2,8,30 +422,2,9,30 +422,3,7,30 +422,3,8,30 +422,3,9,30 +422,4,7,30 +422,4,8,30 +422,4,9,30 +422,5,7,4 +422,5,8,4 +422,5,9,4 +423,2,7,30 +423,2,8,30 +423,2,9,30 +423,3,7,30 +423,3,8,30 +423,3,9,30 +423,4,7,30 +423,4,8,30 +423,4,9,30 +423,5,7,4 +423,5,8,4 +423,5,9,4 +424,1,7,20 +424,1,8,20 +424,1,9,20 +424,2,7,30 +424,2,8,30 +424,2,9,30 +424,3,7,30 +424,3,8,30 +424,3,9,30 +424,4,7,30 +424,4,8,30 +424,4,9,30 +424,5,7,4 +424,5,8,4 +424,5,9,4 +425,2,7,30 +425,2,8,30 +425,2,9,30 +425,3,7,30 +425,3,8,30 +425,3,9,30 +425,4,7,30 +425,4,8,30 +425,4,9,30 +425,5,7,4 +425,5,8,4 +425,5,9,4 +426,2,7,30 +426,2,8,30 +426,2,9,30 +426,3,7,30 +426,3,8,30 +426,3,9,30 +426,4,7,30 +426,4,8,30 +426,4,9,30 +426,5,7,4 +426,5,8,4 +426,5,9,4 +427,2,7,30 +427,2,8,30 +427,2,9,30 +427,3,7,30 +427,3,8,30 +427,3,9,30 +427,4,7,30 +427,4,8,30 +427,4,9,30 +427,5,7,4 +427,5,8,4 +427,5,9,4 +428,2,7,30 +428,2,8,30 +428,2,9,30 +428,3,7,30 +428,3,8,30 +428,3,9,30 +428,4,7,30 +428,4,8,30 +428,4,9,30 +428,5,7,4 +428,5,8,4 +428,5,9,4 +429,1,7,25 +429,1,8,25 +429,1,9,25 +429,2,7,35 +429,2,8,35 +429,2,9,35 +429,3,7,35 +429,3,8,35 +429,3,9,35 +429,4,7,35 +429,4,8,35 +429,4,9,35 +429,5,7,9 +429,5,8,9 +429,5,9,9 +430,1,7,25 +430,1,8,25 +430,1,9,25 +430,6,7,25 +430,6,8,25 +430,6,9,25 +431,1,7,25 +431,1,8,25 +431,1,9,25 +431,2,7,35 +431,2,8,35 +431,2,9,35 +431,3,7,35 +431,3,8,35 +431,3,9,35 +431,4,7,35 +431,4,8,35 +431,4,9,35 +431,5,7,9 +431,5,8,9 +431,5,9,9 +432,1,7,25 +432,1,8,25 +432,1,9,25 +433,2,7,10 +433,2,8,10 +433,2,9,10 +433,3,7,10 +433,3,8,10 +433,3,9,10 +433,4,7,10 +433,4,8,10 +433,4,9,10 +433,5,7,4 +433,5,8,4 +433,5,9,4 +434,2,7,10 +434,2,8,10 +434,2,9,10 +434,3,7,10 +434,3,8,10 +434,3,9,10 +434,4,7,10 +434,4,8,10 +434,4,9,10 +434,5,7,4 +434,5,8,4 +434,5,9,4 +435,1,9,25 +435,2,9,35 +435,3,9,35 +435,4,9,35 +435,5,9,9 +436,1,9,25 +436,6,9,25 +437,1,9,10 +438,1,9,10 +439,1,9,10 +440,1,9,10 +441,1,9,7 +442,1,9,7 +443,1,9,7 +444,1,9,7 +445,1,9,7 +446,1,9,7 +447,1,9,7 +448,1,9,7 +449,1,9,7 +450,1,10,7 +450,1,11,7 +451,1,10,7 +451,1,11,7 +452,1,10,7 +452,1,11,7 +453,1,10,7 +453,1,11,7 +454,1,10,7 +454,1,11,7 +455,1,10,7 +455,1,11,7 +456,1,10,7 +456,1,11,7 +457,1,10,14 +457,1,11,14 +458,1,10,7 +458,1,11,7 +459,1,10,5 +459,1,11,5 +460,1,10,7 +460,1,11,7 +461,2,10,10 +461,2,11,10 +461,3,10,10 +461,3,11,10 +461,4,10,10 +461,4,11,10 +461,5,10,1 +461,5,11,1 +462,1,10,5 +462,1,11,5 +463,1,10,7 +464,1,10,7 +465,1,10,7 +466,1,10,7 +466,1,11,7 +467,1,10,5 +467,1,11,5 +468,1,10,21 +468,1,11,21 +468,2,10,20 +468,2,11,20 +468,3,10,20 +468,3,11,20 +468,4,10,20 +468,4,11,20 +468,5,10,2 +468,5,11,2 +469,1,10,21 +469,1,11,21 +469,2,10,20 +469,2,11,20 +469,3,10,20 +469,3,11,20 +469,4,10,20 +469,4,11,20 +469,5,10,2 +469,5,11,2 +470,1,10,21 +470,1,11,21 +470,2,10,20 +470,2,11,20 +470,3,10,20 +470,3,11,20 +470,4,10,20 +470,4,11,20 +470,5,10,2 +470,5,11,2 +471,1,10,21 +471,1,11,21 +471,2,10,20 +471,2,11,20 +471,3,10,20 +471,3,11,20 +471,4,10,20 +471,4,11,20 +471,5,10,2 +471,5,11,2 +472,1,10,7 +472,1,11,7 +472,2,10,20 +472,2,11,20 +472,3,10,20 +472,3,11,20 +472,4,10,20 +472,4,11,20 +472,5,10,2 +472,5,11,2 +472,6,10,50 +472,6,11,50 +473,1,10,7 +473,1,11,7 +473,6,10,50 +473,6,11,50 +474,1,10,7 +474,1,11,7 +474,2,10,20 +474,2,11,20 +474,3,10,20 +474,3,11,20 +474,4,10,20 +474,4,11,20 +474,5,10,2 +474,5,11,2 +474,6,10,50 +474,6,11,50 +475,1,10,7 +475,1,11,7 +476,1,10,7 +476,1,11,7 +476,6,10,50 +476,6,11,50 +477,1,10,7 +477,1,11,7 +478,1,10,7 +478,1,11,7 +479,1,10,7 +479,1,11,7 +480,1,10,7 +480,1,11,7 +480,2,10,20 +480,2,11,20 +480,3,10,20 +480,3,11,20 +480,4,10,20 +480,4,11,20 +480,5,10,2 +480,5,11,2 +481,1,10,7 +481,1,11,7 +481,2,10,20 +481,2,11,20 +481,3,10,20 +481,3,11,20 +481,4,10,20 +481,4,11,20 +481,5,10,2 +481,5,11,2 +482,1,10,2 +482,1,11,2 +483,1,10,4 +483,1,11,4 +484,1,10,6 +484,1,11,6 +485,1,10,8 +485,1,11,8 +486,1,10,10 +486,1,11,10 +487,1,10,7 +487,1,11,7 +488,1,10,21 +488,1,11,21 +488,6,10,50 +488,6,11,50 +489,1,10,7 +489,1,11,7 +490,1,10,7 +490,1,11,7 +490,6,10,50 +490,6,11,50 +491,1,10,7 +491,1,11,7 +491,6,10,50 +491,6,11,50 +492,1,10,7 +492,1,11,7 +492,6,10,50 +492,6,11,50 +493,1,10,7 +493,1,11,7 +493,6,10,50 +493,6,11,50 +494,1,10,7 +494,1,11,7 +494,6,10,50 +494,6,11,50 +495,1,10,21 +495,1,11,21 +495,2,10,20 +495,2,11,20 +495,3,10,20 +495,3,11,20 +495,4,10,20 +495,4,11,20 +495,5,10,2 +495,5,11,2 +496,1,10,7 +496,1,11,7 +496,2,10,20 +496,2,11,20 +496,3,10,20 +496,3,11,20 +496,4,10,20 +496,4,11,20 +496,5,10,2 +496,5,11,2 +497,1,10,7 +497,1,11,7 +498,1,10,7 +498,1,11,7 +499,1,10,7 +499,1,11,7 +499,2,10,20 +499,2,11,20 +499,3,10,20 +499,3,11,20 +499,4,10,20 +499,4,11,20 +499,5,10,2 +499,5,11,2 +500,1,10,21 +500,1,11,21 +501,1,10,1 +501,1,11,1 +502,1,10,2 +502,1,11,2 +503,1,10,3 +503,1,11,3 +504,1,10,4 +504,1,11,4 +505,1,10,5 +505,1,11,5 +506,1,10,6 +506,1,11,6 +507,1,10,7 +507,1,11,7 +508,1,10,8 +508,1,11,8 +509,1,10,9 +509,1,11,9 +510,1,10,10 +510,1,11,10 +511,1,10,5 +511,1,11,5 +512,1,10,21 +512,1,11,21 +512,2,10,20 +512,2,11,20 +512,3,10,20 +512,3,11,20 +512,4,10,20 +512,4,11,20 +512,5,10,2 +512,5,11,2 +512,6,10,25 +512,6,11,25 +513,1,10,21 +513,1,11,21 +513,2,10,20 +513,2,11,20 +513,3,10,20 +513,3,11,20 +513,4,10,20 +513,4,11,20 +513,5,10,2 +513,5,11,2 +514,1,10,21 +514,1,11,21 +514,2,10,20 +514,2,11,20 +514,3,10,20 +514,3,11,20 +514,4,10,20 +514,4,11,20 +514,5,10,2 +514,5,11,2 +515,1,10,21 +515,1,11,21 +515,2,10,20 +515,2,11,20 +515,3,10,20 +515,3,11,20 +515,4,10,20 +515,4,11,20 +515,5,10,2 +515,5,11,2 +516,1,10,1 +516,1,11,1 +517,2,10,20 +517,2,11,20 +517,3,10,20 +517,3,11,20 +517,4,10,20 +517,4,11,20 +517,5,10,2 +517,5,11,2 +518,2,10,20 +518,2,11,20 +518,3,10,20 +518,3,11,20 +518,4,10,20 +518,4,11,20 +518,5,10,2 +518,5,11,2 +519,1,10,21 +519,1,11,21 +519,2,10,20 +519,2,11,20 +519,3,10,20 +519,3,11,20 +519,4,10,20 +519,4,11,20 +519,5,10,2 +519,5,11,2 +520,1,10,21 +520,1,11,21 +520,2,10,20 +520,2,11,20 +520,3,10,20 +520,3,11,20 +520,4,10,20 +520,4,11,20 +520,5,10,2 +520,5,11,2 +521,2,10,20 +521,2,11,20 +521,3,10,20 +521,3,11,20 +521,4,10,20 +521,4,11,20 +521,5,10,2 +521,5,11,2 +522,2,10,20 +522,2,11,20 +522,3,10,20 +522,3,11,20 +522,4,10,20 +522,4,11,20 +522,5,10,2 +522,5,11,2 +523,1,10,21 +523,1,11,21 +523,2,10,20 +523,2,11,20 +523,3,10,20 +523,3,11,20 +523,4,10,20 +523,4,11,20 +523,5,10,2 +523,5,11,2 +524,1,10,21 +524,1,11,21 +524,2,10,20 +524,2,11,20 +524,3,10,20 +524,3,11,20 +524,4,10,20 +524,4,11,20 +524,5,10,2 +524,5,11,2 +525,2,10,20 +525,2,11,20 +525,3,10,20 +525,3,11,20 +525,4,10,20 +525,4,11,20 +525,5,10,2 +525,5,11,2 +526,1,10,21 +526,1,11,21 +527,1,10,21 +527,1,11,21 +527,6,10,25 +527,6,11,25 +528,2,10,20 +528,2,11,20 +528,3,10,20 +528,3,11,20 +528,4,10,20 +528,4,11,20 +528,5,10,2 +528,5,11,2 +529,1,10,21 +529,1,11,21 +530,1,10,21 +530,1,11,21 +531,1,10,21 +531,1,11,21 +532,1,10,21 +532,1,11,21 +532,2,10,20 +532,2,11,20 +532,3,10,20 +532,3,11,20 +532,4,10,20 +532,4,11,20 +532,5,10,2 +532,5,11,2 +533,1,10,21 +533,1,11,21 +534,1,10,21 +534,1,11,21 +534,2,10,20 +534,2,11,20 +534,3,10,20 +534,3,11,20 +534,4,10,20 +534,4,11,20 +534,5,10,2 +534,5,11,2 +535,1,10,21 +535,1,11,21 +536,1,10,21 +536,1,11,21 +537,1,10,21 +537,1,11,21 +538,1,10,21 +538,1,11,21 +538,2,10,20 +538,2,11,20 +538,3,10,20 +538,3,11,20 +538,4,10,20 +538,4,11,20 +538,5,10,2 +538,5,11,2 +539,1,10,21 +539,1,11,21 +539,2,10,20 +539,2,11,20 +539,3,10,20 +539,3,11,20 +539,4,10,20 +539,4,11,20 +539,5,10,2 +539,5,11,2 +540,1,10,21 +540,1,11,21 +540,2,10,60 +540,2,11,60 +540,3,10,60 +540,3,11,60 +540,4,10,60 +540,4,11,60 +540,5,10,2 +540,5,11,2 +541,1,10,21 +541,1,11,21 +541,2,10,20 +541,2,11,20 +541,3,10,20 +541,3,11,20 +541,4,10,20 +541,4,11,20 +541,5,10,2 +541,5,11,2 +542,1,10,21 +542,1,11,21 +543,1,10,21 +543,1,11,21 +544,1,10,21 +544,1,11,21 +545,1,10,21 +545,1,11,21 +546,1,10,21 +546,1,11,21 +547,2,10,20 +547,2,11,20 +547,3,10,20 +547,3,11,20 +547,4,10,20 +547,4,11,20 +547,5,10,2 +547,5,11,2 +548,2,10,20 +548,2,11,20 +548,3,10,20 +548,3,11,20 +548,4,10,20 +548,4,11,20 +548,5,10,2 +548,5,11,2 +549,1,10,14 +549,1,11,14 +549,2,10,20 +549,2,11,20 +549,3,10,20 +549,3,11,20 +549,4,10,20 +549,4,11,20 +549,5,10,2 +549,5,11,2 +550,1,10,21 +550,1,11,21 +550,2,10,20 +550,2,11,20 +550,3,10,20 +550,3,11,20 +550,4,10,20 +550,4,11,20 +550,5,10,2 +550,5,11,2 +551,1,10,21 +551,1,11,21 +551,2,10,20 +551,2,11,20 +551,3,10,20 +551,3,11,20 +551,4,10,20 +551,4,11,20 +551,5,10,2 +551,5,11,2 +552,1,10,21 +552,1,11,21 +552,2,10,20 +552,2,11,20 +552,3,10,20 +552,3,11,20 +552,4,10,20 +552,4,11,20 +552,5,10,2 +552,5,11,2 +553,1,10,21 +553,1,11,21 +553,2,10,20 +553,2,11,20 +553,3,10,20 +553,3,11,20 +553,4,10,20 +553,4,11,20 +553,5,10,2 +553,5,11,2 +554,2,10,10 +554,2,11,10 +554,3,10,10 +554,3,11,10 +554,4,10,10 +554,4,11,10 +554,5,10,1 +554,5,11,1 +555,2,10,10 +555,2,11,10 +555,3,10,10 +555,3,11,10 +555,4,10,10 +555,4,11,10 +555,5,10,1 +555,5,11,1 +556,2,10,10 +556,2,11,10 +556,3,10,10 +556,3,11,10 +556,4,10,10 +556,4,11,10 +556,5,10,1 +556,5,11,1 +557,2,10,10 +557,2,11,10 +557,3,10,10 +557,3,11,10 +557,4,10,10 +557,4,11,10 +557,5,10,1 +557,5,11,1 +558,2,10,10 +558,2,11,10 +558,3,10,10 +558,3,11,10 +558,4,10,10 +558,4,11,10 +558,5,10,1 +558,5,11,1 +559,2,10,10 +559,2,11,10 +559,3,10,10 +559,3,11,10 +559,4,10,10 +559,4,11,10 +559,5,10,1 +559,5,11,1 +560,2,10,10 +560,2,11,10 +560,3,10,10 +560,3,11,10 +560,4,10,10 +560,4,11,10 +560,5,10,1 +560,5,11,1 +561,2,10,10 +561,2,11,10 +561,3,10,10 +561,3,11,10 +561,4,10,10 +561,4,11,10 +561,5,10,1 +561,5,11,1 +562,2,10,20 +562,2,11,20 +562,3,10,20 +562,3,11,20 +562,4,10,20 +562,4,11,20 +562,5,10,2 +562,5,11,2 +563,2,10,10 +563,2,11,10 +563,3,10,10 +563,3,11,10 +563,4,10,10 +563,4,11,10 +563,5,10,1 +563,5,11,1 +564,1,10,5 +564,1,11,7 +565,1,10,5 +565,1,11,7 +566,1,10,5 +566,1,11,7 +567,1,10,5 +567,1,11,7 +568,1,10,5 +568,1,11,7 +569,1,10,5 +569,1,11,7 +570,1,10,5 +570,1,11,7 +571,1,10,5 +571,1,11,7 +572,1,10,5 +572,1,11,7 +573,1,11,7 +574,1,11,7 +575,1,11,7 +576,4,17,50 +576,4,18,50 +576,4,21,50 +576,4,22,50 +576,5,17,3 +576,5,18,3 +576,5,21,10 +576,5,22,10 +577,4,17,50 +577,4,18,50 +577,5,17,3 +577,5,18,3 +579,1,17,8 +579,1,18,8 +579,1,21,1 +579,1,22,1 +579,8,21,3 +579,8,22,3 +580,1,17,8 +580,1,18,8 +580,8,21,3 +580,8,22,3 +581,1,17,8 +581,1,18,8 +581,1,21,1 +581,1,22,1 +581,8,21,3 +581,8,22,3 +582,1,17,8 +582,1,18,8 +582,1,21,1 +582,1,22,1 +582,4,17,50 +582,4,18,50 +582,4,21,50 +582,4,22,50 +582,5,17,3 +582,5,18,3 +582,5,21,10 +582,5,22,10 +582,8,21,3 +582,8,22,3 +583,1,17,3 +583,1,18,3 +583,1,21,9 +583,1,22,9 +584,1,17,3 +584,1,18,3 +584,1,21,9 +584,1,22,9 +585,1,17,3 +585,1,18,3 +585,1,21,7 +585,1,22,7 +586,1,17,3 +586,1,18,3 +587,1,17,3 +587,1,18,3 +587,1,21,7 +587,1,22,7 +588,1,17,3 +588,1,18,3 +588,1,21,7 +588,1,22,7 +589,1,17,8 +589,1,18,8 +590,1,17,3 +590,1,18,3 +590,1,21,7 +590,1,22,7 +591,1,17,3 +591,1,18,3 +591,1,21,7 +591,1,22,7 +592,1,17,3 +592,1,18,3 +592,1,21,7 +592,1,22,7 +596,1,17,3 +596,1,18,3 +596,1,21,7 +596,1,22,7 +597,1,17,3 +597,1,18,3 +597,1,21,7 +597,1,22,7 +598,1,17,8 +598,1,18,8 +599,1,17,6 +599,1,18,6 +599,4,17,50 +599,4,18,50 +599,5,17,3 +599,5,18,3 +600,1,17,3 +600,1,18,3 +601,1,17,3 +601,1,18,3 +602,1,17,3 +602,1,18,3 +603,1,17,3 +603,1,18,3 +604,1,17,6 +604,1,18,6 +604,4,17,50 +604,4,18,50 +604,5,17,3 +604,5,18,3 +605,1,17,3 +605,1,18,3 +606,1,17,3 +606,1,18,3 +607,1,17,3 +607,1,18,3 +608,1,17,3 +608,1,18,3 +609,1,17,3 +609,1,18,3 +610,1,17,3 +610,1,18,3 +611,1,17,3 +611,1,18,3 +612,1,17,3 +612,1,18,3 +613,1,17,3 +613,1,18,3 +614,1,17,8 +614,1,18,8 +614,1,21,1 +614,1,22,1 +614,8,21,3 +614,8,22,3 +615,1,17,3 +615,1,18,3 +615,1,21,7 +615,1,22,7 +615,4,17,50 +615,4,18,50 +615,4,21,50 +615,4,22,50 +615,5,17,3 +615,5,18,3 +615,5,21,10 +615,5,22,10 +616,1,17,8 +616,1,18,8 +616,1,21,1 +616,1,22,1 +616,8,21,3 +616,8,22,3 +617,1,17,3 +617,1,18,3 +617,1,21,1 +617,1,22,1 +617,4,17,50 +617,4,18,50 +617,5,17,3 +617,5,18,3 +617,8,21,3 +617,8,22,3 +618,1,17,8 +618,1,18,8 +618,1,21,1 +618,1,22,1 +618,4,17,80 +618,4,18,80 +618,4,21,80 +618,4,22,80 +618,5,17,5 +618,5,18,5 +618,5,21,10 +618,5,22,10 +621,1,17,8 +621,1,18,8 +621,1,21,1 +621,1,22,1 +621,4,17,50 +621,4,18,50 +621,4,21,50 +621,4,22,50 +621,5,17,3 +621,5,18,3 +621,5,21,10 +621,5,22,10 +621,8,21,3 +621,8,22,3 +623,1,17,8 +623,1,18,8 +623,1,21,1 +623,1,22,1 +623,4,17,50 +623,4,18,50 +623,4,21,50 +623,4,22,50 +623,5,17,3 +623,5,18,3 +623,5,21,10 +623,5,22,10 +623,8,21,3 +623,8,22,3 +624,1,17,8 +624,1,18,8 +624,1,21,1 +624,1,22,1 +625,1,17,8 +625,1,18,8 +625,1,21,1 +625,1,22,1 +625,4,17,50 +625,4,18,50 +625,4,21,50 +625,4,22,50 +625,5,17,3 +625,5,18,3 +625,5,21,10 +625,5,22,10 +625,8,21,3 +625,8,22,3 +626,1,17,3 +626,1,18,3 +626,1,21,7 +626,1,22,7 +626,4,17,50 +626,4,18,50 +626,4,21,50 +626,4,22,50 +626,5,17,3 +626,5,18,3 +626,5,21,10 +626,5,22,10 +627,1,17,3 +627,1,18,3 +627,1,21,9 +627,1,22,9 +627,4,17,50 +627,4,18,50 +627,4,21,50 +627,4,22,50 +627,5,17,3 +627,5,18,3 +627,5,21,10 +627,5,22,10 +628,1,17,8 +628,1,18,8 +628,1,21,1 +628,1,22,1 +628,8,21,3 +628,8,22,3 +630,1,17,3 +630,1,18,3 +630,1,21,7 +630,1,22,7 +631,1,17,3 +631,1,18,3 +631,1,21,7 +631,1,22,7 +633,1,17,3 +633,1,18,3 +633,1,21,7 +633,1,22,7 +634,1,17,3 +634,1,18,3 +634,1,21,7 +634,1,22,7 +635,1,17,3 +635,1,18,3 +635,1,21,7 +635,1,22,7 +636,1,17,3 +636,1,18,3 +636,1,21,7 +636,1,22,7 +639,1,17,8 +639,1,18,8 +639,1,21,1 +639,1,22,1 +639,8,21,3 +639,8,22,3 +640,1,17,3 +640,1,18,3 +641,1,17,3 +641,1,18,3 +642,1,17,3 +642,1,18,3 +642,4,17,50 +642,4,18,50 +642,5,17,3 +642,5,18,3 +643,1,17,8 +643,1,18,8 +644,1,17,8 +644,1,18,8 +645,1,17,8 +645,1,18,8 +645,1,21,1 +645,1,22,1 +645,4,17,50 +645,4,18,50 +645,4,21,50 +645,4,22,50 +645,5,17,3 +645,5,18,3 +645,5,21,10 +645,5,22,10 +645,8,21,3 +645,8,22,3 +646,1,17,8 +646,1,18,8 +646,1,21,1 +646,1,22,1 +646,8,21,3 +646,8,22,3 +647,1,17,8 +647,1,18,8 +647,1,21,1 +647,1,22,1 +647,4,17,50 +647,4,18,50 +647,4,21,50 +647,4,22,50 +647,5,17,3 +647,5,18,3 +647,5,21,10 +647,5,22,10 +647,8,21,3 +647,8,22,3 +648,1,17,8 +648,1,18,8 +648,1,21,1 +648,1,22,1 +648,4,17,50 +648,4,18,50 +648,4,21,50 +648,4,22,50 +648,5,17,3 +648,5,18,3 +648,5,21,10 +648,5,22,10 +648,8,21,3 +648,8,22,3 +649,1,17,8 +649,1,18,8 +649,1,21,1 +649,1,22,1 +649,4,17,50 +649,4,18,50 +649,4,21,50 +649,4,22,50 +649,5,17,3 +649,5,18,3 +649,5,21,10 +649,5,22,10 +649,8,21,3 +649,8,22,3 +650,1,17,8 +650,1,18,8 +650,1,21,1 +650,1,22,1 +650,8,21,3 +650,8,22,3 +651,1,17,8 +651,1,18,8 +651,1,21,1 +651,1,22,1 +651,8,21,3 +651,8,22,3 +652,1,17,8 +652,1,18,8 +652,1,21,1 +652,1,22,1 +652,4,17,50 +652,4,18,50 +652,4,21,50 +652,4,22,50 +652,5,17,3 +652,5,18,3 +652,5,21,10 +652,5,22,10 +652,8,21,3 +652,8,22,3 +653,1,17,8 +653,1,18,8 +653,1,21,1 +653,1,22,1 +653,4,17,50 +653,4,18,50 +653,4,21,50 +653,4,22,50 +653,5,17,3 +653,5,18,3 +653,5,21,10 +653,5,22,10 +653,8,21,3 +653,8,22,3 +654,4,17,50 +654,4,18,50 +654,4,21,50 +654,4,22,50 +654,5,17,3 +654,5,18,3 +654,5,21,10 +654,5,22,10 +655,4,17,80 +655,4,18,80 +655,4,21,80 +655,4,22,80 +655,5,17,5 +655,5,18,5 +655,5,21,10 +655,5,22,10 +656,1,21,1 +656,1,22,1 +656,8,21,3 +656,8,22,3 +657,4,21,50 +657,4,22,50 +657,5,21,10 +657,5,22,10 +658,4,21,50 +658,4,22,50 +658,5,21,10 +658,5,22,10 +659,4,21,50 +659,4,22,50 +659,5,21,10 +659,5,22,10 +660,1,21,7 +660,1,22,7 +661,1,21,7 +661,1,22,7 +661,4,21,50 +661,4,22,50 +661,5,21,10 +661,5,22,10 +662,1,21,1 +662,1,22,1 +662,8,21,3 +662,8,22,3 +663,1,21,1 +663,1,22,1 +663,4,21,50 +663,4,22,50 +663,5,21,10 +663,5,22,10 +663,8,21,3 +663,8,22,3 +664,1,21,7 +664,1,22,7 +665,1,21,7 +665,1,22,7 +665,4,21,50 +665,4,22,50 +665,5,21,10 +665,5,22,10 +666,1,21,1 +666,1,22,1 +666,8,21,3 +666,8,22,3 +667,1,21,7 +667,1,22,7 +668,1,21,7 +668,1,22,7 +668,4,21,50 +668,4,22,50 +668,5,21,10 +668,5,22,10 +669,1,21,1 +669,1,22,1 +669,4,21,50 +669,4,22,50 +669,5,21,10 +669,5,22,10 +669,8,21,3 +669,8,22,3 +670,1,21,7 +670,1,22,7 +671,1,21,7 +671,1,22,7 +671,4,21,30 +671,4,22,30 +671,5,21,10 +671,5,22,10 +672,1,21,7 +672,1,22,7 +672,4,21,30 +672,4,22,30 +672,5,21,10 +672,5,22,10 +673,4,21,50 +673,4,22,50 +673,5,21,10 +673,5,22,10 +674,1,21,2 +674,1,22,2 +674,4,21,50 +674,4,22,50 +674,5,21,10 +674,5,22,10 +675,1,21,1 +675,1,22,1 +675,4,21,50 +675,4,22,50 +675,5,21,10 +675,5,22,10 +676,1,21,1 +676,1,22,1 +676,8,21,3 +676,8,22,3 +677,1,21,1 +677,1,22,1 +677,8,21,4 +677,8,22,4 +678,1,21,7 +678,1,22,7 +679,1,21,7 +679,1,22,7 +680,1,21,7 +680,1,22,7 +681,1,21,7 +681,1,22,7 +682,1,21,7 +682,1,22,7 +683,1,21,7 +683,1,22,7 +684,1,21,7 +684,1,22,7 +685,1,21,7 +685,1,22,7 +686,1,21,7 +686,1,22,7 +687,1,21,7 +687,1,22,7 +688,1,21,7 +688,1,22,7 +689,1,21,7 +689,1,22,7 +690,1,21,7 +690,1,22,7 +691,1,21,7 +691,1,22,7 +692,1,21,7 +692,1,22,7 +693,1,21,7 +693,1,22,7 +693,4,21,50 +693,4,22,50 +693,5,21,10 +693,5,22,10 +694,1,21,7 +694,1,22,7 +695,1,21,7 +695,1,22,7 +695,4,21,50 +695,4,22,50 +695,5,21,10 +695,5,22,10 +696,1,21,7 +696,1,22,7 +697,1,21,7 +697,1,22,7 +698,1,21,7 +698,1,22,7 +699,1,21,7 +699,1,22,7 +700,1,21,7 +700,1,22,7 +700,4,21,50 +700,4,22,50 +700,5,21,10 +700,5,22,10 +701,1,21,7 +701,1,22,7 +702,1,21,1 +702,1,22,1 +702,4,21,50 +702,4,22,50 +702,5,21,10 +702,5,22,10 +702,8,21,3 +702,8,22,3 +703,1,21,1 +703,1,22,1 +703,4,21,50 +703,4,22,50 +703,5,21,10 +703,5,22,10 +705,1,21,1 +705,1,22,1 +705,4,21,50 +705,4,22,50 +705,5,21,10 +705,5,22,10 +705,8,21,3 +705,8,22,3 +706,1,21,1 +706,1,22,1 +706,4,21,50 +706,4,22,50 +706,5,21,10 +706,5,22,10 +706,8,21,3 +706,8,22,3 +707,4,21,80 +707,4,22,80 +707,5,21,10 +707,5,22,10 diff --git a/data/v2/csv/location_area_prose.csv b/data/v2/csv/location_area_prose.csv new file mode 100644 index 00000000..7cebbcc8 --- /dev/null +++ b/data/v2/csv/location_area_prose.csv @@ -0,0 +1,664 @@ +location_area_id,local_language_id,name +1,9, +2,9, +3,9, +4,9, +5,9, +6,9,1F +7,9,B1F +8,9, +9,9, +10,9, +11,9,Route 207 +12,9,2F +13,9,3F +14,9,snowfall +15,9,blizzard +16,9,4F +17,9,5F +18,9,6F +19,9,7F +20,9,cave +21,9,Route 216 +22,9,Route 211 +23,9,B1F +24,9,Area 1 +25,9,Area 2 +26,9,Area 3 +27,9,Area 4 +28,9,Area 5 +29,9,Area 6 +30,9,2F +31,9,1F +32,9,B1F a +33,9,B1F b +34,9,B1F c +35,9,B2F a +36,9,B2F b +37,9,B2F c +38,9,B3F a +39,9,B3F b +40,9,B3F c +41,9,B3F d +42,9,B3F e +43,9,B4F a +44,9,B4F b +45,9,B4F c +46,9,B4F d +47,9,B5F +48,9,1F +49,9,2F +50,9,B1F +51,9,inside B1F +52,9,inside +53,9,inside exit +54,9, +55,9,1F +56,9,B1F +57,9, +58,9,entrance +59,9,inside +60,9, +61,9,pillar 1 +62,9,pillar 2 +63,9,pillar 3 +64,9,before pillar 1 +70,9,between pillars 1 and 2 +76,9,between pillars 2 and 3 +82,9,after pillar 3 +107,9,1F +108,9,B1F +109,9,B2F +110,9,B3F +111,9,B4F +112,9,B5F +113,9,1F +114,9,B1F +115,9,0–9 different Unown caught +116,9,10–25 different Unown caught +117,9,26+ different Unown caught +118,9, +119,9, +120,9,1F +121,9,B1F left +122,9,B1F right +123,9,B2F right +124,9,B2F left +125,9,B3F +126,9,entrance +127,9,dining room +128,9,2F private room +129,9,2F +130,9,2F leftmost room +131,9,2F left room +132,9,2F middle room +133,9,2F right room +134,9,2F rightmost room +135,9,before Galactic intervention +136,9,after Galactic intervention +137,9, +138,9, +139,9, +140,9, +141,9, +142,9, +143,9, +144,9,"south, towards Jubilife City" +145,9,"north, towards Floaroma Town" +146,9,"south, towards Floaroma Town" +147,9,"east, towards Eterna City" +148,9, +149,9, +150,9, +151,9, +152,9,1F +153,9,2F +154,9,3F +155,9,4F +156,9,5F +157,9,"south, towards Solaceon Town" +158,9,"west, towards Celestic Town" +159,9,"west, towards Eterna City" +160,9,"east, towards Celestic Town" +161,9,"north, towards Hearthome City" +162,9,"east, towards Pastoria City" +163,9, +164,9, +165,9, +166,9, +167,9, +168,9, +169,9, +170,9, +171,9, +172,9, +173,9, +174,9, +175,9, +176,9, +177,9, +178,9, +179,9, +180,9, +181,9, +182,9, +183,9, +184,9, +185,9, +186,9, +187,9, +188,9, +189,9, +190,9,2F +191,9,3F +192,9, +193,9,Outside +194,9,Interior A +195,9,Interior B +196,9,Interior C +197,9,Interior D +198,9,1F +199,9,B1F +200,9,B2F +201,9, +202,9,1F +203,9,B1F +204,9, +205,9, +206,9, +207,9, +208,9, +209,9, +210,9, +211,9, +212,9,1F +213,9,B1F +214,9,2F +215,9,3F +216,9,4F +217,9,5F +218,9,6F +219,9,7F +220,9,8F +221,9,9F +222,9, +223,9, +224,9, +225,9, +226,9, +227,9,1F +228,9,B1F +229,9,empty floor X +230,9,B2F +231,9,empty floor Y +232,9,B3F +235,9, +236,9, +237,9,1F +238,9,Lower Cave +239,9,Upper Cave +240,9,B1F +241,9, +242,9, +243,9, +244,9,1F +245,9,B1F +246,9,B2F +247,9,B3F +249,9, +250,9, +251,9, +252,9, +253,9,Violet City entrance +254,9,Blackthorn City entrance +255,9, +256,9,Mt. Moon Square +257,9, +258,9,1F +259,9,B1F +260,9,B2F +261,9,B3F +262,9,B4F +263,9,2F +264,9,1F top +265,9,4F +266,9,cave gate +267,9,inside cave +268,9,10F +269,9,outside +270,9,1F +271,9,mountainside +272,9,3F +273,9,top +275,9, +276,9, +277,9, +278,9, +279,9, +280,9, +281,9, +282,9, +283,9, +284,9, +285,9, +286,9, +287,9, +288,9, +289,9, +290,9,1F +291,9,2F +292,9,1F +293,9,B1F +294,9,1F +295,9, +296,9,"south, towards Viridian City" +297,9, +298,9, +299,9, +300,9, +301,9, +302,9, +303,9, +304,9, +305,9, +306,9, +307,9, +308,9, +309,9, +310,9, +311,9, +312,9, +313,9, +314,9, +315,9, +316,9, +317,9, +318,9,2F +319,9,3F +320,9,"north, towards Pewter City" +321,9, +323,9,1F +324,9,2F +325,9,B1F +326,9,B1F +327,9,B2F +328,9,B2F +329,9, +330,9, +331,9,1F +332,9,2F +333,9,3F +334,9,1F +335,9,2F +336,9,3F +337,9,4F +338,9,5F +339,9,6F +340,9,7F +341,9,1F +342,9,2F +343,9,3F +344,9,B1F +345,9,middle +346,9,"Area 1, east" +347,9,"Area 2, north" +348,9,"Area 3, west" +349,9,S.S. Anne dock +350,9, +351,9, +352,9, +353,9, +354,9, +355,9, +356,9, +357,9,back +358,9,B1F +359,9,back/small room +360,9, +361,9,1F +362,9,B1F +363,9,B2F +364,9,1F/small Room +365,9, +366,9, +367,9, +368,9,1F +369,9,2F +370,9,3F +371,9,4F +372,9,5F +373,9,6F +374,9,outside +375,9,summit +376,9, +377,9,entrance +378,9,1F +379,9,B1F +380,9,B2F +381,9,B3F +382,9,1F +383,9,B1F +384,9,B2F +385,9, +386,9,B1F +387,9,Entrance +388,9, +389,9, +390,9,1F +391,9,3F +392,9,5F +393,9, +394,9, +395,9, +396,9, +397,9, +398,9, +399,9, +400,9, +401,9, +402,9, +403,9, +404,9, +405,9, +406,9, +407,9, +408,9, +409,9, +410,9, +411,9, +412,9, +413,9, +414,9, +415,9, +416,9, +417,9,underwater +418,9, +419,9, +420,9,underwater +421,9, +422,9, +423,9, +424,9, +425,9, +426,9, +427,9, +428,9, +429,9,NW/mach bike area +430,9,NE/acro bike area +431,9,SW +432,9,SE +433,9, +434,9, +435,9,expansion south +436,9,expansion north +437,9, +438,9, +439,9, +440,9, +441,9,a +442,9,b +443,9,c +444,9,d +445,9,e +446,9,f +447,9,g +448,9,h +449,9,i +450,9, +451,9, +452,9, +453,9, +454,9, +455,9, +456,9, +457,9, +458,9,1F +459,9,B1F +460,9,B2F +461,9, +462,9, +463,9,1F +464,9,2F +465,9,3F +466,9, +467,9,B1F +468,9,center +469,9,"Area 1, east" +470,9,"Area 2, north" +471,9,"Area 3, west" +472,9,1F +473,9,2F +474,9,B1F +475,9,1F +476,9,B1F +477,9,1F +478,9,B1F +479,9,B2F +480,9,B3F +481,9,B4F +482,9,3F +483,9,4F +484,9,5F +485,9,6F +486,9,7F +487,9, +488,9, +489,9,cave +490,9,inside +491,9,"1F, cave behind team rocket" +492,9,B1F +493,9,B2F +494,9,B3F +495,9, +496,9,entrance +497,9,1F +498,9,B1F +499,9,waterfall +500,9, +501,9,room 1 +502,9,room 2 +503,9,room 3 +504,9,room 4 +505,9,room 5 +506,9,room 6 +507,9,room 7 +508,9,room 8 +509,9,room 9 +510,9,room 10 +511,9,item rooms +512,9, +513,9, +514,9, +515,9, +516,9, +517,9, +518,9, +519,9, +520,9, +521,9, +522,9, +523,9, +524,9, +525,9, +526,9, +527,9, +528,9, +529,9, +530,9, +531,9, +532,9, +533,9, +534,9, +535,9, +536,9, +537,9, +538,9, +539,9, +540,9, +541,9, +542,9, +543,9, +544,9, +545,9, +546,9, +547,9, +548,9, +549,9, +550,9, +551,9, +552,9, +553,9, +554,9, +555,9, +556,9, +557,9, +558,9, +559,9, +560,9, +561,9, +562,9, +563,9, +564,9,a +565,9,b +566,9,c +567,9,d +568,9,e +569,9,f +570,9,g +571,9,h +572,9,i +573,9,1F +574,9,2F +575,9,3F +576,9, +577,9, +578,9, +579,9, +580,9,B1F +581,9,outside +582,9,inside +583,9,entrance +584,9, +585,9,a +586,9,b +587,9,c +588,9,d +589,9, +590,9,1F +591,9,B1F +592,9,B2F +593,9, +594,9,entrance +595,9,outside +596,9,1F +597,9,2F +598,9,outside +599,9,Unknown Area 53 +600,9,Unknown Area 54 +601,9,Unknown Area 55 +602,9,Unknown Area 56 +603,9,Unknown Area 57 +604,9,Unknown Area 58 +605,9,Unknown Area 59 +606,9,Unknown Area 60 +607,9,Unknown Area 61 +608,9,Unknown Area 62 +609,9,Unknown Area 63 +610,9,Unknown Area 64 +611,9,Unknown Area 65 +612,9,Unknown Area 66 +613,9, +614,9,outside +615,9, +616,9,forest +617,9,forest cave +618,9, +619,9, +620,9, +621,9, +622,9, +623,9, +624,9, +625,9, +626,9, +627,9, +628,9, +629,9, +630,9, +631,9, +632,9, +633,9,2F +634,9,3F +635,9,4F +636,9,5F +637,9, +638,9, +639,9, +640,9,1F +641,9,B1F +642,9,B2F +643,9, +644,9,Victory Road gate +645,9, +646,9, +647,9, +648,9, +649,9, +650,9, +651,9, +652,9, +653,9, +654,9, +655,9, +656,9, +657,9, +658,9, +659,9, +660,9,7F +661,9,unknown area 71 +662,9,unknown area 72 +663,9,unknown area 73 +664,9,unknown area 74 +665,9,unknown area 75 +666,9,unknown area 76 +667,9,unknown area 77 +668,9,unknown area 78 +669,9,unknown area 79 +670,9,unknown area 80 +671,9, +672,9,unknown area 38 +673,9,outer +674,9,inner +675,9,outer +676,9,inner +677,9,unknown area 48 +678,9,unknown area 49 +679,9,unknown area 50 +680,9,unknown area 51 +681,9,unknown area 52 +682,9,unknown area 53 +683,9,unknown area 54 +684,9,unknown area 55 +685,9,unknown area 56 +686,9,unknown area 57 +687,9,unknown area 58 +688,9,unknown area 59 +689,9,unknown area 60 +690,9,1F +691,9,B1F +692,9,Castelia Sewers entrance +693,9,Relic Castle entrance +694,9,PWT entrance +695,9, +696,9, +697,9, +698,9, +699,9, +700,9,1F +701,9,B1F +702,9, +703,9, +704,9, +705,9, +706,9, +707,9, diff --git a/data/v2/csv/location_areas.csv b/data/v2/csv/location_areas.csv new file mode 100644 index 00000000..50ac2549 --- /dev/null +++ b/data/v2/csv/location_areas.csv @@ -0,0 +1,664 @@ +id,location_id,game_index,identifier +1,1,1, +2,2,2, +3,3,3, +4,4,4, +5,5,5, +6,6,6,1f +7,6,7,b1f +8,7,8, +9,8,9, +10,9,10, +11,10,11,route-207 +12,10,12,2f +13,10,13,3f +14,10,14,snowfall +15,10,15,blizzard +16,10,16,4f +17,10,17,5f +18,10,18,6f +19,10,19,7f +20,10,20,cave +21,10,21,route-216 +22,10,22,route-211 +23,10,23,b1f +24,11,24,area-1 +25,11,25,area-2 +26,11,26,area-3 +27,11,27,area-4 +28,11,28,area-5 +29,11,29,area-6 +30,12,30,2f +31,12,31,1f +32,12,32,b1f-a +33,12,33,b1f-b +34,12,34,b1f-c +35,12,35,b2f-a +36,12,36,b2f-b +37,12,37,b2f-c +38,12,38,b3f-a +39,12,39,b3f-b +40,12,40,b3f-c +41,12,41,b3f-d +42,12,42,b3f-e +43,12,43,b4f-a +44,12,44,b4f-b +45,12,45,b4f-c +46,12,46,b4f-d +47,12,47,b5f +48,13,48,1f +49,13,49,2f +50,13,50,b1f +51,13,51,inside-b1f +52,13,52,inside +53,13,53,inside-exit +54,14,54, +55,15,55,1f +56,15,56,b1f +57,16,57, +58,16,58,entrance +59,16,59,inside +60,178,60, +61,18,61,pillar-1 +62,18,62,pillar-2 +63,18,63,pillar-3 +64,18,64,before-pillar-1 +70,18,70,between-pillars-1-and-2 +76,18,76,between-pillars-2-and-3 +82,18,82,after-pillar-3 +107,19,107,1f +108,19,108,b1f +109,19,109,b2f +110,19,110,b3f +111,19,111,b4f +112,19,112,b5f +113,20,113,1f +114,20,114,b1f +115,22,115,0-9-different-unown-caught +116,22,116,10-25-different-unown-caught +117,180,117,26-plus-different-unown-caught +118,23,118, +119,24,119, +120,24,120,1f +121,24,121,b1f-left +122,24,122,b1f-right +123,24,123,b2f-right +124,24,124,b2f-left +125,24,125,b3f +126,25,126,entrance +127,25,127,dining-room +128,25,128,2f-private-room +129,25,129,2f +130,25,130,2f-leftmost-room +131,25,131,2f-left-room +132,25,132,2f-middle-room +133,25,133,2f-right-room +134,25,134,2f-rightmost-room +135,26,135,before-galactic-intervention +136,26,136,after-galactic-intervention +137,27,137, +138,28,138, +139,29,139, +140,30,140, +141,31,141, +142,32,142, +143,33,143, +144,34,144,south-towards-jubilife-city +145,34,145,north-towards-floaroma-town +146,35,146,south-towards-floaroma-town +147,35,147,east-towards-eterna-city +148,36,148, +149,37,149, +150,38,150, +151,39,151, +152,40,152,1f +153,40,153,2f +154,40,154,3f +155,40,155,4f +156,40,156,5f +157,41,157,south-towards-solaceon-town +158,41,158,west-towards-celestic-town +159,42,159,west-towards-eterna-city +160,42,160,east-towards-celestic-town +161,43,161,north-towards-hearthome-city +162,43,162,east-towards-pastoria-city +163,44,163, +164,45,164, +165,46,165, +166,47,166, +167,48,167, +168,49,168, +169,50,169, +170,51,170, +171,52,171, +172,53,172, +173,54,173, +174,55,174, +175,56,175, +176,57,176, +177,58,177, +178,59,178, +179,60,179, +180,61,180, +181,62,181, +182,63,182, +183,64,183, +184,84,1, +185,108,2, +186,69,3, +187,110,4, +188,111,5, +189,153,6, +190,138,7,2f +191,138,8,3f +192,112,9, +193,135,10,outside +194,135,11,interior-a +195,135,12,interior-b +196,135,13,interior-c +197,135,14,interior-d +198,141,15,1f +199,141,16,b1f +200,141,17,b2f +201,113,18, +202,137,19,1f +203,137,20,b1f +204,78,21, +205,114,22, +206,115,23, +207,83,24, +208,150,25, +209,116,26, +210,117,27, +211,75,28, +212,66,29,1f +213,66,30,b1f +214,139,31,2f +215,139,32,3f +216,139,33,4f +217,139,34,5f +218,139,35,6f +219,139,36,7f +220,139,37,8f +221,139,38,9f +222,118,39, +223,119,40, +224,85,41, +225,121,42, +226,122,43, +227,156,44,1f +228,156,45,b1f +229,156,46,empty-floor-x +230,156,47,b2f +231,156,48,empty-floor-y +232,156,49,b3f +235,70,52, +236,123,53, +237,81,54,1f +238,81,55,lower-cave +239,81,56,upper-cave +240,81,57,b1f +241,124,58, +242,79,59, +243,125,60, +244,77,61,1f +245,77,62,b1f +246,77,63,b2f +247,77,64,b3f +249,65,66, +250,74,67, +251,126,68, +252,127,69, +253,72,70,violet-city-entrance +254,72,71,blackthorn-city-entrance +255,128,72, +256,80,73,mt-moon-square +257,148,74, +258,136,75,1f +259,136,76,b1f +260,136,77,b2f +261,136,78,b3f +262,136,79,b4f +263,82,80,2f +264,82,81,1f-top +265,82,82,4f +266,128,83,cave-gate +267,128,84,inside-cave +268,139,85,10f +269,82,86,outside +270,82,87,1f +271,82,88,mountainside +272,82,89,3f +273,82,90,top +275,149,92, +276,91,93, +277,98,94, +278,100,95, +279,71,96, +280,154,97, +281,68,98, +282,151,99, +283,67,100, +284,76,101, +285,86,102, +286,129,103, +287,105,104, +288,106,105, +289,107,106, +290,80,107,1f +291,80,108,2f +292,87,109,1f +293,87,110,b1f +294,152,111,1f +295,88,112, +296,99,113,south-towards-viridian-city +297,109,114, +298,120,115, +299,130,116, +300,131,117, +301,132,118, +302,133,119, +303,134,120, +304,89,121, +305,90,122, +306,92,123, +307,93,124, +308,94,125, +309,95,126, +310,96,127, +311,97,128, +312,101,129, +313,102,130, +314,103,131, +315,104,132, +316,140,133, +317,73,134, +318,152,135,2f +319,152,136,3f +320,99,137,north-towards-pewter-city +321,155,138, +323,147,140,1f +324,147,141,2f +325,147,142,b1f +326,80,0,b1f +327,80,0,b2f +328,87,0,b2f +329,157,0, +330,158,0, +331,159,0,1f +332,159,0,2f +333,159,0,3f +334,160,0,1f +335,160,0,2f +336,160,0,3f +337,160,0,4f +338,160,0,5f +339,160,0,6f +340,160,0,7f +341,161,0,1f +342,161,0,2f +343,161,0,3f +344,161,0,b1f +345,162,0,middle +346,162,0,area-1-east +347,162,0,area-2-north +348,162,0,area-3-west +349,151,0,ss-anne-dock +350,429,0, +351,430,1, +352,431,2, +353,432,3, +354,433,4, +355,434,5, +356,435,6, +357,435,7,back +358,435,8,b1f +359,435,9,backsmall-room +360,436,10, +361,437,11,1f +362,437,12,b1f +363,437,13,b2f +364,437,14,1fsmall-room +365,438,15, +366,439,16, +367,440,17, +368,441,18,1f +369,441,19,2f +370,441,20,3f +371,441,21,4f +372,441,22,5f +373,441,23,6f +374,441,24,outside +375,441,25,summit +376,442,26, +377,443,35,entrance +378,443,36,1f +379,443,37,b1f +380,443,38,b2f +381,443,39,b3f +382,444,40,1f +383,444,41,b1f +384,444,42,b2f +385,445,43, +386,445,47,b1f +387,446,48,entrance +388,446,49, +389,447,50, +390,448,52,1f +391,448,53,3f +392,448,54,5f +393,449,55, +394,450,56, +395,451,57, +396,452,58, +397,453,59, +398,454,60, +399,455,61, +400,456,62, +401,457,63, +402,458,64, +403,459,65, +404,460,66, +405,461,67, +406,462,68, +407,463,69, +408,464,70, +409,465,71, +410,466,72, +411,467,73, +412,468,74, +413,469,75, +414,470,76, +415,471,77, +416,472,78, +417,472,95,underwater +418,473,79, +419,474,80, +420,474,96,underwater +421,475,81, +422,476,82, +423,477,83, +424,478,84, +425,479,85, +426,480,86, +427,481,87, +428,482,88, +429,483,89,nwmach-bike-area +430,483,90,neacro-bike-area +431,483,91,sw +432,483,92,se +433,484,93, +434,485,94, +435,483,97,expansion-south +436,483,98,expansion-north +437,486,99, +438,487,107, +439,488,111, +440,489,112, +441,490,114,a +442,490,115,b +443,490,116,c +444,490,117,d +445,490,118,e +446,490,119,f +447,490,120,g +448,490,121,h +449,490,122,i +450,491,0, +451,492,1, +452,493,2, +453,494,3, +454,495,4, +455,496,5, +456,497,6, +457,155,7, +458,80,8,1f +459,80,9,b1f +460,80,10,b2f +461,498,11, +462,73,12, +463,499,13,1f +464,499,14,2f +465,499,15,3f +466,161,16, +467,161,19,b1f +468,162,20,center +469,162,21,area-1-east +470,162,22,area-2-north +471,162,23,area-3-west +472,147,24,1f +473,147,25,2f +474,147,26,b1f +475,87,27,1f +476,87,28,b1f +477,136,29,1f +478,136,30,b1f +479,136,31,b2f +480,136,32,b3f +481,136,33,b4f +482,160,34,3f +483,160,35,4f +484,160,36,5f +485,160,37,6f +486,160,38,7f +487,158,39, +488,500,40, +489,500,41,cave +490,500,42,inside +491,500,44,1f-cave-behind-team-rocket +492,500,45,b1f +493,500,46,b2f +494,500,47,b3f +495,501,50, +496,502,51,entrance +497,502,52,1f +498,502,53,b1f +499,502,54,waterfall +500,503,55, +501,504,56,room-1 +502,504,57,room-2 +503,504,58,room-3 +504,504,59,room-4 +505,504,60,room-5 +506,504,61,room-6 +507,504,62,room-7 +508,504,63,room-8 +509,504,64,room-9 +510,504,65,room-10 +511,504,66,item-rooms +512,505,70, +513,506,71, +514,507,72, +515,508,73, +516,509,74, +517,510,75, +518,511,76, +519,512,77, +520,513,78, +521,514,79, +522,515,80, +523,516,81, +524,517,82, +525,518,83, +526,519,84, +527,520,85, +528,521,86, +529,88,87, +530,99,88, +531,109,89, +532,120,90, +533,130,91, +534,131,92, +535,132,93, +536,133,94, +537,134,95, +538,89,96, +539,90,97, +540,91,98, +541,92,99, +542,93,100, +543,94,101, +544,95,102, +545,96,103, +546,97,104, +547,522,105, +548,523,106, +549,524,107, +550,102,109, +551,157,110, +552,103,111, +553,104,112, +554,86,113, +555,154,114, +556,68,115, +557,151,116, +558,67,117, +559,76,118, +560,71,119, +561,526,120, +562,527,121, +563,528,122, +564,529,123,a +565,529,124,b +566,529,125,c +567,529,126,d +568,529,127,e +569,529,128,f +570,529,129,g +571,529,130,h +572,529,131,i +573,530,13,1f +574,530,14,2f +575,530,15,3f +576,348,0, +577,352,1, +578,354,2, +579,374,3, +580,374,4,b1f +581,375,5,outside +582,375,6,inside +583,376,7,entrance +584,376,8, +585,377,9,a +586,377,11,b +587,377,15,c +588,377,30,d +589,378,40, +590,379,41,1f +591,379,42,b1f +592,379,43,b2f +593,380,44, +594,381,48,entrance +595,381,49,outside +596,381,50,1f +597,381,51,2f +598,382,52,outside +599,382,53,unknown-area-53 +600,382,54,unknown-area-54 +601,382,55,unknown-area-55 +602,382,56,unknown-area-56 +603,382,57,unknown-area-57 +604,382,58,unknown-area-58 +605,382,59,unknown-area-59 +606,382,60,unknown-area-60 +607,382,61,unknown-area-61 +608,382,62,unknown-area-62 +609,382,63,unknown-area-63 +610,382,64,unknown-area-64 +611,382,65,unknown-area-65 +612,382,66,unknown-area-66 +613,415,67, +614,403,68,outside +615,403,69, +616,403,70,forest +617,403,71,forest-cave +618,405,72, +619,413,73, +620,407,74, +621,409,75, +622,410,76, +623,356,77, +624,357,78, +625,358,79, +626,395,80, +627,359,82, +628,360,83, +629,361,84, +630,396,85, +631,416,87, +632,362,88, +633,398,89,2f +634,398,90,3f +635,398,91,4f +636,398,92,5f +637,363,93, +638,399,94, +639,364,95, +640,401,96,1f +641,401,97,b1f +642,401,98,b2f +643,365,99, +644,365,100,victory-road-gate +645,366,101, +646,367,102, +647,368,103, +648,369,104, +649,412,105, +650,370,106, +651,371,107, +652,414,108, +653,373,109, +654,384,110, +655,372,111, +656,350,1, +657,531,3, +658,532,4, +659,533,5, +660,382,31,7f +661,548,71,unknown-area-71 +662,548,72,unknown-area-72 +663,548,73,unknown-area-73 +664,548,74,unknown-area-74 +665,548,75,unknown-area-75 +666,548,76,unknown-area-76 +667,548,77,unknown-area-77 +668,548,78,unknown-area-78 +669,548,79,unknown-area-79 +670,548,80,unknown-area-80 +671,543,37, +672,543,38,unknown-area-38 +673,544,44,outer +674,544,45,inner +675,545,46,outer +676,545,47,inner +677,546,48,unknown-area-48 +678,546,49,unknown-area-49 +679,546,50,unknown-area-50 +680,546,51,unknown-area-51 +681,546,52,unknown-area-52 +682,546,53,unknown-area-53 +683,546,54,unknown-area-54 +684,546,55,unknown-area-55 +685,546,56,unknown-area-56 +686,546,57,unknown-area-57 +687,546,58,unknown-area-58 +688,546,59,unknown-area-59 +689,546,60,unknown-area-60 +690,547,61,1f +691,547,65,b1f +692,550,81,castelia-sewers-entrance +693,550,82,relic-castle-entrance +694,550,83,pwt-entrance +695,551,84, +696,562,87, +697,563,90, +698,564,91, +699,565,92, +700,554,93,1f +701,554,94,b1f +702,560,95, +703,538,128, +704,539,129, +705,541,130, +706,542,131, +707,540,134, diff --git a/data/v2/csv/location_game_indices.csv b/data/v2/csv/location_game_indices.csv new file mode 100644 index 00000000..c307bf00 --- /dev/null +++ b/data/v2/csv/location_game_indices.csv @@ -0,0 +1,477 @@ +location_id,generation_id,game_index +1,4,7 +2,4,9 +3,4,11 +4,4,13 +5,4,15 +6,4,46 +7,4,47 +8,4,48 +9,4,49 +10,4,50 +11,4,52 +12,4,53 +13,4,54 +14,4,57 +15,4,59 +16,4,84 +17,4,75 +18,4,62 +19,4,64 +20,4,65 +22,4,66 +23,4,68 +24,4,69 +25,4,70 +26,4,76 +27,4,77 +28,4,78 +29,4,73 +30,4,74 +31,4,16 +32,4,17 +33,4,18 +34,4,19 +35,4,20 +36,4,21 +37,4,22 +38,4,23 +39,4,24 +41,4,25 +42,4,26 +43,4,27 +44,4,28 +45,4,29 +46,4,30 +47,4,31 +48,4,32 +49,4,33 +50,4,34 +51,4,36 +52,4,37 +53,4,39 +54,4,40 +55,4,42 +56,4,43 +57,4,44 +58,4,1 +59,4,5 +60,4,83 +61,4,35 +62,4,38 +63,4,41 +64,4,45 +65,4,136 +66,4,206 +67,4,144 +68,4,141 +69,4,127 +70,4,130 +71,4,146 +72,4,220 +73,4,197 +74,4,222 +75,4,133 +76,4,145 +77,4,217 +78,4,214 +79,4,135 +80,4,198 +81,4,216 +82,4,137 +83,4,207 +84,4,126 +85,4,132 +86,4,138 +87,4,200 +88,4,149 +89,4,158 +90,4,159 +91,4,160 +92,4,161 +93,4,162 +94,4,163 +95,4,164 +96,4,165 +97,4,166 +98,4,167 +99,4,150 +100,4,168 +101,4,169 +102,4,170 +103,4,172 +104,4,173 +105,4,174 +106,4,175 +107,4,176 +108,4,177 +109,4,151 +110,4,178 +111,4,179 +112,4,180 +113,4,181 +114,4,182 +115,4,183 +116,4,184 +117,4,185 +118,4,186 +119,4,187 +120,4,152 +121,4,188 +122,4,189 +123,4,190 +124,4,191 +125,4,192 +126,4,193 +127,4,194 +128,4,195 +129,4,196 +130,4,153 +131,4,154 +132,4,155 +133,4,156 +134,4,157 +135,4,209 +136,4,203 +137,4,211 +138,4,204 +139,4,205 +140,4,223 +141,4,210 +147,4,199 +151,4,143 +152,4,221 +153,4,128 +154,4,139 +155,4,224 +156,4,218 +157,4,171 +158,4,201 +161,4,106 +162,4,202 +163,4,2 +164,4,3 +165,4,4 +167,4,6 +168,4,8 +169,4,10 +170,4,12 +171,4,14 +172,4,51 +173,4,55 +174,4,56 +175,4,58 +177,4,60 +178,4,61 +179,4,63 +180,4,67 +181,4,71 +182,4,72 +183,4,79 +184,4,80 +185,4,81 +186,4,82 +187,4,85 +188,4,86 +190,4,87 +191,4,88 +192,4,89 +193,4,90 +194,4,91 +195,4,92 +196,4,93 +197,4,94 +198,4,95 +199,4,96 +200,4,97 +201,4,98 +202,4,99 +203,4,100 +204,4,101 +205,4,102 +206,4,103 +207,4,104 +208,4,105 +209,4,107 +210,4,108 +211,4,109 +212,4,110 +213,4,111 +214,4,112 +215,4,113 +216,4,114 +217,4,115 +218,4,116 +219,4,117 +220,4,118 +221,4,119 +222,4,120 +223,4,121 +224,4,122 +225,4,123 +226,4,124 +227,4,125 +228,4,129 +229,4,131 +230,4,134 +231,4,140 +232,4,142 +233,4,147 +234,4,148 +236,4,212 +237,4,213 +238,4,215 +239,4,219 +241,4,225 +242,4,226 +243,4,227 +244,4,228 +245,4,229 +246,4,230 +247,4,231 +248,4,232 +249,4,233 +250,4,234 +252,4,208 +253,4,2000 +254,4,2001 +255,4,2002 +256,4,2003 +257,4,2004 +258,4,2005 +259,4,2006 +260,4,2008 +261,4,2009 +262,4,2010 +263,4,2011 +264,4,2012 +265,4,3000 +266,4,3001 +267,4,3002 +268,4,3003 +269,4,3004 +270,4,3005 +271,4,3006 +272,4,3007 +273,4,3008 +274,4,3009 +275,4,3010 +276,4,3011 +277,4,3012 +278,4,3013 +279,4,3014 +280,4,3015 +281,4,3016 +282,4,3017 +283,4,3018 +284,4,3019 +285,4,3020 +286,4,3021 +287,4,3022 +288,4,3023 +289,4,3024 +290,4,3025 +291,4,3026 +292,4,3027 +293,4,3028 +294,4,3029 +295,4,3030 +296,4,3031 +297,4,3032 +298,4,3033 +299,4,3034 +300,4,3035 +301,4,3036 +302,4,3037 +303,4,3038 +304,4,3039 +305,4,3040 +306,4,3041 +307,4,3042 +308,4,3043 +309,4,3044 +310,4,3045 +311,4,3046 +312,4,3047 +313,4,3048 +314,4,3049 +315,4,3050 +316,4,3051 +317,4,3052 +318,4,3053 +319,4,3054 +320,4,3055 +321,4,3056 +322,4,3057 +323,4,3058 +324,4,3059 +325,4,3060 +326,4,3061 +327,4,3062 +328,4,3063 +329,4,3064 +330,4,3065 +331,4,3066 +332,4,3067 +333,4,3068 +334,4,3069 +335,4,3070 +336,4,3071 +337,4,3072 +338,4,3073 +339,4,3074 +340,4,3075 +341,4,3076 +342,4,2013 +343,4,2014 +344,5,1 +345,5,2 +346,5,4 +346,5,81 +347,5,5 +348,5,6 +349,5,7 +350,5,8 +351,5,9 +351,5,76 +352,5,10 +352,5,77 +353,5,11 +353,5,78 +354,5,12 +354,5,79 +355,5,13 +355,5,80 +356,5,14 +357,5,15 +358,5,16 +359,5,17 +360,5,18 +360,5,93 +361,5,19 +361,5,94 +362,5,20 +362,5,95 +363,5,21 +363,5,96 +364,5,22 +364,5,97 +365,5,23 +366,5,24 +366,5,98 +367,5,25 +367,5,99 +368,5,26 +368,5,100 +369,5,27 +369,5,101 +370,5,28 +370,5,102 +371,5,29 +371,5,103 +372,5,30 +373,5,31 +374,5,32 +375,5,33 +376,5,34 +377,5,35 +378,5,36 +378,5,84 +379,5,37 +379,5,85 +380,5,38 +380,5,86 +381,5,39 +381,5,87 +382,5,40 +383,5,41 +383,5,104 +384,5,42 +384,5,105 +385,5,43 +386,5,44 +387,5,45 +388,5,46 +389,5,47 +390,5,48 +391,5,49 +392,5,50 +392,5,83 +393,5,51 +393,5,82 +394,5,52 +395,5,53 +396,5,54 +397,5,55 +398,5,56 +399,5,57 +400,5,58 +401,5,59 +402,5,60 +403,5,61 +403,5,88 +404,5,62 +405,5,63 +406,5,64 +407,5,65 +407,5,89 +408,5,66 +408,5,90 +409,5,67 +409,5,91 +410,5,68 +410,5,92 +411,5,69 +412,5,70 +413,5,71 +414,5,72 +415,5,73 +416,5,74 +417,5,75 +418,5,106 +419,5,107 +420,5,108 +421,5,109 +422,5,110 +423,5,111 +424,5,112 +425,5,113 +426,5,114 +427,5,115 +428,5,116 +531,5,117 +532,5,118 +533,5,119 +534,5,120 +535,5,121 +536,5,122 +537,5,123 +538,5,124 +539,5,125 +540,5,126 +541,5,127 +542,5,128 +543,5,129 +544,5,130 +545,5,131 +546,5,132 +547,5,133 +548,5,134 +549,5,135 +550,5,136 +551,5,137 +552,5,139 +553,5,140 +554,5,141 +555,5,142 +556,5,143 +557,5,144 +558,5,145 +559,5,146 +560,5,147 +561,5,148 +562,5,149 +563,5,150 +564,5,151 +565,5,152 +566,5,153 diff --git a/data/v2/csv/location_names.csv b/data/v2/csv/location_names.csv new file mode 100644 index 00000000..81a434ae --- /dev/null +++ b/data/v2/csv/location_names.csv @@ -0,0 +1,753 @@ +location_id,local_language_id,name +1,9,Canalave City +2,9,Eterna City +3,9,Pastoria City +4,9,Sunyshore City +5,9,Pokémon League +6,9,Oreburgh Mine +7,9,Valley Windworks +8,9,Eterna Forest +9,9,Fuego Ironworks +10,9,Mt. Coronet +11,9,Great Marsh +12,9,Solaceon Ruins +13,9,Victory Road +14,9,Ravaged Path +15,9,Oreburgh Gate +16,9,Stark Mountain +17,9,Spring Path +18,9,Turnback Cave +19,9,Snowpoint Temple +20,9,Wayward Cave +22,9,Ruin Maniac Cave +23,9,Trophy Garden +24,9,Iron Island +25,9,Old Chateau +26,9,Lake Verity +27,9,Lake Valor +28,9,Lake Acuity +29,9,Valor Lakefront +30,9,Acuity Lakefront +31,9,Route 201 +32,9,Route 202 +33,9,Route 203 +34,9,Route 204 +35,9,Route 205 +36,9,Route 206 +37,9,Route 207 +38,9,Route 208 +39,9,Route 209 +40,9,Lost Tower +41,9,Route 210 +42,9,Route 211 +43,9,Route 212 +44,9,Route 213 +45,9,Route 214 +46,9,Route 215 +47,9,Route 216 +48,9,Route 217 +49,9,Route 218 +50,9,Route 219 +51,9,Route 221 +52,9,Route 222 +53,9,Route 224 +54,9,Route 225 +55,9,Route 227 +56,9,Route 228 +57,9,Route 229 +58,9,Twinleaf Town +59,9,Celestic Town +60,9,Resort Area +61,9,Sea Route 220 +62,9,Sea Route 223 +63,9,Sea Route 226 +64,9,Sea Route 230 +65,9,Blackthorn City +66,9,Burned Tower +67,9,Celadon City +68,9,Cerulean City +69,9,Cherrygrove City +70,9,Cianwood City +71,9,Cinnabar Island +72,9,Dark Cave +73,9,Diglett's Cave +74,9,Dragon's Den +75,9,Ecruteak City +76,9,Fuchsia City +77,9,Ice Path +78,9,Ilex Forest +79,9,Lake of Rage +80,9,Mt. Moon +81,9,Mt. Mortar +82,9,Mt. Silver +83,9,National Park +84,9,New Bark Town +85,9,Olivine City +86,9,Pallet Town +87,9,Rock Tunnel +88,9,Route 1 +89,9,Route 10 +90,9,Route 11 +91,9,Route 12 +92,9,Route 13 +93,9,Route 14 +94,9,Route 15 +95,9,Route 16 +96,9,Route 17 +97,9,Route 18 +98,9,Sea Route 19 +99,9,Route 2 +100,9,Sea Route 20 +101,9,Sea Route 21 +102,9,Route 22 +103,9,Route 24 +104,9,Route 25 +105,9,Route 26 +106,9,Route 27 +107,9,Route 28 +108,9,Route 29 +109,9,Route 3 +110,9,Route 30 +111,9,Route 31 +112,9,Route 32 +113,9,Route 33 +114,9,Route 34 +115,9,Route 35 +116,9,Route 36 +117,9,Route 37 +118,9,Route 38 +119,9,Route 39 +120,9,Route 4 +121,9,Sea Route 40 +122,9,Sea Route 41 +123,9,Route 42 +124,9,Route 43 +125,9,Route 44 +126,9,Route 45 +127,9,Route 46 +128,9,Route 47 +129,9,Route 48 +130,9,Route 5 +131,9,Route 6 +132,9,Route 7 +133,9,Route 8 +134,9,Route 9 +135,9,Ruins of Alph +136,9,Seafoam Islands +137,9,Slowpoke Well +138,9,Sprout Tower +139,9,Bell Tower +140,9,Tohjo Falls +141,9,Union Cave +147,9,Cerulean Cave +148,9,Unknown; all Poliwag +149,9,Unknown; all Rattata +150,9,Unknown; all bugs +151,9,Vermilion City +152,9,Victory Road +153,9,Violet City +154,9,Viridian City +155,9,Viridian Forest +156,9,Whirl Islands +157,9,Route 23 +158,9,Power Plant +159,9,Victory Road +160,9,Pokémon Tower +161,9,Pokémon Mansion +162,9,Safari Zone +163,9,Sandgem Town +164,9,Floaroma Town +165,9,Solaceon Town +167,9,Jubilife City +168,9,Oreburgh City +169,9,Hearthome City +170,9,Veilstone City +171,9,Snowpoint City +172,9,Spear Pillar +173,9,Pal Park +174,9,Amity Square +175,9,Floaroma Meadow +177,9,Fullmoon Island +178,9,Sendoff Spring +179,9,Flower Paradise +180,9,Maniac Tunnel +181,9,Galactic HQ +182,9,Verity Lakefront +183,9,Newmoon Island +184,9,Battle Tower +185,9,Fight Area +186,9,Survival Area +187,9,Seabreak Path +188,9,Hall of Origin +189,9,Hall of Origin +190,9,Verity Cavern +191,9,Valor Cavern +192,9,Acuity Cavern +193,9,Jubilife TV +194,9,Pokétch Co. +195,9,GTS +196,9,Trainers’ School +197,9,Mining Museum +198,9,Flower Shop +199,9,Cycle Shop +200,9,Contest Hall +201,9,Poffin House +202,9,Foreign Building +203,9,Pokémon Day Care +204,9,Veilstone Store +205,9,Game Corner +206,9,Canalave Library +207,9,Vista Lighthouse +208,9,Sunyshore Market +209,9,Footstep House +210,9,Café +211,9,Grand Lake +212,9,Restaurant +213,9,Battle Park +214,9,Battle Frontier +215,9,Battle Factory +216,9,Battle Castle +217,9,Battle Arcade +218,9,Battle Hall +219,9,Distortion World +220,9,Global Terminal +221,9,Villa +222,9,Battleground +223,9,ROTOM's Room +224,9,T.G. Eterna Bldg +225,9,Iron Ruins +226,9,Iceberg Ruins +227,9,Rock Peak Ruins +228,9,Azalea Town +229,9,Goldenrod City +230,9,Mahogany Town +231,9,Pewter City +232,9,Lavender Town +233,9,Indigo Plateau +234,9,Saffron City +236,9,Lighthouse +237,9,Team Rocket HQ +238,9,Goldenrod Tunnel +239,9,Mt. Silver Cave +241,9,Pokéathlon Dome +242,9,S.S. Aqua +243,9,Safari Zone Gate +244,9,Cliff Cave +245,9,Frontier Access +246,9,Bellchime Trail +247,9,Sinjoh Ruins +248,9,Embedded Tower +249,9,Pokéwalker +250,9,Cliff Edge Gate +252,9,Radio Tower +253,9,Day-Care Couple +254,9,Link trade (arrive) +255,9,Link trade (met) +256,9,Kanto +257,9,Johto +258,9,Hoenn +259,9,Sinnoh +260,9,Distant land +261,9,Traveling Man +262,9,Riley +263,9,Cynthia +264,9,Mystery Zone +265,9,Lovely place +266,9,Pokémon Ranger +267,9,Faraway place +268,9,Pokémon Movie +269,9,Pokémon Movie 06 +270,9,Pokémon Movie 07 +271,9,Pokémon Movie 08 +272,9,Pokémon Movie 09 +273,9,Pokémon Movie 10 +274,9,Pokémon Movie 11 +275,9,Pokémon Movie 12 +276,9,Pokémon Movie 13 +277,9,Pokémon Movie 14 +278,9,Pokémon Movie 15 +279,9,Pokémon Movie 16 +280,9,Pokémon Cartoon +281,9,Space World +282,9,Space World 06 +283,9,Space World 07 +284,9,Space World 08 +285,9,Space World 09 +286,9,Space World 10 +287,9,Space World 11 +288,9,Space World 12 +289,9,Space World 13 +290,9,Space World 14 +291,9,Space World 15 +292,9,Space World 16 +293,9,Pokémon Festa +294,9,Pokémon Festa 06 +295,9,Pokémon Festa 07 +296,9,Pokémon Festa 08 +297,9,Pokémon Festa 09 +298,9,Pokémon Festa 10 +299,9,Pokémon Festa 11 +300,9,Pokémon Festa 12 +301,9,Pokémon Festa 13 +302,9,Pokémon Festa 14 +303,9,Pokémon Festa 15 +304,9,Pokémon Festa 16 +305,9,POKéPARK +306,9,POKéPARK 06 +307,9,POKéPARK 07 +308,9,POKéPARK 08 +309,9,POKéPARK 09 +310,9,POKéPARK 10 +311,9,POKéPARK 11 +312,9,POKéPARK 12 +313,9,POKéPARK 13 +314,9,POKéPARK 14 +315,9,POKéPARK 15 +316,9,POKéPARK 16 +317,9,Pokémon Center +318,9,PC Tokyo +319,9,PC Osaka +320,9,PC Fukuoka +321,9,PC Nagoya +322,9,PC Sapporo +323,9,PC Yokohama +324,9,Nintendo World +325,9,Pokémon Event +326,9,Pokémon Event 06 +327,9,Pokémon Event 07 +328,9,Pokémon Event 08 +329,9,Pokémon Event 09 +330,9,Pokémon Event 10 +331,9,Pokémon Event 11 +332,9,Pokémon Event 12 +333,9,Pokémon Event 13 +334,9,Pokémon Event 14 +335,9,Pokémon Event 15 +336,9,Pokémon Event 16 +337,9,Wi-Fi Event +338,9,Wi-Fi Gift +339,9,Pokémon Fan Club +340,9,Event Site +341,9,Concert Event +342,9,Mr. Pokémon +343,9,Primo +344,1,なぞの場所 +344,9,Mystery Zone +345,1,遠い場所 +345,9,Faraway place +346,1,カノコタウン +346,9,Nuvema Town +347,1,カラクサタウン +347,9,Accumula Town +348,1,サンヨウシティ +348,9,Striaton City +349,1,シッポウシティ +349,9,Nacrene City +350,1,ヒウンシティ +350,9,Castelia City +351,1,ライモンシティ +351,9,Nimbasa City +352,1,ホドモエシティ +352,9,Driftveil City +353,1,フキヨセシティ +353,9,Mistralton City +354,1,セッカシティ +354,9,Icirrus City +355,1,ソウリュウシティ +355,9,Opelucid City +356,1,1番道路 +356,9,Route 1 +357,1,2番道路 +357,9,Route 2 +358,1,3番道路 +358,9,Route 3 +359,1,4番道路 +359,9,Route 4 +360,1,5番道路 +360,9,Route 5 +361,1,6番道路 +361,9,Route 6 +362,1,7番道路 +362,9,Route 7 +363,1,8番道路 +363,9,Route 8 +364,1,9番道路 +364,9,Route 9 +365,1,10番道路 +365,9,Route 10 +366,1,11番道路 +366,9,Route 11 +367,1,12番道路 +367,9,Route 12 +368,1,13番道路 +368,9,Route 13 +369,1,14番道路 +369,9,Route 14 +370,1,15番道路 +370,9,Route 15 +371,1,16番道路 +371,9,Route 16 +372,1,17番水道 +372,9,Route 17 +373,1,18番道路 +373,9,Route 18 +374,1,夢の跡地 +374,9,Dreamyard +375,1,ヤグルマの森 +375,9,Pinwheel Forest +376,1,リゾートデザート +376,9,Desert Resort +377,1,古代の城 +377,9,Relic Castle +378,1,冷凍コンテナ +378,9,Cold Storage +379,1,電気石の洞穴 +379,9,Chargestone Cave +380,1,ネジ山 +380,9,Twist Mountain +381,1,リュウラセンの塔 +381,9,Dragonspiral Tower +382,1,チャンピオンロード +382,9,Victory Road +383,1,カゴメタウン +383,9,Lacunosa Town +384,1,サザナミタウン +384,9,Undella Town +385,1,カナワタウン +385,9,Anville Town +386,1,ポケモンリーグ +386,9,Pokémon League +387,1,Nの城 +387,9,N's Castle +388,1,ロイヤルイッシュ号 +388,9,Royal Unova +389,1,ギアステーション +389,9,Gear Station +390,1,バトルサブウェイ +390,9,Battle Subway +391,1,ミュージカルホール +391,9,Musical Theater +392,1,ブラックシティ +392,9,Black City +393,1,ホワイトフォレスト +393,9,White Forest +394,1,ユナイテッドタワー +394,9,Unity Tower +395,1,地下水脈の穴 +395,9,Wellspring Cave +396,1,フキヨセの洞穴 +396,9,Mistralton Cave +397,1,思索の原 +397,9,Rumination Field +398,1,タワーオブヘブン +398,9,Celestial Tower +399,1,セッカの湿原 +399,9,Moor of Icirrus +400,1,ショッピングモール +400,9,Shopping Mall +401,1,修行の岩屋 +401,9,Challenger's Cave +402,1,シフトファクトリー +402,9,Poké Transfer Lab +403,1,ジャイアントホール +403,9,Giant Chasm +404,1,リバティガーデン島 +404,9,Liberty Garden +405,1,P2ラボ +405,9,P2 Laboratory +406,1,スカイアローブリッジ +406,9,Skyarrow Bridge +407,1,ホドモエの跳ね橋 +407,9,Driftveil Drawbridge +408,1,シリンダーブリッジ +408,9,Tubeline Bridge +409,1,ビレッジブリッジ +409,9,Village Bridge +410,1,ワンダーブリッジ +410,9,Marvelous Bridge +411,1,ハイリンク +411,9,Entralink +412,1,ほうじょうの社 +412,9,Abundant Shrine +413,1,サザナミ湾 +413,9,Undella Bay +414,1,迷いの森 +414,9,Lostlorn Forest +415,1,試練の室 +415,9,Trial Chamber +416,1,導の間 +416,9,Guidance Chamber +417,1,ハイリンクの森 +417,9,Entree Forest +418,1,カラクサゲート +418,9,Accumula Gate +419,1,サザナミゲート +419,9,Undella Gate +420,1,シッポウゲート +420,9,Nacrene Gate +421,1,ヒウンゲート +421,9,Castelia Gate +422,1,ライモンゲート +422,9,Nimbasa Gate +423,1,ソウリュウゲート +423,9,Opelucid Gate +424,1,ブラックゲート +424,9,Black Gate +425,1,ホワイトゲート +425,9,White Gate +426,1,ブリッジゲート +426,9,Bridge Gate +427,1,ロードゲート +427,9,Route Gate +428,1,海底遺跡 +428,9,Abyssal Ruins +429,9,Petalburg City +430,9,Slateport City +431,9,Lilycove City +432,9,Mossdeep City +433,9,Sootopolis City +434,9,Ever Grande City +435,9,Meteor Falls +436,9,Rusturf Tunnel +437,9,Granite Cave +438,9,Petalburg Woods +439,9,Jagged Pass +440,9,Fiery Path +441,9,Mt. Pyre +442,9,Seafloor Cavern +443,9,Cave of Origin +444,9,Victory Road +445,9,Shoal Cave +446,9,New Mauville +447,9,Abandoned Ship +448,9,Sky Pillar +449,9,Route 101 +450,9,Route 102 +451,9,Route 103 +452,9,Route 104 +453,9,Route 105 +454,9,Route 106 +455,9,Route 107 +456,9,Route 108 +457,9,Route 109 +458,9,Route 110 +459,9,Route 111 +460,9,Route 112 +461,9,Route 113 +462,9,Route 114 +463,9,Route 115 +464,9,Route 116 +465,9,Route 117 +466,9,Route 118 +467,9,Route 119 +468,9,Route 120 +469,9,Route 121 +470,9,Route 122 +471,9,Route 123 +472,9,Route 124 +473,9,Route 125 +474,9,Route 126 +475,9,Route 127 +476,9,Route 128 +477,9,Route 129 +478,9,Route 130 +479,9,Route 131 +480,9,Route 132 +481,9,Route 133 +482,9,Route 134 +483,9,Safari Zone +484,9,Dewford Town +485,9,Pacifidlog Town +486,9,Magma Hideout +487,9,Mirage Tower +488,9,Desert Underpass +489,9,Artisan Cave +490,9,Altering Cave +491,9,Monean Chamber +492,9,Liptoo Chamber +493,9,Weepth Chamber +494,9,Dilford Chamber +495,9,Scufib Chamber +496,9,Rixy Chamber +497,9,Viapos Chamber +498,9,S.S. Anne +499,9,Victory Road +500,9,Mt. Ember +501,9,Berry Forest +502,9,Icefall Cave +503,9,Pattern Bush +504,9,Lost Cave +505,9,Kindle Road +506,9,Treasure Beach +507,9,Cape Brink +508,9,Bond Bridge +509,9,Three Isle Port +510,9,Resort Gorgeous +511,9,Water Labyrinth +512,9,Five Isle Meadow +513,9,Memorial Pillar +514,9,Outcast Island +515,9,Green Path +516,9,Water Path +517,9,Ruin Valley +518,9,Trainer Tower +519,9,Canyon Entrance +520,9,Sevault Canyon +521,9,Tanoby Ruins +522,9,Route 19 +523,9,Route 20 +524,9,Route 21 +526,9,One Island +527,9,Four Island +528,9,Five Island +529,9,Altering Cave +530,9,Victory Road +531,1,ヒオウギシティ +531,9,Aspertia City +532,1,タチワキシティ +532,9,Virbank City +533,1,セイガイハシティ +533,9,Humilau City +534,1,ポケウッド +534,9,PokéStar Studios +535,1,ジョインアベニュー +535,9,Join Avenue +536,1,サンギタウン +536,9,Floccesy Town +537,1,ヤマジタウン +537,9,Lentimas Town +538,1,19番道路 +538,9,Route 19 +539,1,20番道路 +539,9,Route 20 +540,1,21番水道 +540,9,Route 21 +541,1,22番道路 +541,9,Route 22 +542,1,23番道路 +542,9,Route 23 +543,1,ヒウン下水道 +543,9,Castelia Sewers +544,1,サンギ牧場 +544,9,Floccesy Ranch +545,1,タチワキコンビナート +545,9,Virbank Complex +546,1,リバースマウンテン +546,9,Reversal Mountain +547,1,ストレンジャーハウス +547,9,Strange House +548,1,チャンピオンロード +548,9,Victory Road +549,1,プラズマフリゲート +549,9,Plasma Frigate +550,1,古代の抜け道 +550,9,Relic Passage +551,1,ヤーコンロード +551,9,Clay Tunnel +552,1,白の樹洞 +552,9,White Treehollow +553,1,黒の摩天楼 +553,9,Black Tower +554,1,海辺の洞穴 +554,9,Seaside Cave +555,1,心の空洞 +555,9,Cave of Being +556,1,隠し穴 +556,9,Hidden Grotto +557,1,マリンチューブ +557,9,Marine Tube +558,1,タチワキゲート +558,9,Virbank Gate +559,1,ヒオウギゲート +559,9,Aspertia Gate +560,1,自然保護区 +560,9,Nature Sanctuary +561,1,メダル事務局 +561,9,Medal Secretariat +562,1,地底遺跡 +562,9,Underground Ruins +563,1,岩山の間 +563,9,Rocky Mountain Room +564,1,氷山の間 +564,9,Glacier Room +565,1,鉄の間 +565,9,Iron Room +566,1,誓いの林 +566,9,Pledge Grove +567,9,Littleroot Town +568,9,Oldale Town +569,9,Lavaridge Town +570,9,Fallarbor Town +571,9,Verdanturf Town +572,9,Mauville City +573,9,Rustboro City +574,9,Fortree City +575,9,Underwater +576,9,Mt. Chimney +577,9,Mirage Island +578,9,Southern Island +579,9,Sealed Chamber +580,9,Scorched Slab +581,9,Island Cave +582,9,Desert Ruins +583,9,Ancient Tomb +584,9,Inside of truck +585,9,Secret Base +586,9,Battle Tower +587,9,Vaniville Town +588,9,Aquacorde Town +589,9,Santalune Forest +590,9,Santalune City +591,9,Lumiose City +592,9,Camphrier Town +593,9,Parfum Palace +594,9,Connecting Cave +595,9,Cyllage City +596,9,Ambrette Town +597,9,Glittering Cave +598,9,Geosenge Town +599,9,Reflection Cave +600,9,Shalour City +601,9,Coumarine City +602,9,Sea Spirit's Den +603,9,Kalos Power Plant +604,9,Laverre City +605,9,Poke Ball Factory +606,9,Lost Hotel +607,9,Dendemille Town +608,9,Frost Cavern +609,9,Anistar City +610,9,Couriway Town +611,9,Terminus Cave +612,9,Snowbelle City +613,9,Pokemon Village +614,9,Victory Road +615,9,Chamber of Emptiness +616,9,Pokemon League +617,9,Kiloude City +618,9,Azure Bay +619,9,Battle Chateau +620,9,Battle Maison +621,9,Tower of Mastery +622,9,Route 1 +623,9,Route 2 +624,9,Route 3 +625,9,Route 4 +626,9,Route 5 +627,9,Route 6 +628,9,Route 7 +629,9,Route 8 +630,9,Route 9 +631,9,Route 10 +632,9,Route 11 +633,9,Route 12 +634,9,Route 13 +635,9,Route 14 +636,9,Route 15 +637,9,Route 16 +638,9,Route 17 +639,9,Route 18 +640,9,Route 19 +641,9,Route 20 +642,9,Route 21 +643,9,Route 22 diff --git a/data/v2/csv/locations.csv b/data/v2/csv/locations.csv new file mode 100644 index 00000000..49ee037d --- /dev/null +++ b/data/v2/csv/locations.csv @@ -0,0 +1,632 @@ +id,region_id,identifier +1,4,canalave-city +2,4,eterna-city +3,4,pastoria-city +4,4,sunyshore-city +5,4,sinnoh-pokemon-league +6,4,oreburgh-mine +7,4,valley-windworks +8,4,eterna-forest +9,4,fuego-ironworks +10,4,mt-coronet +11,4,great-marsh +12,4,solaceon-ruins +13,4,sinnoh-victory-road +14,4,ravaged-path +15,4,oreburgh-gate +16,4,stark-mountain +17,4,spring-path +18,4,turnback-cave +19,4,snowpoint-temple +20,4,wayward-cave +22,4,ruin-maniac-cave +23,4,trophy-garden +24,4,iron-island +25,4,old-chateau +26,4,lake-verity +27,4,lake-valor +28,4,lake-acuity +29,4,valor-lakefront +30,4,acuity-lakefront +31,4,sinnoh-route-201 +32,4,sinnoh-route-202 +33,4,sinnoh-route-203 +34,4,sinnoh-route-204 +35,4,sinnoh-route-205 +36,4,sinnoh-route-206 +37,4,sinnoh-route-207 +38,4,sinnoh-route-208 +39,4,sinnoh-route-209 +40,4,lost-tower +41,4,sinnoh-route-210 +42,4,sinnoh-route-211 +43,4,sinnoh-route-212 +44,4,sinnoh-route-213 +45,4,sinnoh-route-214 +46,4,sinnoh-route-215 +47,4,sinnoh-route-216 +48,4,sinnoh-route-217 +49,4,sinnoh-route-218 +50,4,sinnoh-route-219 +51,4,sinnoh-route-221 +52,4,sinnoh-route-222 +53,4,sinnoh-route-224 +54,4,sinnoh-route-225 +55,4,sinnoh-route-227 +56,4,sinnoh-route-228 +57,4,sinnoh-route-229 +58,4,twinleaf-town +59,4,celestic-town +60,4,resort-area +61,4,sinnoh-sea-route-220 +62,4,sinnoh-sea-route-223 +63,4,sinnoh-sea-route-226 +64,4,sinnoh-sea-route-230 +65,2,blackthorn-city +66,2,burned-tower +67,1,celadon-city +68,1,cerulean-city +69,2,cherrygrove-city +70,2,cianwood-city +71,1,cinnabar-island +72,2,dark-cave +73,1,digletts-cave +74,2,dragons-den +75,2,ecruteak-city +76,1,fuchsia-city +77,2,ice-path +78,2,ilex-forest +79,2,lake-of-rage +80,1,mt-moon +81,2,mt-mortar +82,2,mt-silver +83,2,national-park +84,2,new-bark-town +85,2,olivine-city +86,1,pallet-town +87,1,rock-tunnel +88,1,kanto-route-1 +89,1,kanto-route-10 +90,1,kanto-route-11 +91,1,kanto-route-12 +92,1,kanto-route-13 +93,1,kanto-route-14 +94,1,kanto-route-15 +95,1,kanto-route-16 +96,1,kanto-route-17 +97,1,kanto-route-18 +98,1,kanto-sea-route-19 +99,1,kanto-route-2 +100,1,kanto-sea-route-20 +101,1,kanto-sea-route-21 +102,1,kanto-route-22 +103,1,kanto-route-24 +104,1,kanto-route-25 +105,1,kanto-route-26 +106,1,kanto-route-27 +107,1,kanto-route-28 +108,2,johto-route-29 +109,1,kanto-route-3 +110,2,johto-route-30 +111,2,johto-route-31 +112,2,johto-route-32 +113,2,johto-route-33 +114,2,johto-route-34 +115,2,johto-route-35 +116,2,johto-route-36 +117,2,johto-route-37 +118,2,johto-route-38 +119,2,johto-route-39 +120,1,kanto-route-4 +121,2,johto-sea-route-40 +122,2,johto-sea-route-41 +123,2,johto-route-42 +124,2,johto-route-43 +125,2,johto-route-44 +126,2,johto-route-45 +127,2,johto-route-46 +128,2,johto-route-47 +129,2,johto-route-48 +130,1,kanto-route-5 +131,1,kanto-route-6 +132,1,kanto-route-7 +133,1,kanto-route-8 +134,1,kanto-route-9 +135,2,ruins-of-alph +136,1,seafoam-islands +137,2,slowpoke-well +138,2,sprout-tower +139,2,bell-tower +140,2,tohjo-falls +141,2,union-cave +147,1,cerulean-cave +148,2,unknown-all-poliwag +149,2,unknown-all-rattata +150,2,unknown-all-bugs +151,1,vermilion-city +152,1,kanto-victory-road-1 +153,2,violet-city +154,1,viridian-city +155,1,viridian-forest +156,2,whirl-islands +157,1,kanto-route-23 +158,1,power-plant +159,1,kanto-victory-road-2 +160,1,pokemon-tower +161,1,pokemon-mansion +162,1,kanto-safari-zone +163,4,sandgem-town +164,4,floaroma-town +165,4,solaceon-town +167,4,jubilife-city +168,4,oreburgh-city +169,4,hearthome-city +170,4,veilstone-city +171,4,snowpoint-city +172,4,spear-pillar +173,4,pal-park +174,4,amity-square +175,4,floaroma-meadow +177,4,fullmoon-island +178,4,sendoff-spring +179,4,flower-paradise +180,4,maniac-tunnel +181,4,galactic-hq +182,4,verity-lakefront +183,4,newmoon-island +184,4,sinnoh-battle-tower +185,4,fight-area +186,4,survival-area +187,4,seabreak-path +188,4,sinnoh-hall-of-origin-1 +189,4,sinnoh-hall-of-origin-2 +190,4,verity-cavern +191,4,valor-cavern +192,4,acuity-cavern +193,4,jubilife-tv +194,4,poketch-co +195,4,gts +196,4,trainers-school +197,4,mining-museum +198,4,sinnoh-flower-shop +199,4,sinnoh-cycle-shop +200,4,contest-hall +201,4,poffin-house +202,4,sinnoh-foreign-building +203,4,pokemon-day-care +204,4,veilstone-store +205,4,sinnoh-game-corner +206,4,canalave-library +207,4,vista-lighthouse +208,4,sunyshore-market +209,4,footstep-house +210,4,sinnoh-cafe +211,4,grand-lake +212,4,sinnoh-restaurant +213,4,battle-park +214,4,battle-frontier +215,4,battle-factory +216,4,battle-castle +217,4,battle-arcade +218,4,battle-hall +219,4,distortion-world +220,4,sinnoh-global-terminal +221,4,sinnoh-villa +222,4,battleground +223,4,rotoms-room +224,4,tg-eterna-bldg +225,4,iron-ruins +226,4,iceberg-ruins +227,4,rock-peak-ruins +228,2,azalea-town +229,2,goldenrod-city +230,2,mahogany-town +231,2,pewter-city +232,2,lavender-town +233,2,indigo-plateau +234,2,saffron-city +236,2,johto-lighthouse +237,2,team-rocket-hq +238,2,goldenrod-tunnel +239,2,mt-silver-cave +241,2,pokeathlon-dome +242,2,ss-aqua +243,2,safari-zone-gate +244,2,cliff-cave +245,2,frontier-access +246,2,bellchime-trail +247,2,sinjoh-ruins +248,2,embedded-tower +249,2,pokewalker +250,2,cliff-edge-gate +252,2,radio-tower +253,,day-care-couple +254,,link-trade-arrive +255,,link-trade-met +256,,kanto +257,,johto +258,,hoenn +259,,sinnoh +260,,distant-land +261,,traveling-man +262,,riley +263,,cynthia +264,,mystery-zone +265,,lovely-place +266,,pokemon-ranger +267,,faraway-place +268,,pokemon-movie +269,,pokemon-movie-06 +270,,pokemon-movie-07 +271,,pokemon-movie-08 +272,,pokemon-movie-09 +273,,pokemon-movie-10 +274,,pokemon-movie-11 +275,,pokemon-movie-12 +276,,pokemon-movie-13 +277,,pokemon-movie-14 +278,,pokemon-movie-15 +279,,pokemon-movie-16 +280,,pokemon-cartoon +281,,space-world +282,,space-world-06 +283,,space-world-07 +284,,space-world-08 +285,,space-world-09 +286,,space-world-10 +287,,space-world-11 +288,,space-world-12 +289,,space-world-13 +290,,space-world-14 +291,,space-world-15 +292,,space-world-16 +293,,pokemon-festa +294,,pokemon-festa-06 +295,,pokemon-festa-07 +296,,pokemon-festa-08 +297,,pokemon-festa-09 +298,,pokemon-festa-10 +299,,pokemon-festa-11 +300,,pokemon-festa-12 +301,,pokemon-festa-13 +302,,pokemon-festa-14 +303,,pokemon-festa-15 +304,,pokemon-festa-16 +305,,pokepark +306,,pokepark-06 +307,,pokepark-07 +308,,pokepark-08 +309,,pokepark-09 +310,,pokepark-10 +311,,pokepark-11 +312,,pokepark-12 +313,,pokepark-13 +314,,pokepark-14 +315,,pokepark-15 +316,,pokepark-16 +317,,pokemon-center +318,,pc-tokyo +319,,pc-osaka +320,,pc-fukuoka +321,,pc-nagoya +322,,pc-sapporo +323,,pc-yokohama +324,,nintendo-world +325,,pokemon-event +326,,pokemon-event-06 +327,,pokemon-event-07 +328,,pokemon-event-08 +329,,pokemon-event-09 +330,,pokemon-event-10 +331,,pokemon-event-11 +332,,pokemon-event-12 +333,,pokemon-event-13 +334,,pokemon-event-14 +335,,pokemon-event-15 +336,,pokemon-event-16 +337,,wi-fi-event +338,,wi-fi-gift +339,,pokemon-fan-club +340,,event-site +341,,concert-event +342,,mr-pokemon +343,,primo +344,5,unova-mystery-zone +345,5,unova-faraway-place +346,5,nuvema-town +347,5,accumula-town +348,5,striaton-city +349,5,nacrene-city +350,5,castelia-city +351,5,nimbasa-city +352,5,driftveil-city +353,5,mistralton-city +354,5,icirrus-city +355,5,opelucid-city +356,5,unova-route-1 +357,5,unova-route-2 +358,5,unova-route-3 +359,5,unova-route-4 +360,5,unova-route-5 +361,5,unova-route-6 +362,5,unova-route-7 +363,5,unova-route-8 +364,5,unova-route-9 +365,5,unova-route-10 +366,5,unova-route-11 +367,5,unova-route-12 +368,5,unova-route-13 +369,5,unova-route-14 +370,5,unova-route-15 +371,5,unova-route-16 +372,5,unova-route-17 +373,5,unova-route-18 +374,5,dreamyard +375,5,pinwheel-forest +376,5,desert-resort +377,5,relic-castle +378,5,cold-storage +379,5,chargestone-cave +380,5,twist-mountain +381,5,dragonspiral-tower +382,5,unova-victory-road +383,5,lacunosa-town +384,5,undella-town +385,5,anville-town +386,5,unova-pokemon-league +387,5,ns-castle +388,5,royal-unova +389,5,gear-station +390,5,battle-subway +391,5,musical-theater +392,5,black-city +393,5,white-forest +394,5,unity-tower +395,5,wellspring-cave +396,5,mistralton-cave +397,5,rumination-field +398,5,celestial-tower +399,5,moor-of-icirrus +400,5,unova-shopping-mall +401,5,challengers-cave +402,5,poke-transfer-lab +403,5,giant-chasm +404,5,liberty-garden +405,5,p2-laboratory +406,5,skyarrow-bridge +407,5,driftveil-drawbridge +408,5,tubeline-bridge +409,5,village-bridge +410,5,marvelous-bridge +411,5,entralink +412,5,abundant-shrine +413,5,undella-bay +414,5,lostlorn-forest +415,5,trial-chamber +416,5,guidance-chamber +417,5,entree-forest +418,5,accumula-gate +419,5,undella-gate +420,5,nacrene-gate +421,5,castelia-gate +422,5,nimbasa-gate +423,5,opelucid-gate +424,5,black-gate +425,5,white-gate +426,5,bridge-gate +427,5,route-gate +428,5,abyssal-ruins +429,3,petalburg-city +430,3,slateport-city +431,3,lilycove-city +432,3,mossdeep-city +433,3,sootopolis-city +434,3,ever-grande-city +435,3,meteor-falls +436,3,rusturf-tunnel +437,3,granite-cave +438,3,petalburg-woods +439,3,jagged-pass +440,3,fiery-path +441,3,mt-pyre +442,3,seafloor-cavern +443,3,cave-of-origin +444,3,hoenn-victory-road +445,3,shoal-cave +446,3,new-mauville +447,3,abandoned-ship +448,3,sky-pillar +449,3,hoenn-route-101 +450,3,hoenn-route-102 +451,3,hoenn-route-103 +452,3,hoenn-route-104 +453,3,hoenn-route-105 +454,3,hoenn-route-106 +455,3,hoenn-route-107 +456,3,hoenn-route-108 +457,3,hoenn-route-109 +458,3,hoenn-route-110 +459,3,hoenn-route-111 +460,3,hoenn-route-112 +461,3,hoenn-route-113 +462,3,hoenn-route-114 +463,3,hoenn-route-115 +464,3,hoenn-route-116 +465,3,hoenn-route-117 +466,3,hoenn-route-118 +467,3,hoenn-route-119 +468,3,hoenn-route-120 +469,3,hoenn-route-121 +470,3,hoenn-route-122 +471,3,hoenn-route-123 +472,3,hoenn-route-124 +473,3,hoenn-route-125 +474,3,hoenn-route-126 +475,3,hoenn-route-127 +476,3,hoenn-route-128 +477,3,hoenn-route-129 +478,3,hoenn-route-130 +479,3,hoenn-route-131 +480,3,hoenn-route-132 +481,3,hoenn-route-133 +482,3,hoenn-route-134 +483,3,hoenn-safari-zone +484,3,dewford-town +485,3,pacifidlog-town +486,3,magma-hideout +487,3,mirage-tower +488,3,desert-underpass +489,3,artisan-cave +490,3,hoenn-altering-cave +491,1,monean-chamber +492,1,liptoo-chamber +493,1,weepth-chamber +494,1,dilford-chamber +495,1,scufib-chamber +496,1,rixy-chamber +497,1,viapos-chamber +498,1,ss-anne +499,1,kanto-victory-road-3 +500,1,mt-ember +501,1,berry-forest +502,1,icefall-cave +503,1,pattern-bush +504,1,lost-cave +505,1,kindle-road +506,1,treasure-beach +507,1,cape-brink +508,1,bond-bridge +509,1,three-isle-port +510,1,resort-gorgeous +511,1,water-labyrinth +512,1,five-isle-meadow +513,1,memorial-pillar +514,1,outcast-island +515,1,green-path +516,1,water-path +517,1,ruin-valley +518,1,trainer-tower +519,1,canyon-entrance +520,1,sevault-canyon +521,1,tanoby-ruins +522,1,kanto-route-19 +523,1,kanto-route-20 +524,1,kanto-route-21 +526,1,one-island +527,1,four-island +528,1,five-island +529,1,kanto-altering-cave +530,1,kanto-victory-road-4 +531,5,aspertia-city +532,5,virbank-city +533,5,humilau-city +534,5,pokestar-studios +535,5,join-avenue +536,5,floccesy-town +537,5,lentimas-town +538,5,route-19 +539,5,route-20 +540,5,route-21 +541,5,route-22 +542,5,route-23 +543,5,castelia-sewers +544,5,floccesy-ranch +545,5,virbank-complex +546,5,reversal-mountain +547,5,strange-house +548,5,unova-victory-road-2 +549,5,plasma-frigate +550,5,relic-passage +551,5,clay-tunnel +552,5,white-treehollow +553,5,black-tower +554,5,seaside-cave +555,5,cave-of-being +556,5,hidden-grotto +557,5,marine-tube +558,5,virbank-gate +559,5,aspertia-gate +560,5,nature-sanctuary +561,5,medal-secretariat +562,5,underground-ruins +563,5,rocky-mountain-room +564,5,glacier-room +565,5,iron-room +566,5,pledge-grove +567,3,littleroot-town +568,3,oldale-town +569,3,lavaridge-town +570,3,fallarbor-town +571,3,verdanturf-town +572,3,mauville-city +573,3,rustboro-city +574,3,fortree-city +575,3,underwater +576,3,mt-chimney +577,3,mirage-island +578,3,southern-island +579,3,sealed-chamber +580,3,scorched-slab +581,3,island-cave +582,3,desert-ruins +583,3,ancient-tomb +584,3,inside-of-truck +585,3,secret-base +586,3,hoenn-battle-tower +587,6,vaniville-town +588,6,aquacorde-town +589,6,santalune-forest +590,6,santalune-city +591,6,lumiose-city +592,6,camphrier-town +593,6,parfum-palace +594,6,connecting-cave +595,6,cyllage-city +596,6,ambrette-town +597,6,glittering-cave +598,6,geosenge-town +599,6,reflection-cave +600,6,shalour-city +601,6,coumarine-city +602,6,sea-spirits-den +603,6,kalos-power-plant +604,6,laverre-city +605,6,poke-ball-factory +606,6,lost-hotel +607,6,dendemille-town +608,6,frost-cavern +609,6,anistar-city +610,6,couriway-town +611,6,terminus-cave +612,6,snowbelle-city +613,6,pokemon-village +614,6,kalos-victory-road +615,6,chamber-of-emptiness +616,6,pokemon-league +617,6,kiloude-city +618,6,azure-bay +619,6,battle-chateau +620,6,battle-maison +621,6,tower-of-mastery +622,6,kalos-route-1 +623,6,kalos-route-2 +624,6,kalos-route-3 +625,6,kalos-route-4 +626,6,kalos-route-5 +627,6,kalos-route-6 +628,6,kalos-route-7 +629,6,kalos-route-8 +630,6,kalos-route-9 +631,6,kalos-route-10 +632,6,kalos-route-11 +633,6,kalos-route-12 +634,6,kalos-route-13 +635,6,kalos-route-14 +636,6,kalos-route-15 +637,6,kalos-route-16 +638,6,kalos-route-17 +639,6,kalos-route-18 +640,6,kalos-route-19 +641,6,kalos-route-20 +642,6,kalos-route-21 +643,6,kalos-route-22 diff --git a/data/v2/csv/pal_park.csv b/data/v2/csv/pal_park.csv new file mode 100644 index 00000000..40887285 --- /dev/null +++ b/data/v2/csv/pal_park.csv @@ -0,0 +1,494 @@ +species_id,area_id,base_score,rate +1,2,50,30 +2,2,80,10 +3,2,90,3 +4,2,50,30 +5,2,80,10 +6,2,90,3 +7,4,50,30 +8,4,80,10 +9,4,90,3 +10,1,30,50 +11,1,50,30 +12,1,70,20 +13,1,30,50 +14,1,50,30 +15,1,70,20 +16,2,30,50 +17,2,50,30 +18,2,70,20 +19,2,30,50 +20,2,50,30 +21,2,30,50 +22,2,50,30 +23,1,30,50 +24,1,50,30 +25,1,80,10 +26,1,90,3 +27,3,50,30 +28,3,70,20 +29,2,30,50 +30,2,50,30 +31,2,70,20 +32,2,30,50 +33,2,50,30 +34,2,70,20 +35,3,80,10 +36,3,90,3 +37,2,70,20 +38,2,80,10 +39,2,80,10 +40,2,90,3 +41,3,30,50 +42,3,50,30 +43,1,30,50 +44,1,50,30 +45,1,70,20 +46,1,30,50 +47,1,50,30 +48,1,30,50 +49,1,50,30 +50,3,30,50 +51,3,50,30 +52,2,50,30 +53,2,70,20 +54,4,50,30 +55,4,70,20 +56,3,50,30 +57,3,70,20 +58,2,70,20 +59,2,80,10 +60,4,50,30 +61,4,80,10 +62,4,90,3 +63,2,50,30 +64,2,80,10 +65,2,90,3 +66,3,50,30 +67,3,80,10 +68,3,90,3 +69,1,30,50 +70,1,50,30 +71,1,70,20 +72,5,30,50 +73,5,50,30 +74,3,30,50 +75,3,50,30 +76,3,70,20 +77,2,50,30 +78,2,70,20 +79,4,50,30 +80,4,70,20 +81,3,50,30 +82,3,70,20 +83,2,70,20 +84,2,50,30 +85,2,70,20 +86,5,50,30 +87,5,70,20 +88,2,50,30 +89,2,70,20 +90,5,50,30 +91,5,70,20 +92,1,50,30 +93,1,80,10 +94,1,90,3 +95,3,80,10 +96,1,50,30 +97,1,70,20 +98,5,50,30 +99,5,70,20 +100,2,50,30 +101,2,70,20 +102,1,50,30 +103,1,70,20 +104,3,50,30 +105,3,70,20 +106,3,80,10 +107,3,80,10 +108,2,70,20 +109,3,50,30 +110,3,70,20 +111,3,50,30 +112,3,70,20 +113,2,90,3 +114,1,50,30 +115,2,70,20 +116,5,50,30 +117,5,70,20 +118,4,50,30 +119,4,70,20 +120,5,50,30 +121,5,70,20 +122,2,70,20 +123,2,70,20 +124,2,70,20 +125,3,70,20 +126,3,70,20 +127,1,70,20 +128,2,70,20 +129,4,30,50 +130,4,90,3 +131,5,90,3 +132,2,70,20 +133,2,90,3 +134,2,90,3 +135,2,90,3 +136,2,90,3 +137,2,80,10 +138,5,50,30 +139,5,70,20 +140,5,50,30 +141,5,70,20 +142,3,70,20 +143,2,80,10 +144,3,90,3 +145,3,90,3 +146,3,90,3 +147,4,70,20 +148,4,80,10 +149,3,90,3 +150,2,90,3 +151,1,100,1 +152,2,50,30 +153,2,80,10 +154,2,90,3 +155,2,50,30 +156,2,80,10 +157,2,90,3 +158,4,50,30 +159,4,80,10 +160,3,90,3 +161,2,30,50 +162,2,50,30 +163,1,30,50 +164,1,50,30 +165,2,30,50 +166,2,50,30 +167,2,30,50 +168,2,50,30 +169,3,90,3 +170,5,50,30 +171,5,70,20 +172,2,80,10 +173,2,80,10 +174,2,80,10 +175,2,80,10 +176,2,90,3 +177,1,50,30 +178,1,70,20 +179,2,50,30 +180,2,70,20 +181,2,80,10 +182,1,80,10 +183,4,50,30 +184,4,70,20 +185,3,70,20 +186,4,80,10 +187,2,50,30 +188,2,70,20 +189,2,80,10 +190,1,70,20 +191,2,50,30 +192,2,70,20 +193,2,80,10 +194,4,50,30 +195,4,70,20 +196,2,90,3 +197,2,90,3 +198,1,70,20 +199,4,80,10 +200,1,70,20 +201,1,70,20 +202,2,80,10 +203,2,70,20 +204,1,50,30 +205,1,70,20 +206,1,90,3 +207,3,50,30 +208,3,90,3 +209,2,50,30 +210,2,70,20 +211,5,80,10 +212,2,90,3 +213,5,80,10 +214,1,80,10 +215,3,50,30 +216,1,50,30 +217,1,70,20 +218,3,50,30 +219,3,70,20 +220,3,50,30 +221,3,70,20 +222,5,70,20 +223,5,50,30 +224,5,70,20 +225,3,70,20 +226,5,70,20 +227,3,70,20 +228,3,50,30 +229,3,70,20 +230,5,80,10 +231,3,50,30 +232,3,70,20 +233,2,80,10 +234,2,50,30 +235,2,80,10 +236,3,80,10 +237,3,80,10 +238,2,80,10 +239,3,80,10 +240,3,80,10 +241,2,70,20 +242,2,90,3 +243,3,90,3 +244,3,90,3 +245,3,90,3 +246,3,70,20 +247,3,80,10 +248,3,90,3 +249,3,90,3 +250,3,90,3 +251,1,100,1 +252,1,50,30 +253,1,80,10 +254,1,90,3 +255,2,50,30 +256,2,80,10 +257,2,90,3 +258,4,50,30 +259,4,80,10 +260,4,90,3 +261,2,30,50 +262,2,50,30 +263,2,30,50 +264,2,50,30 +265,1,30,50 +266,1,50,30 +267,1,70,20 +268,1,50,30 +269,1,70,20 +270,4,30,50 +271,4,50,30 +272,4,80,10 +273,1,30,50 +274,1,50,30 +275,1,80,10 +276,2,30,50 +277,2,50,30 +278,5,30,50 +279,5,50,30 +280,2,50,30 +281,2,70,20 +282,2,80,10 +283,4,50,30 +284,4,70,20 +285,1,50,30 +286,1,70,20 +287,1,50,30 +288,1,70,20 +289,1,80,10 +290,1,50,30 +291,1,70,20 +292,1,80,10 +293,3,50,30 +294,3,70,20 +295,3,80,10 +296,3,50,30 +297,3,70,20 +298,4,80,10 +299,3,70,20 +300,2,50,30 +301,2,70,20 +302,3,70,20 +303,3,70,20 +304,3,50,30 +305,3,70,20 +306,3,80,10 +307,3,50,30 +308,3,70,20 +309,2,50,30 +310,2,70,20 +311,2,90,3 +312,2,90,3 +313,3,70,20 +314,3,70,20 +315,2,70,20 +316,1,50,30 +317,1,70,20 +318,5,50,30 +319,5,70,20 +320,5,50,30 +321,5,80,10 +322,3,50,30 +323,3,70,20 +324,3,70,20 +325,2,50,30 +326,2,70,20 +327,2,50,30 +328,3,50,30 +329,3,70,20 +330,3,80,10 +331,3,50,30 +332,3,70,20 +333,2,50,30 +334,2,80,10 +335,2,70,20 +336,1,70,20 +337,3,70,20 +338,3,70,20 +339,4,50,30 +340,4,70,20 +341,4,50,30 +342,4,70,20 +343,3,50,30 +344,3,70,20 +345,5,70,20 +346,5,80,10 +347,5,70,20 +348,5,80,10 +349,5,70,20 +350,5,90,3 +351,2,80,10 +352,1,70,20 +353,1,50,30 +354,1,70,20 +355,1,50,30 +356,1,70,20 +357,1,70,20 +358,3,80,10 +359,3,80,10 +360,2,80,10 +361,3,50,30 +362,3,70,20 +363,5,50,30 +364,5,70,20 +365,5,80,10 +366,5,50,30 +367,5,80,10 +368,5,80,10 +369,5,80,10 +370,5,50,30 +371,3,50,30 +372,3,70,20 +373,3,80,10 +374,3,70,20 +375,3,80,10 +376,3,90,3 +377,3,90,3 +378,3,90,3 +379,3,90,3 +380,2,90,3 +381,2,90,3 +382,5,90,3 +383,3,90,3 +384,2,90,3 +385,3,100,1 +386,3,100,1 +387,1,50,30 +388,1,80,10 +389,1,90,3 +390,2,50,30 +391,2,80,10 +392,2,90,3 +393,4,50,30 +394,4,80,10 +395,4,90,3 +396,2,30,50 +397,2,50,30 +398,2,70,20 +399,2,30,50 +400,2,50,30 +401,1,50,30 +402,1,70,20 +403,2,50,30 +404,2,70,20 +405,2,80,10 +406,2,80,10 +407,2,80,10 +408,3,70,20 +409,3,80,10 +410,3,70,20 +411,3,80,10 +412,1,50,30 +413,1,70,20 +414,1,70,20 +415,1,50,30 +416,1,70,20 +417,1,50,30 +418,1,70,20 +419,3,70,20 +420,3,80,10 +421,2,90,3 +422,5,50,30 +423,5,70,20 +424,4,50,30 +425,4,70,20 +426,1,80,10 +427,2,50,30 +428,2,70,20 +429,1,80,10 +430,1,80,10 +431,2,50,30 +432,2,70,20 +433,2,70,20 +434,3,80,10 +435,3,50,30 +436,3,70,20 +437,3,80,10 +438,2,90,3 +439,2,90,3 +440,2,50,30 +441,2,70,20 +442,2,80,10 +443,3,50,30 +444,3,70,20 +445,4,50,30 +446,4,70,20 +447,2,70,20 +448,2,50,30 +449,2,70,20 +450,5,80,10 +451,5,50,30 +452,5,70,20 +453,1,90,3 +454,3,50,30 +455,3,70,20 +456,3,80,10 +457,3,90,3 +458,3,90,3 +459,3,50,30 +460,3,70,20 +461,3,80,10 +462,3,80,10 +463,2,80,10 +464,3,80,10 +465,1,80,10 +466,3,80,10 +467,3,80,10 +468,2,80,10 +469,2,80,10 +470,2,90,3 +471,2,90,3 +472,3,80,10 +473,3,80,10 +474,2,80,10 +475,2,80,10 +476,3,80,10 +477,1,80,10 +478,3,80,10 +479,2,90,3 +480,2,90,3 +481,2,90,3 +482,2,90,3 +483,3,90,3 +484,3,90,3 +485,3,90,3 +486,3,90,3 +487,3,90,3 +488,1,90,3 +489,5,90,3 +490,5,100,1 +491,3,100,1 +492,2,100,1 +493,3,100,1 diff --git a/data/v2/csv/pal_park_area_names.csv b/data/v2/csv/pal_park_area_names.csv new file mode 100644 index 00000000..c0dfd977 --- /dev/null +++ b/data/v2/csv/pal_park_area_names.csv @@ -0,0 +1,6 @@ +pal_park_area_id,local_language_id,name +1,9,Forest +2,9,Field +3,9,Mountain +4,9,Pond +5,9,Sea diff --git a/data/v2/csv/pal_park_areas.csv b/data/v2/csv/pal_park_areas.csv new file mode 100644 index 00000000..a600f39b --- /dev/null +++ b/data/v2/csv/pal_park_areas.csv @@ -0,0 +1,6 @@ +id,identifier +1,forest +2,field +3,mountain +4,pond +5,sea diff --git a/data/v2/csv/pokeathlon_stat_names.csv b/data/v2/csv/pokeathlon_stat_names.csv new file mode 100644 index 00000000..4f47d7e2 --- /dev/null +++ b/data/v2/csv/pokeathlon_stat_names.csv @@ -0,0 +1,6 @@ +pokeathlon_stat_id,local_language_id,name +1,9,Speed +2,9,Power +3,9,Skill +4,9,Stamina +5,9,Jump diff --git a/data/v2/csv/pokeathlon_stats.csv b/data/v2/csv/pokeathlon_stats.csv new file mode 100644 index 00000000..6cbe18ec --- /dev/null +++ b/data/v2/csv/pokeathlon_stats.csv @@ -0,0 +1,6 @@ +id,identifier +1,speed +2,power +3,skill +4,stamina +5,jump diff --git a/data/v2/csv/region_names.csv b/data/v2/csv/region_names.csv new file mode 100644 index 00000000..fe0926e8 --- /dev/null +++ b/data/v2/csv/region_names.csv @@ -0,0 +1,13 @@ +region_id,local_language_id,name +1,6,Kanto +1,9,Kanto +2,6,Johto +2,9,Johto +3,6,Hoenn +3,9,Hoenn +4,6,Sinnoh +4,9,Sinnoh +5,6,Einall +5,9,Unova +6,6,Kalos +6,9,Kalos diff --git a/data/v2/csv/regions.csv b/data/v2/csv/regions.csv new file mode 100644 index 00000000..b30a5585 --- /dev/null +++ b/data/v2/csv/regions.csv @@ -0,0 +1,7 @@ +id,identifier +1,kanto +2,johto +3,hoenn +4,sinnoh +5,unova +6,kalos diff --git a/data/v2/csv/super_contest_combos.csv b/data/v2/csv/super_contest_combos.csv new file mode 100644 index 00000000..5d087420 --- /dev/null +++ b/data/v2/csv/super_contest_combos.csv @@ -0,0 +1,7 @@ +first_move_id,second_move_id +74,345 +96,136 +111,205 +116,400 +244,56 +268,422 diff --git a/data/v2/csv/super_contest_effect_prose.csv b/data/v2/csv/super_contest_effect_prose.csv new file mode 100644 index 00000000..37153230 --- /dev/null +++ b/data/v2/csv/super_contest_effect_prose.csv @@ -0,0 +1,23 @@ +super_contest_effect_id,local_language_id,flavor_text +1,9,Enables the user to perform first in the next turn. +2,9,Enables the user to perform last in the next turn. +4,9,Earn +2 if the Judge's Voltage goes up. +5,9,A basic performance using a move known by the Pokémon. +6,9,Earn +3 if no other Pokémon has chosen the same Judge. +7,9,Allows performance of the same move twice in a row. +8,9,Increased Voltage is added to the performance score. +9,9,Earn +15 if all the Pokémon choose the same Judge. +10,9,Lowers the Voltage of all Judges by one each. +11,9,Earn double the score in the next turn. +12,9,Steals the Voltage of the Pokémon that just went. +13,9,Prevents the Voltage from going up in the same turn. +14,9,Makes the order of contestants random in the next turn. +15,9,Earns double the score on the final performance. +16,9,Raises the score if the Voltage is low. +17,9,Earn +2 if the Pokémon performs first in the turn. +18,9,Earn +2 if the Pokémon performs last in the turn. +19,9,Prevents the Voltage from going down in the same turn. +20,9,Earn +3 if two Pokémon raise the Voltage in a row. +21,9,Earn a higher score the later the Pokémon performs. +22,9,Earn +3 if the Pokémon that just went hit max Voltage. +23,9,Earn +3 if the Pokémon gets the lowest score. diff --git a/data/v2/csv/super_contest_effects.csv b/data/v2/csv/super_contest_effects.csv new file mode 100644 index 00000000..7b6bbf38 --- /dev/null +++ b/data/v2/csv/super_contest_effects.csv @@ -0,0 +1,23 @@ +id,appeal +1,2 +2,2 +4,2 +5,3 +6,1 +7,2 +8,0 +9,0 +10,2 +11,0 +12,0 +13,2 +14,2 +15,2 +16,0 +17,2 +18,2 +19,2 +20,1 +21,0 +22,2 +23,1 diff --git a/pokemon_v2/admin.py b/pokemon_v2/admin.py index 43ce68d7..92f60d40 100644 --- a/pokemon_v2/admin.py +++ b/pokemon_v2/admin.py @@ -10,12 +10,33 @@ admin.site.register(AbilityFlavorText) admin.site.register(AbilityChange) admin.site.register(AbilityChangeDescription) +admin.site.register(Berry) +admin.site.register(BerryFirmness) +admin.site.register(BerryFirmnessName) +admin.site.register(BerryFlavor) + admin.site.register(Characteristic) admin.site.register(CharacteristicDescription) +admin.site.register(ContestCombo) +admin.site.register(ContestEffectDescription) +admin.site.register(ContestEffect) +admin.site.register(ContestType) +admin.site.register(ContestTypeName) + admin.site.register(EggGroup) admin.site.register(EggGroupName) +admin.site.register(EncounterCondition) +admin.site.register(EncounterConditionValue) +admin.site.register(EncounterConditionName) +admin.site.register(EncounterConditionValueName) +admin.site.register(EncounterConditionValueMap) +admin.site.register(EncounterMethod) +admin.site.register(EncounterMethodName) +admin.site.register(EncounterSlot) +admin.site.register(Encounter) + admin.site.register(EvolutionChain) admin.site.register(EvolutionTrigger) admin.site.register(EvolutionTriggerName) @@ -30,9 +51,31 @@ admin.site.register(GenerationName) admin.site.register(GrowthRate) admin.site.register(GrowthRateDescription) +admin.site.register(ItemCategory) +admin.site.register(ItemCategoryName) +admin.site.register(ItemFlag) +admin.site.register(ItemFlagMap) +admin.site.register(ItemFlagDescription) +admin.site.register(ItemFlavorText) +admin.site.register(ItemFlingEffect) +admin.site.register(ItemFlingEffectDescription) +admin.site.register(ItemGameIndex) +admin.site.register(ItemName) +admin.site.register(ItemPocketName) +admin.site.register(ItemPocket) +admin.site.register(ItemDescription) +admin.site.register(Item) + admin.site.register(Language) admin.site.register(LanguageName) +admin.site.register(LocationAreaEncounterRate) +admin.site.register(LocationAreaName) +admin.site.register(LocationArea) +admin.site.register(LocationGameIndex) +admin.site.register(LocationName) +admin.site.register(Location) + admin.site.register(Machine) admin.site.register(MoveBattleStyle) @@ -64,6 +107,13 @@ admin.site.register(NatureName) admin.site.register(NaturePokeathlonStat) admin.site.register(Nature) +admin.site.register(PalParkArea) +admin.site.register(PalParkAreaName) +admin.site.register(PalPark) + +admin.site.register(PokeathlonStatName) +admin.site.register(PokeathlonStat) + admin.site.register(Pokedex) admin.site.register(PokedexVersionGroup) admin.site.register(PokedexDescription) @@ -94,9 +144,16 @@ admin.site.register(PokemonSpeciesFlavorText) admin.site.register(PokemonStat) admin.site.register(PokemonType) +admin.site.register(Region) +admin.site.register(RegionName) + admin.site.register(StatName) admin.site.register(Stat) +admin.site.register(SuperContestEffect) +admin.site.register(SuperContestCombo) +admin.site.register(SuperContestEffectDescription) + admin.site.register(Type) admin.site.register(TypeName) admin.site.register(TypeGameIndex) diff --git a/pokemon_v2/migrations/0001_squashed_0020_machine.py b/pokemon_v2/migrations/0001_squashed_0013_auto_20150420_0114.py similarity index 70% rename from pokemon_v2/migrations/0001_squashed_0020_machine.py rename to pokemon_v2/migrations/0001_squashed_0013_auto_20150420_0114.py index 0a1a1b3b..346797a2 100644 --- a/pokemon_v2/migrations/0001_squashed_0020_machine.py +++ b/pokemon_v2/migrations/0001_squashed_0013_auto_20150420_0114.py @@ -6,8 +6,6 @@ from django.db import models, migrations class Migration(migrations.Migration): - replaces = [(b'pokemon_v2', '0001_squashed_0021_auto_20150409_0453'), (b'pokemon_v2', '0002_auto_20150412_1636'), (b'pokemon_v2', '0003_auto_20150412_1705'), (b'pokemon_v2', '0004_auto_20150412_1715'), (b'pokemon_v2', '0005_auto_20150412_1721'), (b'pokemon_v2', '0006_auto_20150412_1808'), (b'pokemon_v2', '0007_auto_20150412_1809'), (b'pokemon_v2', '0008_auto_20150412_1810'), (b'pokemon_v2', '0009_auto_20150412_1814'), (b'pokemon_v2', '0010_auto_20150412_1818'), (b'pokemon_v2', '0011_auto_20150412_1820'), (b'pokemon_v2', '0012_auto_20150412_1821'), (b'pokemon_v2', '0013_auto_20150412_1822'), (b'pokemon_v2', '0014_auto_20150412_1823'), (b'pokemon_v2', '0015_auto_20150412_1825'), (b'pokemon_v2', '0016_auto_20150412_1827'), (b'pokemon_v2', '0017_auto_20150412_1828'), (b'pokemon_v2', '0018_auto_20150412_1833'), (b'pokemon_v2', '0019_auto_20150412_1837'), (b'pokemon_v2', '0020_machine')] - dependencies = [ ] @@ -82,7 +80,6 @@ class Migration(migrations.Migration): ('short_effect', models.CharField(max_length=300)), ('effect', models.CharField(max_length=4000)), ('ability', models.ForeignKey(blank=True, to='pokemon_v2.Ability', null=True)), - ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), ], options={ 'abstract': False, @@ -155,7 +152,6 @@ class Migration(migrations.Migration): name='VersionGroupRegion', fields=[ ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), - ('region_id', models.IntegerField()), ('version_group', models.ForeignKey(blank=True, to='pokemon_v2.VersionGroup', null=True)), ], options={ @@ -347,7 +343,6 @@ class Migration(migrations.Migration): ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), ('max_change', models.IntegerField()), ('nature', models.ForeignKey(blank=True, to='pokemon_v2.Nature', null=True)), - ('pokeathlon_stat_id', models.ForeignKey(blank=True, to='pokemon_v2.Stat', null=True)), ], options={ 'abstract': False, @@ -537,7 +532,7 @@ class Migration(migrations.Migration): name='MoveEffectChangeDescription', fields=[ ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), - ('effect', models.CharField(max_length=2000)), + ('effect', models.CharField(max_length=4000)), ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), ('move_effect_change', models.ForeignKey(blank=True, to='pokemon_v2.MoveEffectChange', null=True)), ], @@ -1231,7 +1226,7 @@ class Migration(migrations.Migration): name='AbilityChangeDescription', fields=[ ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), - ('effect', models.CharField(max_length=1000)), + ('effect', models.CharField(max_length=4000)), ('ability_change', models.ForeignKey(blank=True, to='pokemon_v2.AbilityChange', null=True)), ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), ], @@ -1522,7 +1517,6 @@ class Migration(migrations.Migration): name='PokemonItem', fields=[ ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), - ('item_id', models.IntegerField()), ('rarity', models.IntegerField()), ('pokemon', models.ForeignKey(blank=True, to='pokemon_v2.Pokemon', null=True)), ('version', models.ForeignKey(blank=True, to='pokemon_v2.Version', null=True)), @@ -1785,11 +1779,9 @@ class Migration(migrations.Migration): old_name='baby_evolution_item', new_name='baby_evolution_item_id', ), - migrations.AlterField( + migrations.RemoveField( model_name='evolutionchain', name='baby_evolution_item_id', - field=models.IntegerField(null=True, blank=True), - preserve_default=True, ), migrations.AlterField( model_name='abilityflavortext', @@ -1812,17 +1804,13 @@ class Migration(migrations.Migration): old_name='held_item', new_name='held_item_id', ), - migrations.AlterField( + migrations.RemoveField( model_name='pokemonevolution', name='evolution_item_id', - field=models.IntegerField(null=True, blank=True), - preserve_default=True, ), - migrations.AlterField( + migrations.RemoveField( model_name='pokemonevolution', name='held_item_id', - field=models.IntegerField(null=True, blank=True), - preserve_default=True, ), migrations.AlterField( model_name='pokemonevolution', @@ -1923,7 +1911,6 @@ class Migration(migrations.Migration): fields=[ ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), ('machine_number', models.IntegerField()), - ('item_id', models.IntegerField()), ('growth_rate', models.ForeignKey(blank=True, to='pokemon_v2.GrowthRate', null=True)), ('move', models.ForeignKey(blank=True, to='pokemon_v2.Move', null=True)), ('version_group', models.ForeignKey(blank=True, to='pokemon_v2.VersionGroup', null=True)), @@ -1933,4 +1920,754 @@ class Migration(migrations.Migration): }, bases=(models.Model,), ), + migrations.CreateModel( + name='Item', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('cost', models.IntegerField(null=True, blank=True)), + ('fling_power', models.IntegerField(null=True, blank=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ItemCategory', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ItemCategoryName', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('item_category', models.ForeignKey(blank=True, to='pokemon_v2.ItemCategory', null=True)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ItemDescription', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('effect', models.CharField(max_length=4000)), + ('short_effect', models.CharField(max_length=300)), + ('item', models.ForeignKey(blank=True, to='pokemon_v2.Item', null=True)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ItemFlag', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ItemFlagDescription', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('description', models.CharField(default='', max_length=1000)), + ('name', models.CharField(max_length=100)), + ('item_flag', models.ForeignKey(blank=True, to='pokemon_v2.ItemFlag', null=True)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ItemFlagMap', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('item', models.ForeignKey(blank=True, to='pokemon_v2.Item', null=True)), + ('item_flag', models.ForeignKey(blank=True, to='pokemon_v2.ItemFlag', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ItemFlavorText', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('flavor_text', models.CharField(max_length=500)), + ('item', models.ForeignKey(blank=True, to='pokemon_v2.Item', null=True)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ('version_group', models.ForeignKey(blank=True, to='pokemon_v2.VersionGroup', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ItemFlingEffect', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ], + options={ + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ItemFlingEffectDescription', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('effect', models.CharField(max_length=4000)), + ('item_fling_effect', models.ForeignKey(blank=True, to='pokemon_v2.ItemFlingEffect', null=True)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ItemGameIndex', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('game_index', models.IntegerField()), + ('generation', models.ForeignKey(blank=True, to='pokemon_v2.Generation', null=True)), + ('item', models.ForeignKey(blank=True, to='pokemon_v2.Item', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ItemName', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('item', models.ForeignKey(blank=True, to='pokemon_v2.Item', null=True)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ItemPocket', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ItemPocketName', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('item_pocket', models.ForeignKey(blank=True, to='pokemon_v2.ItemPocket', null=True)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.AddField( + model_name='itemcategory', + name='item_pocket', + field=models.ForeignKey(blank=True, to='pokemon_v2.ItemPocket', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='item', + name='item_category', + field=models.ForeignKey(blank=True, to='pokemon_v2.ItemCategory', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='item', + name='item_fling_effect', + field=models.ForeignKey(blank=True, to='pokemon_v2.ItemFlingEffect', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='evolutionchain', + name='baby_evolution_item', + field=models.ForeignKey(blank=True, to='pokemon_v2.Item', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='machine', + name='item', + field=models.ForeignKey(blank=True, to='pokemon_v2.Item', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='pokemonevolution', + name='evolution_item', + field=models.ForeignKey(related_name='evolution_item', blank=True, to='pokemon_v2.Item', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='pokemonevolution', + name='held_item', + field=models.ForeignKey(related_name='held_item', blank=True, to='pokemon_v2.Item', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='pokemonitem', + name='item', + field=models.ForeignKey(blank=True, to='pokemon_v2.Item', null=True), + preserve_default=True, + ), + migrations.CreateModel( + name='Berry', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('natural_gift_power', models.IntegerField()), + ('size', models.IntegerField()), + ('max_harvest', models.IntegerField()), + ('growth_time', models.IntegerField()), + ('soil_dryness', models.IntegerField()), + ('smoothness', models.IntegerField()), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='BerryFirmness', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='BerryFirmnessName', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('berry_firmness', models.ForeignKey(blank=True, to='pokemon_v2.BerryFirmness', null=True)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='BerryFlavor', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('flavor', models.IntegerField()), + ('berry', models.ForeignKey(blank=True, to='pokemon_v2.Berry', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ContestCombo', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('first_move', models.ForeignKey(related_name='first_move', blank=True, to='pokemon_v2.Move', null=True)), + ('second_move', models.ForeignKey(related_name='second_move', blank=True, to='pokemon_v2.Move', null=True)), + ], + options={ + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ContestEffect', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('appeal', models.IntegerField()), + ('jam', models.IntegerField()), + ], + options={ + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ContestEffectDescription', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('effect', models.CharField(max_length=4000)), + ('flavor_text', models.CharField(max_length=500)), + ('contest_effect', models.ForeignKey(blank=True, to='pokemon_v2.ContestEffect', null=True)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ContestType', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='ContestTypeName', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('flavor', models.CharField(max_length=10)), + ('color', models.CharField(max_length=10)), + ('contest_type', models.ForeignKey(blank=True, to='pokemon_v2.ContestType', null=True)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.AddField( + model_name='berryflavor', + name='contest_type', + field=models.ForeignKey(blank=True, to='pokemon_v2.ContestType', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='berry', + name='berry_firmness', + field=models.ForeignKey(blank=True, to='pokemon_v2.BerryFirmness', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='berry', + name='item', + field=models.ForeignKey(blank=True, to='pokemon_v2.Item', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='berry', + name='nature', + field=models.ForeignKey(blank=True, to='pokemon_v2.Nature', null=True), + preserve_default=True, + ), + migrations.AlterField( + model_name='nature', + name='hates_flavor_id', + field=models.ForeignKey(related_name='hates_flavor', blank=True, to='pokemon_v2.BerryFlavor', null=True), + preserve_default=True, + ), + migrations.AlterField( + model_name='nature', + name='likes_flavor_id', + field=models.ForeignKey(related_name='likes_flavor', blank=True, to='pokemon_v2.BerryFlavor', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='abilitydescription', + name='language', + field=models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True), + preserve_default=True, + ), + migrations.CreateModel( + name='Region', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='RegionName', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ('region', models.ForeignKey(blank=True, to='pokemon_v2.Region', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.RemoveField( + model_name='generation', + name='main_region_id', + ), + migrations.RemoveField( + model_name='pokedex', + name='region_id', + ), + migrations.AddField( + model_name='generation', + name='region', + field=models.ForeignKey(blank=True, to='pokemon_v2.Region', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='pokedex', + name='region', + field=models.ForeignKey(blank=True, to='pokemon_v2.Region', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='versiongroupregion', + name='region', + field=models.ForeignKey(blank=True, to='pokemon_v2.Region', null=True), + preserve_default=True, + ), + migrations.CreateModel( + name='Location', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('region', models.ForeignKey(blank=True, to='pokemon_v2.Region', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='LocationArea', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('game_index', models.IntegerField()), + ('name', models.CharField(max_length=100)), + ('location', models.ForeignKey(blank=True, to='pokemon_v2.Location', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='LocationAreaEncounterRate', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('rate', models.IntegerField()), + ('location_area', models.ForeignKey(blank=True, to='pokemon_v2.LocationArea', null=True)), + ('version', models.ForeignKey(blank=True, to='pokemon_v2.Version', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='LocationAreaName', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ('location_area', models.ForeignKey(blank=True, to='pokemon_v2.LocationArea', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='LocationGameIndex', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('game_index', models.IntegerField()), + ('generation', models.ForeignKey(blank=True, to='pokemon_v2.Generation', null=True)), + ('location', models.ForeignKey(blank=True, to='pokemon_v2.Location', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='LocationName', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ('location', models.ForeignKey(blank=True, to='pokemon_v2.Location', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='Encounter', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('min_level', models.IntegerField()), + ('max_level', models.IntegerField()), + ('location_area', models.ForeignKey(blank=True, to='pokemon_v2.LocationArea', null=True)), + ('pokemon', models.ForeignKey(blank=True, to='pokemon_v2.Pokemon', null=True)), + ('version', models.ForeignKey(blank=True, to='pokemon_v2.Version', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='EncounterCondition', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='EncounterConditionName', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('encounter_condition', models.ForeignKey(blank=True, to='pokemon_v2.EncounterCondition', null=True)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='EncounterConditionValue', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('is_default', models.BooleanField(default=False)), + ('encounter_condition', models.ForeignKey(blank=True, to='pokemon_v2.EncounterCondition', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='EncounterConditionValueMap', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('encounter', models.ForeignKey(blank=True, to='pokemon_v2.Encounter', null=True)), + ('encounter_condition_value', models.ForeignKey(blank=True, to='pokemon_v2.EncounterConditionValue', null=True)), + ], + options={ + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='EncounterConditionValueName', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('encounter_condition_value', models.ForeignKey(blank=True, to='pokemon_v2.EncounterConditionValue', null=True)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='EncounterMethod', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('order', models.IntegerField(null=True, blank=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='EncounterMethodName', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('encounter_method', models.ForeignKey(blank=True, to='pokemon_v2.EncounterMethod', null=True)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='EncounterSlot', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('slot', models.IntegerField(null=True, blank=True)), + ('rarity', models.IntegerField()), + ('encounter_method', models.ForeignKey(blank=True, to='pokemon_v2.EncounterMethod', null=True)), + ('version_group', models.ForeignKey(blank=True, to='pokemon_v2.VersionGroup', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.AddField( + model_name='locationareaencounterrate', + name='encounter_method', + field=models.ForeignKey(blank=True, to='pokemon_v2.EncounterMethod', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='encounter', + name='encounter_slot', + field=models.ForeignKey(blank=True, to='pokemon_v2.EncounterSlot', null=True), + preserve_default=True, + ), + migrations.CreateModel( + name='PalPark', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('base_score', models.IntegerField()), + ('rate', models.IntegerField()), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='PalParkArea', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='PalParkAreaName', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ('pal_park_area', models.ForeignKey(blank=True, to='pokemon_v2.PalParkArea', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='PokeathlonStat', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='PokeathlonStatName', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('name', models.CharField(max_length=100)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ('pokeathlon_stat', models.ForeignKey(blank=True, to='pokemon_v2.PokeathlonStat', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='SuperContestCombo', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('first_move', models.ForeignKey(related_name='first', blank=True, to='pokemon_v2.Move', null=True)), + ('second_move', models.ForeignKey(related_name='second', blank=True, to='pokemon_v2.Move', null=True)), + ], + options={ + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='SuperContestEffect', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('appeal', models.IntegerField()), + ], + options={ + }, + bases=(models.Model,), + ), + migrations.CreateModel( + name='SuperContestEffectDescription', + fields=[ + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), + ('flavor_text', models.CharField(max_length=500)), + ('language', models.ForeignKey(blank=True, to='pokemon_v2.Language', null=True)), + ('super_contest_effect', models.ForeignKey(blank=True, to='pokemon_v2.SuperContestEffect', null=True)), + ], + options={ + 'abstract': False, + }, + bases=(models.Model,), + ), + migrations.AddField( + model_name='palpark', + name='pal_park_area', + field=models.ForeignKey(blank=True, to='pokemon_v2.PalParkArea', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='palpark', + name='pokemon_species', + field=models.ForeignKey(blank=True, to='pokemon_v2.PokemonSpecies', null=True), + preserve_default=True, + ), + migrations.AddField( + model_name='naturepokeathlonstat', + name='pokeathlon_stat', + field=models.ForeignKey(blank=True, to='pokemon_v2.PokeathlonStat', null=True), + preserve_default=True, + ), + migrations.AlterField( + model_name='palpark', + name='base_score', + field=models.IntegerField(null=True, blank=True), + preserve_default=True, + ), ] diff --git a/pokemon_v2/models.py b/pokemon_v2/models.py index d514d1eb..49773652 100644 --- a/pokemon_v2/models.py +++ b/pokemon_v2/models.py @@ -22,6 +22,14 @@ class HasCharacteristic(models.Model): abstract = True +class HasContestType(models.Model): + + contest_type = models.ForeignKey('ContestType', blank=True, null=True) + + class Meta: + abstract = True + + class HasDescription(models.Model): description = models.CharField(max_length=1000, default='') @@ -38,6 +46,14 @@ class HasGender(models.Model): abstract = True +class HasEffect(models.Model): + + effect = models.CharField(max_length=4000) + + class Meta: + abstract = True + + class HasEggGroup(models.Model): egg_group = models.ForeignKey('EggGroup', blank=True, null=True) @@ -46,6 +62,22 @@ class HasEggGroup(models.Model): abstract = True +class HasEncounterMethod(models.Model): + + encounter_method = models.ForeignKey('EncounterMethod', blank=True, null=True) + + class Meta: + abstract = True + + +class HasEncounterCondition(models.Model): + + encounter_condition = models.ForeignKey('EncounterCondition', blank=True, null=True) + + class Meta: + abstract = True + + class HasEvolutionTrigger(models.Model): evolution_trigger = models.ForeignKey('EvolutionTrigger', blank=True, null=True) @@ -62,6 +94,14 @@ class HasFlavorText(models.Model): abstract = True +class HasFlingEffect(models.Model): + + item_fling_effect = models.ForeignKey('ItemFlingEffect', blank=True, null=True) + + class Meta: + abstract = True + + class HasGameIndex(models.Model): game_index = models.IntegerField() @@ -86,6 +126,30 @@ class HasGrowthRate(models.Model): abstract = True +class HasItem(models.Model): + + item = models.ForeignKey('Item', blank=True, null=True) + + class Meta: + abstract = True + + +class HasItemCategory(models.Model): + + item_category = models.ForeignKey('ItemCategory', blank=True, null=True) + + class Meta: + abstract = True + + +class HasItemPocket(models.Model): + + item_pocket = models.ForeignKey('ItemPocket', blank=True, null=True) + + class Meta: + abstract = True + + class HasLanguage(models.Model): language = models.ForeignKey('Language', blank = True, null = True) @@ -94,6 +158,22 @@ class HasLanguage(models.Model): abstract = True +class HasLocation(models.Model): + + location = models.ForeignKey('Location', blank = True, null = True) + + class Meta: + abstract = True + + +class HasLocationArea(models.Model): + + location_area = models.ForeignKey('LocationArea', blank = True, null = True) + + class Meta: + abstract = True + + class HasMetaAilment(models.Model): move_meta_ailment = models.ForeignKey('MoveMetaAilment', blank = True, null = True) @@ -174,6 +254,14 @@ class HasOrder(models.Model): abstract = True +class HasPokeathlonStat(models.Model): + + pokeathlon_stat = models.ForeignKey('PokeathlonStat', blank=True, null=True) + + class Meta: + abstract = True + + class HasPokedex(models.Model): pokedex = models.ForeignKey('Pokedex', blank=True, null=True) @@ -238,6 +326,22 @@ class HasPokemonSpecies(models.Model): abstract = True +class HasRegion(models.Model): + + region = models.ForeignKey('Region', blank=True, null=True) + + class Meta: + abstract = True + + +class HasShortEffect(models.Model): + + short_effect = models.CharField(max_length=300) + + class Meta: + abstract = True + + class HasStat(models.Model): stat = models.ForeignKey('Stat', blank=True, null=True) @@ -276,16 +380,6 @@ class IsDescription(HasLanguage, HasDescription): abstract = True -class IsEffectDescription(HasLanguage): - - short_effect = models.CharField(max_length=300) - - effect = models.CharField(max_length=4000) - - class Meta: - abstract = True - - class IsName(HasLanguage, HasName): class Meta: @@ -315,9 +409,8 @@ class VersionGroup(HasName, HasGeneration, HasOrder): pass -class VersionGroupRegion(HasVersionGroup): - - region_id = models.IntegerField() +class VersionGroupRegion(HasVersionGroup, HasRegion): + pass class VersionGroupPokemonMoveMethod(HasVersionGroup): @@ -349,9 +442,8 @@ class LanguageName(IsName): # GENERATION MODELS # ####################### -class Generation(HasName): - - main_region_id = models.IntegerField() +class Generation(HasName, HasRegion): + pass class GenerationName(IsName, HasGeneration): @@ -359,6 +451,19 @@ class GenerationName(IsName, HasGeneration): +################### +# REGION MODELS # +################### + +class Region(HasName): + pass + + +class RegionName(IsName, HasRegion): + pass + + + #################### # ABILITY MODELS # #################### @@ -368,7 +473,7 @@ class Ability(HasName, HasGeneration): is_main_series = models.BooleanField(default = False) -class AbilityDescription(IsEffectDescription, HasAbility): +class AbilityDescription(HasLanguage, HasEffect, HasShortEffect, HasAbility): pass @@ -384,12 +489,10 @@ class AbilityChange(HasAbility): pass -class AbilityChangeDescription(HasLanguage): +class AbilityChangeDescription(HasLanguage, HasEffect): ability_change = models.ForeignKey(AbilityChange, blank=True, null=True) - effect = models.CharField(max_length=1000) - ################# @@ -461,6 +564,146 @@ class EggGroupName(IsName, HasEggGroup): +################# +# ITEM MODELS # +################# + +class ItemPocket(HasName): + pass + + +class ItemPocketName(IsName, HasItemPocket): + pass + + +class ItemCategory(HasName, HasItemPocket): + pass + + +class ItemCategoryName(IsName, HasItemCategory): + pass + + +class ItemFlingEffect(models.Model): + pass + + +class ItemFlingEffectDescription(HasFlingEffect, HasLanguage, HasEffect): + pass + + +class Item(HasName, HasItemCategory, HasFlingEffect): + + cost = models.IntegerField(blank=True, null=True) + + fling_power = models.IntegerField(blank=True, null=True) + + +class ItemDescription(HasLanguage, HasEffect, HasShortEffect): + + item = models.ForeignKey(Item, blank=True, null=True) + + +class ItemName(HasItem, IsName): + pass + + +class ItemFlavorText(HasItem, HasVersionGroup, IsFlavorText): + pass + + +class ItemFlag(HasName): + pass + + +class ItemFlagDescription(IsDescription, HasName): + + item_flag = models.ForeignKey(ItemFlag, blank=True, null=True) + + +class ItemFlagMap(HasItem): + + item_flag = models.ForeignKey(ItemFlag, blank=True, null=True) + + +class ItemGameIndex(HasItem, HasGeneration, HasGameIndex): + pass + + + +#################### +# CONTEST MODELS # +#################### + +class ContestType(HasName): + pass + + +class ContestTypeName(HasContestType, IsName): + + flavor = models.CharField(max_length = 10) + + color = models.CharField(max_length = 10) + + +class ContestEffect(models.Model): + + appeal = models.IntegerField() + + jam = models.IntegerField() + + +class ContestEffectDescription(HasLanguage, HasEffect, HasFlavorText): + + contest_effect = models.ForeignKey(ContestEffect, blank=True, null=True) + + +class ContestCombo(models.Model): + + first_move = models.ForeignKey('Move', blank=True, null=True, related_name='first_move') + + second_move = models.ForeignKey('Move', blank=True, null=True, related_name='second_move') + + + +################## +# BERRY MODELS # +################## + +class BerryFirmness(HasName): + pass + + +class BerryFirmnessName(IsName): + + berry_firmness = models.ForeignKey(BerryFirmness, blank=True, null=True) + + +class Berry(HasItem, HasNature): + + berry_firmness = models.ForeignKey(BerryFirmness, blank=True, null=True) + + natural_gift_power = models.IntegerField() + + size = models.IntegerField() + + max_harvest = models.IntegerField() + + growth_time = models.IntegerField() + + soil_dryness = models.IntegerField() + + smoothness = models.IntegerField() + + +class BerryFlavor(HasContestType): + + berry = models.ForeignKey(Berry, blank=True, null=True) + + flavor = models.IntegerField() + + + ######################## # GROWTH RATE MODELS # ######################## @@ -485,9 +728,9 @@ class Nature(HasName): increased_stat_id = models.ForeignKey(Stat, blank = True, null = True, related_name = 'increased') - hates_flavor_id = models.IntegerField() + hates_flavor_id = models.ForeignKey(BerryFlavor, blank = True, null = True, related_name = 'hates_flavor') - likes_flavor_id = models.IntegerField() + likes_flavor_id = models.ForeignKey(BerryFlavor, blank = True, null = True, related_name = 'likes_flavor') game_index = models.IntegerField() @@ -496,9 +739,7 @@ class NatureName(IsName, HasNature): pass -class NaturePokeathlonStat(HasNature): - - pokeathlon_stat_id = models.ForeignKey(Stat, blank = True, null = True) +class NaturePokeathlonStat(HasNature, HasPokeathlonStat): max_change = models.IntegerField() @@ -513,6 +754,90 @@ class NatureBattleStylePreference(HasNature): +##################### +# LOCATION MODELS # +##################### + +class Location(HasRegion, HasName): + pass + + +class LocationName(HasLocation, IsName): + pass + + +class LocationGameIndex(HasLocation, HasGeneration, HasGameIndex): + pass + + +class LocationArea(HasLocation, HasGameIndex, HasName): + pass + + +class LocationAreaName(IsName, HasLocationArea): + pass + + +class LocationAreaEncounterRate(HasEncounterMethod, HasLocationArea, HasVersion): + + rate = models.IntegerField() + + + +###################### +# ENCOUNTER MODELS # +###################### + +class EncounterMethod(HasName, HasOrder): + pass + + +class EncounterMethodName(HasEncounterMethod, IsName): + pass + + +class EncounterSlot(HasVersionGroup, HasEncounterMethod): + + slot = models.IntegerField(blank = True, null = True) + + rarity = models.IntegerField() + + +class Encounter(HasVersion, HasLocationArea, HasPokemon): + + encounter_slot = models.ForeignKey(EncounterSlot, blank = True, null = True) + + min_level = models.IntegerField() + + max_level = models.IntegerField() + + +class EncounterCondition(HasName): + pass + + +class EncounterConditionName(HasEncounterCondition, IsName): + pass + + +class EncounterConditionValue(HasEncounterCondition, HasName): + + is_default = models.BooleanField(default = False) + + +class EncounterConditionValueName(IsName): + + encounter_condition_value = models.ForeignKey(EncounterConditionValue, blank = True, null = True) + + +class EncounterConditionValueMap(models.Model): + + encounter = models.ForeignKey(Encounter, blank = True, null = True) + + encounter_condition_value = models.ForeignKey(EncounterConditionValue, blank = True, null = True) + + + ################# # MOVE MODELS # ################# @@ -591,7 +916,7 @@ class MoveEffect(models.Model): pass -class MoveEffectDescription(HasMoveEffect, IsEffectDescription): +class MoveEffectDescription(HasLanguage, HasMoveEffect, HasEffect, HasShortEffect): pass @@ -599,12 +924,10 @@ class MoveEffectChange(HasMoveEffect, HasVersionGroup): pass -class MoveEffectChangeDescription(HasLanguage): +class MoveEffectChangeDescription(HasLanguage, HasEffect): move_effect_change = models.ForeignKey('MoveEffectChange', blank = True, null = True) - effect = models.CharField(max_length=2000) - ###################### @@ -711,25 +1034,81 @@ class Gender(HasName): # MACHINE MODELS # #################### -class Machine(HasGrowthRate): +class Machine(HasGrowthRate, HasItem): machine_number = models.IntegerField() version_group = models.ForeignKey(VersionGroup, blank=True, null=True) - item_id = models.IntegerField() - move = models.ForeignKey(Move, blank=True, null=True) +####################### +# POKEATHLON MODELS # +####################### + +class PokeathlonStat(HasName): + pass + + +class PokeathlonStatName(IsName, HasPokeathlonStat): + pass + + + +##################### +# PAL PARK MODELS # +##################### + +class PalParkArea(HasName): + pass + + +class PalParkAreaName(IsName): + + pal_park_area = models.ForeignKey(PalParkArea, blank = True, null = True) + + +class PalPark(HasPokemonSpecies): + + pal_park_area = models.ForeignKey(PalParkArea, blank = True, null = True) + + base_score = models.IntegerField(blank = True, null = True) + + rate = models.IntegerField() + + + +########################## +# SUPER CONTEST MODELS # +########################## + +class SuperContestEffect(models.Model): + + appeal = models.IntegerField() + + +class SuperContestEffectDescription(IsFlavorText): + + super_contest_effect = models.ForeignKey(SuperContestEffect, blank = True, null = True) + + +class SuperContestCombo(models.Model): + + first_move = models.ForeignKey(Move, blank = True, null = True, related_name = 'first') + + second_move = models.ForeignKey(Move, blank = True, null = True, related_name = 'second') + + + ###################### # EVOLUTION MODELS # ###################### class EvolutionChain(models.Model): - baby_evolution_item_id = models.IntegerField(blank=True, null=True) #Just for now. Need Item models + baby_evolution_item = models.ForeignKey(Item, blank=True, null=True) class EvolutionTrigger(HasName): @@ -745,9 +1124,7 @@ class EvolutionTriggerName(HasEvolutionTrigger, IsName): # POKEDEX MODELS # #################### -class Pokedex(HasName): - - region_id = models.IntegerField(blank=True, null=True) +class Pokedex(HasName, HasRegion): is_main_series = models.BooleanField(default = False) @@ -839,7 +1216,7 @@ class PokemonEggGroup(HasPokemonSpecies, HasEggGroup): class PokemonEvolution(HasEvolutionTrigger, HasGender): - evolution_item_id = models.IntegerField(blank=True, null=True) # need item tables + evolution_item = models.ForeignKey(Item, blank=True, null=True, related_name='evolution_item') evolved_species = models.ForeignKey(PokemonSpecies, related_name="evolved_species", blank=True, null=True) @@ -847,7 +1224,7 @@ class PokemonEvolution(HasEvolutionTrigger, HasGender): location_id = models.IntegerField(blank=True, null=True) # need location tables - held_item_id = models.IntegerField(blank=True, null=True) # need item tables + held_item = models.ForeignKey(Item, blank=True, null=True, related_name='held_item') time_of_day = models.CharField(max_length = 10, blank=True, null=True) @@ -911,9 +1288,7 @@ class PokemonHabitatName(IsName): pokemon_habitat = models.ForeignKey(PokemonHabitat, blank=True, null=True) -class PokemonItem(HasPokemon, HasVersion): - - item_id = models.IntegerField() +class PokemonItem(HasPokemon, HasVersion, HasItem): rarity = models.IntegerField()