PokemonGoF / PokemonGo-Bot

The Pokemon Go Bot, baking with community.
MIT License
3.85k stars 1.54k forks source link

Evolve/Release issue, again #4235

Closed raxxon closed 7 years ago

raxxon commented 7 years ago

Expected Behavior

Bot evolves pokemon as directed, Bot releases pokemon as directed

Actual Behavior

Bot is not evolving pokemon after capture, only on startup.

Bot is not releasing pokemon except at start.

Your FULL config.json (remove your username, password, gmapkey and any other private info)

      {
        "type": "EvolvePokemon",
        "config": {
          "evolve_all": "Pidgey,Rattata,Weedle,Zubat,Caterpie,Spearow,Krabby,Staryu,Tentacool",
          "evolve_captured": "Pidgey,Rattata,Weedle,Zubat,Caterpie,Spearow,Krabby,Staryu,Tentacool",
          "first_evolve_by": "cp",
          "evolve_above_cp": 0,
          "evolve_above_iv": 0,
          "logic": "or",
          "evolve_speed": 20,
          "use_lucky_egg": false
        }
      },
      {
        "type": "TransferPokemon",
        "config": {
          "transfer_wait_min": 1,
          "transfer_wait_max": 4
        }
      },
      {
        "type": "CatchPokemon",
        "config": {
          "catch_visible_pokemon": true,
          "catch_lured_pokemon": true,
          "min_ultraball_to_keep": 5,
          "catch_throw_parameters": {
            "excellent_rate": 0.1,
            "great_rate": 0.5,
            "nice_rate": 0.3,
            "normal_rate": 0.1,
            "spin_success_rate" : 0.6
          },
          "catch_simulation": {
            "flee_count": 3,
            "flee_duration": 2,
            "catch_wait_min": 2,
            "catch_wait_max": 6,
            "berry_wait_min": 2,
            "berry_wait_max": 3,
            "changeball_wait_min": 2,
            "changeball_wait_max": 3
          }
        }
      },

Output when issue occurred

2016-08-18 18:38:10,753 [FollowPath] [INFO] [position_update] Walk to (*************************) now at *************************), distance left: (17.5524849048 m) ..
2016-08-18 18:38:11,032 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Rattata appeared! [CP 205] [Potential 0.38] [A/D/S 7/2/8]
2016-08-18 18:38:19,564 [PokemonCatchWorker] [INFO] [threw_pokeball] Nice throw! Used Pokeball, with chance 38.66 (90 left)
2016-08-18 18:38:19,680 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Rattata! [CP 205] [Potential 0.38] [7/2/8] [+110 exp]
2016-08-18 18:38:19,684 [PokemonCatchWorker] [INFO] [gained_candy] You now have 39 Rattata candy!
2016-08-18 18:38:25,797 [FollowPath] [INFO] [position_update] Walk to (*************************) now at (*************************), distance left: (18.4043409149 m) ..
2016-08-18 18:38:26,643 [FollowPath] [INFO] [position_update] Walk to (*************************) now at (*************************), distance left: (16.3823753571 m) ..

Steps to Reproduce

Configured as above, was working yesterday. Performed a git pull before running tonight and now the evolve/release cycle is broken again

Other Information

OS: Ubuntu 14.04.5 Branch: Dev Git Commit: 8c1e9f3b5b5ffac46646da0c4a5d302c848933ad Python Version: Python 2.7.6

Foulwerp commented 7 years ago

Could this be caused by the new inventory system, now using a cached inventory and the catcher not updating when pokemon are caught?

Arlion commented 7 years ago

Do another pull, @BreezeLo just did some work in #4231 regarding this.

Foulwerp commented 7 years ago

That commit doesn't solve the problem.

raxxon commented 7 years ago

Yeah, just did a new pull, waiting for testing.... Right now it's evolving/purging the backlogged cluster....

raxxon commented 7 years ago

Negative, still does not evolve or release after capture. And the Web Interface is not updating the Pokemon list either, not sure if related.

k4n30 commented 7 years ago

@foulwerp As mentioned on related pull request. Other users not experiencing this issue

@raxxon Please provide full config and a larger sample of log

raxxon commented 7 years ago

Incoming load of spam... not sure why full config is wanted....

{
    "auth_service": "*********",
    "username": "*********",
    "password": "*********",
    "location": "*********",
    "gmapkey": "*********",
    "tasks": [
      {
        "type": "HandleSoftBan"
      },
      {
        "type": "SleepSchedule",
        "config": {
          "enabled": false,
          "time": "22:54",
          "duration": "7:46",
          "time_random_offset": "00:24",
          "duration_random_offset": "00:43"
        }
      },
      {
        "type": "CompleteTutorial",
        "config": {
          "enabled": false,
          "// set a name": "",
          "nickname": ""
        }
      },
      {
        "type": "CollectLevelUpReward"
      },
      {
        "type": "IncubateEggs",
        "config": {
          "longer_eggs_first": true
        }
      },
      {
        "type": "UpdateLiveStats",
        "config": {
          "enabled": true,
          "min_interval": 60,
          "stats": ["uptime", "stardust_earned", "xp_earned", "xp_per_hour", "stops_visited"],
           "terminal_log": true,
          "terminal_title": false
        }
      },
      {
        "type": "UpdateLiveInventory",
        "config": {
          "enabled": true,
          "min_interval": 60,
          "show_all_multiple_lines": false,
          "items": ["space_info", "pokeballs", "greatballs", "ultraballs", "razzberries", "luckyegg"]
        }
      },
      {
        "type": "EvolvePokemon",
        "config": {
          "evolve_all": "Pidgey,Rattata,Weedle,Zubat,Caterpie,Spearow,Krabby,Staryu,Tentacool",
          "evolve_captured": "Pidgey,Rattata,Weedle,Zubat,Caterpie,Spearow,Krabby,Staryu,Tentacool",
          "first_evolve_by": "cp",
          "evolve_above_cp": 0,
          "evolve_above_iv": 0,
          "logic": "or",
          "evolve_speed": 20,
          "use_lucky_egg": false
        }
      },
      {
        "type": "TransferPokemon",
        "config": {
          "transfer_wait_min": 1,
          "transfer_wait_max": 4
        }
      },
      {
        "type": "RecycleItems",
        "config": {
          "min_empty_space": 10,
          "max_balls_keep": 200,
          "max_potions_keep": 50,
          "max_berries_keep": 70,
          "max_revives_keep": 70,
          "item_filter": {
            "Pokeball":      { "keep" : 25 },
            "Greatball":     { "keep" : 100},
            "Ultraball":     { "keep" : 100},
            "Potion":        { "keep" : 0 },
            "Super Potion":  { "keep" : 0 },
            "Hyper Potion":  { "keep" : 0 },
            "Max Potion":    { "keep" : 50 },
            "Revive":        { "keep" : 20 },
            "Max Revive":    { "keep" : 30 },
            "Razz Berry":    { "keep" : 25 }
          },
          "recycle_wait_min": 1,
          "recycle_wait_max": 4
        }
      },
      {
        "type": "CatchPokemon",
        "config": {
          "catch_visible_pokemon": true,
          "catch_lured_pokemon": true,
          "min_ultraball_to_keep": 5,
          "catch_throw_parameters": {
            "excellent_rate": 0.1,
            "great_rate": 0.5,
            "nice_rate": 0.3,
            "normal_rate": 0.1,
            "spin_success_rate" : 0.6
          },
          "catch_simulation": {
            "flee_count": 3,
            "flee_duration": 2,
            "catch_wait_min": 2,
            "catch_wait_max": 6,
            "berry_wait_min": 2,
            "berry_wait_max": 3,
            "changeball_wait_min": 2,
            "changeball_wait_max": 3
          }
        }
      },
      {
        "type": "SpinFort",
        "config": {
          "spin_wait_min": 2,
          "spin_wait_max": 3
        }
    },
      {
        "type": "FollowPath",
        "config": {
          "path_mode": "loop",
          "path_file": "configs/path-water.json"
        }
      }
    ],
    "map_object_cache_time": 5,
    "forts": {
      "avoid_circles": true,
      "max_circle_size": 50,
      "cache_recent_forts": true
    },
    "pokemon_bag": {
      "// if 'show_at_start' is true, it will log all the pokemons in the bag (not eggs) at bot start": {},
      "show_at_start": true,
      "// if 'show_count' is true, it will show the amount of each pokemon (minimum 1)": {},
      "show_count": false,
      "// 'pokemon_info' parameter define which info to show for each pokemon": {},
      "// the available options are": {},
      "// ['cp', 'iv_ads', 'iv_pct', 'ivcp', 'ncp', 'level', 'hp', 'moveset', 'dps']": {},
      "pokemon_info": ["cp", "iv_pct"]
    },
    "websocket_server": false,
    "walk_max": 3.2,
    "walk_min": 1.25,
    "action_wait_min": 5,
    "action_wait_max": 15,
    "debug": false,
    "test": false,
    "health_record": false,
    "location_cache": true,
    "distance_unit": "km",
    "reconnecting_timeout": 15,
    "logging_color": true,
    "daily_catch_limit": 800,
    "catch": {
      "any": {"catch_above_cp": 0, "catch_above_iv": 0, "logic": "or" },
      "// Pokemons with example": { "always_catch": true },
      "// Gets filtered with release parameters": {},

      "// Legendary pokemons (Goes under S-Tier)": {},
      "Lapras": { "always_catch": true },
      "Moltres": { "always_catch": true },
      "Zapdos": { "always_catch": true },
      "Articuno": { "always_catch": true },

      "// S-Tier pokemons (if pokemon can be evolved into tier, list the representative)": {},
      "Mewtwo": { "always_catch": true },
      "Dragonite": { "always_catch": true },
      "Snorlax": { "always_catch": true },
      "// Mew evolves to Mewtwo": {},
      "Mew": { "always_catch": true },
      "Arcanine": { "always_catch": true },
      "Vaporeon": { "always_catch": true },
      "Gyarados": { "always_catch": true },
      "Exeggutor": { "always_catch": true },
      "Muk": { "always_catch": true },
      "Weezing": { "always_catch": true },
      "Flareon": { "always_catch": true },

      "// Growlithe evolves to Arcanine": {},
      "Growlithe": { "always_catch": true },
      "// Dragonair evolves to Dragonite": {},
      "Dragonair": { "always_catch": true },
      "// Grimer evolves to Muk": {},
      "Grimer": { "always_catch": true },

      "// Magikarp evolves to Gyarados": {},
      "Magikarp": { "always_catch": true },
      "// Exeggcute evolves to Exeggutor": {},
      "Exeggcute": { "always_catch": true },
      "// Eevee evolves to many versions, like Vaporeon, Flareon": {},
      "Eevee": { "always_catch": true },

      "// A-Tier pokemons": {},
      "Slowbro": { "always_catch": true },
      "Victreebel": { "always_catch": true },
      "Machamp": { "always_catch": true },
      "Poliwrath": { "always_catch": true },
      "Clefable": { "always_catch": true },
      "Nidoking": { "always_catch": true },
      "Venusaur": { "always_catch": true },
      "Charizard": { "always_catch": true },
      "Golduck": { "always_catch": true },
      "Nidoqueen": { "always_catch": true },
      "Vileplume": { "always_catch": true },
      "Blastoise": { "always_catch": true },
      "Omastar":  { "always_catch": true },
      "Aerodactyl": { "always_catch": true },
      "Golem": { "always_catch": true },
      "Wigglytuff": { "always_catch": true },
      "Dewgong": { "always_catch": true },
      "Ninetales": { "always_catch": true },
      "Magmar": { "always_catch": true },
      "Kabutops": { "always_catch": true },
      "Electabuzz": { "always_catch": true },
      "Starmie": { "always_catch": true },
      "Jolteon": { "always_catch": true },
      "Rapidash": { "always_catch": true },
      "Pinsir": { "always_catch": true },
      "Scyther": { "always_catch": true },
      "Tentacruel": { "always_catch": true },
      "Gengar": { "always_catch": true },
      "Hypno": { "always_catch": true },
      "Pidgeot": { "always_catch": true },
      "Rhydon": { "always_catch": true },
      "Seaking": { "always_catch": true },
      "Kangaskhan": { "always_catch": true }
    },
    "release": {
      "any": {"release_below_cp": 0, "release_below_iv": 0, "logic": "or" },

      "// Legendary pokemons (Goes under S-Tier)": {},
      "Lapras": { "release_below_cp": 1041, "release_below_iv": 0.8, "logic": "and" },
      "Moltres": { "release_below_cp": 1132, "release_below_iv": 0.8, "logic": "and" },
      "Zapdos": { "release_below_cp": 1087, "release_below_iv": 0.8, "logic": "and" },
      "Articuno": { "release_below_cp": 1039, "release_below_iv": 0.8, "logic": "and" },

      "// S-Tier pokemons (if pokemon can be evolved into tier, list the representative)": {},
      "Mewtwo": { "release_below_cp": 1447, "release_below_iv": 0.8, "logic": "and"},
      "Dragonite": { "release_below_cp": 1221, "release_below_iv": 0.8, "logic": "and" },
      "Snorlax": { "release_below_cp": 1087, "release_below_iv": 0.8, "logic": "and" },
      "// Mew evolves to Mewtwo": {},
      "Mew": { "release_below_cp": 1152, "release_below_iv": 0.8, "logic": "and" },
      "Arcanine": { "release_below_cp": 1041, "release_below_iv": 0.8, "logic": "and" },
      "Vaporeon": { "release_below_cp": 984, "release_below_iv": 0.8, "logic": "and" },
      "Gyarados": { "release_below_cp": 938, "release_below_iv": 0.8, "logic": "and" },
      "Exeggutor": { "release_below_cp": 1032, "release_below_iv": 0.8, "logic": "and" },
      "Muk": { "release_below_cp": 909, "release_below_iv": 0.8, "logic": "and" },
      "Weezing": { "release_below_cp": 784, "release_below_iv": 0.8, "logic": "and" },
      "Flareon": { "release_below_cp": 924, "release_below_iv": 0.8, "logic": "and" },

      "// Growlithe evolves to Arcanine": {},
      "Growlithe": { "release_below_cp": 749, "release_below_iv": 0.8, "logic": "or" },
      "// Dragonair evolves to Dragonite": {},
      "Dragonair": { "release_below_cp": 609, "release_below_iv": 0.8, "logic": "and" },
      "// Grimer evolves to Muk": {},
      "Grimer": { "release_below_cp": 750, "release_below_iv": 0.8, "logic": "or" },
      "// Magikarp evolves to Gyarados": {},
      "Magikarp": { "release_below_cp": 150, "release_below_iv": 0.9, "logic": "or" },
      "// Exeggcute evolves to Exeggutor": {},
      "Exeggcute": { "release_below_cp": 650, "release_below_iv": 0.8, "logic": "or" },
      "// Eevee evolves to many versions, like Vaporeon, Flareon": {},
      "Eevee": { "release_below_cp": 700, "release_below_iv": 0.8, "logic": "or" },

      "// A-Tier pokemons": {},
      "Slowbro": { "release_below_cp": 907, "release_below_iv": 0.8, "logic": "and" },
      "Victreebel": { "release_below_cp": 883, "release_below_iv": 0.8, "logic": "and" },
      "Machamp": { "release_below_cp": 907, "release_below_iv": 0.8, "logic": "and" },
      "Poliwrath": { "release_below_cp": 876, "release_below_iv": 0.8, "logic": "and" },
      "Clefable": { "release_below_cp": 837, "release_below_iv": 0.8, "logic": "and" },
      "Nidoking": { "release_below_cp": 864, "release_below_iv": 0.8, "logic": "and" },
      "Venusaur": { "release_below_cp": 1400, "release_below_iv": 0.8, "logic": "or" },
      "Charizard": { "release_below_cp": 909, "release_below_iv": 0.8, "logic": "and" },
      "Golduck": { "release_below_cp": 832, "release_below_iv": 0.8, "logic": "and" },
      "Nidoqueen": { "release_below_cp": 868, "release_below_iv": 0.8, "logic": "and" },
      "Vileplume": { "release_below_cp": 871, "release_below_iv": 0.8, "logic": "and" },
      "Blastoise": { "release_below_cp": 888, "release_below_iv": 0.8, "logic": "and" },
      "Omastar":  { "release_below_cp": 780, "release_below_iv": 0.8, "logic": "and" },
      "Aerodactyl": { "release_below_cp": 756, "release_below_iv": 0.8, "logic": "and" },
      "Golem": { "release_below_cp": 804, "release_below_iv": 0.8, "logic": "and" },
      "Wigglytuff": { "release_below_cp": 760, "release_below_iv": 0.8, "logic": "and" },
      "Dewgong": { "release_below_cp": 748, "release_below_iv": 0.8, "logic": "and" },
      "Ninetales": { "release_below_cp": 763, "release_below_iv": 0.8, "logic": "and" },
      "Magmar": { "release_below_cp": 1400, "release_below_iv": 0.8, "logic": "or" },
      "Kabutops": { "release_below_cp": 744, "release_below_iv": 0.8, "logic": "and" },
      "Electabuzz": { "release_below_cp": 739, "release_below_iv": 0.8, "logic": "and" },
      "Starmie": { "release_below_cp": 1600, "release_below_iv": 0.8, "logic": "or" },
      "Jolteon": { "release_below_cp": 746, "release_below_iv": 0.8, "logic": "and" },
      "Rapidash": { "release_below_cp": 768, "release_below_iv": 0.8, "logic": "and" },
      "Pinsir": { "release_below_cp": 1600, "release_below_iv": 0.8, "logic": "or" },
      "Scyther": { "release_below_cp": 700, "release_below_iv": 0.8, "logic": "or" },
      "Tentacruel": { "release_below_cp": 1100, "release_below_iv": 0.8, "logic": "or" },
      "Gengar": { "release_below_cp": 724, "release_below_iv": 0.8, "logic": "and" },
      "Hypno": { "release_below_cp": 763, "release_below_iv": 0.8, "logic": "and" },
      "Pidgeot": { "release_below_cp": 1200, "release_below_iv": 0.8, "logic": "or" },
      "Rhydon": { "release_below_cp": 782, "release_below_iv": 0.8, "logic": "and" },
      "Seaking": { "release_below_cp": 712, "release_below_iv": 0.8, "logic": "and" },
      "Kangaskhan": { "release_below_cp": 712, "release_below_iv": 0.8, "logic": "and" },

      "// Koffing evolves to Weezing (A-Tier)": {},
      "Koffing": { "release_below_cp": 675, "release_below_iv": 0.8, "logic": "or" },

      "// Below is B-tier and lower pokemons": {},
      "Caterpie": { "release_below_cp": 220, "release_below_iv": 0.8, "logic": "or" },
      "Weedle": { "release_below_cp": 250, "release_below_iv": 0.8, "logic": "or" },
      "Diglett": { "release_below_cp": 158, "release_below_iv": 0.8, "logic": "and" },
      "Metapod": { "release_below_cp": 275, "release_below_iv": 0.8, "logic": "or" },
      "Kakuna": { "release_below_cp": 220, "release_below_iv": 0.8, "logic": "or" },
      "Rattata": { "release_below_cp": 375, "release_below_iv": 0.8, "logic": "or" },
      "Abra": { "release_below_cp": 330, "release_below_iv": 0.8, "logic": "or" },
      "Zubat": { "release_below_cp": 450, "release_below_iv": 0.8, "logic": "or" },
      "Chansey": { "release_below_cp": 235, "release_below_iv": 0.8, "logic": "and" },
      "Pidgey": { "release_below_cp": 335, "release_below_iv": 0.8, "logic": "and" },
      "Spearow": { "release_below_cp": 375, "release_below_iv": 0.8, "logic": "or" },
      "Meowth": { "release_below_cp": 450, "release_below_iv": 0.8, "logic": "or" },
      "Krabby": { "release_below_cp": 400, "release_below_iv": 0.8, "logic": "or" },
      "Sandshrew": { "release_below_cp": 278, "release_below_iv": 0.85, "logic": "or" },
      "Poliwag": { "release_below_cp": 420, "release_below_iv": 0.8, "logic": "or" },
      "Horsea": { "release_below_cp": 500, "release_below_iv": 0.8, "logic": "or" },
      "Gastly": { "release_below_cp": 500, "release_below_iv": 0.8, "logic": "or" },
      "Ekans": { "release_below_cp": 600, "release_below_iv": 0.8, "logic": "or" },
      "Shellder": { "release_below_cp": 288, "release_below_iv": 0.8, "logic": "and" },
      "Vulpix": { "release_below_cp": 290, "release_below_iv": 0.8, "logic": "and" },
      "Voltorb": { "release_below_cp": 500, "release_below_iv": 0.8, "logic": "and" },
      "Geodude": { "release_below_cp": 600, "release_below_iv": 0.8, "logic": "or" },
      "Doduo": { "release_below_cp": 600, "release_below_iv": 0.8, "logic": "or" },
      "Onix": { "release_below_cp": 750, "release_below_iv": 0.8, "logic": "and" },
      "Mankey": { "release_below_cp": 307, "release_below_iv": 0.8, "logic": "and" },
      "Pikachu": { "release_below_cp": 600, "release_below_iv": 0.8, "logic": "or" },
      "Magnemite": { "release_below_cp": 312, "release_below_iv": 0.8, "logic": "and" },
      "Tentacool": { "release_below_cp": 650, "release_below_iv": 0.8, "logic": "or" },
      "Paras": { "release_below_cp": 725, "release_below_iv": 0.8, "logic": "or" },
      "Jigglypuff": { "release_below_cp": 500, "release_below_iv": 0.8, "logic": "or" },
      "Ditto": { "release_below_cp": 321, "release_below_iv": 0.8, "logic": "and" },
      "Staryu": { "release_below_cp": 480, "release_below_iv": 0.8, "logic": "or" },
      "Charmander": { "release_below_cp": 500, "release_below_iv": 0.8, "logic": "and" },
      "Goldeen": { "release_below_cp": 670, "release_below_iv": 0.8, "logic": "or" },
      "Squirtle": { "release_below_cp": 525, "release_below_iv": 0.8, "logic": "or" },
      "Cubone": { "release_below_cp": 700, "release_below_iv": 0.8, "logic": "or" },
      "Venonat": { "release_below_cp": 725, "release_below_iv": 0.8, "logic": "or" },
      "Bulbasaur": { "release_below_cp": 500, "release_below_iv": 0.8, "logic": "or" },
      "Drowzee": { "release_below_cp": 450, "release_below_iv": 0.8, "logic": "or" },
      "Machop": { "release_below_cp": 725, "release_below_iv": 0.8, "logic": "or" },
      "Psyduck": { "release_below_cp": 620, "release_below_iv": 0.9, "logic": "or" },
      "Seel": { "release_below_cp": 600, "release_below_iv": 0.8, "logic": "or" },
      "Kabuto": { "release_below_cp": 750, "release_below_iv": 0.8, "logic": "or" },
      "Bellsprout": { "release_below_cp": 620, "release_below_iv": 0.8, "logic": "or" },
      "Omanyte": { "release_below_cp": 500, "release_below_iv": 0.8, "logic": "or" },
      "Kadabra": { "release_below_cp": 396, "release_below_iv": 0.8, "logic": "and" },
      "Oddish": { "release_below_cp": 650, "release_below_iv": 0.8, "logic": "or" },
      "Dugtrio": { "release_below_cp": 650, "release_below_iv": 0.8, "logic": "and" },
      "Rhyhorn": { "release_below_cp": 650, "release_below_iv": 0.8, "logic": "and" },
      "Clefairy": { "release_below_cp": 700, "release_below_iv": 0.8, "logic": "and" },
      "Slowpoke": { "release_below_cp": 700, "release_below_iv": 0.8, "logic": "or" },
      "Pidgeotto": { "release_below_cp": 720, "release_below_iv": 0.8, "logic": "or" },
      "Farfetch'd": { "release_below_cp": 441, "release_below_iv": 0.8, "logic": "and" },
      "Poliwhirl": { "release_below_cp": 900, "release_below_iv": 0.8, "logic": "or" },
      "Nidorino": { "release_below_cp": 750, "release_below_iv": 0.8, "logic": "or" },
      "Haunter": { "release_below_cp": 760, "release_below_iv": 0.8, "logic": "or" },
      "Nidorina": { "release_below_cp": 750, "release_below_iv": 0.8, "logic": "or" },
      "Graveler": { "release_below_cp": 750, "release_below_iv": 0.8, "logic": "or" },
      "Beedrill": { "release_below_cp": 750, "release_below_iv": 0.8, "logic": "or" },
      "Raticate": { "release_below_cp": 975, "release_below_iv": 0.8, "logic": "or" },
      "Butterfree": { "release_below_cp": 900, "release_below_iv": 0.8, "logic": "and" },
      "Hitmonlee": { "release_below_cp": 520, "release_below_iv": 0.8, "logic": "and" },
      "Ponyta": { "release_below_cp": 830, "release_below_iv": 0.8, "logic": "or" },
      "Hitmonchan": { "release_below_cp": 530, "release_below_iv": 0.8, "logic": "and" },
      "Charmeleon": { "release_below_cp": 544, "release_below_iv": 0.8, "logic": "and" },
      "Wartortle": { "release_below_cp": 552, "release_below_iv": 0.8, "logic": "and" },
      "Persian": { "release_below_cp": 568, "release_below_iv": 0.8, "logic": "and" },
      "Lickitung": { "release_below_cp": 568, "release_below_iv": 0.8, "logic": "and" },
      "Ivysaur": { "release_below_cp": 571, "release_below_iv": 0.8, "logic": "and" },
      "Electrode": { "release_below_cp": 576, "release_below_iv": 0.8, "logic": "and" },
      "Marowak": { "release_below_cp": 578, "release_below_iv": 0.8, "logic": "and" },
      "Gloom": { "release_below_cp": 900, "release_below_iv": 0.8, "logic": "or" },
      "Porygon": { "release_below_cp": 590, "release_below_iv": 0.8, "logic": "and" },
      "Seadra": { "release_below_cp": 850, "release_below_iv": 0.8, "logic": "and" },
      "Jynx": { "release_below_cp": 600, "release_below_iv": 0.8, "logic": "and" },
      "Weepinbell": { "release_below_cp": 950, "release_below_iv": 0.8, "logic": "or" },
      "Tangela": { "release_below_cp": 1200, "release_below_iv": 0.8, "logic": "or" },
      "Fearow": { "release_below_cp": 1200, "release_below_iv": 0.8, "logic": "or" },
      "Parasect": { "release_below_cp": 609, "release_below_iv": 0.8, "logic": "and" },
      "Machoke": { "release_below_cp": 614, "release_below_iv": 0.8, "logic": "and" },
      "Arbok": { "release_below_cp": 1150, "release_below_iv": 0.8, "logic": "or" },
      "Sandslash": { "release_below_cp": 631, "release_below_iv": 0.8, "logic": "and" },
      "Alakazam": { "release_below_cp": 633, "release_below_iv": 0.8, "logic": "and" },
      "Kingler": { "release_below_cp": 1025, "release_below_iv": 0.8, "logic": "or" },
      "Dodrio": { "release_below_cp": 1000, "release_below_iv": 0.8, "logic": "or" },
      "Tauros": { "release_below_cp": 1500, "release_below_iv": 0.8, "logic": "or" },
      "Primeape": { "release_below_cp": 650, "release_below_iv": 0.8, "logic": "and" },
      "Magneton": { "release_below_cp": 657, "release_below_iv": 0.8, "logic": "and" },
      "Venomoth": { "release_below_cp": 1500, "release_below_iv": 0.8, "logic": "or" },
      "Golbat": { "release_below_cp": 1150, "release_below_iv": 0.8, "logic": "or" },
      "Raichu": { "release_below_cp": 708, "release_below_iv": 0.8, "logic": "and" },
      "Cloyster": { "release_below_cp": 717, "release_below_iv": 0.8, "logic": "and"},
      "Nidoran M": { "release_below_cp": 485, "release_below_iv": 0.8, "logic": "or" },
      "Nidoran F": { "release_below_cp": 465, "release_below_iv": 0.8, "logic": "or" },  
      "Mr. Mime": { "release_below_cp": 650, "release_below_iv": 0.8, "logic": "and" },
      "Dratini": { "release_below_cp": 350, "release_below_iv": 0.8, "logic": "or" }
    },
    "vips" : {
         "Any pokemon put here directly force to use Berry & Best Ball to capture, to secure the capture rate!": {},
        "any": {"catch_above_cp": 1200, "catch_above_iv": 0.9, "logic": "or" },
        "Lapras": {},
        "Moltres": {},
        "Zapdos": {},
        "Articuno": {},

        "// S-Tier pokemons (if pokemon can be evolved into tier, list the representative)": {},
        "Mewtwo": {},
        "Dragonite": {},
        "Snorlax": {},
        "// Mew evolves to Mewtwo": {},
        "Mew": {},
        "Arcanine": {},
        "Vaporeon": {},
        "Gyarados": {},
        "Exeggutor": {},
        "Muk": {},
        "Weezing": {},
        "Flareon": {}

    }
}

