├── .gitattributes ├── .gitignore ├── Dockerfile ├── LICENSE.txt ├── Launch.bat ├── POGOProtos ├── Data │ ├── AssetDigestEntry_pb2.py │ ├── Battle │ │ ├── BattleActionType_pb2.py │ │ ├── BattleAction_pb2.py │ │ ├── BattleLog_pb2.py │ │ ├── BattleParticipant_pb2.py │ │ ├── BattlePokemonInfo_pb2.py │ │ ├── BattleResults_pb2.py │ │ ├── BattleState_pb2.py │ │ ├── BattleType_pb2.py │ │ └── __init__.py │ ├── Capture │ │ ├── CaptureAward_pb2.py │ │ ├── CaptureAward_pb2.pyc │ │ ├── CaptureProbability_pb2.py │ │ ├── CaptureProbability_pb2.pyc │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── DownloadUrlEntry_pb2.py │ ├── Gym │ │ ├── GymMembership_pb2.py │ │ ├── GymState_pb2.py │ │ └── __init__.py │ ├── Logs │ │ ├── ActionLogEntry_pb2.py │ │ ├── CatchPokemonLogEntry_pb2.py │ │ ├── FortSearchLogEntry_pb2.py │ │ └── __init__.py │ ├── Player │ │ ├── ContactSettings_pb2.py │ │ ├── ContactSettings_pb2.pyc │ │ ├── Currency_pb2.py │ │ ├── Currency_pb2.pyc │ │ ├── DailyBonus_pb2.py │ │ ├── DailyBonus_pb2.pyc │ │ ├── EquippedBadge_pb2.py │ │ ├── EquippedBadge_pb2.pyc │ │ ├── PlayerAvatar_pb2.py │ │ ├── PlayerAvatar_pb2.pyc │ │ ├── PlayerCamera_pb2.py │ │ ├── PlayerCamera_pb2.pyc │ │ ├── PlayerCurrency_pb2.py │ │ ├── PlayerCurrency_pb2.pyc │ │ ├── PlayerPublicProfile_pb2.py │ │ ├── PlayerStats_pb2.py │ │ ├── PlayerStats_pb2.pyc │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── PlayerBadge_pb2.py │ ├── PlayerData_pb2.py │ ├── PlayerData_pb2.pyc │ ├── PokedexEntry_pb2.py │ ├── PokedexEntry_pb2.pyc │ ├── PokemonData_pb2.py │ ├── PokemonData_pb2.pyc │ ├── __init__.py │ └── __init__.pyc ├── Enums │ ├── ActivityType_pb2.py │ ├── ActivityType_pb2.pyc │ ├── BadgeType_pb2.py │ ├── BadgeType_pb2.pyc │ ├── CameraInterpolation_pb2.py │ ├── CameraTarget_pb2.py │ ├── Gender_pb2.py │ ├── Gender_pb2.pyc │ ├── IapItemCategory_pb2.py │ ├── ItemCategory_pb2.py │ ├── ItemEffect_pb2.py │ ├── Platform_pb2.py │ ├── PokemonClass_pb2.py │ ├── PokemonFamilyId_pb2.py │ ├── PokemonFamilyId_pb2.pyc │ ├── PokemonId_pb2.py │ ├── PokemonId_pb2.pyc │ ├── PokemonMove_pb2.py │ ├── PokemonMove_pb2.pyc │ ├── PokemonMovementType_pb2.py │ ├── PokemonRarity_pb2.py │ ├── PokemonType_pb2.py │ ├── TeamColor_pb2.py │ ├── TeamColor_pb2.pyc │ ├── TutorialState_pb2.py │ ├── TutorialState_pb2.pyc │ ├── __init__.py │ └── __init__.pyc ├── Inventory │ ├── AppliedItem_pb2.py │ ├── AppliedItem_pb2.pyc │ ├── AppliedItems_pb2.py │ ├── AppliedItems_pb2.pyc │ ├── Candy_pb2.py │ ├── Candy_pb2.pyc │ ├── EggIncubatorType_pb2.py │ ├── EggIncubatorType_pb2.pyc │ ├── EggIncubator_pb2.py │ ├── EggIncubator_pb2.pyc │ ├── EggIncubators_pb2.py │ ├── EggIncubators_pb2.pyc │ ├── InventoryDelta_pb2.py │ ├── InventoryDelta_pb2.pyc │ ├── InventoryItemData_pb2.py │ ├── InventoryItemData_pb2.pyc │ ├── InventoryItem_pb2.py │ ├── InventoryItem_pb2.pyc │ ├── InventoryUpgradeType_pb2.py │ ├── InventoryUpgradeType_pb2.pyc │ ├── InventoryUpgrade_pb2.py │ ├── InventoryUpgrade_pb2.pyc │ ├── InventoryUpgrades_pb2.py │ ├── InventoryUpgrades_pb2.pyc │ ├── Item │ │ ├── ItemAward_pb2.py │ │ ├── ItemAward_pb2.pyc │ │ ├── ItemData_pb2.py │ │ ├── ItemData_pb2.pyc │ │ ├── ItemId_pb2.py │ │ ├── ItemId_pb2.pyc │ │ ├── ItemType_pb2.py │ │ ├── ItemType_pb2.pyc │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── ItemAward_pb2.py │ ├── ItemId_pb2.py │ ├── ItemType_pb2.py │ ├── Item_pb2.py │ ├── PokemonFamily_pb2.py │ ├── __init__.py │ └── __init__.pyc ├── Map │ ├── Fort │ │ ├── FortData_pb2.py │ │ ├── FortData_pb2.pyc │ │ ├── FortLureInfo_pb2.py │ │ ├── FortLureInfo_pb2.pyc │ │ ├── FortModifier_pb2.py │ │ ├── FortModifier_pb2.pyc │ │ ├── FortRenderingType_pb2.py │ │ ├── FortRenderingType_pb2.pyc │ │ ├── FortSponsor_pb2.py │ │ ├── FortSponsor_pb2.pyc │ │ ├── FortSummary_pb2.py │ │ ├── FortSummary_pb2.pyc │ │ ├── FortType_pb2.py │ │ ├── FortType_pb2.pyc │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── MapCell_pb2.py │ ├── MapCell_pb2.pyc │ ├── MapObjectsStatus_pb2.py │ ├── MapObjectsStatus_pb2.pyc │ ├── Pokemon │ │ ├── MapPokemon_pb2.py │ │ ├── MapPokemon_pb2.pyc │ │ ├── NearbyPokemon_pb2.py │ │ ├── NearbyPokemon_pb2.pyc │ │ ├── WildPokemon_pb2.py │ │ ├── WildPokemon_pb2.pyc │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── SpawnPoint_pb2.py │ ├── SpawnPoint_pb2.pyc │ ├── __init__.py │ └── __init__.pyc ├── Networking │ ├── Envelopes │ │ ├── AuthTicket_pb2.py │ │ ├── AuthTicket_pb2.pyc │ │ ├── RequestEnvelope_pb2.py │ │ ├── RequestEnvelope_pb2.pyc │ │ ├── ResponseEnvelope_pb2.py │ │ ├── ResponseEnvelope_pb2.pyc │ │ ├── SignatureResponse_pb2.py │ │ ├── Signature_pb2.py │ │ ├── Signature_pb2.pyc │ │ ├── Unknown6Response_pb2.py │ │ ├── Unknown6Response_pb2.pyc │ │ ├── Unknown6_pb2.py │ │ ├── Unknown6_pb2.pyc │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── Requests │ │ ├── Messages │ │ │ ├── AddFortModifierMessage_pb2.py │ │ │ ├── AttackGymMessage_pb2.py │ │ │ ├── CatchPokemonMessage_pb2.py │ │ │ ├── CatchPokemonMessage_pb2.pyc │ │ │ ├── CheckAwardedBadgesMessage_pb2.py │ │ │ ├── CheckCodenameAvailableMessage_pb2.py │ │ │ ├── ClaimCodenameMessage_pb2.py │ │ │ ├── CollectDailyBonusMessage_pb2.py │ │ │ ├── CollectDailyDefenderBonusMessage_pb2.py │ │ │ ├── DiskEncounterMessage_pb2.py │ │ │ ├── DownloadItemTemplatesMessage_pb2.py │ │ │ ├── DownloadRemoteConfigVersionMessage_pb2.py │ │ │ ├── DownloadSettingsMessage_pb2.py │ │ │ ├── DownloadSettingsMessage_pb2.pyc │ │ │ ├── EchoMessage_pb2.py │ │ │ ├── EncounterMessage_pb2.py │ │ │ ├── EncounterMessage_pb2.pyc │ │ │ ├── EncounterTutorialCompleteMessage_pb2.py │ │ │ ├── EquipBadgeMessage_pb2.py │ │ │ ├── EvolvePokemonMessage_pb2.py │ │ │ ├── EvolvePokemonMessage_pb2.pyc │ │ │ ├── FortDeployPokemonMessage_pb2.py │ │ │ ├── FortDetailsMessage_pb2.py │ │ │ ├── FortDetailsMessage_pb2.pyc │ │ │ ├── FortRecallPokemonMessage_pb2.py │ │ │ ├── FortSearchMessage_pb2.py │ │ │ ├── FortSearchMessage_pb2.pyc │ │ │ ├── GetAssetDigestMessage_pb2.py │ │ │ ├── GetDownloadUrlsMessage_pb2.py │ │ │ ├── GetGymDetailsMessage_pb2.py │ │ │ ├── GetHatchedEggsMessage_pb2.py │ │ │ ├── GetIncensePokemonMessage_pb2.py │ │ │ ├── GetInventoryMessage_pb2.py │ │ │ ├── GetInventoryMessage_pb2.pyc │ │ │ ├── GetMapObjectsMessage_pb2.py │ │ │ ├── GetMapObjectsMessage_pb2.pyc │ │ │ ├── GetPlayerMessage_pb2.py │ │ │ ├── GetPlayerProfileMessage_pb2.py │ │ │ ├── GetSuggestedCodenamesMessage_pb2.py │ │ │ ├── IncenseEncounterMessage_pb2.py │ │ │ ├── LevelUpRewardsMessage_pb2.py │ │ │ ├── LevelUpRewardsMessage_pb2.pyc │ │ │ ├── MarkTutorialCompleteMessage_pb2.py │ │ │ ├── NicknamePokemonMessage_pb2.py │ │ │ ├── NicknamePokemonMessage_pb2.pyc │ │ │ ├── PlayerUpdateMessage_pb2.py │ │ │ ├── RecycleInventoryItemMessage_pb2.py │ │ │ ├── RecycleInventoryItemMessage_pb2.pyc │ │ │ ├── ReleasePokemonMessage_pb2.py │ │ │ ├── ReleasePokemonMessage_pb2.pyc │ │ │ ├── SetAvatarMessage_pb2.py │ │ │ ├── SetContactSettingsMessage_pb2.py │ │ │ ├── SetFavoritePokemonMessage_pb2.py │ │ │ ├── SetFavoritePokemonMessage_pb2.pyc │ │ │ ├── SetPlayerTeamMessage_pb2.py │ │ │ ├── SetPlayerTeamMessage_pb2.pyc │ │ │ ├── SfidaActionLogMessage_pb2.py │ │ │ ├── StartGymBattleMessage_pb2.py │ │ │ ├── UpgradePokemonMessage_pb2.py │ │ │ ├── UpgradePokemonMessage_pb2.pyc │ │ │ ├── UseIncenseMessage_pb2.py │ │ │ ├── UseItemCaptureMessage_pb2.py │ │ │ ├── UseItemCaptureMessage_pb2.pyc │ │ │ ├── UseItemEggIncubatorMessage_pb2.py │ │ │ ├── UseItemEggIncubatorMessage_pb2.pyc │ │ │ ├── UseItemGymMessage_pb2.py │ │ │ ├── UseItemPotionMessage_pb2.py │ │ │ ├── UseItemPotionMessage_pb2.pyc │ │ │ ├── UseItemReviveMessage_pb2.py │ │ │ ├── UseItemReviveMessage_pb2.pyc │ │ │ ├── UseItemXpBoostMessage_pb2.py │ │ │ ├── UseItemXpBoostMessage_pb2.pyc │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ ├── RequestType_pb2.py │ │ ├── RequestType_pb2.pyc │ │ ├── Request_pb2.py │ │ ├── Request_pb2.pyc │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── Responses │ │ ├── AddFortModifierResponse_pb2.py │ │ ├── AttackGymResponse_pb2.py │ │ ├── CatchPokemonResponse_pb2.py │ │ ├── CatchPokemonResponse_pb2.pyc │ │ ├── CheckAwardedBadgesResponse_pb2.py │ │ ├── CheckAwardedBadgesResponse_pb2.pyc │ │ ├── CheckCodenameAvailableResponse_pb2.py │ │ ├── ClaimCodenameResponse_pb2.py │ │ ├── CollectDailyBonusResponse_pb2.py │ │ ├── CollectDailyDefenderBonusResponse_pb2.py │ │ ├── DiskEncounterResponse_pb2.py │ │ ├── DownloadItemTemplatesResponse_pb2.py │ │ ├── DownloadRemoteConfigVersionResponse_pb2.py │ │ ├── DownloadSettingsResponse_pb2.py │ │ ├── DownloadSettingsResponse_pb2.pyc │ │ ├── EchoResponse_pb2.py │ │ ├── EncounterResponse_pb2.py │ │ ├── EncounterResponse_pb2.pyc │ │ ├── EncounterTutorialCompleteResponse_pb2.py │ │ ├── EquipBadgeResponse_pb2.py │ │ ├── EvolvePokemonResponse_pb2.py │ │ ├── EvolvePokemonResponse_pb2.pyc │ │ ├── FortDeployPokemonResponse_pb2.py │ │ ├── FortDetailsResponse_pb2.py │ │ ├── FortDetailsResponse_pb2.pyc │ │ ├── FortRecallPokemonResponse_pb2.py │ │ ├── FortSearchResponse_pb2.py │ │ ├── FortSearchResponse_pb2.pyc │ │ ├── GetAssetDigestResponse_pb2.py │ │ ├── GetDownloadUrlsResponse_pb2.py │ │ ├── GetGymDetailsResponse_pb2.py │ │ ├── GetHatchedEggsResponse_pb2.py │ │ ├── GetHatchedEggsResponse_pb2.pyc │ │ ├── GetIncensePokemonResponse_pb2.py │ │ ├── GetInventoryResponse_pb2.py │ │ ├── GetInventoryResponse_pb2.pyc │ │ ├── GetMapObjectsResponse_pb2.py │ │ ├── GetMapObjectsResponse_pb2.pyc │ │ ├── GetPlayerProfileResponse_pb2.py │ │ ├── GetPlayerResponse_pb2.py │ │ ├── GetPlayerResponse_pb2.pyc │ │ ├── GetSuggestedCodenamesResponse_pb2.py │ │ ├── IncenseEncounterResponse_pb2.py │ │ ├── LevelUpRewardsResponse_pb2.py │ │ ├── LevelUpRewardsResponse_pb2.pyc │ │ ├── MarkTutorialCompleteResponse_pb2.py │ │ ├── NicknamePokemonResponse_pb2.py │ │ ├── NicknamePokemonResponse_pb2.pyc │ │ ├── PlayerUpdateResponse_pb2.py │ │ ├── RecycleInventoryItemResponse_pb2.py │ │ ├── RecycleInventoryItemResponse_pb2.pyc │ │ ├── ReleasePokemonResponse_pb2.py │ │ ├── ReleasePokemonResponse_pb2.pyc │ │ ├── SetAvatarResponse_pb2.py │ │ ├── SetContactSettingsResponse_pb2.py │ │ ├── SetFavoritePokemonResponse_pb2.py │ │ ├── SetFavoritePokemonResponse_pb2.pyc │ │ ├── SetPlayerTeamResponse_pb2.py │ │ ├── SetPlayerTeamResponse_pb2.pyc │ │ ├── SfidaActionLogResponse_pb2.py │ │ ├── StartGymBattleResponse_pb2.py │ │ ├── UpgradePokemonResponse_pb2.py │ │ ├── UpgradePokemonResponse_pb2.pyc │ │ ├── UseIncenseResponse_pb2.py │ │ ├── UseItemCaptureResponse_pb2.py │ │ ├── UseItemCaptureResponse_pb2.pyc │ │ ├── UseItemEggIncubatorResponse_pb2.py │ │ ├── UseItemEggIncubatorResponse_pb2.pyc │ │ ├── UseItemGymResponse_pb2.py │ │ ├── UseItemPotionResponse_pb2.py │ │ ├── UseItemPotionResponse_pb2.pyc │ │ ├── UseItemReviveResponse_pb2.py │ │ ├── UseItemReviveResponse_pb2.pyc │ │ ├── UseItemXpBoostResponse_pb2.py │ │ ├── UseItemXpBoostResponse_pb2.pyc │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── __init__.py │ └── __init__.pyc ├── Settings │ ├── DownloadSettingsAction_pb2.py │ ├── FortSettings_pb2.py │ ├── FortSettings_pb2.pyc │ ├── GlobalSettings_pb2.py │ ├── GlobalSettings_pb2.pyc │ ├── InventorySettings_pb2.py │ ├── InventorySettings_pb2.pyc │ ├── LevelSettings_pb2.py │ ├── LevelSettings_pb2.pyc │ ├── MapSettings_pb2.py │ ├── MapSettings_pb2.pyc │ ├── Master │ │ ├── BadgeSettings_pb2.py │ │ ├── CameraSettings_pb2.py │ │ ├── EncounterSettings_pb2.py │ │ ├── EquippedBadgeSettings_pb2.py │ │ ├── GymBattleSettings_pb2.py │ │ ├── GymLevelSettings_pb2.py │ │ ├── IapItemDisplay_pb2.py │ │ ├── IapSettings_pb2.py │ │ ├── Item │ │ │ ├── BattleAttributes_pb2.py │ │ │ ├── EggIncubatorAttributes_pb2.py │ │ │ ├── ExperienceBoostAttributes_pb2.py │ │ │ ├── FoodAttributes_pb2.py │ │ │ ├── FortModifierAttributes_pb2.py │ │ │ ├── IncenseAttributes_pb2.py │ │ │ ├── InventoryUpgradeAttributes_pb2.py │ │ │ ├── PokeballAttributes_pb2.py │ │ │ ├── PotionAttributes_pb2.py │ │ │ ├── ReviveAttributes_pb2.py │ │ │ └── __init__.py │ │ ├── ItemSettings_pb2.py │ │ ├── MoveSequenceSettings_pb2.py │ │ ├── MoveSettings_pb2.py │ │ ├── PlayerLevelSettings_pb2.py │ │ ├── Pokemon │ │ │ ├── CameraAttributes_pb2.py │ │ │ ├── EncounterAttributes_pb2.py │ │ │ ├── StatsAttributes_pb2.py │ │ │ └── __init__.py │ │ ├── PokemonSettings_pb2.py │ │ ├── PokemonUpgradeSettings_pb2.py │ │ ├── TypeEffectiveSettings_pb2.py │ │ └── __init__.py │ ├── __init__.py │ └── __init__.pyc ├── __init__.py └── __init__.pyc ├── README.md ├── __init__.py ├── algo.py ├── compile.sh ├── config.ini.example ├── encrypt ├── encrypt32bit.dll ├── encrypt64bit.dll ├── libencrypt-freebsd10-64.so ├── libencrypt-linux-arm-32.so ├── libencrypt-linux-x86-32.so ├── libencrypt-linux-x86-64.so ├── libencrypt-osx-64.so └── ph.txt ├── mgr.py ├── pogo ├── __init__.py ├── __init__.pyc ├── api.py ├── api.pyc ├── custom_exceptions.py ├── custom_exceptions.pyc ├── inventory.py ├── inventory.pyc ├── location.py ├── location.pyc ├── pokedex.py ├── pokedex.pyc ├── session.py ├── session.pyc ├── session_bare.py ├── session_bare.pyc ├── state.py ├── state.pyc ├── trainer.py ├── trainer.pyc ├── util.py └── util.pyc ├── requirements.txt ├── static ├── LICENSE ├── avatars │ ├── 1.png │ ├── 10.png │ ├── 100.png │ ├── 101.png │ ├── 102.png │ ├── 103.png │ ├── 104.png │ ├── 105.png │ ├── 106.png │ ├── 107.png │ ├── 108.png │ ├── 109.png │ ├── 11.png │ ├── 110.png │ ├── 111.png │ ├── 112.png │ ├── 113.png │ ├── 114.png │ ├── 115.png │ ├── 116.png │ ├── 117.png │ ├── 118.png │ ├── 119.png │ ├── 12.png │ ├── 120.png │ ├── 121.png │ ├── 122.png │ ├── 123.png │ ├── 124.png │ ├── 125.png │ ├── 126.png │ ├── 127.png │ ├── 128.png │ ├── 129.png │ ├── 13.png │ ├── 130.png │ ├── 131.png │ ├── 132.png │ ├── 133.png │ ├── 134.png │ ├── 135.png │ ├── 136.png │ ├── 137.png │ ├── 138.png │ ├── 139.png │ ├── 14.png │ ├── 140.png │ ├── 141.png │ ├── 142.png │ ├── 143.png │ ├── 144.png │ ├── 145.png │ ├── 146.png │ ├── 147.png │ ├── 148.png │ ├── 149.png │ ├── 15.png │ ├── 150.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 21.png │ ├── 22.png │ ├── 23.png │ ├── 24.png │ ├── 25.png │ ├── 26.png │ ├── 27.png │ ├── 28.png │ ├── 29.png │ ├── 3.png │ ├── 30.png │ ├── 31.png │ ├── 32.png │ ├── 33.png │ ├── 34.png │ ├── 35.png │ ├── 36.png │ ├── 37.png │ ├── 38.png │ ├── 39.png │ ├── 4.png │ ├── 40.png │ ├── 41.png │ ├── 42.png │ ├── 43.png │ ├── 44.png │ ├── 45.png │ ├── 46.png │ ├── 47.png │ ├── 48.png │ ├── 49.png │ ├── 5.png │ ├── 50.png │ ├── 51.png │ ├── 52.png │ ├── 53.png │ ├── 54.png │ ├── 55.png │ ├── 56.png │ ├── 57.png │ ├── 58.png │ ├── 59.png │ ├── 6.png │ ├── 60.png │ ├── 61.png │ ├── 62.png │ ├── 63.png │ ├── 64.png │ ├── 65.png │ ├── 66.png │ ├── 67.png │ ├── 68.png │ ├── 69.png │ ├── 7.png │ ├── 70.png │ ├── 71.png │ ├── 72.png │ ├── 73.png │ ├── 74.png │ ├── 75.png │ ├── 76.png │ ├── 77.png │ ├── 78.png │ ├── 79.png │ ├── 8.png │ ├── 80.png │ ├── 81.png │ ├── 82.png │ ├── 83.png │ ├── 84.png │ ├── 85.png │ ├── 86.png │ ├── 87.png │ ├── 88.png │ ├── 89.png │ ├── 9.png │ ├── 90.png │ ├── 91.png │ ├── 92.png │ ├── 93.png │ ├── 94.png │ ├── 95.png │ ├── 96.png │ ├── 97.png │ ├── 98.png │ ├── 99.png │ ├── blue.png │ ├── candy.png │ ├── getAvatars.py │ ├── noteam.png │ ├── red.png │ ├── star_gold.png │ ├── star_grey.png │ ├── undefined.png │ └── yellow.png ├── catch_data.json ├── css │ ├── materialize.css │ ├── materialize.min.css │ └── style.css ├── fonts │ └── roboto │ │ ├── Roboto-Bold.eot │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.eot │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.eot │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.eot │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-Thin.eot │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-Thin.woff │ │ └── Roboto-Thin.woff2 ├── inventory.json ├── js │ ├── materialize.js │ ├── materialize.min.js │ └── mgr.js ├── stats.json └── status.json └── templates ├── dashboard.html ├── inventory.html ├── inventoryTimeout.html └── result.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM jfloff/alpine-python:2.7-onbuild 2 | 3 | # to build this image, run: 4 | # docker build --rm=true -t jfloff/app . 5 | 6 | # to run this - go to a directory that has your config.ini and execute: 7 | # docker run --rm -it -v $(PWD):/usr/local/config ryebrye/pokepymanager:latest 8 | 9 | ENV WORKING_DIR /usr/local/app 10 | EXPOSE 5100 11 | 12 | COPY ./pogo $WORKING_DIR 13 | 14 | # for a flask server 15 | CMD /bin/bash -c "cp /usr/local/config/config.ini $WORKING_DIR && cd $WORKING_DIR && python mgr.py" -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | pgoapi - Pokemon Go API 2 | Copyright (c) 2016 tjado 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in all 12 | copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 17 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 18 | DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 19 | OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE 20 | OR OTHER DEALINGS IN THE SOFTWARE. 21 | 22 | Author: tjado -------------------------------------------------------------------------------- /Launch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | start "" python mgr.py 3 | timeout 10 4 | start http://127.0.0.1:5100 5 | pause 6 | -------------------------------------------------------------------------------- /POGOProtos/Data/Battle/BattleState_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Data/Battle/BattleState.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Data/Battle/BattleState.proto', 21 | package='POGOProtos.Data.Battle', 22 | syntax='proto3', 23 | serialized_pb=_b('\n(POGOProtos/Data/Battle/BattleState.proto\x12\x16POGOProtos.Data.Battle*T\n\x0b\x42\x61ttleState\x12\x0f\n\x0bSTATE_UNSET\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x01\x12\x0b\n\x07VICTORY\x10\x02\x12\x0c\n\x08\x44\x45\x46\x45\x41TED\x10\x03\x12\r\n\tTIMED_OUT\x10\x04\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _BATTLESTATE = _descriptor.EnumDescriptor( 28 | name='BattleState', 29 | full_name='POGOProtos.Data.Battle.BattleState', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='STATE_UNSET', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='ACTIVE', index=1, number=1, 39 | options=None, 40 | type=None), 41 | _descriptor.EnumValueDescriptor( 42 | name='VICTORY', index=2, number=2, 43 | options=None, 44 | type=None), 45 | _descriptor.EnumValueDescriptor( 46 | name='DEFEATED', index=3, number=3, 47 | options=None, 48 | type=None), 49 | _descriptor.EnumValueDescriptor( 50 | name='TIMED_OUT', index=4, number=4, 51 | options=None, 52 | type=None), 53 | ], 54 | containing_type=None, 55 | options=None, 56 | serialized_start=68, 57 | serialized_end=152, 58 | ) 59 | _sym_db.RegisterEnumDescriptor(_BATTLESTATE) 60 | 61 | BattleState = enum_type_wrapper.EnumTypeWrapper(_BATTLESTATE) 62 | STATE_UNSET = 0 63 | ACTIVE = 1 64 | VICTORY = 2 65 | DEFEATED = 3 66 | TIMED_OUT = 4 67 | 68 | 69 | DESCRIPTOR.enum_types_by_name['BattleState'] = _BATTLESTATE 70 | 71 | 72 | # @@protoc_insertion_point(module_scope) 73 | -------------------------------------------------------------------------------- /POGOProtos/Data/Battle/BattleType_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Data/Battle/BattleType.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Data/Battle/BattleType.proto', 21 | package='POGOProtos.Data.Battle', 22 | syntax='proto3', 23 | serialized_pb=_b('\n\'POGOProtos/Data/Battle/BattleType.proto\x12\x16POGOProtos.Data.Battle*U\n\nBattleType\x12\x15\n\x11\x42\x41TTLE_TYPE_UNSET\x10\x00\x12\x16\n\x12\x42\x41TTLE_TYPE_NORMAL\x10\x01\x12\x18\n\x14\x42\x41TTLE_TYPE_TRAINING\x10\x02\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _BATTLETYPE = _descriptor.EnumDescriptor( 28 | name='BattleType', 29 | full_name='POGOProtos.Data.Battle.BattleType', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='BATTLE_TYPE_UNSET', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='BATTLE_TYPE_NORMAL', index=1, number=1, 39 | options=None, 40 | type=None), 41 | _descriptor.EnumValueDescriptor( 42 | name='BATTLE_TYPE_TRAINING', index=2, number=2, 43 | options=None, 44 | type=None), 45 | ], 46 | containing_type=None, 47 | options=None, 48 | serialized_start=67, 49 | serialized_end=152, 50 | ) 51 | _sym_db.RegisterEnumDescriptor(_BATTLETYPE) 52 | 53 | BattleType = enum_type_wrapper.EnumTypeWrapper(_BATTLETYPE) 54 | BATTLE_TYPE_UNSET = 0 55 | BATTLE_TYPE_NORMAL = 1 56 | BATTLE_TYPE_TRAINING = 2 57 | 58 | 59 | DESCRIPTOR.enum_types_by_name['BattleType'] = _BATTLETYPE 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Data/Battle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Battle/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Data/Capture/CaptureAward_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Capture/CaptureAward_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/Capture/CaptureProbability_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Capture/CaptureProbability_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/Capture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Capture/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Data/Capture/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Capture/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/Gym/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Gym/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Data/Logs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Logs/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Data/Player/ContactSettings_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Player/ContactSettings_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/Player/Currency_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Data/Player/Currency.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Data/Player/Currency.proto', 20 | package='POGOProtos.Data.Player', 21 | syntax='proto3', 22 | serialized_pb=_b('\n%POGOProtos/Data/Player/Currency.proto\x12\x16POGOProtos.Data.Player\"(\n\x08\x43urrency\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06\x61mount\x18\x02 \x01(\x05\x62\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _CURRENCY = _descriptor.Descriptor( 30 | name='Currency', 31 | full_name='POGOProtos.Data.Player.Currency', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='name', full_name='POGOProtos.Data.Player.Currency.name', index=0, 38 | number=1, type=9, cpp_type=9, label=1, 39 | has_default_value=False, default_value=_b("").decode('utf-8'), 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | _descriptor.FieldDescriptor( 44 | name='amount', full_name='POGOProtos.Data.Player.Currency.amount', index=1, 45 | number=2, type=5, cpp_type=1, label=1, 46 | has_default_value=False, default_value=0, 47 | message_type=None, enum_type=None, containing_type=None, 48 | is_extension=False, extension_scope=None, 49 | options=None), 50 | ], 51 | extensions=[ 52 | ], 53 | nested_types=[], 54 | enum_types=[ 55 | ], 56 | options=None, 57 | is_extendable=False, 58 | syntax='proto3', 59 | extension_ranges=[], 60 | oneofs=[ 61 | ], 62 | serialized_start=65, 63 | serialized_end=105, 64 | ) 65 | 66 | DESCRIPTOR.message_types_by_name['Currency'] = _CURRENCY 67 | 68 | Currency = _reflection.GeneratedProtocolMessageType('Currency', (_message.Message,), dict( 69 | DESCRIPTOR = _CURRENCY, 70 | __module__ = 'POGOProtos.Data.Player.Currency_pb2' 71 | # @@protoc_insertion_point(class_scope:POGOProtos.Data.Player.Currency) 72 | )) 73 | _sym_db.RegisterMessage(Currency) 74 | 75 | 76 | # @@protoc_insertion_point(module_scope) 77 | -------------------------------------------------------------------------------- /POGOProtos/Data/Player/Currency_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Player/Currency_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/Player/DailyBonus_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Player/DailyBonus_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/Player/EquippedBadge_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Player/EquippedBadge_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/Player/PlayerAvatar_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Player/PlayerAvatar_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/Player/PlayerCamera_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Data/Player/PlayerCamera.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Data/Player/PlayerCamera.proto', 20 | package='POGOProtos.Data.Player', 21 | syntax='proto3', 22 | serialized_pb=_b('\n)POGOProtos/Data/Player/PlayerCamera.proto\x12\x16POGOProtos.Data.Player\")\n\x0cPlayerCamera\x12\x19\n\x11is_default_camera\x18\x01 \x01(\x08\x62\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _PLAYERCAMERA = _descriptor.Descriptor( 30 | name='PlayerCamera', 31 | full_name='POGOProtos.Data.Player.PlayerCamera', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='is_default_camera', full_name='POGOProtos.Data.Player.PlayerCamera.is_default_camera', index=0, 38 | number=1, type=8, cpp_type=7, label=1, 39 | has_default_value=False, default_value=False, 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=69, 56 | serialized_end=110, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['PlayerCamera'] = _PLAYERCAMERA 60 | 61 | PlayerCamera = _reflection.GeneratedProtocolMessageType('PlayerCamera', (_message.Message,), dict( 62 | DESCRIPTOR = _PLAYERCAMERA, 63 | __module__ = 'POGOProtos.Data.Player.PlayerCamera_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Data.Player.PlayerCamera) 65 | )) 66 | _sym_db.RegisterMessage(PlayerCamera) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Data/Player/PlayerCamera_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Player/PlayerCamera_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/Player/PlayerCurrency_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Data/Player/PlayerCurrency.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Data/Player/PlayerCurrency.proto', 20 | package='POGOProtos.Data.Player', 21 | syntax='proto3', 22 | serialized_pb=_b('\n+POGOProtos/Data/Player/PlayerCurrency.proto\x12\x16POGOProtos.Data.Player\"\x1e\n\x0ePlayerCurrency\x12\x0c\n\x04gems\x18\x01 \x01(\x05\x62\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _PLAYERCURRENCY = _descriptor.Descriptor( 30 | name='PlayerCurrency', 31 | full_name='POGOProtos.Data.Player.PlayerCurrency', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='gems', full_name='POGOProtos.Data.Player.PlayerCurrency.gems', index=0, 38 | number=1, type=5, cpp_type=1, label=1, 39 | has_default_value=False, default_value=0, 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=71, 56 | serialized_end=101, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['PlayerCurrency'] = _PLAYERCURRENCY 60 | 61 | PlayerCurrency = _reflection.GeneratedProtocolMessageType('PlayerCurrency', (_message.Message,), dict( 62 | DESCRIPTOR = _PLAYERCURRENCY, 63 | __module__ = 'POGOProtos.Data.Player.PlayerCurrency_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Data.Player.PlayerCurrency) 65 | )) 66 | _sym_db.RegisterMessage(PlayerCurrency) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Data/Player/PlayerCurrency_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Player/PlayerCurrency_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/Player/PlayerStats_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Player/PlayerStats_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/Player/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Player/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Data/Player/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/Player/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/PlayerData_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/PlayerData_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/PokedexEntry_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/PokedexEntry_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/PokemonData_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/PokemonData_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Data/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Data/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Enums/ActivityType_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Enums/ActivityType_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Enums/BadgeType_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Enums/BadgeType_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Enums/CameraInterpolation_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Enums/CameraInterpolation.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Enums/CameraInterpolation.proto', 21 | package='POGOProtos.Enums', 22 | syntax='proto3', 23 | serialized_pb=_b('\n*POGOProtos/Enums/CameraInterpolation.proto\x12\x10POGOProtos.Enums*\x96\x01\n\x13\x43\x61meraInterpolation\x12\x12\n\x0e\x43\x41M_INTERP_CUT\x10\x00\x12\x15\n\x11\x43\x41M_INTERP_LINEAR\x10\x01\x12\x15\n\x11\x43\x41M_INTERP_SMOOTH\x10\x02\x12%\n!CAM_INTERP_SMOOTH_ROT_LINEAR_MOVE\x10\x03\x12\x16\n\x12\x43\x41M_INTERP_DEPENDS\x10\x04\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _CAMERAINTERPOLATION = _descriptor.EnumDescriptor( 28 | name='CameraInterpolation', 29 | full_name='POGOProtos.Enums.CameraInterpolation', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='CAM_INTERP_CUT', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='CAM_INTERP_LINEAR', index=1, number=1, 39 | options=None, 40 | type=None), 41 | _descriptor.EnumValueDescriptor( 42 | name='CAM_INTERP_SMOOTH', index=2, number=2, 43 | options=None, 44 | type=None), 45 | _descriptor.EnumValueDescriptor( 46 | name='CAM_INTERP_SMOOTH_ROT_LINEAR_MOVE', index=3, number=3, 47 | options=None, 48 | type=None), 49 | _descriptor.EnumValueDescriptor( 50 | name='CAM_INTERP_DEPENDS', index=4, number=4, 51 | options=None, 52 | type=None), 53 | ], 54 | containing_type=None, 55 | options=None, 56 | serialized_start=65, 57 | serialized_end=215, 58 | ) 59 | _sym_db.RegisterEnumDescriptor(_CAMERAINTERPOLATION) 60 | 61 | CameraInterpolation = enum_type_wrapper.EnumTypeWrapper(_CAMERAINTERPOLATION) 62 | CAM_INTERP_CUT = 0 63 | CAM_INTERP_LINEAR = 1 64 | CAM_INTERP_SMOOTH = 2 65 | CAM_INTERP_SMOOTH_ROT_LINEAR_MOVE = 3 66 | CAM_INTERP_DEPENDS = 4 67 | 68 | 69 | DESCRIPTOR.enum_types_by_name['CameraInterpolation'] = _CAMERAINTERPOLATION 70 | 71 | 72 | # @@protoc_insertion_point(module_scope) 73 | -------------------------------------------------------------------------------- /POGOProtos/Enums/Gender_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Enums/Gender.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Enums/Gender.proto', 21 | package='POGOProtos.Enums', 22 | syntax='proto3', 23 | serialized_pb=_b('\n\x1dPOGOProtos/Enums/Gender.proto\x12\x10POGOProtos.Enums*\x1e\n\x06Gender\x12\x08\n\x04MALE\x10\x00\x12\n\n\x06\x46\x45MALE\x10\x01\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _GENDER = _descriptor.EnumDescriptor( 28 | name='Gender', 29 | full_name='POGOProtos.Enums.Gender', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='MALE', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='FEMALE', index=1, number=1, 39 | options=None, 40 | type=None), 41 | ], 42 | containing_type=None, 43 | options=None, 44 | serialized_start=51, 45 | serialized_end=81, 46 | ) 47 | _sym_db.RegisterEnumDescriptor(_GENDER) 48 | 49 | Gender = enum_type_wrapper.EnumTypeWrapper(_GENDER) 50 | MALE = 0 51 | FEMALE = 1 52 | 53 | 54 | DESCRIPTOR.enum_types_by_name['Gender'] = _GENDER 55 | 56 | 57 | # @@protoc_insertion_point(module_scope) 58 | -------------------------------------------------------------------------------- /POGOProtos/Enums/Gender_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Enums/Gender_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Enums/IapItemCategory_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Enums/IapItemCategory.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Enums/IapItemCategory.proto', 21 | package='POGOProtos.Enums', 22 | syntax='proto3', 23 | serialized_pb=_b('\n&POGOProtos/Enums/IapItemCategory.proto\x12\x10POGOProtos.Enums*\x94\x01\n\x13HoloIapItemCategory\x12\x15\n\x11IAP_CATEGORY_NONE\x10\x00\x12\x17\n\x13IAP_CATEGORY_BUNDLE\x10\x01\x12\x16\n\x12IAP_CATEGORY_ITEMS\x10\x02\x12\x19\n\x15IAP_CATEGORY_UPGRADES\x10\x03\x12\x1a\n\x16IAP_CATEGORY_POKECOINS\x10\x04\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _HOLOIAPITEMCATEGORY = _descriptor.EnumDescriptor( 28 | name='HoloIapItemCategory', 29 | full_name='POGOProtos.Enums.HoloIapItemCategory', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='IAP_CATEGORY_NONE', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='IAP_CATEGORY_BUNDLE', index=1, number=1, 39 | options=None, 40 | type=None), 41 | _descriptor.EnumValueDescriptor( 42 | name='IAP_CATEGORY_ITEMS', index=2, number=2, 43 | options=None, 44 | type=None), 45 | _descriptor.EnumValueDescriptor( 46 | name='IAP_CATEGORY_UPGRADES', index=3, number=3, 47 | options=None, 48 | type=None), 49 | _descriptor.EnumValueDescriptor( 50 | name='IAP_CATEGORY_POKECOINS', index=4, number=4, 51 | options=None, 52 | type=None), 53 | ], 54 | containing_type=None, 55 | options=None, 56 | serialized_start=61, 57 | serialized_end=209, 58 | ) 59 | _sym_db.RegisterEnumDescriptor(_HOLOIAPITEMCATEGORY) 60 | 61 | HoloIapItemCategory = enum_type_wrapper.EnumTypeWrapper(_HOLOIAPITEMCATEGORY) 62 | IAP_CATEGORY_NONE = 0 63 | IAP_CATEGORY_BUNDLE = 1 64 | IAP_CATEGORY_ITEMS = 2 65 | IAP_CATEGORY_UPGRADES = 3 66 | IAP_CATEGORY_POKECOINS = 4 67 | 68 | 69 | DESCRIPTOR.enum_types_by_name['HoloIapItemCategory'] = _HOLOIAPITEMCATEGORY 70 | 71 | 72 | # @@protoc_insertion_point(module_scope) 73 | -------------------------------------------------------------------------------- /POGOProtos/Enums/Platform_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Enums/Platform.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Enums/Platform.proto', 21 | package='POGOProtos.Enums', 22 | syntax='proto3', 23 | serialized_pb=_b('\n\x1fPOGOProtos/Enums/Platform.proto\x12\x10POGOProtos.Enums*A\n\x08Platform\x12\t\n\x05UNSET\x10\x00\x12\x07\n\x03IOS\x10\x01\x12\x0b\n\x07\x41NDROID\x10\x02\x12\x07\n\x03OSX\x10\x03\x12\x0b\n\x07WINDOWS\x10\x04\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _PLATFORM = _descriptor.EnumDescriptor( 28 | name='Platform', 29 | full_name='POGOProtos.Enums.Platform', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='UNSET', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='IOS', index=1, number=1, 39 | options=None, 40 | type=None), 41 | _descriptor.EnumValueDescriptor( 42 | name='ANDROID', index=2, number=2, 43 | options=None, 44 | type=None), 45 | _descriptor.EnumValueDescriptor( 46 | name='OSX', index=3, number=3, 47 | options=None, 48 | type=None), 49 | _descriptor.EnumValueDescriptor( 50 | name='WINDOWS', index=4, number=4, 51 | options=None, 52 | type=None), 53 | ], 54 | containing_type=None, 55 | options=None, 56 | serialized_start=53, 57 | serialized_end=118, 58 | ) 59 | _sym_db.RegisterEnumDescriptor(_PLATFORM) 60 | 61 | Platform = enum_type_wrapper.EnumTypeWrapper(_PLATFORM) 62 | UNSET = 0 63 | IOS = 1 64 | ANDROID = 2 65 | OSX = 3 66 | WINDOWS = 4 67 | 68 | 69 | DESCRIPTOR.enum_types_by_name['Platform'] = _PLATFORM 70 | 71 | 72 | # @@protoc_insertion_point(module_scope) 73 | -------------------------------------------------------------------------------- /POGOProtos/Enums/PokemonClass_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Enums/PokemonClass.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Enums/PokemonClass.proto', 21 | package='POGOProtos.Enums', 22 | syntax='proto3', 23 | serialized_pb=_b('\n#POGOProtos/Enums/PokemonClass.proto\x12\x10POGOProtos.Enums*5\n\x0cPokemonClass\x12\n\n\x06NORMAL\x10\x00\x12\r\n\tLEGENDARY\x10\x01\x12\n\n\x06MYTHIC\x10\x02\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _POKEMONCLASS = _descriptor.EnumDescriptor( 28 | name='PokemonClass', 29 | full_name='POGOProtos.Enums.PokemonClass', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='NORMAL', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='LEGENDARY', index=1, number=1, 39 | options=None, 40 | type=None), 41 | _descriptor.EnumValueDescriptor( 42 | name='MYTHIC', index=2, number=2, 43 | options=None, 44 | type=None), 45 | ], 46 | containing_type=None, 47 | options=None, 48 | serialized_start=57, 49 | serialized_end=110, 50 | ) 51 | _sym_db.RegisterEnumDescriptor(_POKEMONCLASS) 52 | 53 | PokemonClass = enum_type_wrapper.EnumTypeWrapper(_POKEMONCLASS) 54 | NORMAL = 0 55 | LEGENDARY = 1 56 | MYTHIC = 2 57 | 58 | 59 | DESCRIPTOR.enum_types_by_name['PokemonClass'] = _POKEMONCLASS 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Enums/PokemonFamilyId_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Enums/PokemonFamilyId_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Enums/PokemonId_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Enums/PokemonId_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Enums/PokemonMove_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Enums/PokemonMove_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Enums/PokemonRarity_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Enums/PokemonRarity.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Enums/PokemonRarity.proto', 21 | package='POGOProtos.Enums', 22 | syntax='proto3', 23 | serialized_pb=_b('\n$POGOProtos/Enums/PokemonRarity.proto\x12\x10POGOProtos.Enums*c\n\rPokemonRarity\x12\x19\n\x15POKEMON_RARITY_NORMAL\x10\x00\x12\x1c\n\x18POKEMON_RARITY_LEGENDARY\x10\x01\x12\x19\n\x15POKEMON_RARITY_MYTHIC\x10\x02\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _POKEMONRARITY = _descriptor.EnumDescriptor( 28 | name='PokemonRarity', 29 | full_name='POGOProtos.Enums.PokemonRarity', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='POKEMON_RARITY_NORMAL', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='POKEMON_RARITY_LEGENDARY', index=1, number=1, 39 | options=None, 40 | type=None), 41 | _descriptor.EnumValueDescriptor( 42 | name='POKEMON_RARITY_MYTHIC', index=2, number=2, 43 | options=None, 44 | type=None), 45 | ], 46 | containing_type=None, 47 | options=None, 48 | serialized_start=58, 49 | serialized_end=157, 50 | ) 51 | _sym_db.RegisterEnumDescriptor(_POKEMONRARITY) 52 | 53 | PokemonRarity = enum_type_wrapper.EnumTypeWrapper(_POKEMONRARITY) 54 | POKEMON_RARITY_NORMAL = 0 55 | POKEMON_RARITY_LEGENDARY = 1 56 | POKEMON_RARITY_MYTHIC = 2 57 | 58 | 59 | DESCRIPTOR.enum_types_by_name['PokemonRarity'] = _POKEMONRARITY 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Enums/TeamColor_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Enums/TeamColor.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Enums/TeamColor.proto', 21 | package='POGOProtos.Enums', 22 | syntax='proto3', 23 | serialized_pb=_b('\n POGOProtos/Enums/TeamColor.proto\x12\x10POGOProtos.Enums*7\n\tTeamColor\x12\x0b\n\x07NEUTRAL\x10\x00\x12\x08\n\x04\x42LUE\x10\x01\x12\x07\n\x03RED\x10\x02\x12\n\n\x06YELLOW\x10\x03\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _TEAMCOLOR = _descriptor.EnumDescriptor( 28 | name='TeamColor', 29 | full_name='POGOProtos.Enums.TeamColor', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='NEUTRAL', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='BLUE', index=1, number=1, 39 | options=None, 40 | type=None), 41 | _descriptor.EnumValueDescriptor( 42 | name='RED', index=2, number=2, 43 | options=None, 44 | type=None), 45 | _descriptor.EnumValueDescriptor( 46 | name='YELLOW', index=3, number=3, 47 | options=None, 48 | type=None), 49 | ], 50 | containing_type=None, 51 | options=None, 52 | serialized_start=54, 53 | serialized_end=109, 54 | ) 55 | _sym_db.RegisterEnumDescriptor(_TEAMCOLOR) 56 | 57 | TeamColor = enum_type_wrapper.EnumTypeWrapper(_TEAMCOLOR) 58 | NEUTRAL = 0 59 | BLUE = 1 60 | RED = 2 61 | YELLOW = 3 62 | 63 | 64 | DESCRIPTOR.enum_types_by_name['TeamColor'] = _TEAMCOLOR 65 | 66 | 67 | # @@protoc_insertion_point(module_scope) 68 | -------------------------------------------------------------------------------- /POGOProtos/Enums/TeamColor_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Enums/TeamColor_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Enums/TutorialState_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Enums/TutorialState_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Enums/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Enums/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Enums/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Enums/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/AppliedItem_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/AppliedItem_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/AppliedItems_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Inventory/AppliedItems.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | from POGOProtos.Inventory import AppliedItem_pb2 as POGOProtos_dot_Inventory_dot_AppliedItem__pb2 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Inventory/AppliedItems.proto', 21 | package='POGOProtos.Inventory', 22 | syntax='proto3', 23 | serialized_pb=_b('\n\'POGOProtos/Inventory/AppliedItems.proto\x12\x14POGOProtos.Inventory\x1a&POGOProtos/Inventory/AppliedItem.proto\"?\n\x0c\x41ppliedItems\x12/\n\x04item\x18\x04 \x03(\x0b\x32!.POGOProtos.Inventory.AppliedItemb\x06proto3') 24 | , 25 | dependencies=[POGOProtos_dot_Inventory_dot_AppliedItem__pb2.DESCRIPTOR,]) 26 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 27 | 28 | 29 | 30 | 31 | _APPLIEDITEMS = _descriptor.Descriptor( 32 | name='AppliedItems', 33 | full_name='POGOProtos.Inventory.AppliedItems', 34 | filename=None, 35 | file=DESCRIPTOR, 36 | containing_type=None, 37 | fields=[ 38 | _descriptor.FieldDescriptor( 39 | name='item', full_name='POGOProtos.Inventory.AppliedItems.item', index=0, 40 | number=4, type=11, cpp_type=10, label=3, 41 | has_default_value=False, default_value=[], 42 | message_type=None, enum_type=None, containing_type=None, 43 | is_extension=False, extension_scope=None, 44 | options=None), 45 | ], 46 | extensions=[ 47 | ], 48 | nested_types=[], 49 | enum_types=[ 50 | ], 51 | options=None, 52 | is_extendable=False, 53 | syntax='proto3', 54 | extension_ranges=[], 55 | oneofs=[ 56 | ], 57 | serialized_start=105, 58 | serialized_end=168, 59 | ) 60 | 61 | _APPLIEDITEMS.fields_by_name['item'].message_type = POGOProtos_dot_Inventory_dot_AppliedItem__pb2._APPLIEDITEM 62 | DESCRIPTOR.message_types_by_name['AppliedItems'] = _APPLIEDITEMS 63 | 64 | AppliedItems = _reflection.GeneratedProtocolMessageType('AppliedItems', (_message.Message,), dict( 65 | DESCRIPTOR = _APPLIEDITEMS, 66 | __module__ = 'POGOProtos.Inventory.AppliedItems_pb2' 67 | # @@protoc_insertion_point(class_scope:POGOProtos.Inventory.AppliedItems) 68 | )) 69 | _sym_db.RegisterMessage(AppliedItems) 70 | 71 | 72 | # @@protoc_insertion_point(module_scope) 73 | -------------------------------------------------------------------------------- /POGOProtos/Inventory/AppliedItems_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/AppliedItems_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/Candy_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/Candy_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/EggIncubatorType_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Inventory/EggIncubatorType.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Inventory/EggIncubatorType.proto', 21 | package='POGOProtos.Inventory', 22 | syntax='proto3', 23 | serialized_pb=_b('\n+POGOProtos/Inventory/EggIncubatorType.proto\x12\x14POGOProtos.Inventory*?\n\x10\x45ggIncubatorType\x12\x13\n\x0fINCUBATOR_UNSET\x10\x00\x12\x16\n\x12INCUBATOR_DISTANCE\x10\x01\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _EGGINCUBATORTYPE = _descriptor.EnumDescriptor( 28 | name='EggIncubatorType', 29 | full_name='POGOProtos.Inventory.EggIncubatorType', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='INCUBATOR_UNSET', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='INCUBATOR_DISTANCE', index=1, number=1, 39 | options=None, 40 | type=None), 41 | ], 42 | containing_type=None, 43 | options=None, 44 | serialized_start=69, 45 | serialized_end=132, 46 | ) 47 | _sym_db.RegisterEnumDescriptor(_EGGINCUBATORTYPE) 48 | 49 | EggIncubatorType = enum_type_wrapper.EnumTypeWrapper(_EGGINCUBATORTYPE) 50 | INCUBATOR_UNSET = 0 51 | INCUBATOR_DISTANCE = 1 52 | 53 | 54 | DESCRIPTOR.enum_types_by_name['EggIncubatorType'] = _EGGINCUBATORTYPE 55 | 56 | 57 | # @@protoc_insertion_point(module_scope) 58 | -------------------------------------------------------------------------------- /POGOProtos/Inventory/EggIncubatorType_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/EggIncubatorType_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/EggIncubator_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/EggIncubator_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/EggIncubators_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Inventory/EggIncubators.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | from POGOProtos.Inventory import EggIncubator_pb2 as POGOProtos_dot_Inventory_dot_EggIncubator__pb2 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Inventory/EggIncubators.proto', 21 | package='POGOProtos.Inventory', 22 | syntax='proto3', 23 | serialized_pb=_b('\n(POGOProtos/Inventory/EggIncubators.proto\x12\x14POGOProtos.Inventory\x1a\'POGOProtos/Inventory/EggIncubator.proto\"J\n\rEggIncubators\x12\x39\n\regg_incubator\x18\x01 \x03(\x0b\x32\".POGOProtos.Inventory.EggIncubatorb\x06proto3') 24 | , 25 | dependencies=[POGOProtos_dot_Inventory_dot_EggIncubator__pb2.DESCRIPTOR,]) 26 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 27 | 28 | 29 | 30 | 31 | _EGGINCUBATORS = _descriptor.Descriptor( 32 | name='EggIncubators', 33 | full_name='POGOProtos.Inventory.EggIncubators', 34 | filename=None, 35 | file=DESCRIPTOR, 36 | containing_type=None, 37 | fields=[ 38 | _descriptor.FieldDescriptor( 39 | name='egg_incubator', full_name='POGOProtos.Inventory.EggIncubators.egg_incubator', index=0, 40 | number=1, type=11, cpp_type=10, label=3, 41 | has_default_value=False, default_value=[], 42 | message_type=None, enum_type=None, containing_type=None, 43 | is_extension=False, extension_scope=None, 44 | options=None), 45 | ], 46 | extensions=[ 47 | ], 48 | nested_types=[], 49 | enum_types=[ 50 | ], 51 | options=None, 52 | is_extendable=False, 53 | syntax='proto3', 54 | extension_ranges=[], 55 | oneofs=[ 56 | ], 57 | serialized_start=107, 58 | serialized_end=181, 59 | ) 60 | 61 | _EGGINCUBATORS.fields_by_name['egg_incubator'].message_type = POGOProtos_dot_Inventory_dot_EggIncubator__pb2._EGGINCUBATOR 62 | DESCRIPTOR.message_types_by_name['EggIncubators'] = _EGGINCUBATORS 63 | 64 | EggIncubators = _reflection.GeneratedProtocolMessageType('EggIncubators', (_message.Message,), dict( 65 | DESCRIPTOR = _EGGINCUBATORS, 66 | __module__ = 'POGOProtos.Inventory.EggIncubators_pb2' 67 | # @@protoc_insertion_point(class_scope:POGOProtos.Inventory.EggIncubators) 68 | )) 69 | _sym_db.RegisterMessage(EggIncubators) 70 | 71 | 72 | # @@protoc_insertion_point(module_scope) 73 | -------------------------------------------------------------------------------- /POGOProtos/Inventory/EggIncubators_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/EggIncubators_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/InventoryDelta_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/InventoryDelta_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/InventoryItemData_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/InventoryItemData_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/InventoryItem_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/InventoryItem_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/InventoryUpgradeType_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Inventory/InventoryUpgradeType.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Inventory/InventoryUpgradeType.proto', 21 | package='POGOProtos.Inventory', 22 | syntax='proto3', 23 | serialized_pb=_b('\n/POGOProtos/Inventory/InventoryUpgradeType.proto\x12\x14POGOProtos.Inventory*b\n\x14InventoryUpgradeType\x12\x11\n\rUPGRADE_UNSET\x10\x00\x12\x19\n\x15INCREASE_ITEM_STORAGE\x10\x01\x12\x1c\n\x18INCREASE_POKEMON_STORAGE\x10\x02\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _INVENTORYUPGRADETYPE = _descriptor.EnumDescriptor( 28 | name='InventoryUpgradeType', 29 | full_name='POGOProtos.Inventory.InventoryUpgradeType', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='UPGRADE_UNSET', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='INCREASE_ITEM_STORAGE', index=1, number=1, 39 | options=None, 40 | type=None), 41 | _descriptor.EnumValueDescriptor( 42 | name='INCREASE_POKEMON_STORAGE', index=2, number=2, 43 | options=None, 44 | type=None), 45 | ], 46 | containing_type=None, 47 | options=None, 48 | serialized_start=73, 49 | serialized_end=171, 50 | ) 51 | _sym_db.RegisterEnumDescriptor(_INVENTORYUPGRADETYPE) 52 | 53 | InventoryUpgradeType = enum_type_wrapper.EnumTypeWrapper(_INVENTORYUPGRADETYPE) 54 | UPGRADE_UNSET = 0 55 | INCREASE_ITEM_STORAGE = 1 56 | INCREASE_POKEMON_STORAGE = 2 57 | 58 | 59 | DESCRIPTOR.enum_types_by_name['InventoryUpgradeType'] = _INVENTORYUPGRADETYPE 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Inventory/InventoryUpgradeType_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/InventoryUpgradeType_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/InventoryUpgrade_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/InventoryUpgrade_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/InventoryUpgrades_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/InventoryUpgrades_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/Item/ItemAward_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/Item/ItemAward_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/Item/ItemData_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/Item/ItemData_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/Item/ItemId_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/Item/ItemId_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/Item/ItemType_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/Item/ItemType_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/Item/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/Item/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Inventory/Item/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/Item/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Inventory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Inventory/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Inventory/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/Fort/FortData_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Fort/FortData_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/Fort/FortLureInfo_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Fort/FortLureInfo_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/Fort/FortModifier_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Fort/FortModifier_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/Fort/FortRenderingType_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Map/Fort/FortRenderingType.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Map/Fort/FortRenderingType.proto', 21 | package='POGOProtos.Map.Fort', 22 | syntax='proto3', 23 | serialized_pb=_b('\n+POGOProtos/Map/Fort/FortRenderingType.proto\x12\x13POGOProtos.Map.Fort*3\n\x11\x46ortRenderingType\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x00\x12\x11\n\rINTERNAL_TEST\x10\x01\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _FORTRENDERINGTYPE = _descriptor.EnumDescriptor( 28 | name='FortRenderingType', 29 | full_name='POGOProtos.Map.Fort.FortRenderingType', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='DEFAULT', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='INTERNAL_TEST', index=1, number=1, 39 | options=None, 40 | type=None), 41 | ], 42 | containing_type=None, 43 | options=None, 44 | serialized_start=68, 45 | serialized_end=119, 46 | ) 47 | _sym_db.RegisterEnumDescriptor(_FORTRENDERINGTYPE) 48 | 49 | FortRenderingType = enum_type_wrapper.EnumTypeWrapper(_FORTRENDERINGTYPE) 50 | DEFAULT = 0 51 | INTERNAL_TEST = 1 52 | 53 | 54 | DESCRIPTOR.enum_types_by_name['FortRenderingType'] = _FORTRENDERINGTYPE 55 | 56 | 57 | # @@protoc_insertion_point(module_scope) 58 | -------------------------------------------------------------------------------- /POGOProtos/Map/Fort/FortRenderingType_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Fort/FortRenderingType_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/Fort/FortSponsor_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Map/Fort/FortSponsor.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Map/Fort/FortSponsor.proto', 21 | package='POGOProtos.Map.Fort', 22 | syntax='proto3', 23 | serialized_pb=_b('\n%POGOProtos/Map/Fort/FortSponsor.proto\x12\x13POGOProtos.Map.Fort*B\n\x0b\x46ortSponsor\x12\x11\n\rUNSET_SPONSOR\x10\x00\x12\r\n\tMCDONALDS\x10\x01\x12\x11\n\rPOKEMON_STORE\x10\x02\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _FORTSPONSOR = _descriptor.EnumDescriptor( 28 | name='FortSponsor', 29 | full_name='POGOProtos.Map.Fort.FortSponsor', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='UNSET_SPONSOR', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='MCDONALDS', index=1, number=1, 39 | options=None, 40 | type=None), 41 | _descriptor.EnumValueDescriptor( 42 | name='POKEMON_STORE', index=2, number=2, 43 | options=None, 44 | type=None), 45 | ], 46 | containing_type=None, 47 | options=None, 48 | serialized_start=62, 49 | serialized_end=128, 50 | ) 51 | _sym_db.RegisterEnumDescriptor(_FORTSPONSOR) 52 | 53 | FortSponsor = enum_type_wrapper.EnumTypeWrapper(_FORTSPONSOR) 54 | UNSET_SPONSOR = 0 55 | MCDONALDS = 1 56 | POKEMON_STORE = 2 57 | 58 | 59 | DESCRIPTOR.enum_types_by_name['FortSponsor'] = _FORTSPONSOR 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Map/Fort/FortSponsor_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Fort/FortSponsor_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/Fort/FortSummary_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Fort/FortSummary_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/Fort/FortType_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Map/Fort/FortType.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Map/Fort/FortType.proto', 21 | package='POGOProtos.Map.Fort', 22 | syntax='proto3', 23 | serialized_pb=_b('\n\"POGOProtos/Map/Fort/FortType.proto\x12\x13POGOProtos.Map.Fort*#\n\x08\x46ortType\x12\x07\n\x03GYM\x10\x00\x12\x0e\n\nCHECKPOINT\x10\x01\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _FORTTYPE = _descriptor.EnumDescriptor( 28 | name='FortType', 29 | full_name='POGOProtos.Map.Fort.FortType', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='GYM', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='CHECKPOINT', index=1, number=1, 39 | options=None, 40 | type=None), 41 | ], 42 | containing_type=None, 43 | options=None, 44 | serialized_start=59, 45 | serialized_end=94, 46 | ) 47 | _sym_db.RegisterEnumDescriptor(_FORTTYPE) 48 | 49 | FortType = enum_type_wrapper.EnumTypeWrapper(_FORTTYPE) 50 | GYM = 0 51 | CHECKPOINT = 1 52 | 53 | 54 | DESCRIPTOR.enum_types_by_name['FortType'] = _FORTTYPE 55 | 56 | 57 | # @@protoc_insertion_point(module_scope) 58 | -------------------------------------------------------------------------------- /POGOProtos/Map/Fort/FortType_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Fort/FortType_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/Fort/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Fort/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Map/Fort/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Fort/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/MapCell_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/MapCell_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/MapObjectsStatus_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Map/MapObjectsStatus.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf.internal import enum_type_wrapper 7 | from google.protobuf import descriptor as _descriptor 8 | from google.protobuf import message as _message 9 | from google.protobuf import reflection as _reflection 10 | from google.protobuf import symbol_database as _symbol_database 11 | from google.protobuf import descriptor_pb2 12 | # @@protoc_insertion_point(imports) 13 | 14 | _sym_db = _symbol_database.Default() 15 | 16 | 17 | 18 | 19 | DESCRIPTOR = _descriptor.FileDescriptor( 20 | name='POGOProtos/Map/MapObjectsStatus.proto', 21 | package='POGOProtos.Map', 22 | syntax='proto3', 23 | serialized_pb=_b('\n%POGOProtos/Map/MapObjectsStatus.proto\x12\x0ePOGOProtos.Map*E\n\x10MapObjectsStatus\x12\x10\n\x0cUNSET_STATUS\x10\x00\x12\x0b\n\x07SUCCESS\x10\x01\x12\x12\n\x0eLOCATION_UNSET\x10\x02\x62\x06proto3') 24 | ) 25 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 26 | 27 | _MAPOBJECTSSTATUS = _descriptor.EnumDescriptor( 28 | name='MapObjectsStatus', 29 | full_name='POGOProtos.Map.MapObjectsStatus', 30 | filename=None, 31 | file=DESCRIPTOR, 32 | values=[ 33 | _descriptor.EnumValueDescriptor( 34 | name='UNSET_STATUS', index=0, number=0, 35 | options=None, 36 | type=None), 37 | _descriptor.EnumValueDescriptor( 38 | name='SUCCESS', index=1, number=1, 39 | options=None, 40 | type=None), 41 | _descriptor.EnumValueDescriptor( 42 | name='LOCATION_UNSET', index=2, number=2, 43 | options=None, 44 | type=None), 45 | ], 46 | containing_type=None, 47 | options=None, 48 | serialized_start=57, 49 | serialized_end=126, 50 | ) 51 | _sym_db.RegisterEnumDescriptor(_MAPOBJECTSSTATUS) 52 | 53 | MapObjectsStatus = enum_type_wrapper.EnumTypeWrapper(_MAPOBJECTSSTATUS) 54 | UNSET_STATUS = 0 55 | SUCCESS = 1 56 | LOCATION_UNSET = 2 57 | 58 | 59 | DESCRIPTOR.enum_types_by_name['MapObjectsStatus'] = _MAPOBJECTSSTATUS 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Map/MapObjectsStatus_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/MapObjectsStatus_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/Pokemon/MapPokemon_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Pokemon/MapPokemon_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/Pokemon/NearbyPokemon_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Pokemon/NearbyPokemon_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/Pokemon/WildPokemon_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Pokemon/WildPokemon_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/Pokemon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Pokemon/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Map/Pokemon/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/Pokemon/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/SpawnPoint_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Map/SpawnPoint.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Map/SpawnPoint.proto', 20 | package='POGOProtos.Map', 21 | syntax='proto3', 22 | serialized_pb=_b('\n\x1fPOGOProtos/Map/SpawnPoint.proto\x12\x0ePOGOProtos.Map\"1\n\nSpawnPoint\x12\x10\n\x08latitude\x18\x02 \x01(\x01\x12\x11\n\tlongitude\x18\x03 \x01(\x01\x62\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _SPAWNPOINT = _descriptor.Descriptor( 30 | name='SpawnPoint', 31 | full_name='POGOProtos.Map.SpawnPoint', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='latitude', full_name='POGOProtos.Map.SpawnPoint.latitude', index=0, 38 | number=2, type=1, cpp_type=5, label=1, 39 | has_default_value=False, default_value=float(0), 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | _descriptor.FieldDescriptor( 44 | name='longitude', full_name='POGOProtos.Map.SpawnPoint.longitude', index=1, 45 | number=3, type=1, cpp_type=5, label=1, 46 | has_default_value=False, default_value=float(0), 47 | message_type=None, enum_type=None, containing_type=None, 48 | is_extension=False, extension_scope=None, 49 | options=None), 50 | ], 51 | extensions=[ 52 | ], 53 | nested_types=[], 54 | enum_types=[ 55 | ], 56 | options=None, 57 | is_extendable=False, 58 | syntax='proto3', 59 | extension_ranges=[], 60 | oneofs=[ 61 | ], 62 | serialized_start=51, 63 | serialized_end=100, 64 | ) 65 | 66 | DESCRIPTOR.message_types_by_name['SpawnPoint'] = _SPAWNPOINT 67 | 68 | SpawnPoint = _reflection.GeneratedProtocolMessageType('SpawnPoint', (_message.Message,), dict( 69 | DESCRIPTOR = _SPAWNPOINT, 70 | __module__ = 'POGOProtos.Map.SpawnPoint_pb2' 71 | # @@protoc_insertion_point(class_scope:POGOProtos.Map.SpawnPoint) 72 | )) 73 | _sym_db.RegisterMessage(SpawnPoint) 74 | 75 | 76 | # @@protoc_insertion_point(module_scope) 77 | -------------------------------------------------------------------------------- /POGOProtos/Map/SpawnPoint_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/SpawnPoint_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Map/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Map/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Map/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Envelopes/AuthTicket_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Envelopes/AuthTicket_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Envelopes/RequestEnvelope_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Envelopes/RequestEnvelope_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Envelopes/ResponseEnvelope_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Envelopes/ResponseEnvelope_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Envelopes/Signature_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Envelopes/Signature_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Envelopes/Unknown6Response_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Envelopes/Unknown6Response_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Envelopes/Unknown6_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Envelopes/Unknown6_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Envelopes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Envelopes/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Networking/Envelopes/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Envelopes/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/CatchPokemonMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/CatchPokemonMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/CheckAwardedBadgesMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/CheckAwardedBadgesMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/CheckAwardedBadgesMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nGPOGOProtos/Networking/Requests/Messages/CheckAwardedBadgesMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"\x1b\n\x19\x43heckAwardedBadgesMessageb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _CHECKAWARDEDBADGESMESSAGE = _descriptor.Descriptor( 30 | name='CheckAwardedBadgesMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.CheckAwardedBadgesMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | ], 37 | extensions=[ 38 | ], 39 | nested_types=[], 40 | enum_types=[ 41 | ], 42 | options=None, 43 | is_extendable=False, 44 | syntax='proto3', 45 | extension_ranges=[], 46 | oneofs=[ 47 | ], 48 | serialized_start=116, 49 | serialized_end=143, 50 | ) 51 | 52 | DESCRIPTOR.message_types_by_name['CheckAwardedBadgesMessage'] = _CHECKAWARDEDBADGESMESSAGE 53 | 54 | CheckAwardedBadgesMessage = _reflection.GeneratedProtocolMessageType('CheckAwardedBadgesMessage', (_message.Message,), dict( 55 | DESCRIPTOR = _CHECKAWARDEDBADGESMESSAGE, 56 | __module__ = 'POGOProtos.Networking.Requests.Messages.CheckAwardedBadgesMessage_pb2' 57 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.CheckAwardedBadgesMessage) 58 | )) 59 | _sym_db.RegisterMessage(CheckAwardedBadgesMessage) 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/CheckCodenameAvailableMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/CheckCodenameAvailableMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/CheckCodenameAvailableMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nKPOGOProtos/Networking/Requests/Messages/CheckCodenameAvailableMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"1\n\x1d\x43heckCodenameAvailableMessage\x12\x10\n\x08\x63odename\x18\x01 \x01(\tb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _CHECKCODENAMEAVAILABLEMESSAGE = _descriptor.Descriptor( 30 | name='CheckCodenameAvailableMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.CheckCodenameAvailableMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='codename', full_name='POGOProtos.Networking.Requests.Messages.CheckCodenameAvailableMessage.codename', index=0, 38 | number=1, type=9, cpp_type=9, label=1, 39 | has_default_value=False, default_value=_b("").decode('utf-8'), 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=120, 56 | serialized_end=169, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['CheckCodenameAvailableMessage'] = _CHECKCODENAMEAVAILABLEMESSAGE 60 | 61 | CheckCodenameAvailableMessage = _reflection.GeneratedProtocolMessageType('CheckCodenameAvailableMessage', (_message.Message,), dict( 62 | DESCRIPTOR = _CHECKCODENAMEAVAILABLEMESSAGE, 63 | __module__ = 'POGOProtos.Networking.Requests.Messages.CheckCodenameAvailableMessage_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.CheckCodenameAvailableMessage) 65 | )) 66 | _sym_db.RegisterMessage(CheckCodenameAvailableMessage) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/ClaimCodenameMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/ClaimCodenameMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/ClaimCodenameMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nBPOGOProtos/Networking/Requests/Messages/ClaimCodenameMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"(\n\x14\x43laimCodenameMessage\x12\x10\n\x08\x63odename\x18\x01 \x01(\tb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _CLAIMCODENAMEMESSAGE = _descriptor.Descriptor( 30 | name='ClaimCodenameMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.ClaimCodenameMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='codename', full_name='POGOProtos.Networking.Requests.Messages.ClaimCodenameMessage.codename', index=0, 38 | number=1, type=9, cpp_type=9, label=1, 39 | has_default_value=False, default_value=_b("").decode('utf-8'), 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=111, 56 | serialized_end=151, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['ClaimCodenameMessage'] = _CLAIMCODENAMEMESSAGE 60 | 61 | ClaimCodenameMessage = _reflection.GeneratedProtocolMessageType('ClaimCodenameMessage', (_message.Message,), dict( 62 | DESCRIPTOR = _CLAIMCODENAMEMESSAGE, 63 | __module__ = 'POGOProtos.Networking.Requests.Messages.ClaimCodenameMessage_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.ClaimCodenameMessage) 65 | )) 66 | _sym_db.RegisterMessage(ClaimCodenameMessage) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/CollectDailyBonusMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/CollectDailyBonusMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/CollectDailyBonusMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nFPOGOProtos/Networking/Requests/Messages/CollectDailyBonusMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"\x1a\n\x18\x43ollectDailyBonusMessageb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _COLLECTDAILYBONUSMESSAGE = _descriptor.Descriptor( 30 | name='CollectDailyBonusMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.CollectDailyBonusMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | ], 37 | extensions=[ 38 | ], 39 | nested_types=[], 40 | enum_types=[ 41 | ], 42 | options=None, 43 | is_extendable=False, 44 | syntax='proto3', 45 | extension_ranges=[], 46 | oneofs=[ 47 | ], 48 | serialized_start=115, 49 | serialized_end=141, 50 | ) 51 | 52 | DESCRIPTOR.message_types_by_name['CollectDailyBonusMessage'] = _COLLECTDAILYBONUSMESSAGE 53 | 54 | CollectDailyBonusMessage = _reflection.GeneratedProtocolMessageType('CollectDailyBonusMessage', (_message.Message,), dict( 55 | DESCRIPTOR = _COLLECTDAILYBONUSMESSAGE, 56 | __module__ = 'POGOProtos.Networking.Requests.Messages.CollectDailyBonusMessage_pb2' 57 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.CollectDailyBonusMessage) 58 | )) 59 | _sym_db.RegisterMessage(CollectDailyBonusMessage) 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/CollectDailyDefenderBonusMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/CollectDailyDefenderBonusMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/CollectDailyDefenderBonusMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nNPOGOProtos/Networking/Requests/Messages/CollectDailyDefenderBonusMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"\"\n CollectDailyDefenderBonusMessageb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _COLLECTDAILYDEFENDERBONUSMESSAGE = _descriptor.Descriptor( 30 | name='CollectDailyDefenderBonusMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.CollectDailyDefenderBonusMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | ], 37 | extensions=[ 38 | ], 39 | nested_types=[], 40 | enum_types=[ 41 | ], 42 | options=None, 43 | is_extendable=False, 44 | syntax='proto3', 45 | extension_ranges=[], 46 | oneofs=[ 47 | ], 48 | serialized_start=123, 49 | serialized_end=157, 50 | ) 51 | 52 | DESCRIPTOR.message_types_by_name['CollectDailyDefenderBonusMessage'] = _COLLECTDAILYDEFENDERBONUSMESSAGE 53 | 54 | CollectDailyDefenderBonusMessage = _reflection.GeneratedProtocolMessageType('CollectDailyDefenderBonusMessage', (_message.Message,), dict( 55 | DESCRIPTOR = _COLLECTDAILYDEFENDERBONUSMESSAGE, 56 | __module__ = 'POGOProtos.Networking.Requests.Messages.CollectDailyDefenderBonusMessage_pb2' 57 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.CollectDailyDefenderBonusMessage) 58 | )) 59 | _sym_db.RegisterMessage(CollectDailyDefenderBonusMessage) 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/DownloadItemTemplatesMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/DownloadItemTemplatesMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/DownloadItemTemplatesMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nJPOGOProtos/Networking/Requests/Messages/DownloadItemTemplatesMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"\x1e\n\x1c\x44ownloadItemTemplatesMessageb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _DOWNLOADITEMTEMPLATESMESSAGE = _descriptor.Descriptor( 30 | name='DownloadItemTemplatesMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.DownloadItemTemplatesMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | ], 37 | extensions=[ 38 | ], 39 | nested_types=[], 40 | enum_types=[ 41 | ], 42 | options=None, 43 | is_extendable=False, 44 | syntax='proto3', 45 | extension_ranges=[], 46 | oneofs=[ 47 | ], 48 | serialized_start=119, 49 | serialized_end=149, 50 | ) 51 | 52 | DESCRIPTOR.message_types_by_name['DownloadItemTemplatesMessage'] = _DOWNLOADITEMTEMPLATESMESSAGE 53 | 54 | DownloadItemTemplatesMessage = _reflection.GeneratedProtocolMessageType('DownloadItemTemplatesMessage', (_message.Message,), dict( 55 | DESCRIPTOR = _DOWNLOADITEMTEMPLATESMESSAGE, 56 | __module__ = 'POGOProtos.Networking.Requests.Messages.DownloadItemTemplatesMessage_pb2' 57 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.DownloadItemTemplatesMessage) 58 | )) 59 | _sym_db.RegisterMessage(DownloadItemTemplatesMessage) 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/DownloadSettingsMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/DownloadSettingsMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/DownloadSettingsMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nEPOGOProtos/Networking/Requests/Messages/DownloadSettingsMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"\'\n\x17\x44ownloadSettingsMessage\x12\x0c\n\x04hash\x18\x01 \x01(\tb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _DOWNLOADSETTINGSMESSAGE = _descriptor.Descriptor( 30 | name='DownloadSettingsMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.DownloadSettingsMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='hash', full_name='POGOProtos.Networking.Requests.Messages.DownloadSettingsMessage.hash', index=0, 38 | number=1, type=9, cpp_type=9, label=1, 39 | has_default_value=False, default_value=_b("").decode('utf-8'), 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=114, 56 | serialized_end=153, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['DownloadSettingsMessage'] = _DOWNLOADSETTINGSMESSAGE 60 | 61 | DownloadSettingsMessage = _reflection.GeneratedProtocolMessageType('DownloadSettingsMessage', (_message.Message,), dict( 62 | DESCRIPTOR = _DOWNLOADSETTINGSMESSAGE, 63 | __module__ = 'POGOProtos.Networking.Requests.Messages.DownloadSettingsMessage_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.DownloadSettingsMessage) 65 | )) 66 | _sym_db.RegisterMessage(DownloadSettingsMessage) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/DownloadSettingsMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/DownloadSettingsMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/EchoMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/EchoMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/EchoMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\n9POGOProtos/Networking/Requests/Messages/EchoMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"\r\n\x0b\x45\x63hoMessageb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _ECHOMESSAGE = _descriptor.Descriptor( 30 | name='EchoMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.EchoMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | ], 37 | extensions=[ 38 | ], 39 | nested_types=[], 40 | enum_types=[ 41 | ], 42 | options=None, 43 | is_extendable=False, 44 | syntax='proto3', 45 | extension_ranges=[], 46 | oneofs=[ 47 | ], 48 | serialized_start=102, 49 | serialized_end=115, 50 | ) 51 | 52 | DESCRIPTOR.message_types_by_name['EchoMessage'] = _ECHOMESSAGE 53 | 54 | EchoMessage = _reflection.GeneratedProtocolMessageType('EchoMessage', (_message.Message,), dict( 55 | DESCRIPTOR = _ECHOMESSAGE, 56 | __module__ = 'POGOProtos.Networking.Requests.Messages.EchoMessage_pb2' 57 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.EchoMessage) 58 | )) 59 | _sym_db.RegisterMessage(EchoMessage) 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/EncounterMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/EncounterMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/EvolvePokemonMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/EvolvePokemonMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/EvolvePokemonMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nBPOGOProtos/Networking/Requests/Messages/EvolvePokemonMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"*\n\x14\x45volvePokemonMessage\x12\x12\n\npokemon_id\x18\x01 \x01(\x06\x62\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _EVOLVEPOKEMONMESSAGE = _descriptor.Descriptor( 30 | name='EvolvePokemonMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.EvolvePokemonMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='pokemon_id', full_name='POGOProtos.Networking.Requests.Messages.EvolvePokemonMessage.pokemon_id', index=0, 38 | number=1, type=6, cpp_type=4, label=1, 39 | has_default_value=False, default_value=0, 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=111, 56 | serialized_end=153, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['EvolvePokemonMessage'] = _EVOLVEPOKEMONMESSAGE 60 | 61 | EvolvePokemonMessage = _reflection.GeneratedProtocolMessageType('EvolvePokemonMessage', (_message.Message,), dict( 62 | DESCRIPTOR = _EVOLVEPOKEMONMESSAGE, 63 | __module__ = 'POGOProtos.Networking.Requests.Messages.EvolvePokemonMessage_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.EvolvePokemonMessage) 65 | )) 66 | _sym_db.RegisterMessage(EvolvePokemonMessage) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/EvolvePokemonMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/EvolvePokemonMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/FortDetailsMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/FortDetailsMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/FortSearchMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/FortSearchMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/GetDownloadUrlsMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/GetDownloadUrlsMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/GetDownloadUrlsMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nDPOGOProtos/Networking/Requests/Messages/GetDownloadUrlsMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"*\n\x16GetDownloadUrlsMessage\x12\x10\n\x08\x61sset_id\x18\x01 \x03(\tb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _GETDOWNLOADURLSMESSAGE = _descriptor.Descriptor( 30 | name='GetDownloadUrlsMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.GetDownloadUrlsMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='asset_id', full_name='POGOProtos.Networking.Requests.Messages.GetDownloadUrlsMessage.asset_id', index=0, 38 | number=1, type=9, cpp_type=9, label=3, 39 | has_default_value=False, default_value=[], 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=113, 56 | serialized_end=155, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['GetDownloadUrlsMessage'] = _GETDOWNLOADURLSMESSAGE 60 | 61 | GetDownloadUrlsMessage = _reflection.GeneratedProtocolMessageType('GetDownloadUrlsMessage', (_message.Message,), dict( 62 | DESCRIPTOR = _GETDOWNLOADURLSMESSAGE, 63 | __module__ = 'POGOProtos.Networking.Requests.Messages.GetDownloadUrlsMessage_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.GetDownloadUrlsMessage) 65 | )) 66 | _sym_db.RegisterMessage(GetDownloadUrlsMessage) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/GetHatchedEggsMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/GetHatchedEggsMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/GetHatchedEggsMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nCPOGOProtos/Networking/Requests/Messages/GetHatchedEggsMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"\x17\n\x15GetHatchedEggsMessageb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _GETHATCHEDEGGSMESSAGE = _descriptor.Descriptor( 30 | name='GetHatchedEggsMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.GetHatchedEggsMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | ], 37 | extensions=[ 38 | ], 39 | nested_types=[], 40 | enum_types=[ 41 | ], 42 | options=None, 43 | is_extendable=False, 44 | syntax='proto3', 45 | extension_ranges=[], 46 | oneofs=[ 47 | ], 48 | serialized_start=112, 49 | serialized_end=135, 50 | ) 51 | 52 | DESCRIPTOR.message_types_by_name['GetHatchedEggsMessage'] = _GETHATCHEDEGGSMESSAGE 53 | 54 | GetHatchedEggsMessage = _reflection.GeneratedProtocolMessageType('GetHatchedEggsMessage', (_message.Message,), dict( 55 | DESCRIPTOR = _GETHATCHEDEGGSMESSAGE, 56 | __module__ = 'POGOProtos.Networking.Requests.Messages.GetHatchedEggsMessage_pb2' 57 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.GetHatchedEggsMessage) 58 | )) 59 | _sym_db.RegisterMessage(GetHatchedEggsMessage) 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/GetInventoryMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/GetInventoryMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/GetMapObjectsMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/GetMapObjectsMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/GetPlayerMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/GetPlayerMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/GetPlayerMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\n>POGOProtos/Networking/Requests/Messages/GetPlayerMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"\'\n\x10GetPlayerMessage\x12\x13\n\x0b\x61pp_version\x18\x01 \x01(\tb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _GETPLAYERMESSAGE = _descriptor.Descriptor( 30 | name='GetPlayerMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.GetPlayerMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='app_version', full_name='POGOProtos.Networking.Requests.Messages.GetPlayerMessage.app_version', index=0, 38 | number=1, type=9, cpp_type=9, label=1, 39 | has_default_value=False, default_value=_b("").decode('utf-8'), 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=107, 56 | serialized_end=146, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['GetPlayerMessage'] = _GETPLAYERMESSAGE 60 | 61 | GetPlayerMessage = _reflection.GeneratedProtocolMessageType('GetPlayerMessage', (_message.Message,), dict( 62 | DESCRIPTOR = _GETPLAYERMESSAGE, 63 | __module__ = 'POGOProtos.Networking.Requests.Messages.GetPlayerMessage_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.GetPlayerMessage) 65 | )) 66 | _sym_db.RegisterMessage(GetPlayerMessage) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/GetPlayerProfileMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/GetPlayerProfileMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/GetPlayerProfileMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nEPOGOProtos/Networking/Requests/Messages/GetPlayerProfileMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\".\n\x17GetPlayerProfileMessage\x12\x13\n\x0bplayer_name\x18\x01 \x01(\tb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _GETPLAYERPROFILEMESSAGE = _descriptor.Descriptor( 30 | name='GetPlayerProfileMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.GetPlayerProfileMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='player_name', full_name='POGOProtos.Networking.Requests.Messages.GetPlayerProfileMessage.player_name', index=0, 38 | number=1, type=9, cpp_type=9, label=1, 39 | has_default_value=False, default_value=_b("").decode('utf-8'), 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=114, 56 | serialized_end=160, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['GetPlayerProfileMessage'] = _GETPLAYERPROFILEMESSAGE 60 | 61 | GetPlayerProfileMessage = _reflection.GeneratedProtocolMessageType('GetPlayerProfileMessage', (_message.Message,), dict( 62 | DESCRIPTOR = _GETPLAYERPROFILEMESSAGE, 63 | __module__ = 'POGOProtos.Networking.Requests.Messages.GetPlayerProfileMessage_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.GetPlayerProfileMessage) 65 | )) 66 | _sym_db.RegisterMessage(GetPlayerProfileMessage) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/GetSuggestedCodenamesMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/GetSuggestedCodenamesMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/GetSuggestedCodenamesMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nJPOGOProtos/Networking/Requests/Messages/GetSuggestedCodenamesMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"\x1e\n\x1cGetSuggestedCodenamesMessageb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _GETSUGGESTEDCODENAMESMESSAGE = _descriptor.Descriptor( 30 | name='GetSuggestedCodenamesMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.GetSuggestedCodenamesMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | ], 37 | extensions=[ 38 | ], 39 | nested_types=[], 40 | enum_types=[ 41 | ], 42 | options=None, 43 | is_extendable=False, 44 | syntax='proto3', 45 | extension_ranges=[], 46 | oneofs=[ 47 | ], 48 | serialized_start=119, 49 | serialized_end=149, 50 | ) 51 | 52 | DESCRIPTOR.message_types_by_name['GetSuggestedCodenamesMessage'] = _GETSUGGESTEDCODENAMESMESSAGE 53 | 54 | GetSuggestedCodenamesMessage = _reflection.GeneratedProtocolMessageType('GetSuggestedCodenamesMessage', (_message.Message,), dict( 55 | DESCRIPTOR = _GETSUGGESTEDCODENAMESMESSAGE, 56 | __module__ = 'POGOProtos.Networking.Requests.Messages.GetSuggestedCodenamesMessage_pb2' 57 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.GetSuggestedCodenamesMessage) 58 | )) 59 | _sym_db.RegisterMessage(GetSuggestedCodenamesMessage) 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/LevelUpRewardsMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/LevelUpRewardsMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/LevelUpRewardsMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nCPOGOProtos/Networking/Requests/Messages/LevelUpRewardsMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"&\n\x15LevelUpRewardsMessage\x12\r\n\x05level\x18\x01 \x01(\x05\x62\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _LEVELUPREWARDSMESSAGE = _descriptor.Descriptor( 30 | name='LevelUpRewardsMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.LevelUpRewardsMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='level', full_name='POGOProtos.Networking.Requests.Messages.LevelUpRewardsMessage.level', index=0, 38 | number=1, type=5, cpp_type=1, label=1, 39 | has_default_value=False, default_value=0, 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=112, 56 | serialized_end=150, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['LevelUpRewardsMessage'] = _LEVELUPREWARDSMESSAGE 60 | 61 | LevelUpRewardsMessage = _reflection.GeneratedProtocolMessageType('LevelUpRewardsMessage', (_message.Message,), dict( 62 | DESCRIPTOR = _LEVELUPREWARDSMESSAGE, 63 | __module__ = 'POGOProtos.Networking.Requests.Messages.LevelUpRewardsMessage_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.LevelUpRewardsMessage) 65 | )) 66 | _sym_db.RegisterMessage(LevelUpRewardsMessage) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/LevelUpRewardsMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/LevelUpRewardsMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/NicknamePokemonMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/NicknamePokemonMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/RecycleInventoryItemMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/RecycleInventoryItemMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/ReleasePokemonMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/ReleasePokemonMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/ReleasePokemonMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nCPOGOProtos/Networking/Requests/Messages/ReleasePokemonMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"+\n\x15ReleasePokemonMessage\x12\x12\n\npokemon_id\x18\x01 \x01(\x06\x62\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _RELEASEPOKEMONMESSAGE = _descriptor.Descriptor( 30 | name='ReleasePokemonMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.ReleasePokemonMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='pokemon_id', full_name='POGOProtos.Networking.Requests.Messages.ReleasePokemonMessage.pokemon_id', index=0, 38 | number=1, type=6, cpp_type=4, label=1, 39 | has_default_value=False, default_value=0, 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=112, 56 | serialized_end=155, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['ReleasePokemonMessage'] = _RELEASEPOKEMONMESSAGE 60 | 61 | ReleasePokemonMessage = _reflection.GeneratedProtocolMessageType('ReleasePokemonMessage', (_message.Message,), dict( 62 | DESCRIPTOR = _RELEASEPOKEMONMESSAGE, 63 | __module__ = 'POGOProtos.Networking.Requests.Messages.ReleasePokemonMessage_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.ReleasePokemonMessage) 65 | )) 66 | _sym_db.RegisterMessage(ReleasePokemonMessage) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/ReleasePokemonMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/ReleasePokemonMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/SetFavoritePokemonMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/SetFavoritePokemonMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/SetPlayerTeamMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/SetPlayerTeamMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/SfidaActionLogMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/SfidaActionLogMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/SfidaActionLogMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nCPOGOProtos/Networking/Requests/Messages/SfidaActionLogMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"\x17\n\x15SfidaActionLogMessageb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _SFIDAACTIONLOGMESSAGE = _descriptor.Descriptor( 30 | name='SfidaActionLogMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.SfidaActionLogMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | ], 37 | extensions=[ 38 | ], 39 | nested_types=[], 40 | enum_types=[ 41 | ], 42 | options=None, 43 | is_extendable=False, 44 | syntax='proto3', 45 | extension_ranges=[], 46 | oneofs=[ 47 | ], 48 | serialized_start=112, 49 | serialized_end=135, 50 | ) 51 | 52 | DESCRIPTOR.message_types_by_name['SfidaActionLogMessage'] = _SFIDAACTIONLOGMESSAGE 53 | 54 | SfidaActionLogMessage = _reflection.GeneratedProtocolMessageType('SfidaActionLogMessage', (_message.Message,), dict( 55 | DESCRIPTOR = _SFIDAACTIONLOGMESSAGE, 56 | __module__ = 'POGOProtos.Networking.Requests.Messages.SfidaActionLogMessage_pb2' 57 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.SfidaActionLogMessage) 58 | )) 59 | _sym_db.RegisterMessage(SfidaActionLogMessage) 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/UpgradePokemonMessage_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Requests/Messages/UpgradePokemonMessage.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Requests/Messages/UpgradePokemonMessage.proto', 20 | package='POGOProtos.Networking.Requests.Messages', 21 | syntax='proto3', 22 | serialized_pb=_b('\nCPOGOProtos/Networking/Requests/Messages/UpgradePokemonMessage.proto\x12\'POGOProtos.Networking.Requests.Messages\"+\n\x15UpgradePokemonMessage\x12\x12\n\npokemon_id\x18\x01 \x01(\x06\x62\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _UPGRADEPOKEMONMESSAGE = _descriptor.Descriptor( 30 | name='UpgradePokemonMessage', 31 | full_name='POGOProtos.Networking.Requests.Messages.UpgradePokemonMessage', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='pokemon_id', full_name='POGOProtos.Networking.Requests.Messages.UpgradePokemonMessage.pokemon_id', index=0, 38 | number=1, type=6, cpp_type=4, label=1, 39 | has_default_value=False, default_value=0, 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=112, 56 | serialized_end=155, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['UpgradePokemonMessage'] = _UPGRADEPOKEMONMESSAGE 60 | 61 | UpgradePokemonMessage = _reflection.GeneratedProtocolMessageType('UpgradePokemonMessage', (_message.Message,), dict( 62 | DESCRIPTOR = _UPGRADEPOKEMONMESSAGE, 63 | __module__ = 'POGOProtos.Networking.Requests.Messages.UpgradePokemonMessage_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.UpgradePokemonMessage) 65 | )) 66 | _sym_db.RegisterMessage(UpgradePokemonMessage) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/UpgradePokemonMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/UpgradePokemonMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/UseItemCaptureMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/UseItemCaptureMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/UseItemEggIncubatorMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/UseItemEggIncubatorMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/UseItemPotionMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/UseItemPotionMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/UseItemReviveMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/UseItemReviveMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/UseItemXpBoostMessage_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/UseItemXpBoostMessage_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Messages/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Messages/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/RequestType_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/RequestType_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/Request_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/Request_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Networking/Requests/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Requests/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/AddFortModifierResponse_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Responses/AddFortModifierResponse.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Responses/AddFortModifierResponse.proto', 20 | package='POGOProtos.Networking.Responses', 21 | syntax='proto3', 22 | serialized_pb=_b('\n=POGOProtos/Networking/Responses/AddFortModifierResponse.proto\x12\x1fPOGOProtos.Networking.Responses\"\x19\n\x17\x41\x64\x64\x46ortModifierResponseb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _ADDFORTMODIFIERRESPONSE = _descriptor.Descriptor( 30 | name='AddFortModifierResponse', 31 | full_name='POGOProtos.Networking.Responses.AddFortModifierResponse', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | ], 37 | extensions=[ 38 | ], 39 | nested_types=[], 40 | enum_types=[ 41 | ], 42 | options=None, 43 | is_extendable=False, 44 | syntax='proto3', 45 | extension_ranges=[], 46 | oneofs=[ 47 | ], 48 | serialized_start=98, 49 | serialized_end=123, 50 | ) 51 | 52 | DESCRIPTOR.message_types_by_name['AddFortModifierResponse'] = _ADDFORTMODIFIERRESPONSE 53 | 54 | AddFortModifierResponse = _reflection.GeneratedProtocolMessageType('AddFortModifierResponse', (_message.Message,), dict( 55 | DESCRIPTOR = _ADDFORTMODIFIERRESPONSE, 56 | __module__ = 'POGOProtos.Networking.Responses.AddFortModifierResponse_pb2' 57 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.AddFortModifierResponse) 58 | )) 59 | _sym_db.RegisterMessage(AddFortModifierResponse) 60 | 61 | 62 | # @@protoc_insertion_point(module_scope) 63 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/CatchPokemonResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/CatchPokemonResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/CheckAwardedBadgesResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/CheckAwardedBadgesResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/DownloadSettingsResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/DownloadSettingsResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/EchoResponse_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Networking/Responses/EchoResponse.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Networking/Responses/EchoResponse.proto', 20 | package='POGOProtos.Networking.Responses', 21 | syntax='proto3', 22 | serialized_pb=_b('\n2POGOProtos/Networking/Responses/EchoResponse.proto\x12\x1fPOGOProtos.Networking.Responses\"\x1f\n\x0c\x45\x63hoResponse\x12\x0f\n\x07\x63ontext\x18\x01 \x01(\tb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _ECHORESPONSE = _descriptor.Descriptor( 30 | name='EchoResponse', 31 | full_name='POGOProtos.Networking.Responses.EchoResponse', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='context', full_name='POGOProtos.Networking.Responses.EchoResponse.context', index=0, 38 | number=1, type=9, cpp_type=9, label=1, 39 | has_default_value=False, default_value=_b("").decode('utf-8'), 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=87, 56 | serialized_end=118, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['EchoResponse'] = _ECHORESPONSE 60 | 61 | EchoResponse = _reflection.GeneratedProtocolMessageType('EchoResponse', (_message.Message,), dict( 62 | DESCRIPTOR = _ECHORESPONSE, 63 | __module__ = 'POGOProtos.Networking.Responses.EchoResponse_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.EchoResponse) 65 | )) 66 | _sym_db.RegisterMessage(EchoResponse) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/EncounterResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/EncounterResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/EvolvePokemonResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/EvolvePokemonResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/FortDetailsResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/FortDetailsResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/FortSearchResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/FortSearchResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/GetHatchedEggsResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/GetHatchedEggsResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/GetInventoryResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/GetInventoryResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/GetMapObjectsResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/GetMapObjectsResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/GetPlayerResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/GetPlayerResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/LevelUpRewardsResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/LevelUpRewardsResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/NicknamePokemonResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/NicknamePokemonResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/RecycleInventoryItemResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/RecycleInventoryItemResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/ReleasePokemonResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/ReleasePokemonResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/SetFavoritePokemonResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/SetFavoritePokemonResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/SetPlayerTeamResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/SetPlayerTeamResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/UpgradePokemonResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/UpgradePokemonResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/UseItemCaptureResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/UseItemCaptureResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/UseItemEggIncubatorResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/UseItemEggIncubatorResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/UseItemPotionResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/UseItemPotionResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/UseItemReviveResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/UseItemReviveResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/UseItemXpBoostResponse_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/UseItemXpBoostResponse_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Networking/Responses/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/Responses/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Networking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Networking/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Networking/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/Settings/DownloadSettingsAction_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Settings/DownloadSettingsAction.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Settings/DownloadSettingsAction.proto', 20 | package='POGOProtos.Settings', 21 | syntax='proto3', 22 | serialized_pb=_b('\n0POGOProtos/Settings/DownloadSettingsAction.proto\x12\x13POGOProtos.Settings\"&\n\x16\x44ownloadSettingsAction\x12\x0c\n\x04hash\x18\x01 \x01(\tb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _DOWNLOADSETTINGSACTION = _descriptor.Descriptor( 30 | name='DownloadSettingsAction', 31 | full_name='POGOProtos.Settings.DownloadSettingsAction', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='hash', full_name='POGOProtos.Settings.DownloadSettingsAction.hash', index=0, 38 | number=1, type=9, cpp_type=9, label=1, 39 | has_default_value=False, default_value=_b("").decode('utf-8'), 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=73, 56 | serialized_end=111, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['DownloadSettingsAction'] = _DOWNLOADSETTINGSACTION 60 | 61 | DownloadSettingsAction = _reflection.GeneratedProtocolMessageType('DownloadSettingsAction', (_message.Message,), dict( 62 | DESCRIPTOR = _DOWNLOADSETTINGSACTION, 63 | __module__ = 'POGOProtos.Settings.DownloadSettingsAction_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Settings.DownloadSettingsAction) 65 | )) 66 | _sym_db.RegisterMessage(DownloadSettingsAction) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Settings/FortSettings_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Settings/FortSettings_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Settings/GlobalSettings_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Settings/GlobalSettings_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Settings/InventorySettings_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Settings/InventorySettings_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Settings/LevelSettings_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Settings/LevelSettings_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Settings/MapSettings_pb2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Settings/MapSettings_pb2.pyc -------------------------------------------------------------------------------- /POGOProtos/Settings/Master/Item/BattleAttributes_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Settings/Master/Item/BattleAttributes.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Settings/Master/Item/BattleAttributes.proto', 20 | package='POGOProtos.Settings.Master.Item', 21 | syntax='proto3', 22 | serialized_pb=_b('\n6POGOProtos/Settings/Master/Item/BattleAttributes.proto\x12\x1fPOGOProtos.Settings.Master.Item\"\'\n\x10\x42\x61ttleAttributes\x12\x13\n\x0bsta_percent\x18\x01 \x01(\x02\x62\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _BATTLEATTRIBUTES = _descriptor.Descriptor( 30 | name='BattleAttributes', 31 | full_name='POGOProtos.Settings.Master.Item.BattleAttributes', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='sta_percent', full_name='POGOProtos.Settings.Master.Item.BattleAttributes.sta_percent', index=0, 38 | number=1, type=2, cpp_type=6, label=1, 39 | has_default_value=False, default_value=float(0), 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=91, 56 | serialized_end=130, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['BattleAttributes'] = _BATTLEATTRIBUTES 60 | 61 | BattleAttributes = _reflection.GeneratedProtocolMessageType('BattleAttributes', (_message.Message,), dict( 62 | DESCRIPTOR = _BATTLEATTRIBUTES, 63 | __module__ = 'POGOProtos.Settings.Master.Item.BattleAttributes_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Settings.Master.Item.BattleAttributes) 65 | )) 66 | _sym_db.RegisterMessage(BattleAttributes) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Settings/Master/Item/ReviveAttributes_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Settings/Master/Item/ReviveAttributes.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Settings/Master/Item/ReviveAttributes.proto', 20 | package='POGOProtos.Settings.Master.Item', 21 | syntax='proto3', 22 | serialized_pb=_b('\n6POGOProtos/Settings/Master/Item/ReviveAttributes.proto\x12\x1fPOGOProtos.Settings.Master.Item\"\'\n\x10ReviveAttributes\x12\x13\n\x0bsta_percent\x18\x01 \x01(\x02\x62\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _REVIVEATTRIBUTES = _descriptor.Descriptor( 30 | name='ReviveAttributes', 31 | full_name='POGOProtos.Settings.Master.Item.ReviveAttributes', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='sta_percent', full_name='POGOProtos.Settings.Master.Item.ReviveAttributes.sta_percent', index=0, 38 | number=1, type=2, cpp_type=6, label=1, 39 | has_default_value=False, default_value=float(0), 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=91, 56 | serialized_end=130, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['ReviveAttributes'] = _REVIVEATTRIBUTES 60 | 61 | ReviveAttributes = _reflection.GeneratedProtocolMessageType('ReviveAttributes', (_message.Message,), dict( 62 | DESCRIPTOR = _REVIVEATTRIBUTES, 63 | __module__ = 'POGOProtos.Settings.Master.Item.ReviveAttributes_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Settings.Master.Item.ReviveAttributes) 65 | )) 66 | _sym_db.RegisterMessage(ReviveAttributes) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Settings/Master/Item/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Settings/Master/Item/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Settings/Master/MoveSequenceSettings_pb2.py: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: POGOProtos/Settings/Master/MoveSequenceSettings.proto 3 | 4 | import sys 5 | _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) 6 | from google.protobuf import descriptor as _descriptor 7 | from google.protobuf import message as _message 8 | from google.protobuf import reflection as _reflection 9 | from google.protobuf import symbol_database as _symbol_database 10 | from google.protobuf import descriptor_pb2 11 | # @@protoc_insertion_point(imports) 12 | 13 | _sym_db = _symbol_database.Default() 14 | 15 | 16 | 17 | 18 | DESCRIPTOR = _descriptor.FileDescriptor( 19 | name='POGOProtos/Settings/Master/MoveSequenceSettings.proto', 20 | package='POGOProtos.Settings.Master', 21 | syntax='proto3', 22 | serialized_pb=_b('\n5POGOProtos/Settings/Master/MoveSequenceSettings.proto\x12\x1aPOGOProtos.Settings.Master\"(\n\x14MoveSequenceSettings\x12\x10\n\x08sequence\x18\x01 \x03(\tb\x06proto3') 23 | ) 24 | _sym_db.RegisterFileDescriptor(DESCRIPTOR) 25 | 26 | 27 | 28 | 29 | _MOVESEQUENCESETTINGS = _descriptor.Descriptor( 30 | name='MoveSequenceSettings', 31 | full_name='POGOProtos.Settings.Master.MoveSequenceSettings', 32 | filename=None, 33 | file=DESCRIPTOR, 34 | containing_type=None, 35 | fields=[ 36 | _descriptor.FieldDescriptor( 37 | name='sequence', full_name='POGOProtos.Settings.Master.MoveSequenceSettings.sequence', index=0, 38 | number=1, type=9, cpp_type=9, label=3, 39 | has_default_value=False, default_value=[], 40 | message_type=None, enum_type=None, containing_type=None, 41 | is_extension=False, extension_scope=None, 42 | options=None), 43 | ], 44 | extensions=[ 45 | ], 46 | nested_types=[], 47 | enum_types=[ 48 | ], 49 | options=None, 50 | is_extendable=False, 51 | syntax='proto3', 52 | extension_ranges=[], 53 | oneofs=[ 54 | ], 55 | serialized_start=85, 56 | serialized_end=125, 57 | ) 58 | 59 | DESCRIPTOR.message_types_by_name['MoveSequenceSettings'] = _MOVESEQUENCESETTINGS 60 | 61 | MoveSequenceSettings = _reflection.GeneratedProtocolMessageType('MoveSequenceSettings', (_message.Message,), dict( 62 | DESCRIPTOR = _MOVESEQUENCESETTINGS, 63 | __module__ = 'POGOProtos.Settings.Master.MoveSequenceSettings_pb2' 64 | # @@protoc_insertion_point(class_scope:POGOProtos.Settings.Master.MoveSequenceSettings) 65 | )) 66 | _sym_db.RegisterMessage(MoveSequenceSettings) 67 | 68 | 69 | # @@protoc_insertion_point(module_scope) 70 | -------------------------------------------------------------------------------- /POGOProtos/Settings/Master/Pokemon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Settings/Master/Pokemon/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Settings/Master/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Settings/Master/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Settings/__init__.py -------------------------------------------------------------------------------- /POGOProtos/Settings/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/Settings/__init__.pyc -------------------------------------------------------------------------------- /POGOProtos/__init__.py: -------------------------------------------------------------------------------- 1 | 'Generated'; import os; import sys; sys.path.append(os.path.dirname(os.path.realpath(__file__))) -------------------------------------------------------------------------------- /POGOProtos/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/POGOProtos/__init__.pyc -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/__init__.py -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf pogo/proto 4 | cd ./proto/ 5 | ./compile.py -l python -o ../pogo/ 6 | cd ../ 7 | -------------------------------------------------------------------------------- /config.ini.example: -------------------------------------------------------------------------------- 1 | [AUTH] 2 | type = ptc ; ptc or google 3 | username = username 4 | password = password 5 | 6 | [CONFIG] 7 | startLoc = Central Park NY ; can be a place name or coordinates 8 | encryptFile = encrypt32bit.dll ; location of the encryption file (see pogo/encrypt/ for a list of files) 9 | inventoryAgeThreshold = 300 ; time in seconds that cached inventory will stay valid for - fresh inventory data always generated after performing an action(rename/evolve etc) 10 | evolveDelay = 10 ; 10 second base delay + random delay between 1-5 sec. 11 | releaseDelay = 3 ; 3 second base delay + random delay between 1-5 sec. 12 | renameDelay = 3 ; 3 second base delay + random delay between 1-5 sec. 13 | -------------------------------------------------------------------------------- /encrypt/encrypt32bit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/encrypt/encrypt32bit.dll -------------------------------------------------------------------------------- /encrypt/encrypt64bit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/encrypt/encrypt64bit.dll -------------------------------------------------------------------------------- /encrypt/libencrypt-freebsd10-64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/encrypt/libencrypt-freebsd10-64.so -------------------------------------------------------------------------------- /encrypt/libencrypt-linux-arm-32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/encrypt/libencrypt-linux-arm-32.so -------------------------------------------------------------------------------- /encrypt/libencrypt-linux-x86-32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/encrypt/libencrypt-linux-x86-32.so -------------------------------------------------------------------------------- /encrypt/libencrypt-linux-x86-64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/encrypt/libencrypt-linux-x86-64.so -------------------------------------------------------------------------------- /encrypt/libencrypt-osx-64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/encrypt/libencrypt-osx-64.so -------------------------------------------------------------------------------- /encrypt/ph.txt: -------------------------------------------------------------------------------- 1 | ph 2 | -------------------------------------------------------------------------------- /pogo/__init__.py: -------------------------------------------------------------------------------- 1 | import POGOProtos as POGOProtos -------------------------------------------------------------------------------- /pogo/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/pogo/__init__.pyc -------------------------------------------------------------------------------- /pogo/api.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/pogo/api.pyc -------------------------------------------------------------------------------- /pogo/custom_exceptions.py: -------------------------------------------------------------------------------- 1 | class GeneralPogoException(Exception): 2 | """Throw an exception that moves up to the start, and reboots""" 3 | 4 | 5 | class PogoServerException(GeneralPogoException): 6 | """Raised from suspected error Serverside""" 7 | 8 | 9 | class PogoResponseException(GeneralPogoException): 10 | """Throw an exception at bad responses""" 11 | 12 | 13 | class PogoInventoryException(GeneralPogoException): 14 | """Uninitialized Inventory""" 15 | 16 | 17 | class PogoRateException(GeneralPogoException): 18 | """Requests made too quickly""" 19 | -------------------------------------------------------------------------------- /pogo/custom_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/pogo/custom_exceptions.pyc -------------------------------------------------------------------------------- /pogo/inventory.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/pogo/inventory.pyc -------------------------------------------------------------------------------- /pogo/location.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/pogo/location.pyc -------------------------------------------------------------------------------- /pogo/pokedex.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/pogo/pokedex.pyc -------------------------------------------------------------------------------- /pogo/session.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/pogo/session.pyc -------------------------------------------------------------------------------- /pogo/session_bare.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/pogo/session_bare.pyc -------------------------------------------------------------------------------- /pogo/state.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/pogo/state.pyc -------------------------------------------------------------------------------- /pogo/trainer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/pogo/trainer.pyc -------------------------------------------------------------------------------- /pogo/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/pogo/util.pyc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | APScheduler==3.2.0 2 | setuptools==21.2.1 3 | flask==0.11.1 4 | geopy==1.11.0 5 | gpsoauth==0.3.0 6 | protobuf==3.0.0b3 7 | pycryptodomex==3.4.2 8 | requests==2.10.0 9 | s2sphere==0.2.4 10 | gpxpy==1.1.1 11 | xxhash==0.6.1 12 | -------------------------------------------------------------------------------- /static/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014-2016 Materialize 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /static/avatars/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/1.png -------------------------------------------------------------------------------- /static/avatars/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/10.png -------------------------------------------------------------------------------- /static/avatars/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/100.png -------------------------------------------------------------------------------- /static/avatars/101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/101.png -------------------------------------------------------------------------------- /static/avatars/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/102.png -------------------------------------------------------------------------------- /static/avatars/103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/103.png -------------------------------------------------------------------------------- /static/avatars/104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/104.png -------------------------------------------------------------------------------- /static/avatars/105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/105.png -------------------------------------------------------------------------------- /static/avatars/106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/106.png -------------------------------------------------------------------------------- /static/avatars/107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/107.png -------------------------------------------------------------------------------- /static/avatars/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/108.png -------------------------------------------------------------------------------- /static/avatars/109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/109.png -------------------------------------------------------------------------------- /static/avatars/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/11.png -------------------------------------------------------------------------------- /static/avatars/110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/110.png -------------------------------------------------------------------------------- /static/avatars/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/111.png -------------------------------------------------------------------------------- /static/avatars/112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/112.png -------------------------------------------------------------------------------- /static/avatars/113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/113.png -------------------------------------------------------------------------------- /static/avatars/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/114.png -------------------------------------------------------------------------------- /static/avatars/115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/115.png -------------------------------------------------------------------------------- /static/avatars/116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/116.png -------------------------------------------------------------------------------- /static/avatars/117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/117.png -------------------------------------------------------------------------------- /static/avatars/118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/118.png -------------------------------------------------------------------------------- /static/avatars/119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/119.png -------------------------------------------------------------------------------- /static/avatars/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/12.png -------------------------------------------------------------------------------- /static/avatars/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/120.png -------------------------------------------------------------------------------- /static/avatars/121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/121.png -------------------------------------------------------------------------------- /static/avatars/122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/122.png -------------------------------------------------------------------------------- /static/avatars/123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/123.png -------------------------------------------------------------------------------- /static/avatars/124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/124.png -------------------------------------------------------------------------------- /static/avatars/125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/125.png -------------------------------------------------------------------------------- /static/avatars/126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/126.png -------------------------------------------------------------------------------- /static/avatars/127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/127.png -------------------------------------------------------------------------------- /static/avatars/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/128.png -------------------------------------------------------------------------------- /static/avatars/129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/129.png -------------------------------------------------------------------------------- /static/avatars/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/13.png -------------------------------------------------------------------------------- /static/avatars/130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/130.png -------------------------------------------------------------------------------- /static/avatars/131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/131.png -------------------------------------------------------------------------------- /static/avatars/132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/132.png -------------------------------------------------------------------------------- /static/avatars/133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/133.png -------------------------------------------------------------------------------- /static/avatars/134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/134.png -------------------------------------------------------------------------------- /static/avatars/135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/135.png -------------------------------------------------------------------------------- /static/avatars/136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/136.png -------------------------------------------------------------------------------- /static/avatars/137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/137.png -------------------------------------------------------------------------------- /static/avatars/138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/138.png -------------------------------------------------------------------------------- /static/avatars/139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/139.png -------------------------------------------------------------------------------- /static/avatars/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/14.png -------------------------------------------------------------------------------- /static/avatars/140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/140.png -------------------------------------------------------------------------------- /static/avatars/141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/141.png -------------------------------------------------------------------------------- /static/avatars/142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/142.png -------------------------------------------------------------------------------- /static/avatars/143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/143.png -------------------------------------------------------------------------------- /static/avatars/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/144.png -------------------------------------------------------------------------------- /static/avatars/145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/145.png -------------------------------------------------------------------------------- /static/avatars/146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/146.png -------------------------------------------------------------------------------- /static/avatars/147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/147.png -------------------------------------------------------------------------------- /static/avatars/148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/148.png -------------------------------------------------------------------------------- /static/avatars/149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/149.png -------------------------------------------------------------------------------- /static/avatars/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/15.png -------------------------------------------------------------------------------- /static/avatars/150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/150.png -------------------------------------------------------------------------------- /static/avatars/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/16.png -------------------------------------------------------------------------------- /static/avatars/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/17.png -------------------------------------------------------------------------------- /static/avatars/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/18.png -------------------------------------------------------------------------------- /static/avatars/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/19.png -------------------------------------------------------------------------------- /static/avatars/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/2.png -------------------------------------------------------------------------------- /static/avatars/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/20.png -------------------------------------------------------------------------------- /static/avatars/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/21.png -------------------------------------------------------------------------------- /static/avatars/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/22.png -------------------------------------------------------------------------------- /static/avatars/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/23.png -------------------------------------------------------------------------------- /static/avatars/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/24.png -------------------------------------------------------------------------------- /static/avatars/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/25.png -------------------------------------------------------------------------------- /static/avatars/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/26.png -------------------------------------------------------------------------------- /static/avatars/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/27.png -------------------------------------------------------------------------------- /static/avatars/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/28.png -------------------------------------------------------------------------------- /static/avatars/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/29.png -------------------------------------------------------------------------------- /static/avatars/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/3.png -------------------------------------------------------------------------------- /static/avatars/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/30.png -------------------------------------------------------------------------------- /static/avatars/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/31.png -------------------------------------------------------------------------------- /static/avatars/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/32.png -------------------------------------------------------------------------------- /static/avatars/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/33.png -------------------------------------------------------------------------------- /static/avatars/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/34.png -------------------------------------------------------------------------------- /static/avatars/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/35.png -------------------------------------------------------------------------------- /static/avatars/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/36.png -------------------------------------------------------------------------------- /static/avatars/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/37.png -------------------------------------------------------------------------------- /static/avatars/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/38.png -------------------------------------------------------------------------------- /static/avatars/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/39.png -------------------------------------------------------------------------------- /static/avatars/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/4.png -------------------------------------------------------------------------------- /static/avatars/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/40.png -------------------------------------------------------------------------------- /static/avatars/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/41.png -------------------------------------------------------------------------------- /static/avatars/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/42.png -------------------------------------------------------------------------------- /static/avatars/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/43.png -------------------------------------------------------------------------------- /static/avatars/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/44.png -------------------------------------------------------------------------------- /static/avatars/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/45.png -------------------------------------------------------------------------------- /static/avatars/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/46.png -------------------------------------------------------------------------------- /static/avatars/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/47.png -------------------------------------------------------------------------------- /static/avatars/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/48.png -------------------------------------------------------------------------------- /static/avatars/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/49.png -------------------------------------------------------------------------------- /static/avatars/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/5.png -------------------------------------------------------------------------------- /static/avatars/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/50.png -------------------------------------------------------------------------------- /static/avatars/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/51.png -------------------------------------------------------------------------------- /static/avatars/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/52.png -------------------------------------------------------------------------------- /static/avatars/53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/53.png -------------------------------------------------------------------------------- /static/avatars/54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/54.png -------------------------------------------------------------------------------- /static/avatars/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/55.png -------------------------------------------------------------------------------- /static/avatars/56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/56.png -------------------------------------------------------------------------------- /static/avatars/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/57.png -------------------------------------------------------------------------------- /static/avatars/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/58.png -------------------------------------------------------------------------------- /static/avatars/59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/59.png -------------------------------------------------------------------------------- /static/avatars/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/6.png -------------------------------------------------------------------------------- /static/avatars/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/60.png -------------------------------------------------------------------------------- /static/avatars/61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/61.png -------------------------------------------------------------------------------- /static/avatars/62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/62.png -------------------------------------------------------------------------------- /static/avatars/63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/63.png -------------------------------------------------------------------------------- /static/avatars/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/64.png -------------------------------------------------------------------------------- /static/avatars/65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/65.png -------------------------------------------------------------------------------- /static/avatars/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/66.png -------------------------------------------------------------------------------- /static/avatars/67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/67.png -------------------------------------------------------------------------------- /static/avatars/68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/68.png -------------------------------------------------------------------------------- /static/avatars/69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/69.png -------------------------------------------------------------------------------- /static/avatars/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/7.png -------------------------------------------------------------------------------- /static/avatars/70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/70.png -------------------------------------------------------------------------------- /static/avatars/71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/71.png -------------------------------------------------------------------------------- /static/avatars/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/72.png -------------------------------------------------------------------------------- /static/avatars/73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/73.png -------------------------------------------------------------------------------- /static/avatars/74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/74.png -------------------------------------------------------------------------------- /static/avatars/75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/75.png -------------------------------------------------------------------------------- /static/avatars/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/76.png -------------------------------------------------------------------------------- /static/avatars/77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/77.png -------------------------------------------------------------------------------- /static/avatars/78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/78.png -------------------------------------------------------------------------------- /static/avatars/79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/79.png -------------------------------------------------------------------------------- /static/avatars/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/8.png -------------------------------------------------------------------------------- /static/avatars/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/80.png -------------------------------------------------------------------------------- /static/avatars/81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/81.png -------------------------------------------------------------------------------- /static/avatars/82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/82.png -------------------------------------------------------------------------------- /static/avatars/83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/83.png -------------------------------------------------------------------------------- /static/avatars/84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/84.png -------------------------------------------------------------------------------- /static/avatars/85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/85.png -------------------------------------------------------------------------------- /static/avatars/86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/86.png -------------------------------------------------------------------------------- /static/avatars/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/87.png -------------------------------------------------------------------------------- /static/avatars/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/88.png -------------------------------------------------------------------------------- /static/avatars/89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/89.png -------------------------------------------------------------------------------- /static/avatars/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/9.png -------------------------------------------------------------------------------- /static/avatars/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/90.png -------------------------------------------------------------------------------- /static/avatars/91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/91.png -------------------------------------------------------------------------------- /static/avatars/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/92.png -------------------------------------------------------------------------------- /static/avatars/93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/93.png -------------------------------------------------------------------------------- /static/avatars/94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/94.png -------------------------------------------------------------------------------- /static/avatars/95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/95.png -------------------------------------------------------------------------------- /static/avatars/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/96.png -------------------------------------------------------------------------------- /static/avatars/97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/97.png -------------------------------------------------------------------------------- /static/avatars/98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/98.png -------------------------------------------------------------------------------- /static/avatars/99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/99.png -------------------------------------------------------------------------------- /static/avatars/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/blue.png -------------------------------------------------------------------------------- /static/avatars/candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/candy.png -------------------------------------------------------------------------------- /static/avatars/getAvatars.py: -------------------------------------------------------------------------------- 1 | import urllib 2 | print('This script will download avatars for a given range of Pokemon.') 3 | minPokemonId = raw_input('Start ID: ') 4 | maxPokemonId = raw_input('End ID: ') 5 | for x in range(int(minPokemonId), int(maxPokemonId)+1): 6 | 7 | urllib.urlretrieve("http://pokeunlock.com/wp-content/uploads/2015/01/" + str(x).zfill(3)+ ".png", str(x) + ".png") -------------------------------------------------------------------------------- /static/avatars/noteam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/noteam.png -------------------------------------------------------------------------------- /static/avatars/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/red.png -------------------------------------------------------------------------------- /static/avatars/star_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/star_gold.png -------------------------------------------------------------------------------- /static/avatars/star_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/star_grey.png -------------------------------------------------------------------------------- /static/avatars/undefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/undefined.png -------------------------------------------------------------------------------- /static/avatars/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/avatars/yellow.png -------------------------------------------------------------------------------- /static/catch_data.json: -------------------------------------------------------------------------------- 1 | [{"status": "Server startup. Nothing to report."}] -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earshel/PokeyPyManager/9e1e5b1d9dad108c89304bb91ba89e8892638e50/static/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /static/stats.json: -------------------------------------------------------------------------------- 1 | {"username": "ErritEarsh", "max_item_storage": "600", "pokemons_captured": "868", "km_walked": "79.7278442383", "level": "21", "max_pokemon_storage": "250", "next_level_xp": "335000", "team": 2, "experience": "321084", "pokemons_encountered": "1079"} -------------------------------------------------------------------------------- /static/status.json: -------------------------------------------------------------------------------- 1 | {"status": "finished"} -------------------------------------------------------------------------------- /templates/inventoryTimeout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /templates/result.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 66 |
67 | 68 | 69 | 70 | --------------------------------------------------------------------------------