And logging info - Git pull done just before start, output from bot tee'd to a log file:

2016-08-18 22:06:03,365 [       cli] [INFO] PokemonGO Bot v1.0
2016-08-18 22:06:03,370 [       cli] [INFO] Configuration initialized
2016-08-18 22:06:03,488 [PokemonGoBot] [INFO] [set_start_location] Setting start location.
2016-08-18 22:06:03,489 [PokemonGoBot] [INFO] [x] Coordinates found in passed in location, not geocoding.
2016-08-18 22:06:03,489 [PokemonGoBot] [INFO] [location_found] Location found: 30.160343, -95.464246 (30.160343, -95.464246, 0.0)
2016-08-18 22:06:03,490 [PokemonGoBot] [INFO] [position_update] Now at (30.160343, -95.464246, 0)
2016-08-18 22:06:03,490 [PokemonGoBot] [INFO] [login_started] Login procedure started.
2016-08-18 22:06:04,035 [PokemonGoBot] [INFO] [login_successful] Login successful.
2016-08-18 22:06:04,035 [PokemonGoBot] [INFO] Found encrypt.so! Platform: linux2 encrypt.so directory: /home/hazer/PokemonGo-Bot
2016-08-18 22:06:04,036 [PokemonGoBot] [INFO]
2016-08-18 22:06:06,519 [PokemonGoBot] [INFO] Level: 23 (Next Level: 95180 XP) (Total: 464820 XP)
2016-08-18 22:06:06,519 [PokemonGoBot] [INFO] Pokemon Captured: 1542 | Pokestops Visited: 1022
2016-08-18 22:06:06,564 [PokemonGoBot] [INFO]
2016-08-18 22:06:06,564 [PokemonGoBot] [INFO] --- Karptacular ---
2016-08-18 22:06:07,576 [PokemonGoBot] [INFO] Pokemon Bag: 136/250
2016-08-18 22:06:07,577 [PokemonGoBot] [INFO] Items: 335/350
2016-08-18 22:06:07,577 [PokemonGoBot] [INFO] Stardust: 186478 | Pokecoins: 0
2016-08-18 22:06:07,578 [PokemonGoBot] [INFO] PokeBalls: 32 | GreatBalls: 0 | UltraBalls: 113 | MasterBalls: 0
2016-08-18 22:06:07,578 [PokemonGoBot] [INFO] RazzBerries: 38 | BlukBerries: 0 | NanabBerries: 0
2016-08-18 22:06:07,578 [PokemonGoBot] [INFO] LuckyEgg: 5 | Incubator: 0 | TroyDisk: 5
2016-08-18 22:06:07,579 [PokemonGoBot] [INFO] Potion: 25 | SuperPotion: 8 | HyperPotion: 25 | MaxPotion: 0
2016-08-18 22:06:07,579 [PokemonGoBot] [INFO] Incense: 8 | IncenseSpicy: 0 | IncenseCool: 0
2016-08-18 22:06:07,579 [PokemonGoBot] [INFO] Revive: 74 | MaxRevive: 0
2016-08-18 22:06:07,579 [PokemonGoBot] [INFO]
2016-08-18 22:06:07,580 [PokemonGoBot] [INFO] Pokemon:
2016-08-18 22:06:07,580 [PokemonGoBot] [INFO] #10 Caterpie: (CP 155, IV 0.29) | (CP 106, IV 0.16)
2016-08-18 22:06:07,581 [PokemonGoBot] [INFO] #11 Metapod: (CP 222, IV 0.4)
2016-08-18 22:06:07,581 [PokemonGoBot] [INFO] #13 Weedle: (CP 160, IV 0.22) | (CP 65, IV 0.22) | (CP 186, IV 0.4) | (CP 139, IV 0.2) | (CP 185, IV 0.18) | (CP 205, IV 0.33) | (CP 15, IV 0.4) | (CP 119, IV 0.44) | (CP 53, IV 0.16) | (CP 65, IV 0.29)
2016-08-18 22:06:07,583 [PokemonGoBot] [INFO] #16 Pidgey: (CP 183, IV 0.53) | (CP 25, IV 0.4) | (CP 224, IV 0.42) | (CP 253, IV 0.33) | (CP 278, IV 0.69) | (CP 215, IV 0.49) | (CP 274, IV 0.42) | (CP 105, IV 0.27) | (CP 300, IV 0.76) | (CP 332, IV 0.16) | (CP 338, IV 0.22) | (CP 58, IV 0.42) | (CP 42, IV 0.51) | (CP 195, IV 0.49) | (CP 41, IV 0.38) | (CP 43, IV 0.53) | (CP 323, IV 0.4) | (CP 268, IV 0.36) | (CP 41, IV 0.33) | (CP 111, IV 0.47) | (CP 228, IV 0.44)
2016-08-18 22:06:07,583 [PokemonGoBot] [INFO] #17 Pidgeotto: (CP 215, IV 0.42)
2016-08-18 22:06:07,585 [PokemonGoBot] [INFO] #19 Rattata: (CP 36, IV 0.4) | (CP 135, IV 0.36) | (CP 220, IV 0.62) | (CP 150, IV 0.38) | (CP 168, IV 0.47) | (CP 323, IV 0.62) | (CP 272, IV 0.73) | (CP 51, IV 0.47) | (CP 194, IV 0.22) | (CP 271, IV 0.36) | (CP 335, IV 0.56) | (CP 136, IV 0.4) | (CP 263, IV 0.8) | (CP 37, IV 0.62) | (CP 101, IV 0.67) | (CP 241, IV 0.64) | (CP 272, IV 0.44) | (CP 50, IV 0.42) | (CP 207, IV 0.42) | (CP 293, IV 0.42) | (CP 22, IV 0.67) | (CP 10, IV 0.67) | (CP 132, IV 0.29) | (CP 10, IV 0.67)
2016-08-18 22:06:07,586 [PokemonGoBot] [INFO] #20 Raticate: (CP 803, IV 0.62)
2016-08-18 22:06:07,586 [PokemonGoBot] [INFO] #21 Spearow: (CP 316, IV 0.4) | (CP 10, IV 0.69) | (CP 293, IV 0.53) | (CP 46, IV 0.6)
2016-08-18 22:06:07,587 [PokemonGoBot] [INFO] #23 Ekans: (CP 184, IV 0.49) | (CP 156, IV 0.33)
2016-08-18 22:06:07,587 [PokemonGoBot] [INFO] #25 Pikachu: (CP 235, IV 0.4) | (CP 290, IV 0.27) | (CP 144, IV 0.38) | (CP 330, IV 0.49) | (CP 34, IV 0.49) | (CP 316, IV 0.36) | (CP 457, IV 0.67) | (CP 184, IV 0.27) | (CP 385, IV 0.4)
2016-08-18 22:06:07,588 [PokemonGoBot] [INFO] #27 Sandshrew: (CP 435, IV 0.87)
2016-08-18 22:06:07,588 [PokemonGoBot] [INFO] #32 Nidoran M: (CP 82, IV 0.73)
2016-08-18 22:06:07,589 [PokemonGoBot] [INFO] #37 Vulpix: (CP 107, IV 0.87) | (CP 10, IV 0.53)
2016-08-18 22:06:07,589 [PokemonGoBot] [INFO] #41 Zubat: (CP 202, IV 0.36)
2016-08-18 22:06:07,589 [PokemonGoBot] [INFO] #43 Oddish: (CP 114, IV 0.71) | (CP 372, IV 0.38) | (CP 668, IV 0.89)
2016-08-18 22:06:07,590 [PokemonGoBot] [INFO] #46 Paras: (CP 547, IV 0.78) | (CP 521, IV 0.56) | (CP 218, IV 0.78) | (CP 164, IV 0.64) | (CP 293, IV 0.69)
2016-08-18 22:06:07,591 [PokemonGoBot] [INFO] #47 Parasect: (CP 71, IV 0.49)
2016-08-18 22:06:07,591 [PokemonGoBot] [INFO] #48 Venonat: (CP 94, IV 0.47) | (CP 234, IV 0.38) | (CP 411, IV 0.76) | (CP 524, IV 0.38)
2016-08-18 22:06:07,591 [PokemonGoBot] [INFO] #52 Meowth: (CP 10, IV 0.84)
2016-08-18 22:06:07,592 [PokemonGoBot] [INFO] #54 Psyduck: (CP 285, IV 0.18) | (CP 592, IV 0.53) | (CP 13, IV 0.31) | (CP 279, IV 0.56)
2016-08-18 22:06:07,592 [PokemonGoBot] [INFO] #60 Poliwag: (CP 436, IV 0.82)
2016-08-18 22:06:07,593 [PokemonGoBot] [INFO] #72 Tentacool: (CP 384, IV 0.51)
2016-08-18 22:06:07,593 [PokemonGoBot] [INFO] #79 Slowpoke: (CP 263, IV 0.2) | (CP 213, IV 0.6) | (CP 587, IV 0.56) | (CP 660, IV 0.38) | (CP 566, IV 0.33)
2016-08-18 22:06:07,594 [PokemonGoBot] [INFO] #98 Krabby: (CP 284, IV 0.6)
2016-08-18 22:06:07,594 [PokemonGoBot] [INFO] #102 Exeggcute: (CP 107, IV 0.8)
2016-08-18 22:06:07,595 [PokemonGoBot] [INFO] #108 Lickitung: (CP 894, IV 0.87)
2016-08-18 22:06:07,595 [PokemonGoBot] [INFO] #109 Koffing: (CP 696, IV 0.67) | (CP 149, IV 0.8) | (CP 560, IV 0.47)
2016-08-18 22:06:07,596 [PokemonGoBot] [INFO] #118 Goldeen: (CP 213, IV 0.91) | (CP 66, IV 0.58)
2016-08-18 22:06:07,596 [PokemonGoBot] [INFO] #119 Seaking: (CP 1138, IV 0.44)
2016-08-18 22:06:07,596 [PokemonGoBot] [INFO] #120 Staryu: (CP 569, IV 0.82)
2016-08-18 22:06:07,597 [PokemonGoBot] [INFO] #129 Magikarp: (CP 83, IV 0.38) | (CP 26, IV 0.42) | (CP 135, IV 0.64) | (CP 124, IV 0.6) | (CP 97, IV 0.53) | (CP 70, IV 0.58) | (CP 114, IV 0.31) | (CP 37, IV 0.69) | (CP 31, IV 0.78) | (CP 68, IV 0.4) | (CP 116, IV 0.64) | (CP 99, IV 0.44) | (CP 126, IV 0.36) | (CP 10, IV 0.64) | (CP 46, IV 0.38)
2016-08-18 22:06:07,598 [PokemonGoBot] [INFO] #133 Eevee: (CP 226, IV 0.6) | (CP 567, IV 0.53) | (CP 273, IV 0.96)
2016-08-18 22:06:07,598 [PokemonGoBot] [INFO] #137 Porygon: (CP 916, IV 0.71)
2016-08-18 22:06:07,599 [PokemonGoBot] [INFO]
2016-08-18 22:06:07,602 [SleepSchedule] [INFO] [next_sleep] Next sleep at 2016-08-18 22:46:44.601959
2016-08-18 22:06:07,685 [PokemonGoBot] [INFO] [x] Coordinates found in passed in location, not geocoding.
2016-08-18 22:06:07,686 [PokemonGoBot] [INFO] [x] Coordinates found in passed in location, not geocoding.
2016-08-18 22:06:07,686 [PokemonGoBot] [INFO] [x] Coordinates found in passed in location, not geocoding.
2016-08-18 22:06:07,687 [PokemonGoBot] [INFO] [x] Coordinates found in passed in location, not geocoding.
2016-08-18 22:06:07,687 [PokemonGoBot] [INFO] [x] Coordinates found in passed in location, not geocoding.
2016-08-18 22:06:08,773 [PokemonGoBot] [INFO] [bot_start] Starting bot...
2016-08-18 22:06:10,171 [CollectLevelUpReward] [INFO] [level_up_reward] Received level up reward: []
2016-08-18 22:06:10,370 [UpdateLiveStats] [INFO] [log_stats] Uptime : 0:00:07 | Earned 0 Stardust | +0 XP | 0 XP/h | Visited 0 stops
2016-08-18 22:06:10,371 [UpdateLiveInventory] [INFO] [show_inventory] Items: 335/350 | Pokeballs: 32 | GreatBalls: 0 | UltraBalls: 113 | RazzBerries: 38 | LuckyEgg: 5
2016-08-18 22:06:11,507 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Krabby with CP 284 and IV 0.6!
2016-08-18 22:06:33,980 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Rattata with CP 335 and IV 0.56!
2016-08-18 22:06:48,443 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Rattata with CP 323 and IV 0.62!
2016-08-18 22:07:07,791 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Rattata with CP 293 and IV 0.42!
2016-08-18 22:07:24,311 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Rattata with CP 272 and IV 0.73!
2016-08-18 22:07:43,761 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Rattata with CP 272 and IV 0.44!
2016-08-18 22:08:04,741 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Pidgey with CP 338 and IV 0.22!
2016-08-18 22:08:30,446 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Pidgey with CP 332 and IV 0.16!
2016-08-18 22:08:48,077 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Pidgey with CP 323 and IV 0.4!
2016-08-18 22:09:03,279 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Pidgey with CP 300 and IV 0.76!
2016-08-18 22:09:19,420 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Pidgey with CP 278 and IV 0.69!
2016-08-18 22:09:43,869 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Pidgey with CP 274 and IV 0.42!
2016-08-18 22:10:08,330 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Pidgey with CP 268 and IV 0.36!
2016-08-18 22:10:27,499 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Weedle with CP 205 and IV 0.33!
2016-08-18 22:10:42,141 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Weedle with CP 186 and IV 0.4!
2016-08-18 22:11:03,933 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Weedle with CP 185 and IV 0.18!
2016-08-18 22:11:20,708 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Caterpie with CP 155 and IV 0.29!
2016-08-18 22:11:46,288 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 135] [IV 0.64] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:11:46,467 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 135] [IV 0.64] for candy.
2016-08-18 22:11:47,910 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 126] [IV 0.36] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:11:48,305 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 126] [IV 0.36] for candy.
2016-08-18 22:11:50,088 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 124] [IV 0.6] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:11:50,259 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 124] [IV 0.6] for candy.
2016-08-18 22:11:51,301 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 116] [IV 0.64] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:11:51,686 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 116] [IV 0.64] for candy.
2016-08-18 22:11:53,379 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 114] [IV 0.31] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:11:53,552 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 114] [IV 0.31] for candy.
2016-08-18 22:11:56,165 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 99] [IV 0.44] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:11:56,390 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 99] [IV 0.44] for candy.
2016-08-18 22:11:57,863 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 97] [IV 0.53] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:11:58,042 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 97] [IV 0.53] for candy.
2016-08-18 22:11:59,654 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 83] [IV 0.38] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:11:59,819 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 83] [IV 0.38] for candy.
2016-08-18 22:12:03,453 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 70] [IV 0.58] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:12:03,642 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 70] [IV 0.58] for candy.
2016-08-18 22:12:07,137 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 68] [IV 0.4] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:12:07,321 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 68] [IV 0.4] for candy.
2016-08-18 22:12:10,965 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 46] [IV 0.38] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:12:11,131 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 46] [IV 0.38] for candy.
2016-08-18 22:12:13,414 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 37] [IV 0.69] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:12:13,588 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 37] [IV 0.69] for candy.
2016-08-18 22:12:16,221 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 31] [IV 0.78] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:12:16,393 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 31] [IV 0.78] for candy.
2016-08-18 22:12:20,204 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 26] [IV 0.42] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:12:20,380 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 26] [IV 0.42] for candy.
2016-08-18 22:12:23,751 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Magikarp [CP 10] [IV 0.64] based on rule: CP < 150 OR IV < 0.9
2016-08-18 22:12:23,917 [TransferPokemon] [INFO] [pokemon_release] Exchanged Magikarp [CP 10] [IV 0.64] for candy.
2016-08-18 22:12:27,480 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Eevee [CP 567] [IV 0.53] based on rule: CP < 700 OR IV < 0.8
2016-08-18 22:12:27,651 [TransferPokemon] [INFO] [pokemon_release] Exchanged Eevee [CP 567] [IV 0.53] for candy.
2016-08-18 22:12:29,164 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Eevee [CP 273] [IV 0.96] based on rule: CP < 700 OR IV < 0.8
2016-08-18 22:12:29,340 [TransferPokemon] [INFO] [pokemon_release] Exchanged Eevee [CP 273] [IV 0.96] for candy.
2016-08-18 22:12:30,682 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Eevee [CP 226] [IV 0.6] based on rule: CP < 700 OR IV < 0.8
2016-08-18 22:12:30,858 [TransferPokemon] [INFO] [pokemon_release] Exchanged Eevee [CP 226] [IV 0.6] for candy.
2016-08-18 22:12:34,360 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Caterpie [CP 106] [IV 0.16] based on rule: CP < 220 OR IV < 0.8
2016-08-18 22:12:34,557 [TransferPokemon] [INFO] [pokemon_release] Exchanged Caterpie [CP 106] [IV 0.16] for candy.
2016-08-18 22:12:37,529 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Metapod [CP 222] [IV 0.4] based on rule: CP < 275 OR IV < 0.8
2016-08-18 22:12:37,712 [TransferPokemon] [INFO] [pokemon_release] Exchanged Metapod [CP 222] [IV 0.4] for candy.
2016-08-18 22:12:41,343 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Metapod [CP 167] [IV 0.29] based on rule: CP < 275 OR IV < 0.8
2016-08-18 22:12:41,531 [TransferPokemon] [INFO] [pokemon_release] Exchanged Metapod [CP 167] [IV 0.29] for candy.
2016-08-18 22:12:44,472 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Weedle [CP 160] [IV 0.22] based on rule: CP < 250 OR IV < 0.8
2016-08-18 22:12:44,653 [TransferPokemon] [INFO] [pokemon_release] Exchanged Weedle [CP 160] [IV 0.22] for candy.
2016-08-18 22:12:46,165 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Weedle [CP 139] [IV 0.2] based on rule: CP < 250 OR IV < 0.8
2016-08-18 22:12:46,340 [TransferPokemon] [INFO] [pokemon_release] Exchanged Weedle [CP 139] [IV 0.2] for candy.
2016-08-18 22:12:49,043 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Weedle [CP 119] [IV 0.44] based on rule: CP < 250 OR IV < 0.8
2016-08-18 22:12:49,216 [TransferPokemon] [INFO] [pokemon_release] Exchanged Weedle [CP 119] [IV 0.44] for candy.
2016-08-18 22:12:52,159 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Weedle [CP 65] [IV 0.22] based on rule: CP < 250 OR IV < 0.8
2016-08-18 22:12:52,325 [TransferPokemon] [INFO] [pokemon_release] Exchanged Weedle [CP 65] [IV 0.22] for candy.
2016-08-18 22:12:54,647 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Weedle [CP 65] [IV 0.29] based on rule: CP < 250 OR IV < 0.8
2016-08-18 22:12:54,835 [TransferPokemon] [INFO] [pokemon_release] Exchanged Weedle [CP 65] [IV 0.29] for candy.
2016-08-18 22:12:58,758 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Weedle [CP 53] [IV 0.16] based on rule: CP < 250 OR IV < 0.8
2016-08-18 22:12:58,931 [TransferPokemon] [INFO] [pokemon_release] Exchanged Weedle [CP 53] [IV 0.16] for candy.
2016-08-18 22:13:02,313 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Weedle [CP 15] [IV 0.4] based on rule: CP < 250 OR IV < 0.8
2016-08-18 22:13:02,519 [TransferPokemon] [INFO] [pokemon_release] Exchanged Weedle [CP 15] [IV 0.4] for candy.
2016-08-18 22:13:04,161 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Kakuna [CP 221] [IV 0.33] based on rule: CP < 220 OR IV < 0.8
2016-08-18 22:13:04,324 [TransferPokemon] [INFO] [pokemon_release] Exchanged Kakuna [CP 221] [IV 0.33] for candy.
2016-08-18 22:13:07,318 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Kakuna [CP 201] [IV 0.18] based on rule: CP < 220 OR IV < 0.8
2016-08-18 22:13:07,481 [TransferPokemon] [INFO] [pokemon_release] Exchanged Kakuna [CP 201] [IV 0.18] for candy.
2016-08-18 22:13:10,995 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Kakuna [CP 201] [IV 0.4] based on rule: CP < 220 OR IV < 0.8
2016-08-18 22:13:11,165 [TransferPokemon] [INFO] [pokemon_release] Exchanged Kakuna [CP 201] [IV 0.4] for candy.
2016-08-18 22:13:14,139 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 253] [IV 0.33] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:14,312 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 253] [IV 0.33] for candy.
2016-08-18 22:13:15,644 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 228] [IV 0.44] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:15,811 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 228] [IV 0.44] for candy.
2016-08-18 22:13:17,123 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 224] [IV 0.42] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:17,290 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 224] [IV 0.42] for candy.
2016-08-18 22:13:20,102 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 215] [IV 0.49] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:20,268 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 215] [IV 0.49] for candy.
2016-08-18 22:13:24,111 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 195] [IV 0.49] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:24,290 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 195] [IV 0.49] for candy.
2016-08-18 22:13:25,833 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 183] [IV 0.53] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:26,024 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 183] [IV 0.53] for candy.
2016-08-18 22:13:28,377 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 111] [IV 0.47] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:28,539 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 111] [IV 0.47] for candy.
2016-08-18 22:13:31,553 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 105] [IV 0.27] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:31,726 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 105] [IV 0.27] for candy.
2016-08-18 22:13:35,589 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 58] [IV 0.42] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:35,767 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 58] [IV 0.42] for candy.
2016-08-18 22:13:38,169 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 43] [IV 0.53] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:38,332 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 43] [IV 0.53] for candy.
2016-08-18 22:13:40,545 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 42] [IV 0.51] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:40,714 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 42] [IV 0.51] for candy.
2016-08-18 22:13:42,576 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 41] [IV 0.38] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:42,760 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 41] [IV 0.38] for candy.
2016-08-18 22:13:45,043 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 41] [IV 0.33] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:45,201 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 41] [IV 0.33] for candy.
2016-08-18 22:13:48,373 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgey [CP 25] [IV 0.4] based on rule: CP < 335 AND IV < 0.8
2016-08-18 22:13:48,533 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgey [CP 25] [IV 0.4] for candy.
2016-08-18 22:13:50,125 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgeotto [CP 648] [IV 0.22] based on rule: CP < 720 OR IV < 0.8
2016-08-18 22:13:50,332 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgeotto [CP 648] [IV 0.22] for candy.
2016-08-18 22:13:53,816 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgeotto [CP 640] [IV 0.16] based on rule: CP < 720 OR IV < 0.8
2016-08-18 22:13:54,018 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgeotto [CP 640] [IV 0.16] for candy.
2016-08-18 22:13:56,379 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgeotto [CP 609] [IV 0.4] based on rule: CP < 720 OR IV < 0.8
2016-08-18 22:13:56,554 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgeotto [CP 609] [IV 0.4] for candy.
2016-08-18 22:13:57,636 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgeotto [CP 552] [IV 0.76] based on rule: CP < 720 OR IV < 0.8
2016-08-18 22:13:57,802 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgeotto [CP 552] [IV 0.76] for candy.
2016-08-18 22:14:00,676 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgeotto [CP 518] [IV 0.42] based on rule: CP < 720 OR IV < 0.8
2016-08-18 22:14:00,840 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgeotto [CP 518] [IV 0.42] for candy.
2016-08-18 22:14:02,122 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgeotto [CP 514] [IV 0.69] based on rule: CP < 720 OR IV < 0.8
2016-08-18 22:14:02,295 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgeotto [CP 514] [IV 0.69] for candy.
2016-08-18 22:14:06,257 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgeotto [CP 510] [IV 0.36] based on rule: CP < 720 OR IV < 0.8
2016-08-18 22:14:06,430 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgeotto [CP 510] [IV 0.36] for candy.
2016-08-18 22:14:10,003 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pidgeotto [CP 215] [IV 0.42] based on rule: CP < 720 OR IV < 0.8
2016-08-18 22:14:10,178 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgeotto [CP 215] [IV 0.42] for candy.
2016-08-18 22:14:13,590 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Raticate [CP 876] [IV 0.56] based on rule: CP < 975 OR IV < 0.8
2016-08-18 22:14:13,771 [TransferPokemon] [INFO] [pokemon_release] Exchanged Raticate [CP 876] [IV 0.56] for candy.
2016-08-18 22:14:17,343 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Raticate [CP 841] [IV 0.62] based on rule: CP < 975 OR IV < 0.8
2016-08-18 22:14:17,509 [TransferPokemon] [INFO] [pokemon_release] Exchanged Raticate [CP 841] [IV 0.62] for candy.
2016-08-18 22:14:19,481 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Raticate [CP 803] [IV 0.62] based on rule: CP < 975 OR IV < 0.8
2016-08-18 22:14:19,681 [TransferPokemon] [INFO] [pokemon_release] Exchanged Raticate [CP 803] [IV 0.62] for candy.
2016-08-18 22:14:21,243 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Raticate [CP 779] [IV 0.42] based on rule: CP < 975 OR IV < 0.8
2016-08-18 22:14:21,412 [TransferPokemon] [INFO] [pokemon_release] Exchanged Raticate [CP 779] [IV 0.42] for candy.
2016-08-18 22:14:23,074 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Raticate [CP 731] [IV 0.44] based on rule: CP < 975 OR IV < 0.8
2016-08-18 22:14:23,246 [TransferPokemon] [INFO] [pokemon_release] Exchanged Raticate [CP 731] [IV 0.44] for candy.
2016-08-18 22:14:24,428 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Raticate [CP 701] [IV 0.73] based on rule: CP < 975 OR IV < 0.8
2016-08-18 22:14:24,601 [TransferPokemon] [INFO] [pokemon_release] Exchanged Raticate [CP 701] [IV 0.73] for candy.
2016-08-18 22:14:26,234 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Spearow [CP 316] [IV 0.4] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:14:26,393 [TransferPokemon] [INFO] [pokemon_release] Exchanged Spearow [CP 316] [IV 0.4] for candy.
2016-08-18 22:14:27,544 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Spearow [CP 293] [IV 0.53] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:14:27,720 [TransferPokemon] [INFO] [pokemon_release] Exchanged Spearow [CP 293] [IV 0.53] for candy.
2016-08-18 22:14:29,222 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Spearow [CP 46] [IV 0.6] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:14:29,392 [TransferPokemon] [INFO] [pokemon_release] Exchanged Spearow [CP 46] [IV 0.6] for candy.
2016-08-18 22:14:33,194 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Spearow [CP 10] [IV 0.69] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:14:33,377 [TransferPokemon] [INFO] [pokemon_release] Exchanged Spearow [CP 10] [IV 0.69] for candy.
2016-08-18 22:14:35,529 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Ekans [CP 184] [IV 0.49] based on rule: CP < 600 OR IV < 0.8
2016-08-18 22:14:35,715 [TransferPokemon] [INFO] [pokemon_release] Exchanged Ekans [CP 184] [IV 0.49] for candy.
2016-08-18 22:14:37,978 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Ekans [CP 156] [IV 0.33] based on rule: CP < 600 OR IV < 0.8
2016-08-18 22:14:38,141 [TransferPokemon] [INFO] [pokemon_release] Exchanged Ekans [CP 156] [IV 0.33] for candy.
2016-08-18 22:14:39,684 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pikachu [CP 457] [IV 0.67] based on rule: CP < 600 OR IV < 0.8
2016-08-18 22:14:39,904 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pikachu [CP 457] [IV 0.67] for candy.
2016-08-18 22:14:43,675 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pikachu [CP 385] [IV 0.4] based on rule: CP < 600 OR IV < 0.8
2016-08-18 22:14:43,867 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pikachu [CP 385] [IV 0.4] for candy.
2016-08-18 22:14:47,171 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pikachu [CP 330] [IV 0.49] based on rule: CP < 600 OR IV < 0.8
2016-08-18 22:14:47,344 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pikachu [CP 330] [IV 0.49] for candy.
2016-08-18 22:14:49,126 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pikachu [CP 316] [IV 0.36] based on rule: CP < 600 OR IV < 0.8
2016-08-18 22:14:49,285 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pikachu [CP 316] [IV 0.36] for candy.
2016-08-18 22:14:51,937 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pikachu [CP 290] [IV 0.27] based on rule: CP < 600 OR IV < 0.8
2016-08-18 22:14:52,107 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pikachu [CP 290] [IV 0.27] for candy.
2016-08-18 22:14:55,749 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pikachu [CP 235] [IV 0.4] based on rule: CP < 600 OR IV < 0.8
2016-08-18 22:14:56,115 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pikachu [CP 235] [IV 0.4] for candy.
2016-08-18 22:14:57,626 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pikachu [CP 184] [IV 0.27] based on rule: CP < 600 OR IV < 0.8
2016-08-18 22:14:57,800 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pikachu [CP 184] [IV 0.27] for candy.
2016-08-18 22:14:59,802 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pikachu [CP 144] [IV 0.38] based on rule: CP < 600 OR IV < 0.8
2016-08-18 22:14:59,970 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pikachu [CP 144] [IV 0.38] for candy.
2016-08-18 22:15:03,063 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pikachu [CP 34] [IV 0.49] based on rule: CP < 600 OR IV < 0.8
2016-08-18 22:15:03,236 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pikachu [CP 34] [IV 0.49] for candy.
2016-08-18 22:15:04,379 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Nidoran M [CP 82] [IV 0.73] based on rule: CP < 485 OR IV < 0.8
2016-08-18 22:15:04,548 [TransferPokemon] [INFO] [pokemon_release] Exchanged Nidoran M [CP 82] [IV 0.73] for candy.
2016-08-18 22:15:07,141 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Vulpix [CP 10] [IV 0.53] based on rule: CP < 290 AND IV < 0.8
2016-08-18 22:15:07,399 [TransferPokemon] [INFO] [pokemon_release] Exchanged Vulpix [CP 10] [IV 0.53] for candy.
2016-08-18 22:15:08,841 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Zubat [CP 202] [IV 0.36] based on rule: CP < 450 OR IV < 0.8
2016-08-18 22:15:09,010 [TransferPokemon] [INFO] [pokemon_release] Exchanged Zubat [CP 202] [IV 0.36] for candy.
2016-08-18 22:15:11,713 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Oddish [CP 372] [IV 0.38] based on rule: CP < 650 OR IV < 0.8
2016-08-18 22:15:11,886 [TransferPokemon] [INFO] [pokemon_release] Exchanged Oddish [CP 372] [IV 0.38] for candy.
2016-08-18 22:15:14,987 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Oddish [CP 114] [IV 0.71] based on rule: CP < 650 OR IV < 0.8
2016-08-18 22:15:15,212 [TransferPokemon] [INFO] [pokemon_release] Exchanged Oddish [CP 114] [IV 0.71] for candy.
2016-08-18 22:15:19,003 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Paras [CP 547] [IV 0.78] based on rule: CP < 725 OR IV < 0.8
2016-08-18 22:15:19,169 [TransferPokemon] [INFO] [pokemon_release] Exchanged Paras [CP 547] [IV 0.78] for candy.
2016-08-18 22:15:20,221 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Paras [CP 521] [IV 0.56] based on rule: CP < 725 OR IV < 0.8
2016-08-18 22:15:20,439 [TransferPokemon] [INFO] [pokemon_release] Exchanged Paras [CP 521] [IV 0.56] for candy.
2016-08-18 22:15:21,932 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Paras [CP 293] [IV 0.69] based on rule: CP < 725 OR IV < 0.8
2016-08-18 22:15:22,102 [TransferPokemon] [INFO] [pokemon_release] Exchanged Paras [CP 293] [IV 0.69] for candy.
2016-08-18 22:15:25,047 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Paras [CP 218] [IV 0.78] based on rule: CP < 725 OR IV < 0.8
2016-08-18 22:15:25,215 [TransferPokemon] [INFO] [pokemon_release] Exchanged Paras [CP 218] [IV 0.78] for candy.
2016-08-18 22:15:26,907 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Paras [CP 164] [IV 0.64] based on rule: CP < 725 OR IV < 0.8
2016-08-18 22:15:27,081 [TransferPokemon] [INFO] [pokemon_release] Exchanged Paras [CP 164] [IV 0.64] for candy.
2016-08-18 22:15:30,403 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Parasect [CP 71] [IV 0.49] based on rule: CP < 609 AND IV < 0.8
2016-08-18 22:15:30,563 [TransferPokemon] [INFO] [pokemon_release] Exchanged Parasect [CP 71] [IV 0.49] for candy.
2016-08-18 22:15:32,756 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Venonat [CP 524] [IV 0.38] based on rule: CP < 725 OR IV < 0.8
2016-08-18 22:15:32,930 [TransferPokemon] [INFO] [pokemon_release] Exchanged Venonat [CP 524] [IV 0.38] for candy.
2016-08-18 22:15:34,871 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Venonat [CP 411] [IV 0.76] based on rule: CP < 725 OR IV < 0.8
2016-08-18 22:15:35,049 [TransferPokemon] [INFO] [pokemon_release] Exchanged Venonat [CP 411] [IV 0.76] for candy.
2016-08-18 22:15:37,320 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Venonat [CP 234] [IV 0.38] based on rule: CP < 725 OR IV < 0.8
2016-08-18 22:15:37,487 [TransferPokemon] [INFO] [pokemon_release] Exchanged Venonat [CP 234] [IV 0.38] for candy.
2016-08-18 22:15:39,148 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Venonat [CP 94] [IV 0.47] based on rule: CP < 725 OR IV < 0.8
2016-08-18 22:15:39,309 [TransferPokemon] [INFO] [pokemon_release] Exchanged Venonat [CP 94] [IV 0.47] for candy.
2016-08-18 22:15:42,020 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Meowth [CP 10] [IV 0.84] based on rule: CP < 450 OR IV < 0.8
2016-08-18 22:15:42,181 [TransferPokemon] [INFO] [pokemon_release] Exchanged Meowth [CP 10] [IV 0.84] for candy.
2016-08-18 22:15:44,424 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Psyduck [CP 592] [IV 0.53] based on rule: CP < 620 OR IV < 0.9
2016-08-18 22:15:44,589 [TransferPokemon] [INFO] [pokemon_release] Exchanged Psyduck [CP 592] [IV 0.53] for candy.
2016-08-18 22:15:48,153 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Psyduck [CP 285] [IV 0.18] based on rule: CP < 620 OR IV < 0.9
2016-08-18 22:15:48,327 [TransferPokemon] [INFO] [pokemon_release] Exchanged Psyduck [CP 285] [IV 0.18] for candy.
2016-08-18 22:15:49,409 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Psyduck [CP 279] [IV 0.56] based on rule: CP < 620 OR IV < 0.9
2016-08-18 22:15:49,580 [TransferPokemon] [INFO] [pokemon_release] Exchanged Psyduck [CP 279] [IV 0.56] for candy.
2016-08-18 22:15:51,312 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Psyduck [CP 13] [IV 0.31] based on rule: CP < 620 OR IV < 0.9
2016-08-18 22:15:51,524 [TransferPokemon] [INFO] [pokemon_release] Exchanged Psyduck [CP 13] [IV 0.31] for candy.
2016-08-18 22:15:53,026 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Tentacool [CP 384] [IV 0.51] based on rule: CP < 650 OR IV < 0.8
2016-08-18 22:15:53,188 [TransferPokemon] [INFO] [pokemon_release] Exchanged Tentacool [CP 384] [IV 0.51] for candy.
2016-08-18 22:15:56,989 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Slowpoke [CP 660] [IV 0.38] based on rule: CP < 700 OR IV < 0.8
2016-08-18 22:15:57,238 [TransferPokemon] [INFO] [pokemon_release] Exchanged Slowpoke [CP 660] [IV 0.38] for candy.
2016-08-18 22:16:00,072 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Slowpoke [CP 587] [IV 0.56] based on rule: CP < 700 OR IV < 0.8
2016-08-18 22:16:00,234 [TransferPokemon] [INFO] [pokemon_release] Exchanged Slowpoke [CP 587] [IV 0.56] for candy.
2016-08-18 22:16:01,627 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Slowpoke [CP 566] [IV 0.33] based on rule: CP < 700 OR IV < 0.8
2016-08-18 22:16:01,866 [TransferPokemon] [INFO] [pokemon_release] Exchanged Slowpoke [CP 566] [IV 0.33] for candy.
2016-08-18 22:16:03,507 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Slowpoke [CP 263] [IV 0.2] based on rule: CP < 700 OR IV < 0.8
2016-08-18 22:16:03,671 [TransferPokemon] [INFO] [pokemon_release] Exchanged Slowpoke [CP 263] [IV 0.2] for candy.
2016-08-18 22:16:06,374 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Slowpoke [CP 213] [IV 0.6] based on rule: CP < 700 OR IV < 0.8
2016-08-18 22:16:06,541 [TransferPokemon] [INFO] [pokemon_release] Exchanged Slowpoke [CP 213] [IV 0.6] for candy.
2016-08-18 22:16:09,523 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Kingler [CP 682] [IV 0.6] based on rule: CP < 1025 OR IV < 0.8
2016-08-18 22:16:09,730 [TransferPokemon] [INFO] [pokemon_release] Exchanged Kingler [CP 682] [IV 0.6] for candy.
2016-08-18 22:16:11,243 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Exeggcute [CP 107] [IV 0.8] based on rule: CP < 650 OR IV < 0.8
2016-08-18 22:16:11,405 [TransferPokemon] [INFO] [pokemon_release] Exchanged Exeggcute [CP 107] [IV 0.8] for candy.
2016-08-18 22:16:14,886 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Koffing [CP 696] [IV 0.67] based on rule: CP < 675 OR IV < 0.8
2016-08-18 22:16:15,068 [TransferPokemon] [INFO] [pokemon_release] Exchanged Koffing [CP 696] [IV 0.67] for candy.
2016-08-18 22:16:18,970 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Koffing [CP 560] [IV 0.47] based on rule: CP < 675 OR IV < 0.8
2016-08-18 22:16:19,134 [TransferPokemon] [INFO] [pokemon_release] Exchanged Koffing [CP 560] [IV 0.47] for candy.
2016-08-18 22:16:21,355 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Koffing [CP 149] [IV 0.8] based on rule: CP < 675 OR IV < 0.8
2016-08-18 22:16:21,532 [TransferPokemon] [INFO] [pokemon_release] Exchanged Koffing [CP 149] [IV 0.8] for candy.
2016-08-18 22:16:25,416 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 271] [IV 0.36] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:16:25,607 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 271] [IV 0.36] for candy.
2016-08-18 22:16:28,089 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 263] [IV 0.8] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:16:28,277 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 263] [IV 0.8] for candy.
2016-08-18 22:16:31,439 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 241] [IV 0.64] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:16:31,601 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 241] [IV 0.64] for candy.
2016-08-18 22:16:34,473 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 220] [IV 0.62] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:16:34,655 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 220] [IV 0.62] for candy.
2016-08-18 22:16:38,138 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 207] [IV 0.42] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:16:38,318 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 207] [IV 0.42] for candy.
2016-08-18 22:16:41,840 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 194] [IV 0.22] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:16:42,038 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 194] [IV 0.22] for candy.
2016-08-18 22:16:43,320 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 168] [IV 0.47] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:16:43,487 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 168] [IV 0.47] for candy.
2016-08-18 22:16:45,889 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 150] [IV 0.38] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:16:46,077 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 150] [IV 0.38] for candy.
2016-08-18 22:16:49,629 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 136] [IV 0.4] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:16:49,795 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 136] [IV 0.4] for candy.
2016-08-18 22:16:52,677 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 135] [IV 0.36] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:16:52,838 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 135] [IV 0.36] for candy.
2016-08-18 22:16:56,640 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 132] [IV 0.29] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:16:56,922 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 132] [IV 0.29] for candy.
2016-08-18 22:17:00,195 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 101] [IV 0.67] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:17:00,396 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 101] [IV 0.67] for candy.
2016-08-18 22:17:03,599 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 51] [IV 0.47] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:17:03,771 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 51] [IV 0.47] for candy.
2016-08-18 22:17:05,944 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 50] [IV 0.42] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:17:06,099 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 50] [IV 0.42] for candy.
2016-08-18 22:17:07,652 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 37] [IV 0.62] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:17:07,979 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 37] [IV 0.62] for candy.
2016-08-18 22:17:09,192 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 36] [IV 0.4] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:17:09,462 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 36] [IV 0.4] for candy.
2016-08-18 22:17:13,144 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 22] [IV 0.67] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:17:13,309 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 22] [IV 0.67] for candy.
2016-08-18 22:17:17,301 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 10] [IV 0.67] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:17:17,463 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 10] [IV 0.67] for candy.
2016-08-18 22:17:20,755 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 10] [IV 0.67] based on rule: CP < 375 OR IV < 0.8
2016-08-18 22:17:20,916 [TransferPokemon] [INFO] [pokemon_release] Exchanged Rattata [CP 10] [IV 0.67] for candy.
2016-08-18 22:17:23,067 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Goldeen [CP 213] [IV 0.91] based on rule: CP < 670 OR IV < 0.8
2016-08-18 22:17:23,252 [TransferPokemon] [INFO] [pokemon_release] Exchanged Goldeen [CP 213] [IV 0.91] for candy.
2016-08-18 22:17:26,723 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Goldeen [CP 66] [IV 0.58] based on rule: CP < 670 OR IV < 0.8
2016-08-18 22:17:26,904 [TransferPokemon] [INFO] [pokemon_release] Exchanged Goldeen [CP 66] [IV 0.58] for candy.
2016-08-18 22:17:29,301 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Slowpoke appeared! [CP 291] [Potential 0.22] [A/D/S 4/1/5]
2016-08-18 22:17:34,185 [PokemonCatchWorker] [INFO] [threw_pokeball] Nice throw! Used Pokeball, with chance 47.34 (31 left)
2016-08-18 22:17:34,304 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Slowpoke! [CP 291] [Potential 0.22] [4/1/5] [+110 exp]
2016-08-18 22:17:34,308 [PokemonCatchWorker] [INFO] [gained_candy] You now have 165 Slowpoke candy!
2016-08-18 22:17:39,469 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop Smokedance. Experience awarded: 50. Items awarded: {u'Potion': 1, u'Pokeball': 1, u'Revive': 1}
2016-08-18 22:17:41,897 [FollowPath] [INFO] [position_update] Walk to (30.160343, -95.464246, 0) now at (30.160343, -95.464246, 0), distance left: (0.0 m) ..
2016-08-18 22:17:44,309 [UpdateLiveStats] [INFO] [log_stats] Uptime : 0:11:41 | Earned 100 Stardust | +9,160 XP | 47,053 XP/h | Visited 1 stops
2016-08-18 22:17:44,310 [UpdateLiveInventory] [INFO] [show_inventory] Items: 337/350 | Pokeballs: 32 | GreatBalls: 0 | UltraBalls: 113 | RazzBerries: 38 | LuckyEgg: 5
2016-08-18 22:17:45,167 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.1603356917537, -95.46423035013925, 0), distance left: (210.867216623 m) ..
2016-08-18 22:17:46,089 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160366132541395, -95.4642435526655, 0), distance left: (208.179819767 m) ..
2016-08-18 22:17:47,440 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16040934683456, -95.46424391467525, 0), distance left: (203.737798317 m) ..
2016-08-18 22:17:48,700 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160414488254233, -95.46421075871133, 0), distance left: (202.019474623 m) ..
2016-08-18 22:17:49,985 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16042568384223, -95.46419366789048, 0), distance left: (200.262062817 m) ..
2016-08-18 22:17:51,235 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160428816145927, -95.46419268040627, 0), distance left: (199.902997169 m) ..
2016-08-18 22:17:52,171 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16044779161904, -95.46417681229303, 0), distance left: (197.38531207 m) ..
2016-08-18 22:17:53,443 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160441813328642, -95.46418993225, 0), distance left: (198.4601964 m) ..
2016-08-18 22:17:54,719 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160477992094364, -95.46419892536052, 0), distance left: (195.038253422 m) ..
2016-08-18 22:17:55,632 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16050793090412, -95.46421022632373, 0), distance left: (192.369366378 m) ..
2016-08-18 22:17:56,930 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16050144509997, -95.46420868133767, 0), distance left: (192.978461509 m) ..
2016-08-18 22:17:58,247 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160515758111284, -95.46422247308293, 0), distance left: (192.023788797 m) ..
2016-08-18 22:17:59,385 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop Smokedance . Experience awarded: 50. Items awarded: {u'Pokeball': 1, u'Revive': 1, u'Hyper Potion': 1}
2016-08-18 22:18:02,163 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160549650146628, -95.46418877560588, 0), distance left: (187.294113869 m) ..
2016-08-18 22:18:05,403 [ItemRecycler] [INFO] [item_discarded] Discarded 10x Potion.
2016-08-18 22:18:07,242 [ItemRecycler] [INFO] [item_discarded] Discarded 6x Revive.
2016-08-18 22:18:08,560 [ItemRecycler] [INFO] [item_discarded] Discarded 8x Pokeball.
2016-08-18 22:18:11,877 [ItemRecycler] [INFO] [item_discarded] Discarded 13x Ultraball.
2016-08-18 22:18:12,985 [ItemRecycler] [INFO] [item_discarded] Discarded 16x Potion.
2016-08-18 22:18:16,372 [ItemRecycler] [INFO] [item_discarded] Discarded 8x Super Potion.
2016-08-18 22:18:18,611 [ItemRecycler] [INFO] [item_discarded] Discarded 26x Hyper Potion.
2016-08-18 22:18:22,710 [ItemRecycler] [INFO] [item_discarded] Discarded 50x Revive.
2016-08-18 22:18:26,581 [ItemRecycler] [INFO] [item_discarded] Discarded 13x Razz Berry.
2016-08-18 22:18:27,784 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160572813595447, -95.46416089718308, 0), distance left: (183.892958988 m) ..
2016-08-18 22:18:27,857 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Slowpoke [CP 291] [IV 0.22] based on rule: CP < 700 OR IV < 0.8
2016-08-18 22:18:28,225 [TransferPokemon] [INFO] [pokemon_release] Exchanged Slowpoke [CP 291] [IV 0.22] for candy.
2016-08-18 22:18:30,031 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160593108791794, -95.46416439230944, 0), distance left: (181.932324493 m) ..
2016-08-18 22:18:31,404 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16061174562493, -95.46414990928287, 0), distance left: (179.485795891 m) ..
2016-08-18 22:18:32,290 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16061522427628, -95.4641243493736, 0), distance left: (178.207545576 m) ..
2016-08-18 22:18:33,599 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16065712926181, -95.46411592959893, 0), distance left: (173.580376229 m) ..
2016-08-18 22:18:34,420 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160698311335697, -95.46411538487621, 0), distance left: (169.321726113 m) ..
2016-08-18 22:18:35,727 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160723299802022, -95.46412524261785, 0), distance left: (167.129046246 m) ..
2016-08-18 22:18:36,703 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160768187661496, -95.46411891077007, 0), distance left: (162.30713813 m) ..
2016-08-18 22:18:37,994 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160797054984556, -95.464093287951, 0), distance left: (158.381158419 m) ..
2016-08-18 22:18:38,334 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Weedle appeared! [CP 161] [Potential 0.24] [A/D/S 2/3/6]
2016-08-18 22:18:46,265 [PokemonCatchWorker] [INFO] [threw_pokeball] Great throw! Used Pokeball, with chance 36.31 (24 left)
2016-08-18 22:18:46,360 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Weedle capture failed.. trying again!
2016-08-18 22:18:55,845 [PokemonCatchWorker] [INFO] [threw_pokeball] Excellent Curveball throw! Used Pokeball, with chance 36.31 (23 left)
2016-08-18 22:18:55,941 [PokemonCatchWorker] [INFO] [pokemon_vanished] Weedle vanished!
2016-08-18 22:19:01,880 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160830418152084, -95.46409065983421, 0), distance left: (154.879449053 m) ..
2016-08-18 22:19:03,035 [UpdateLiveStats] [INFO] [log_stats] Uptime : 0:13:00 | Earned 100 Stardust | +9,235 XP | 42,647 XP/h | Visited 2 stops
2016-08-18 22:19:03,036 [UpdateLiveInventory] [INFO] [show_inventory] Items: 188/350 | Pokeballs: 23 | GreatBalls: 0 | UltraBalls: 100 | RazzBerries: 25 | LuckyEgg: 5
2016-08-18 22:19:03,744 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16083958471568, -95.46410323412353, 0), distance left: (154.441668616 m) ..
2016-08-18 22:19:04,873 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16087225529433, -95.46408783944547, 0), distance left: (150.5218584 m) ..
2016-08-18 22:19:05,868 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160910516872207, -95.46407722639789, 0), distance left: (146.228218092 m) ..
2016-08-18 22:19:06,845 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160940137592632, -95.46404931696058, 0), distance left: (142.118111783 m) ..
2016-08-18 22:19:07,925 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160948180073646, -95.46405473956125, 0), distance left: (141.520098812 m) ..
2016-08-18 22:19:08,761 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160974598274144, -95.464030992581, 0), distance left: (137.900787034 m) ..
2016-08-18 22:19:09,880 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160983923907065, -95.4640274242754, 0), distance left: (136.814525606 m) ..
2016-08-18 22:19:11,188 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160976753898304, -95.4640388639049, 0), distance left: (137.995811114 m) ..
2016-08-18 22:19:12,353 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161004855758907, -95.46401527527419, 0), distance left: (134.212531194 m) ..
2016-08-18 22:19:13,234 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161006776816016, -95.46402614799818, 0), distance left: (134.451857408 m) ..
2016-08-18 22:19:14,310 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161029946654338, -95.46399246805314, 0), distance left: (130.77029679 m) ..
2016-08-18 22:19:15,694 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161028348477984, -95.46397394667454, 0), distance left: (130.221943393 m) ..
2016-08-18 22:19:16,862 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161059541988422, -95.4639655815556, 0), distance left: (126.718255514 m) ..
2016-08-18 22:19:17,999 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16105206934901, -95.46398204714575, 0), distance left: (128.1154789 m) ..
2016-08-18 22:19:19,214 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16107505735576, -95.46398963692081, 0), distance left: (126.087274802 m) ..
2016-08-18 22:19:20,407 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161074760359828, -95.46398597696775, 0), distance left: (125.970500565 m) ..
2016-08-18 22:19:21,531 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161084842347744, -95.46398442817028, 0), distance left: (124.889517039 m) ..
2016-08-18 22:19:22,802 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161095542189614, -95.46398845790641, 0), distance left: (123.973824808 m) ..
2016-08-18 22:19:23,941 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161120339104002, -95.46399924307693, 0), distance left: (121.935833477 m) ..
2016-08-18 22:19:25,064 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16115417812822, -95.464002620453, 0), distance left: (118.716045504 m) ..
2016-08-18 22:19:26,193 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16118458289628, -95.46400069360205, 0), distance left: (115.629012692 m) ..
2016-08-18 22:19:27,499 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161214996647992, -95.46399414077726, 0), distance left: (112.347068657 m) ..
2016-08-18 22:19:28,399 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161232623165468, -95.46396203406614, 0), distance left: (109.174207371 m) ..
2016-08-18 22:19:29,564 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161239833795626, -95.46397748599098, 0), distance left: (109.156451181 m) ..
2016-08-18 22:19:30,859 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161278214645183, -95.46397479222415, 0), distance left: (105.287979956 m) ..
2016-08-18 22:19:31,864 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161279063402283, -95.46396309223618, 0), distance left: (104.661509615 m) ..
2016-08-18 22:19:32,693 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16128165443823, -95.46396227735963, 0), distance left: (104.371136407 m) ..
2016-08-18 22:19:34,047 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161291200825566, -95.4639460230949, 0), distance left: (102.69322572 m) ..
2016-08-18 22:19:35,156 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16128332312855, -95.46392348894754, 0), distance left: (102.467150688 m) ..
2016-08-18 22:19:36,201 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161300515135416, -95.46388827711417, 0), distance left: (99.2534742516 m) ..
2016-08-18 22:19:37,053 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161296825162196, -95.46386250301639, 0), distance left: (98.5791796457 m) ..
2016-08-18 22:19:38,103 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16131233134245, -95.46384498210224, 0), distance left: (96.3184857818 m) ..
2016-08-18 22:19:39,247 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16134746362797, -95.46383487043191, 0), distance left: (92.3541834821 m) ..
2016-08-18 22:19:40,264 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop Cynthia Woods Mitchell Memorial. Experience awarded: 50. Items awarded: {u'Pokeball': 1, u'Revive': 1, u'Greatball': 1}
2016-08-18 22:19:43,672 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16137168339689, -95.4638205273123, 0), distance left: (89.3325835434 m) ..
2016-08-18 22:19:44,509 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16139906157544, -95.46382290079652, 0), distance left: (86.6592113489 m) ..
2016-08-18 22:19:45,698 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161415906615787, -95.46382086978875, 0), distance left: (84.8820020252 m) ..
2016-08-18 22:19:46,673 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161440470418913, -95.46383765562373, 0), distance left: (83.1523804983 m) ..
2016-08-18 22:19:47,887 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161478839073787, -95.4638427254379, 0), distance left: (79.6205084644 m) ..
2016-08-18 22:19:48,947 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16147280150929, -95.4638549022347, 0), distance left: (80.7784798029 m) ..
2016-08-18 22:19:50,269 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16150801158402, -95.46382621064582, 0), distance left: (76.0139568624 m) ..
2016-08-18 22:19:51,261 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161507048345143, -95.46381509644212, 0), distance left: (75.5932964529 m) ..
2016-08-18 22:19:52,284 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161504664350986, -95.463813213739, 0), distance left: (75.7409020119 m) ..
2016-08-18 22:19:53,570 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16154150334479, -95.46380982331651, 0), distance left: (71.995424324 m) ..
2016-08-18 22:19:54,527 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161570308414824, -95.46380426169387, 0), distance left: (68.9534679813 m) ..
2016-08-18 22:19:55,415 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161588745094107, -95.46380700035, 0), distance left: (67.3310794803 m) ..
2016-08-18 22:19:56,282 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161597061650735, -95.46380106477064, 0), distance left: (66.2444626874 m) ..
2016-08-18 22:19:57,596 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161596763067216, -95.46376938578135, 0), distance left: (64.7340224333 m) ..
2016-08-18 22:19:58,661 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161640313558816, -95.46374888060652, 0), distance left: (59.5484303878 m) ..
2016-08-18 22:19:59,639 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161665266030806, -95.46372578919511, 0), distance left: (56.0400419386 m) ..
2016-08-18 22:20:00,734 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161652218752693, -95.4637173833024, 0), distance left: (56.9285491709 m) ..
2016-08-18 22:20:02,092 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16166658234854, -95.46373500339477, 0), distance left: (56.3514265264 m) ..
2016-08-18 22:20:02,929 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16170435137042, -95.46369883181585, 0), distance left: (50.9818424004 m) ..
2016-08-18 22:20:03,830 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161712472762446, -95.4637121720208, 0), distance left: (50.8402869896 m) ..
2016-08-18 22:20:05,167 [UpdateLiveStats] [INFO] [log_stats] Uptime : 0:14:02 | Earned 100 Stardust | +9,285 XP | 39,713 XP/h | Visited 3 stops
2016-08-18 22:20:05,168 [UpdateLiveInventory] [INFO] [show_inventory] Items: 191/350 | Pokeballs: 24 | GreatBalls: 1 | UltraBalls: 100 | RazzBerries: 25 | LuckyEgg: 5
2016-08-18 22:20:05,293 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Rattata appeared! [CP 129] [Potential 0.56] [A/D/S 9/3/13]
2016-08-18 22:20:11,925 [PokemonCatchWorker] [INFO] [threw_pokeball] Nice throw! Used Pokeball, with chance 50.05 (23 left)
2016-08-18 22:20:12,030 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Rattata capture failed.. trying again!
2016-08-18 22:20:18,958 [PokemonCatchWorker] [INFO] [threw_pokeball] Great throw! Used Pokeball, with chance 50.05 (22 left)
2016-08-18 22:20:19,054 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Rattata capture failed.. trying again!
2016-08-18 22:20:28,106 [PokemonCatchWorker] [INFO] [threw_pokeball] Excellent Curveball throw! Used Pokeball, with chance 50.05 (21 left)
2016-08-18 22:20:28,224 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Rattata! [CP 129] [Potential 0.56] [9/3/13] [+210 exp]
2016-08-18 22:20:28,228 [PokemonCatchWorker] [INFO] [gained_candy] You now have 29 Rattata candy!
2016-08-18 22:20:34,018 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161741605260914, -95.46371852961403, 0), distance left: (48.4220013987 m) ..
2016-08-18 22:20:35,036 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16177163493475, -95.46369029429155, 0), distance left: (44.1418737227 m) ..
2016-08-18 22:20:36,205 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161773528945766, -95.46370169361813, 0), distance left: (44.5719878195 m) ..
2016-08-18 22:20:37,039 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161807684867547, -95.46366460298829, 0), distance left: (39.4346267516 m) ..
2016-08-18 22:20:38,283 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161813512244002, -95.4636447224179, 0), distance left: (37.8701580991 m) ..
2016-08-18 22:20:39,287 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161817945500342, -95.46363896419096, 0), distance left: (37.1625517269 m) ..
2016-08-18 22:20:40,212 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161821634016516, -95.46362899547373, 0), distance left: (36.324490777 m) ..
2016-08-18 22:20:41,568 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16184670833672, -95.4636194541523, 0), distance left: (33.4549099094 m) ..
2016-08-18 22:20:42,698 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161852260366235, -95.46363220174476, 0), distance left: (33.581308285 m) ..
2016-08-18 22:20:43,812 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16186687966117, -95.46361045796446, 0), distance left: (31.0884673591 m) ..
2016-08-18 22:20:45,130 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16186630716289, -95.46358301965249, 0), distance left: (29.8475493095 m) ..
2016-08-18 22:20:46,054 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161871718242097, -95.46358686737274, 0), distance left: (29.4879050545 m) ..
2016-08-18 22:20:47,149 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161873973280205, -95.46358369356582, 0), distance left: (29.1225915397 m) ..
2016-08-18 22:20:48,192 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16188210503508, -95.463547903764, 0), distance left: (26.8312832168 m) ..
2016-08-18 22:20:49,058 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16191576739663, -95.46353389476621, 0), distance left: (22.8585611126 m) ..
2016-08-18 22:20:50,135 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16194410349111, -95.46352897652824, 0), distance left: (19.7895023495 m) ..
2016-08-18 22:20:51,293 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16198540309017, -95.46353045285939, 0), distance left: (15.8370801546 m) ..
2016-08-18 22:20:51,542 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Caterpie appeared! [CP 87] [Potential 0.47] [A/D/S 0/14/7]
2016-08-18 22:20:58,896 [PokemonCatchWorker] [INFO] [threw_pokeball] Nice throw! Used Pokeball, with chance 50.05 (20 left)
2016-08-18 22:20:58,996 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Caterpie! [CP 87] [Potential 0.47] [0/14/7] [+110 exp]
2016-08-18 22:20:59,001 [PokemonCatchWorker] [INFO] [gained_candy] You now have 16 Caterpie candy!
2016-08-18 22:21:05,250 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16200418339127, -95.46351919662345, 0), distance left: (13.4979059005 m) ..
2016-08-18 22:21:05,436 [UpdateLiveStats] [INFO] [log_stats] Uptime : 0:15:02 | Earned 300 Stardust | +9,605 XP | 38,336 XP/h | Visited 3 stops
2016-08-18 22:21:05,437 [UpdateLiveInventory] [INFO] [show_inventory] Items: 187/350 | Pokeballs: 20 | GreatBalls: 1 | UltraBalls: 100 | RazzBerries: 25 | LuckyEgg: 5
2016-08-18 22:21:06,361 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.162039463199267, -95.46351560811786, 0), distance left: (10.2249606336 m) ..
2016-08-18 22:21:07,574 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.162040421157453, -95.46352177893668, 0), distance left: (10.5771020897 m) ..
2016-08-18 22:21:08,946 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.162037734293282, -95.46351945980346, 0), distance left: (10.6225889712 m) ..
2016-08-18 22:21:10,053 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.162054683405756, -95.46351255886466, 0), distance left: (8.86744058353 m) ..
2016-08-18 22:21:11,497 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.162043091266412, -95.46348981136475, 0), distance left: (8.33147368494 m) ..
2016-08-18 22:21:12,569 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16205946782854, -95.46348198887175, 0), distance left: (6.41575374252 m) ..
2016-08-18 22:21:13,879 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop Tribute to Cynthia Woods Mitchell. Experience awarded: 50. Items awarded: {u'Pokeball': 3}
2016-08-18 22:21:15,963 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16207868837069, -95.46345897978267, 0), distance left: (3.39805098299 m) ..
2016-08-18 22:21:18,055 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162088621143333, -95.46343183938016, 0), distance left: (270.398841361 m) ..
2016-08-18 22:21:19,200 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162113135250095, -95.46342710267412, 0), distance left: (267.7014303 m) ..
2016-08-18 22:21:20,106 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16213384993841, -95.46344820725928, 0), distance left: (265.296937804 m) ..
2016-08-18 22:21:21,436 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16215526370694, -95.46344543495276, 0), distance left: (262.931548567 m) ..
2016-08-18 22:21:22,620 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16218863723806, -95.46342787997129, 0), distance left: (259.314858209 m) ..
2016-08-18 22:21:23,467 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162186246827318, -95.4634038256619, 0), distance left: (259.720766304 m) ..
2016-08-18 22:21:24,325 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162183285553237, -95.46340992047489, 0), distance left: (260.011851667 m) ..
2016-08-18 22:21:25,505 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16222112668198, -95.46342683158247, 0), distance left: (255.71380967 m) ..
2016-08-18 22:21:26,811 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162264136770894, -95.4634486856948, 0), distance left: (250.824869036 m) ..
2016-08-18 22:21:27,924 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162283298616178, -95.46347448158342, 0), distance left: (248.583350182 m) ..
2016-08-18 22:21:28,202 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Bellsprout appeared! [CP 324] [Potential 0.69] [A/D/S 13/3/15]
2016-08-18 22:21:34,405 [PokemonCatchWorker] [INFO] [threw_pokeball] Great throw! Used Pokeball, with chance 45.14 (22 left)
2016-08-18 22:21:34,497 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Bellsprout capture failed.. trying again!
2016-08-18 22:21:39,495 [PokemonCatchWorker] [INFO] [threw_pokeball] Great throw! Used Pokeball, with chance 45.14 (21 left)
2016-08-18 22:21:39,600 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Bellsprout! [CP 324] [Potential 0.69] [13/3/15] [+150 exp]
2016-08-18 22:21:39,605 [PokemonCatchWorker] [INFO] [gained_candy] You now have 65 Bellsprout candy!
2016-08-18 22:21:45,858 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.1623299754975, -95.46347030189226, 0), distance left: (243.414602066 m) ..
2016-08-18 22:21:46,815 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162363182798583, -95.46349559686742, 0), distance left: (239.630976468 m) ..
2016-08-18 22:21:47,976 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16238932594166, -95.46348702791636, 0), distance left: (236.755331845 m) ..
2016-08-18 22:21:49,016 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16239548997604, -95.46350935962, 0), distance left: (235.998888628 m) ..
2016-08-18 22:21:50,093 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162444807729138, -95.46350933449143, 0), distance left: (230.517395378 m) ..
2016-08-18 22:21:50,986 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16245333862071, -95.46353173011268, 0), distance left: (229.515582844 m) ..
2016-08-18 22:21:51,867 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162447988149324, -95.46350712351659, 0), distance left: (230.170281759 m) ..
2016-08-18 22:21:53,228 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162480603236016, -95.46348700579726, 0), distance left: (226.613412502 m) ..
2016-08-18 22:21:54,408 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162490865769293, -95.46347584353298, 0), distance left: (225.518263974 m) ..
2016-08-18 22:21:55,526 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162514376322456, -95.46345302185314, 0), distance left: (223.015937162 m) ..
2016-08-18 22:21:56,511 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162535907619684, -95.46347751812979, 0), distance left: (220.507627506 m) ..
2016-08-18 22:21:57,839 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162540137104447, -95.46348970874523, 0), distance left: (219.988445344 m) ..
2016-08-18 22:21:59,022 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162579787198126, -95.4635123871437, 0), distance left: (215.506293736 m) ..
2016-08-18 22:22:00,485 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162588758588104, -95.46350161591539, 0), distance left: (214.543058866 m) ..
2016-08-18 22:22:01,730 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.1626391031903, -95.4634970147179, 0), distance left: (208.964944868 m) ..
2016-08-18 22:22:02,060 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Rattata appeared! [CP 200] [Potential 0.51] [A/D/S 10/5/8]
2016-08-18 22:22:07,603 [PokemonCatchWorker] [INFO] [threw_pokeball] Nice Curveball throw! Used Pokeball, with chance 40.01 (20 left)
2016-08-18 22:22:07,737 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Rattata! [CP 200] [Potential 0.51] [10/5/8] [+120 exp]
2016-08-18 22:22:07,741 [PokemonCatchWorker] [INFO] [gained_candy] You now have 32 Rattata candy!
2016-08-18 22:22:13,873 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16266799280012, -95.46351717555818, 0), distance left: (205.688925916 m) ..
2016-08-18 22:22:14,068 [UpdateLiveStats] [INFO] [log_stats] Uptime : 0:16:11 | Earned 500 Stardust | +9,925 XP | 36,812 XP/h | Visited 4 stops
2016-08-18 22:22:14,069 [UpdateLiveInventory] [INFO] [show_inventory] Items: 187/350 | Pokeballs: 20 | GreatBalls: 1 | UltraBalls: 100 | RazzBerries: 25 | LuckyEgg: 5
2016-08-18 22:22:14,883 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16271235201707, -95.46351086622359, 0), distance left: (200.777752624 m) ..
2016-08-18 22:22:15,922 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16274138254583, -95.46349227970624, 0), distance left: (197.619671594 m) ..
2016-08-18 22:22:17,213 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16277018436709, -95.46349713112167, 0), distance left: (194.400356905 m) ..
2016-08-18 22:22:18,198 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162782629046852, -95.46348810687172, 0), distance left: (193.055498815 m) ..
2016-08-18 22:22:19,097 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16282709720742, -95.46348011604196, 0), distance left: (188.153817217 m) ..
2016-08-18 22:22:19,917 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.1628463323703, -95.46345626690834, 0), distance left: (186.150235238 m) ..
2016-08-18 22:22:20,694 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16288034450596, -95.46346694996065, 0), distance left: (182.312044078 m) ..
2016-08-18 22:22:20,826 [CatchLuredPokemon] [INFO] [lured_pokemon_found] Lured pokemon at fort Fountain on Market Street (ed094f9d43ff47a9bdaa6ca5f04a0ae2.16)
2016-08-18 22:22:20,940 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Weedle appeared! [CP 26] [Potential 0.51] [A/D/S 2/14/7]
2016-08-18 22:22:28,552 [PokemonCatchWorker] [INFO] [threw_pokeball] Great throw! Used Pokeball, with chance 92.71 (19 left)
2016-08-18 22:22:28,659 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Weedle! [CP 26] [Potential 0.51] [2/14/7] [+150 exp]
2016-08-18 22:22:28,664 [PokemonCatchWorker] [INFO] [gained_candy] You now have 21 Weedle candy!
2016-08-18 22:22:33,768 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop Fountain on Market Street. Experience awarded: 50. Items awarded: {u'Pokeball': 3, u'Greatball': 1}
2016-08-18 22:22:37,015 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16291292188394, -95.46344335401913, 0), distance left: (178.848464165 m) ..
2016-08-18 22:22:37,203 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Caterpie appeared! [CP 176] [Potential 0.13] [A/D/S 0/2/4]
2016-08-18 22:22:45,557 [PokemonCatchWorker] [INFO] [threw_pokeball] Great throw! Used Greatball, with chance 45.74 (1 left)
2016-08-18 22:22:45,652 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Caterpie! [CP 176] [Potential 0.13] [0/2/4] [+150 exp]
2016-08-18 22:22:45,656 [PokemonCatchWorker] [INFO] [gained_candy] You now have 19 Caterpie candy!
2016-08-18 22:22:51,703 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162922701222005, -95.4634523110615, 0), distance left: (177.702460043 m) ..
2016-08-18 22:22:52,715 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162921746642223, -95.46344693441954, 0), distance left: (177.844780702 m) ..
2016-08-18 22:22:53,619 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16291962324397, -95.46344300459559, 0), distance left: (178.107814513 m) ..
2016-08-18 22:22:54,914 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16292758153515, -95.46345476640259, 0), distance left: (177.144882134 m) ..
2016-08-18 22:22:55,999 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162962114903312, -95.4634382178656, 0), distance left: (173.431827064 m) ..
2016-08-18 22:22:57,091 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16297434570145, -95.46342168876615, 0), distance left: (172.209229025 m) ..
2016-08-18 22:22:57,944 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.162977459260272, -95.46341967559499, 0), distance left: (171.881604398 m) ..
2016-08-18 22:22:59,202 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163020337105813, -95.46340091326701, 0), distance left: (167.309562686 m) ..
2016-08-18 22:23:00,327 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16304677326125, -95.46341657408726, 0), distance left: (164.234996418 m) ..
2016-08-18 22:23:01,499 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16304670534662, -95.46340588189045, 0), distance left: (164.344027375 m) ..
2016-08-18 22:23:02,515 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163069893246753, -95.46339958443421, 0), distance left: (161.843043206 m) ..
2016-08-18 22:23:03,350 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163107321798982, -95.46338711252204, 0), distance left: (157.842150174 m) ..
2016-08-18 22:23:04,288 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163152358621847, -95.46340655344599, 0), distance left: (152.654656718 m) ..
2016-08-18 22:23:05,124 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163158873942525, -95.46341994086737, 0), distance left: (151.798671424 m) ..
2016-08-18 22:23:06,198 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16318828866503, -95.46343536150142, 0), distance left: (148.398866576 m) ..
2016-08-18 22:23:07,400 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163194910943247, -95.46341972161248, 0), distance left: (147.81493187 m) ..
2016-08-18 22:23:08,719 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16320633307318, -95.46343618953917, 0), distance left: (146.393819155 m) ..
2016-08-18 22:23:09,548 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16322096874503, -95.46345618830588, 0), distance left: (144.602830805 m) ..
2016-08-18 22:23:10,557 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163221464624222, -95.46343525226229, 0), distance left: (144.727513216 m) ..
2016-08-18 22:23:11,503 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16324627834956, -95.46341283729012, 0), distance left: (142.208771096 m) ..
2016-08-18 22:23:12,298 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16328017470923, -95.46340663021554, 0), distance left: (138.535028594 m) ..
2016-08-18 22:23:13,513 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163300596143745, -95.46341921520977, 0), distance left: (136.138334178 m) ..
2016-08-18 22:23:14,550 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16330852208173, -95.4634420569295, 0), distance left: (135.029408825 m) ..
2016-08-18 22:23:15,886 [UpdateLiveStats] [INFO] [log_stats] Uptime : 0:17:12 | Earned 700 Stardust | +10,275 XP | 35,829 XP/h | Visited 5 stops
2016-08-18 22:23:15,887 [UpdateLiveInventory] [INFO] [show_inventory] Items: 189/350 | Pokeballs: 22 | GreatBalls: 1 | UltraBalls: 100 | RazzBerries: 25 | LuckyEgg: 5
2016-08-18 22:23:16,853 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163331620130055, -95.46345539169401, 0), distance left: (132.351480576 m) ..
2016-08-18 22:23:17,795 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163352081180047, -95.46346088516891, 0), distance left: (130.038261208 m) ..
2016-08-18 22:23:19,088 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163385366595325, -95.46343918370536, 0), distance left: (126.558036233 m) ..
2016-08-18 22:23:20,177 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163422441722695, -95.46342007753941, 0), distance left: (122.676551338 m) ..
2016-08-18 22:23:21,100 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163412210607447, -95.46344566022834, 0), distance left: (123.523994704 m) ..
2016-08-18 22:23:21,232 [CatchLuredPokemon] [INFO] [lured_pokemon_found] Lured pokemon at fort Two Plus Two Equal One by Harry Marinsky (73b42afbfcb540cf96a676d36e7ffeb9.11)
2016-08-18 22:23:21,364 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Rattata appeared! [CP 123] [Potential 0.47] [A/D/S 8/13/0]
2016-08-18 22:23:28,588 [PokemonCatchWorker] [INFO] [threw_pokeball] OK throw! Used Pokeball, with chance 50.05 (21 left)
2016-08-18 22:23:28,690 [PokemonCatchWorker] [INFO] [pokemon_vanished] Rattata vanished!
2016-08-18 22:23:33,790 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop Two Plus Two Equal One by Harry Marinsky. Experience awarded: 50. Items awarded: {u'Pokeball': 3}
2016-08-18 22:23:36,856 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163421143613096, -95.4634567256621, 0), distance left: (122.428637018 m) ..
2016-08-18 22:23:36,929 [CatchLuredPokemon] [INFO] [lured_pokemon_found] Lured pokemon at fort Two Plus Two Equal One by Harry Marinsky (73b42afbfcb540cf96a676d36e7ffeb9.11)
2016-08-18 22:23:37,047 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Paras appeared! [CP 193] [Potential 0.69] [A/D/S 12/5/14]
2016-08-18 22:23:46,477 [PokemonCatchWorker] [INFO] [threw_pokeball] Nice throw! Used Pokeball, with chance 42.64 (23 left)
2016-08-18 22:23:46,582 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Paras capture failed.. trying again!
2016-08-18 22:23:53,381 [PokemonCatchWorker] [INFO] [threw_pokeball] Great Curveball throw! Used Pokeball, with chance 42.64 (22 left)
2016-08-18 22:23:53,494 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Paras! [CP 193] [Potential 0.69] [12/5/14] [+160 exp]
2016-08-18 22:23:53,499 [PokemonCatchWorker] [INFO] [gained_candy] You now have 184 Paras candy!
2016-08-18 22:23:59,282 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163447437773772, -95.46347837424467, 0), distance left: (119.330528614 m) ..
2016-08-18 22:24:00,483 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163462124042606, -95.46347085941353, 0), distance left: (117.765206346 m) ..
2016-08-18 22:24:01,446 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16351308915137, -95.46347271005433, 0), distance left: (112.105313893 m) ..
2016-08-18 22:24:02,236 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163527771010386, -95.463467605021, 0), distance left: (110.526683891 m) ..
2016-08-18 22:24:03,782 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop Market Street Central Park. Experience awarded: 50. Items awarded: {u'Pokeball': 3}
2016-08-18 22:24:07,339 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163558028235872, -95.46345937433645, 0), distance left: (107.26154995 m) ..
2016-08-18 22:24:08,127 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163569558416437, -95.46347350848659, 0), distance left: (105.846976198 m) ..
2016-08-18 22:24:09,278 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163568518893317, -95.46348646662383, 0), distance left: (105.848927433 m) ..
2016-08-18 22:24:10,692 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163575923597946, -95.46347607404485, 0), distance left: (105.118797189 m) ..
2016-08-18 22:24:12,059 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163585065777827, -95.46347809114076, 0), distance left: (104.088441958 m) ..
2016-08-18 22:24:13,474 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163583130749192, -95.4634638763668, 0), distance left: (104.439887313 m) ..
2016-08-18 22:24:14,522 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163598726792163, -95.46345699706383, 0), distance left: (102.789785873 m) ..
2016-08-18 22:24:15,584 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163596348768085, -95.46345790850651, 0), distance left: (103.042446439 m) ..
2016-08-18 22:24:16,471 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16361133787243, -95.46344411827442, 0), distance left: (101.548804423 m) ..
2016-08-18 22:24:16,662 [UpdateLiveStats] [INFO] [log_stats] Uptime : 0:18:13 | Earned 800 Stardust | +10,560 XP | 34,775 XP/h | Visited 7 stops
2016-08-18 22:24:16,663 [UpdateLiveInventory] [INFO] [show_inventory] Items: 192/350 | Pokeballs: 25 | GreatBalls: 1 | UltraBalls: 100 | RazzBerries: 25 | LuckyEgg: 5
2016-08-18 22:24:17,522 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16363881989328, -95.46345163032693, 0), distance left: (98.4259341998 m) ..
2016-08-18 22:24:19,039 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Venonat appeared! [CP 42] [Potential 0.62] [A/D/S 14/0/14]
2016-08-18 22:24:28,070 [PokemonCatchWorker] [INFO] [threw_pokeball] Nice Curveball throw! Used Pokeball, with chance 100.00 (24 left)
2016-08-18 22:24:28,177 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Venonat! [CP 42] [Potential 0.62] [14/0/14] [+120 exp]
2016-08-18 22:24:28,181 [PokemonCatchWorker] [INFO] [gained_candy] You now have 195 Venonat candy!
2016-08-18 22:24:34,213 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16366528604746, -95.4634296441574, 0), distance left: (95.8030494683 m) ..
2016-08-18 22:24:35,226 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163707119041334, -95.46345009083676, 0), distance left: (90.9165701597 m) ..
2016-08-18 22:24:36,507 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163718216267547, -95.46346880575413, 0), distance left: (89.4616650947 m) ..
2016-08-18 22:24:37,702 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.16374691943773, -95.46345059456044, 0), distance left: (86.5280774304 m) ..
2016-08-18 22:24:38,606 [FollowPath] [INFO] [position_update] Walk to (30.164517, -95.46358, 0) now at (30.163745899005278, -95.46344528213176, 0), distance left: (86.7151520295 m) ..
k4n30 commented 7 years ago

@raxxon Thankyou, despite you thinking we don't need the detail, it's required to work out what is going wrong. Hopefully someone will be able to help you soon (I'm currently at work)

raxxon commented 7 years ago

Generally I try to limit the amount of spam to the relevant bits. Unless there's something I'm missing the initial parts should be mostly sufficient (probably should have included the whole Task list to be complete though) as I know that filtering through crap can be a complete pain in the ass at times. What other parts of the config would have interaction on the Evolve or Release aspects? I know that the release configuration lower in the config would impact, but if the rules would release on startup I assume they'd release during run as well unless there's an additional directive that hasn't been documented.....

Currently I'm stopping the bot every couple of hours so that it will evolve/release things. And it's still not updating the web data stuff as the pokemon list there never changes after initial startup, don't know if that's related to the Evolve/Release issue or not, but it's a relatively minor concern at the moment.

iruy commented 7 years ago

Can I ask you why do you have such a "weird" config? I see many configs which are not present in my commit nor in the last one..

raxxon commented 7 years ago

Because I've evolved the configuration over time. Instead of rewriting the config every time I examine what's been updated and port over the changes. Given the large number of changes I've made to the pokemon keep/release parts I'd rather not scrap everything and start completely over each time they decide to change a part of the configuration.

Plus I've seen a couple of config bits change and then revert back...

Foulwerp commented 7 years ago

This is on a clean install of the bot, with a stripped down config to make it as simple as possible. On one of my test accounts for development.

Catch every pokemon Evolve Rattata, Pidgey, and Ekans Keep only 1 pokemon based on IV

As you can see it does this on the start of the bot it transfers and evolves, but as I catch more it stops it all together.

2016-08-19 03:19:12,700 [PokemonGoBot] [INFO] [bot_start] Starting bot...
2016-08-19 03:19:13,081 [CollectLevelUpReward] [INFO] [level_up_reward] Received level up reward: []
2016-08-19 03:19:13,082 [TransferPokemon] [INFO] [keep_best_release] Keeping best 1 Paras, based on iv
2016-08-19 03:19:14,592 [TransferPokemon] [INFO] [pokemon_release] Exchanged Paras [CP 174] [IV 0.33] for candy.
2016-08-19 03:19:16,638 [TransferPokemon] [INFO] [pokemon_release] Exchanged Paras [CP 153] [IV 0.44] for candy.
2016-08-19 03:19:19,421 [TransferPokemon] [INFO] [keep_best_release] Keeping best 1 Ponyta, based on iv
2016-08-19 03:19:19,730 [TransferPokemon] [INFO] [pokemon_release] Exchanged Ponyta [CP 195] [IV 0.73] for candy.
2016-08-19 03:19:21,510 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Pidgey with CP 60 and IV 0.58!
2016-08-19 03:19:43,871 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Pidgey appeared! [CP 23] [Potential 0.24] [A/D/S 3/7/1]
2016-08-19 03:19:52,065 [PokemonCatchWorker] [INFO] [threw_pokeball] Great Curveball throw! Used Pokeball, with chance 100.00 (168 left)
2016-08-19 03:19:52,319 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Pidgey! [CP 23] [Potential 0.24] [3/7/1] [+160 exp]
2016-08-19 03:19:52,355 [PokemonCatchWorker] [INFO] [gained_candy] You now have 55 Pidgey candy!
2016-08-19 03:19:57,368 [FollowSpiral] [INFO] [position_update] Walking from (0.232282196531735, 0.95152197283016, 0) to (0.232282196531735, 0.95152197283016, 0) (0.0 m)
2016-08-19 03:19:59,230 [TransferPokemon] [INFO] [keep_best_release] Keeping best 1 Pidgeotto, based on iv
2016-08-19 03:19:59,565 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pidgeotto [CP 113] [IV 0.58] for candy.
2016-08-19 03:20:02,128 [FollowSpiral] [INFO] [position_update] Walking from (0.232276895153106, 0.95152044189715, 0) to (0.232912432038134, 0.95152197283016, 0) (70.6686106271 m)
2016-08-19 03:20:11,236 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop  Experience awarded: 50. Items awarded: {u'Pokeball': 4}
2016-08-19 03:20:29,704 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop  Experience awarded: 50. Items awarded: {u'Potion': 1, u'Pokeball': 3}
2016-08-19 03:20:33,930 [FollowSpiral] [INFO] [position_update] Walking from (32.2329141197022, -110.95152045448593, 0) to (32.232912432038134, -110.95067957176059, 0) (79.092237324 m)
2016-08-19 03:20:59,976 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop Experience awarded: 50. Items awarded: {u'Pokeball': 2, u'Revive': 1}
2016-08-19 03:21:04,227 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Geodude appeared! [CP 194] [Potential 0.51] [A/D/S 12/1/10]
2016-08-19 03:21:12,759 [PokemonCatchWorker] [INFO] [threw_pokeball] OK throw! Used Pokeball, with chance 50.05 (176 left)
2016-08-19 03:21:13,013 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Geodude capture failed.. trying again!
2016-08-19 03:21:20,492 [PokemonCatchWorker] [INFO] [threw_pokeball] OK throw! Used Pokeball, with chance 50.05 (175 left)
2016-08-19 03:21:20,721 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Geodude capture failed.. trying again!
2016-08-19 03:21:27,095 [PokemonCatchWorker] [INFO] [threw_pokeball] Nice Curveball throw! Used Pokeball, with chance 50.05 (174 left)
2016-08-19 03:21:27,348 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Pokeball thrown to Geodude missed.. trying again!
2016-08-19 03:21:36,529 [PokemonCatchWorker] [INFO] [threw_pokeball] Great Curveball throw! Used Pokeball, with chance 50.05 (173 left)
2016-08-19 03:21:36,779 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Geodude! [CP 194] [Potential 0.51] [12/1/10] [+160 exp]
2016-08-19 03:21:36,812 [PokemonCatchWorker] [INFO] [gained_candy] You now have 40 Geodude candy!
2016-08-19 03:21:46,474 [FollowSpiral] [INFO] [position_update] Walking from (0.23292104225591, 0.95066827720645, 0) to (0.232282196531735, 0.95067957176059, 0) (71.0443542027 m)
2016-08-19 03:21:57,441 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop Experience awarded: 50. Items awarded: {u'Pokeball': 3}
2016-08-19 03:22:01,026 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Geodude appeared! [CP 81] [Potential 0.67] [A/D/S 12/10/8]
2016-08-19 03:22:09,660 [PokemonCatchWorker] [INFO] [threw_pokeball] Great throw! Used Pokeball, with chance 78.21 (175 left)
2016-08-19 03:22:10,851 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Geodude! [CP 81] [Potential 0.67] [12/10/8] [+150 exp]
2016-08-19 03:22:10,878 [PokemonCatchWorker] [INFO] [gained_candy] You now have 43 Geodude candy!
2016-08-19 03:22:30,499 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop Experience awarded: 50. Items awarded: {u'Pokeball': 3}
2016-08-19 03:22:32,921 [FollowSpiral] [INFO] [position_update] Walking from (0.232296521601064, 0.95069604716461, 0) to (0.231651961025335, 0.95067957176059, 0) (71.6886087111 m)
2016-08-19 03:22:34,947 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Paras appeared! [CP 110] [Potential 0.64] [A/D/S 7/15/7]
2016-08-19 03:22:42,290 [PokemonCatchWorker] [INFO] [threw_pokeball] Great Curveball throw! Used Pokeball, with chance 55.12 (177 left)
2016-08-19 03:22:42,535 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Paras! [CP 110] [Potential 0.64] [7/15/7] [+160 exp]
2016-08-19 03:22:42,569 [PokemonCatchWorker] [INFO] [gained_candy] You now have 46 Paras candy!
2016-08-19 03:23:00,085 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Pidgey appeared! [CP 55] [Potential 0.2] [A/D/S 3/6/0]
2016-08-19 03:23:06,506 [PokemonCatchWorker] [INFO] [threw_pokeball] Great Curveball throw! Used Pokeball, with chance 78.21 (176 left)
2016-08-19 03:23:06,757 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Pokeball thrown to Pidgey missed.. trying again!
2016-08-19 03:23:12,269 [PokemonCatchWorker] [INFO] [threw_pokeball] Nice Curveball throw! Used Pokeball, with chance 78.21 (175 left)
2016-08-19 03:23:12,513 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Pokeball thrown to Pidgey missed.. trying again!
2016-08-19 03:23:19,176 [PokemonCatchWorker] [INFO] [threw_pokeball] Nice Curveball throw! Used Pokeball, with chance 78.21 (174 left)
2016-08-19 03:23:19,424 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Pidgey! [CP 55] [Potential 0.2] [3/6/0] [+120 exp]
2016-08-19 03:23:19,460 [PokemonCatchWorker] [INFO] [gained_candy] You now have 59 Pidgey candy!
2016-08-19 03:23:45,602 [FollowSpiral] [INFO] [position_update] Walking from (0.231649530036044, 0.95067609252027, 0) to (0.231651961025335, 0.95152197283016, 0) (79.5636507762 m)
2016-08-19 03:23:54,811 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop Experience awarded: 50. Items awarded: {u'Pokeball': 3}
2016-08-19 03:23:56,055 [PokemonGoBot] [INFO] [bot_interrupted] Bot caught SIGINT. Shutting down.
2016-08-19 03:23:56,299 [       cli] [INFO]
2016-08-19 03:23:56,299 [       cli] [INFO] Ran for 0:04:50
{

    "encrypt_location": "",
    "websocket_server": false,
    "heartbeat_threshold": 10,
    "tasks": [
      {
        "type": "HandleSoftBan"
      },
      {
         "type": "CollectLevelUpReward"
      },
      {
        "type": "IncubateEggs",
        "config": {
          "longer_eggs_first": true
        }
      },
      {
        "type": "RecycleItems",
        "config": {
          "min_empty_space": 15,
          "max_balls_keep": 150,
          "max_potions_keep": 50,
          "max_berries_keep": 70,
          "max_revives_keep": 70,
          "item_filter": {
            "Pokeball":       { "keep" : 100 },
            "Potion":         { "keep" : 10 },
            "Super Potion":   { "keep" : 20 },
            "Hyper Potion":   { "keep" : 30 },
            "Revive":         { "keep" : 30 },
            "Razz Berry":     { "keep" : 100 }
          },
          "recycle_wait_min": 1,
          "recycle_wait_max": 4
        }
      },
      {
        "type": "CatchPokemon",
        "config": {
          "catch_visible_pokemon": true,
          "catch_lured_pokemon": true,
          "min_ultraball_to_keep": 5,
          "catch_throw_parameters": {
            "excellent_rate": 0.1,
            "great_rate": 0.5,
            "nice_rate": 0.3,
            "normal_rate": 0.1,
            "spin_success_rate" : 0.6,
            "hit_rate": 0.75
          },
          "catch_simulation": {
            "flee_count": 3,
            "flee_duration": 2,
            "catch_wait_min": 2,
            "catch_wait_max": 6,
            "berry_wait_min": 2,
            "berry_wait_max": 3,
            "changeball_wait_min": 2,
            "changeball_wait_max": 3
          }
        }
      },
      {
        "type": "TransferPokemon",
        "config": {
          "transfer_wait_min": 1,
          "transfer_wait_max": 4
        }
      },
      {
        "type": "EvolvePokemon",
        "config": {
          "evolve_all": "Rattata,Pidgey,Ekans",
          "first_evolve_by": "iv",
          "evolve_above_cp": 0,
          "evolve_above_iv": 0,
          "logic": "or",
          "evolve_speed": 20,
          "use_lucky_egg": false
        }
      },
      {
        "type": "SpinFort",
        "config": {
          "spin_wait_min": 2,
          "spin_wait_max": 3
        }
      },
      {
        "type": "FollowSpiral",
        "config": {
          "diameter": 6,
          "step_size": 70
        }
      }
    ],
    "map_object_cache_time": 5,
    "forts": {
      "avoid_circles": true,
      "max_circle_size": 50,
      "cache_recent_forts": true
    },
    "walk_max": 4.16,
    "walk_min": 2.16,
    "alt_min": 0.75,
    "alt_max": 2.5,
    "debug": false,
    "test": false,
    "health_record": true,
    "location_cache": true,
    "distance_unit": "km",
    "reconnecting_timeout": 15,
    "logging_color": true,
    "daily_catch_limit": 800,
    "catch": {
      "any": {"always_catch": true}
    },
    "release": {
      "any": {"keep_best_iv": 1}
    }
}
rovmelek commented 7 years ago

i noticed that the Nickname/Release task are only triggered at the beginning and [inventory_full] event.

bot1-pokego_1 | 2016-08-19 09:26:01,067 [MoveToFort] [INFO] [inventory_full] Inventory is full. You might want to change your config to recycle more items if this message appears consistently. bot1-pokego_1 | 2016-08-19 09:26:03,682 [ItemRecycler] [INFO] [item_discarded] Discarded 13x Pokeball. bot1-pokego_1 | 2016-08-19 09:26:06,262 [ItemRecycler] [INFO] [item_discarded] Discarded 2x Potion. bot1-pokego_1 | 2016-08-19 09:26:09,228 [ItemRecycler] [INFO] [item_discarded] Discarded 1x Super Potion. bot1-pokego_1 | 2016-08-19 09:26:10,883 [ItemRecycler] [INFO] [item_discarded] Discarded 1x Revive. bot1-pokego_1 | 2016-08-19 09:26:11,289 [MoveToFort] [INFO] [moving_to_fort] Moving towards pokestop Irving Pizza - 0.16km bot1-pokego_1 | 2016-08-19 09:26:14,810 [NicknamePokemon] [INFO] [rename_pokemon] Pokemon Spearow renamed to 036_6/0/10 bot1-pokego_1 | 2016-08-19 09:26:16,418 [NicknamePokemon] [INFO] [rename_pokemon] Pokemon Zubat renamed to 033_9/0/6 bot1-pokego_1 | 2016-08-19 09:26:17,830 [NicknamePokemon] [INFO] [rename_pokemon] Pokemon Weedle renamed to 038_0/13/4 bot1-pokego_1 | 2016-08-19 09:26:19,286 [NicknamePokemon] [INFO] [rename_pokemon] Pokemon Zubat renamed to 056_10/5/10 bot1-pokego_1 | 2016-08-19 09:26:20,577 [NicknamePokemon] [INFO] [rename_pokemon] Pokemon Zubat renamed to 060_9/4/14 bot1-pokego_1 | 2016-08-19 09:26:21,812 [NicknamePokemon] [INFO] [rename_pokemon] Pokemon Krabby renamed to 064_14/5/10 bot1-pokego_1 | 2016-08-19 09:26:23,283 [NicknamePokemon] [INFO] [rename_pokemon] Pokemon Fearow renamed to 027_7/3/2 bot1-pokego_1 | 2016-08-19 09:26:24,533 [NicknamePokemon] [INFO] [rename_pokemon] Pokemon Staryu renamed to 096_15/15/13 bot1-pokego_1 | 2016-08-19 09:26:24,535 [TransferPokemon] [INFO] [keep_best_release] Keeping best 3 Weedle, based on iv bot1-pokego_1 | 2016-08-19 09:26:24,860 [TransferPokemon] [INFO] [pokemon_release] Exchanged Weedle [CP 14] [IV 0.13] for candy. bot1-pokego_1 | 2016-08-19 09:26:28,592 [TransferPokemon] [INFO] [keep_best_release] Keeping best 3 Zubat, based on iv bot1-pokego_1 | 2016-08-19 09:26:28,888 [TransferPokemon] [INFO] [pokemon_release] Exchanged Zubat [CP 304] [IV 0.33] for candy. bot1-pokego_1 | 2016-08-19 09:26:32,318 [TransferPokemon] [INFO] [pokemon_release] Exchanged Zubat [CP 110] [IV 0.56] for candy. bot1-pokego_1 | 2016-08-19 09:26:36,418 [TransferPokemon] [INFO] [pokemon_release] Exchanged Zubat [CP 309] [IV 0.6] for candy. bot1-pokego_1 | 2016-08-19 09:26:38,923 [TransferPokemon] [INFO] [keep_best_release] Keeping best 3 Krabby, based on iv bot1-pokego_1 | 2016-08-19 09:26:39,247 [TransferPokemon] [INFO] [pokemon_release] Exchanged Krabby [CP 10] [IV 0.64] for candy. bot1-pokego_1 | 2016-08-19 09:26:40,656 [MoveToFort] [INFO] [moving_to_fort] Moving towards pokestop Irving Pizza - 0.16km

smfbrooks commented 7 years ago

3416

raxxon commented 7 years ago

Now we've kinda gone to another extreme... Releasing the same pokemon over and over...

git pull issued, pip install --ugprade -r requirements.txt issued to update the PGo API suite. No configuration changes made.

2016-08-19 16:42:49,726 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Pikachu appeared! [CP 395] [Potential 0.53] [A/D/S 2/13/9]
2016-08-19 16:42:55,020 [PokemonCatchWorker] [INFO] [threw_berry] Threw a Razz Berry! Catch rate with Greatball is now: 30.61
2016-08-19 16:43:00,714 [PokemonCatchWorker] [INFO] [threw_pokeball] Great throw! Used Greatball, with chance 30.61 (2 left)
2016-08-19 16:43:00,816 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Pikachu capture failed.. trying again!
2016-08-19 16:43:06,286 [PokemonCatchWorker] [INFO] [threw_berry] Threw a Razz Berry! Catch rate with Greatball is now: 45.92
2016-08-19 16:43:13,611 [PokemonCatchWorker] [INFO] [threw_pokeball] OK throw! Used Greatball, with chance 45.92 (1 left)
2016-08-19 16:43:13,735 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Pikachu capture failed.. trying again!
2016-08-19 16:43:20,211 [PokemonCatchWorker] [INFO] [threw_pokeball] Excellent throw! Used Greatball, with chance 45.92 (0 left)
2016-08-19 16:43:20,309 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Pikachu capture failed.. trying again!
2016-08-19 16:43:33,708 [PokemonCatchWorker] [INFO] [threw_berry] Threw a Razz Berry! Catch rate with Pokeball is now: 47.64
2016-08-19 16:43:38,001 [PokemonCatchWorker] [INFO] [threw_pokeball] Great Curveball throw! Used Pokeball, with chance 47.64 (67 left)
2016-08-19 16:43:38,100 [PokemonCatchWorker] [INFO] [pokemon_capture_failed] Pikachu capture failed.. trying again!
2016-08-19 16:43:43,007 [PokemonCatchWorker] [INFO] [threw_pokeball] Nice throw! Used Pokeball, with chance 47.64 (66 left)
2016-08-19 16:43:43,105 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Pikachu! [CP 395] [Potential 0.53] [2/13/9] [+110 exp]
2016-08-19 16:43:43,110 [PokemonCatchWorker] [INFO] [gained_candy] You now have 327 Pikachu candy!
2016-08-19 16:43:49,576 [UpdateLiveStats] [INFO] [log_stats] Uptime : 0:01:10 | Earned 100 Stardust | +610 XP | 31,364 XP/h | Visited 0 stops
2016-08-19 16:43:49,577 [UpdateLiveInventory] [INFO] [show_inventory] Items: 292/350 | Pokeballs: 66 | GreatBalls: 0 | UltraBalls: 107 | RazzBerries: 10 | LuckyEgg: 5
2016-08-19 16:43:49,659 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 144] [IV 0.56] based on rule: CP < 375 OR IV < 0.8
2016-08-19 16:43:50,850 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Pikachu [CP 395] [IV 0.53] based on rule: CP < 600 OR IV < 0.8
2016-08-19 16:43:51,011 [TransferPokemon] [INFO] [pokemon_release] Exchanged Pikachu [CP 395] [IV 0.53] for candy.
2016-08-19 16:43:53,129 [  SpinFort] [INFO] [spun_pokestop] Spun pokestop Smokedance. Experience awarded: 50. Items awarded: {u'Razz Berry': 2, u'Pokeball': 1}
2016-08-19 16:43:55,270 [FollowPath] [INFO] [position_update] Walk to (30.160343, -95.464246, 0) now at (30.160343, -95.464246, 0), distance left: (0.0 m) ..
2016-08-19 16:43:56,366 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 144] [IV 0.56] based on rule: CP < 375 OR IV < 0.8
2016-08-19 16:43:58,027 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160327575146926, -95.46424238405157, 0), distance left: (212.126998909 m) ..
2016-08-19 16:43:59,410 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 144] [IV 0.56] based on rule: CP < 375 OR IV < 0.8
2016-08-19 16:44:00,436 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160358342197497, -95.46421991756482, 0), distance left: (208.156390919 m) ..
2016-08-19 16:44:00,854 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 144] [IV 0.56] based on rule: CP < 375 OR IV < 0.8
2016-08-19 16:44:01,879 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160400071521074, -95.46419042668381, 0), distance left: (202.809306158 m) ..
2016-08-19 16:44:03,433 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 144] [IV 0.56] based on rule: CP < 375 OR IV < 0.8
2016-08-19 16:44:04,536 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16041725923207, -95.464156492296, 0), distance left: (199.877824287 m) ..
2016-08-19 16:44:04,707 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 144] [IV 0.56] based on rule: CP < 375 OR IV < 0.8
2016-08-19 16:44:05,604 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160452233522985, -95.46416536209864, 0), distance left: (196.531514424 m) ..
2016-08-19 16:44:06,866 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 144] [IV 0.56] based on rule: CP < 375 OR IV < 0.8
2016-08-19 16:44:08,030 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160478731183087, -95.46417855254813, 0), distance left: (194.238482278 m) ..
2016-08-19 16:44:09,561 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 144] [IV 0.56] based on rule: CP < 375 OR IV < 0.8
2016-08-19 16:44:11,716 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16049247251787, -95.46417120760741, 0), distance left: (192.558197028 m) ..
2016-08-19 16:44:11,867 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 144] [IV 0.56] based on rule: CP < 375 OR IV < 0.8
2016-08-19 16:44:12,710 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160504495322776, -95.46415489198041, 0), distance left: (190.743946335 m) ..
2016-08-19 16:44:13,659 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 144] [IV 0.56] based on rule: CP < 375 OR IV < 0.8
2016-08-19 16:44:14,927 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.160526129446154, -95.46413506367247, 0), distance left: (187.815745506 m) ..
^C2016-08-19 16:44:16,000 [PokemonGoBot] [INFO] [bot_interrupted] Bot caught SIGINT. Shutting down.
2016-08-19 16:44:16,095 [       cli] [INFO]
2016-08-19 16:44:16,095 [       cli] [INFO] Ran for 0:01:37
2016-08-19 16:44:16,095 [       cli] [INFO] Total XP Earned: 660  Average: 24612.77/h
2016-08-19 16:44:16,096 [       cli] [INFO] Travelled 0.00km
2016-08-19 16:44:16,096 [       cli] [INFO] Visited 1 stops
2016-08-19 16:44:16,096 [       cli] [INFO] Encountered 1 pokemon, 1 caught, 1 released, 1 evolved, 0 never seen before
2016-08-19 16:44:16,096 [       cli] [INFO] Threw 5 pokeballs
2016-08-19 16:44:16,097 [       cli] [INFO] Earned 100 Stardust
2016-08-19 16:44:16,097 [       cli] [INFO]
2016-08-19 16:44:16,097 [       cli] [INFO] Highest CP Pokemon: Pikachu [CP: 395] [IV: 2/13/9] Potential: 0.53
2016-08-19 16:44:16,097 [       cli] [INFO] Most Perfect Pokemon: Pikachu [CP: 395] [IV: 2/13/9] Potential: 0.53
raxxon commented 7 years ago

Issue still present, appears to be linked to Evolution....

2016-08-20 05:12:30,078 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161784612106697, -95.46361709782646, 0), distance left: (39.4436680305 m) ..
2016-08-20 05:12:31,151 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16182851199433, -95.46361384044333, 0), distance left: (34.9473782563 m) ..
2016-08-20 05:12:32,422 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161862783705804, -95.46362616147981, 0), distance left: (32.2844444373 m) ..
2016-08-20 05:12:33,789 [PokemonCatchWorker] [INFO] [pokemon_appeared] A wild Rattata appeared! [CP 322] [NCP 0.55] [Potential 0.6] [A/D/S 9/7/11]
2016-08-20 05:12:44,193 [PokemonCatchWorker] [INFO] [threw_pokeball] Great Curveball throw! Used Greatball, with chance 43.83 (1 left)
2016-08-20 05:12:44,284 [PokemonCatchWorker] [INFO] [pokemon_caught] Captured Rattata! [CP 322] [NCP 0.55] [Potential 0.6] [9/7/11] [+160 exp]
2016-08-20 05:12:44,288 [PokemonCatchWorker] [INFO] [gained_candy] You now have 25 Rattata candy!
2016-08-20 05:12:50,115 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16188068560542, -95.46359800399061, 0), distance left: (29.1543832602 m) ..
2016-08-20 05:12:51,170 [UpdateLiveStats] [INFO] [log_stats] Uptime : 0:05:36 | Earned 500 Stardust | +1,040 XP | 11,151 XP/h | Visited 3 stops
2016-08-20 05:12:51,171 [UpdateLiveInventory] [INFO] [show_inventory] Items: 314/350 | Pokeballs: 69 | GreatBalls: 1 | UltraBalls: 110 | RazzBerries: 12 | LuckyEgg: 5
2016-08-20 05:12:53,150 [EvolvePokemon] [INFO] [pokemon_evolved] Successfully evolved Rattata with CP 322 and IV 0.6!
2016-08-20 05:12:53,156 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 322] [IV 0.6] based on rule: CP < 375 OR IV < 0.8
2016-08-20 05:12:54,043 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.1618927450943, -95.46360453063242, 0), distance left: (28.3586961138 m) ..
2016-08-20 05:12:54,245 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 322] [IV 0.6] based on rule: CP < 375 OR IV < 0.8
2016-08-20 05:12:56,262 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16191992350183, -95.46359776310845, 0), distance left: (25.5079430693 m) ..
2016-08-20 05:12:57,773 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 322] [IV 0.6] based on rule: CP < 375 OR IV < 0.8
2016-08-20 05:12:59,447 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161932018059062, -95.46359401137914, 0), distance left: (24.2151019005 m) ..
2016-08-20 05:13:00,943 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 322] [IV 0.6] based on rule: CP < 375 OR IV < 0.8
2016-08-20 05:13:03,246 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.161933030649383, -95.46357660167376, 0), distance left: (23.143314224 m) ..
2016-08-20 05:13:03,451 [TransferPokemon] [INFO] [future_pokemon_release] Releasing Rattata [CP 322] [IV 0.6] based on rule: CP < 375 OR IV < 0.8
2016-08-20 05:13:05,449 [FollowPath] [INFO] [position_update] Walk to (30.162105, -95.463441, 0) now at (30.16196401643743, -95.46356940510896, 0), distance left: (19.9537561508 m) ..
^C2016-08-20 05:13:06,178 [PokemonGoBot] [INFO] [bot_interrupted] Bot caught SIGINT. Shutting down.
2016-08-20 05:13:06,236 [       cli] [INFO]
2016-08-20 05:13:06,236 [       cli] [INFO] Ran for 0:05:51
2016-08-20 05:13:06,237 [       cli] [INFO] Total XP Earned: 1540  Average: 15803.74/h
2016-08-20 05:13:06,237 [       cli] [INFO] Travelled 0.03km
2016-08-20 05:13:06,237 [       cli] [INFO] Visited 3 stops
2016-08-20 05:13:06,237 [       cli] [INFO] Encountered 5 pokemon, 5 caught, 5 released, 1 evolved, 0 never seen before
2016-08-20 05:13:06,238 [       cli] [INFO] Threw 9 pokeballs
2016-08-20 05:13:06,238 [       cli] [INFO] Earned 500 Stardust
2016-08-20 05:13:06,238 [       cli] [INFO]
2016-08-20 05:13:06,238 [       cli] [INFO] Highest CP Pokemon: Spearow [CP: 409] [IV: 11/15/4] Potential: 0.67
2016-08-20 05:13:06,239 [       cli] [INFO] Most Perfect Pokemon: Magikarp [CP: 70] [IV: 14/9/14] Potential: 0.82

Prior to this it captured and released several pokemon without issue. It evolved the Rat and then choked trying to release the Rat instead of the Evolved Rat.

k4n30 commented 7 years ago

@raxxon please keep your release, evolve issues in one thread - It's hard to keep up when you make a new issue everytime

raxxon commented 7 years ago

Which is why I posted details here despite this being closed.

raxxon commented 7 years ago

Yep. Disabled all Evolve logic and the bot stops trying to release pokemon that don't exist. Bot isn't keeping track of pokemon held in inventory correctly between the Evolve and Transfer tasks. Is Evolve properly updating that data pool?