Skip to content

Commit

Permalink
Release v1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnymac committed Dec 23, 2016
2 parents 85440cf + f7ab7ab commit 43a374b
Show file tree
Hide file tree
Showing 1,998 changed files with 709 additions and 137 deletions.
6 changes: 5 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"presets": ["es2015", "stage-0", "react"],
"presets": [
["env", {"targets": { "node": 6 }, "useBuiltIns": true }],
"stage-0",
"react"
],
"plugins": ["add-module-exports"],
"env": {
"production": {
Expand Down
21 changes: 21 additions & 0 deletions .flowconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[ignore]
.*/node_modules/fbjs/.*
.*/app/main.js
.*/app/dist/.*
.*/release/.*
.*/git/.*

[include]

[libs]

[options]
esproposal.class_static_fields=enable
esproposal.class_instance_fields=enable
esproposal.export_star_as=enable
module.name_mapper.extension='css' -> '<PROJECT_ROOT>/flow/CSSModule.js.flow'
module.name_mapper.extension='styl' -> '<PROJECT_ROOT>/flow/CSSModule.js.flow'
module.name_mapper.extension='png' -> '<PROJECT_ROOT>/flow/WebpackAsset.js.flow'
module.name_mapper.extension='jpg' -> '<PROJECT_ROOT>/flow/WebpackAsset.js.flow'
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ language: node_js
node_js:
- 7
- 6
- 5

cache:
yarn: true
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

**PokéNurse** is a desktop application for Windows and Mac that allows you to manage your pokémon from Pokémon Go without the need for a mobile device. You can now favorite, transfer, and evolve from the comfort of your own home!

## Downloads for v1.6.1
## Downloads for v1.6.2
You may view all the releases [here](https://github.com/vinnymac/PokeNurse/releases)
* [macOS](https://github.com/vinnymac/PokeNurse/releases/download/v1.6.1/PokeNurse.dmg)
* [Windows 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.6.1/PokeNurse-ia32.exe)
* [Windows 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.6.1/PokeNurse-x64.exe)
* [Linux 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.6.1/PokeNurse-ia32.deb)
* [Linux 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.6.1/PokeNurse-x64.deb)
* [macOS](https://github.com/vinnymac/PokeNurse/releases/download/v1.6.2/PokeNurse.dmg)
* [Windows 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.6.2/PokeNurse-ia32.exe)
* [Windows 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.6.2/PokeNurse-x64.exe)
* [Linux 32 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.6.2/PokeNurse-ia32.deb)
* [Linux 64 bit](https://github.com/vinnymac/PokeNurse/releases/download/v1.6.2/PokeNurse-x64.deb)

## Examples
![Login Window](app/loginExample.png)
Expand Down
79 changes: 58 additions & 21 deletions app/actions/trainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,32 +23,53 @@ import {
resetStatus,
} from './status'

function generateEmptySpecie(pokemonDexNumber, candiesByFamilyId) {
const basePokemon = baseStats.pokemon[pokemonDexNumber]

let name
let candyByFamilyId

if (basePokemon && candiesByFamilyId) {
name = basePokemon.name
candyByFamilyId = candiesByFamilyId[basePokemon.familyId]
} else {
name = 'Unknown'
candyByFamilyId = null
}

const candy = candyByFamilyId ? candyByFamilyId.candy : 0

return {
candy,
name,
pokemon_id: pokemonDexNumber,
count: 0,
evolves: 0,
pokemon: []
}
}

// Maybe put this info and the helper methods in utils?
const kantoDexCount = 151
// We can't really know how many pokemon there are with POGO
// They are randomly adding pokemon, like the babies, so the counts will be off
// I was going to use the johto count but instead I will use the alola count
// It should future proof us a little better
// const kantoDexCount = 151
// const johotoDexCount = 251
const alolaDexCount = 802

function generateEmptySpecies(candies) {
const candiesByFamilyId = keyBy(candies, (candy) => String(candy.family_id))

return times(kantoDexCount, (i) => {
const pokemonDexNumber = String(i + 1)
const basePokemon = baseStats.pokemon[pokemonDexNumber]

const candyByFamilyId = candiesByFamilyId[basePokemon.familyId]
const candy = candyByFamilyId ? candyByFamilyId.candy : 0

return {
candy,
pokemon_id: pokemonDexNumber,
name: basePokemon.name,
count: 0,
evolves: 0,
pokemon: []
}
return times(alolaDexCount, (i) => {
const pokemonDexNumber = i + 1
return generateEmptySpecie(pokemonDexNumber, candiesByFamilyId)
})
}

function parseInventory(inventory) {
const { player, candies, pokemon } = pogobuf.Utils.splitInventory(inventory)
const splitInventory = pogobuf.Utils.splitInventory(inventory)
const { player, candies, pokemon } = splitInventory

const speciesList = generateEmptySpecies(candies)
const eggList = []
Expand All @@ -70,11 +91,23 @@ function parseInventory(inventory) {

const stats = baseStats.pokemon[p.pokemon_id]

const totalCpMultiplier = p.cp_multiplier + p.additional_cp_multiplier
let attack
let defense
let stamina

// Pogo API adds new pokemon sometimes, which means our stats become off/wrong
// Rather than have the app fail to load, fall back to something
if (stats) {
attack = stats.BaseAttack + p.individual_attack
defense = stats.BaseDefense + p.individual_defense
stamina = stats.BaseStamina + p.individual_stamina
} else {
attack = p.individual_attack
defense = p.individual_defense
stamina = p.individual_stamina
}

const attack = stats.BaseAttack + p.individual_attack
const defense = stats.BaseDefense + p.individual_defense
const stamina = stats.BaseStamina + p.individual_stamina
const totalCpMultiplier = p.cp_multiplier + p.additional_cp_multiplier

const maxCP = utils.getMaxCpForTrainerLevel(attack, defense, stamina, player.level)
const candyCost = utils.getCandyCostsForPowerup(totalCpMultiplier, p.num_upgrades)
Expand Down Expand Up @@ -126,6 +159,10 @@ function parseInventory(inventory) {

const speciesIndex = p.pokemon_id - 1

// Even if we can guess about Gen2+ support we can't know what random pokemon will come next
// So if we come across an index we are missing, lets just try and patch it in
if (!speciesList[speciesIndex]) speciesList[speciesIndex] = generateEmptySpecie(p.pokemon_id)

speciesList[speciesIndex].count += 1
speciesList[speciesIndex].pokemon.push(pokemonWithStats)
})
Expand Down
Binary file added app/cries/115-mega.ogg
Binary file not shown.
Binary file added app/cries/127-mega.ogg
Binary file not shown.
Binary file added app/cries/130-mega.ogg
Binary file not shown.
Binary file added app/cries/142-mega.ogg
Binary file not shown.
Binary file added app/cries/150-mega-x.ogg
Binary file not shown.
Binary file added app/cries/150-mega-y.ogg
Binary file not shown.
Binary file added app/cries/152.ogg
Binary file not shown.
Binary file added app/cries/153.ogg
Binary file not shown.
Binary file added app/cries/154.ogg
Binary file not shown.
Binary file added app/cries/155.ogg
Binary file not shown.
Binary file added app/cries/156.ogg
Binary file not shown.
Binary file added app/cries/157.ogg
Binary file not shown.
Binary file added app/cries/158.ogg
Binary file not shown.
Binary file added app/cries/159.ogg
Binary file not shown.
Binary file added app/cries/160.ogg
Binary file not shown.
Binary file added app/cries/161.ogg
Binary file not shown.
Binary file added app/cries/162.ogg
Binary file not shown.
Binary file added app/cries/163.ogg
Binary file not shown.
Binary file added app/cries/164.ogg
Binary file not shown.
Binary file added app/cries/165.ogg
Binary file not shown.
Binary file added app/cries/166.ogg
Binary file not shown.
Binary file added app/cries/167.ogg
Binary file not shown.
Binary file added app/cries/168.ogg
Binary file not shown.
Binary file added app/cries/169.ogg
Binary file not shown.
Binary file added app/cries/170.ogg
Binary file not shown.
Binary file added app/cries/171.ogg
Binary file not shown.
Binary file added app/cries/172.ogg
Binary file not shown.
Binary file added app/cries/173.ogg
Binary file not shown.
Binary file added app/cries/174.ogg
Binary file not shown.
Binary file added app/cries/175.ogg
Binary file not shown.
Binary file added app/cries/176.ogg
Binary file not shown.
Binary file added app/cries/177.ogg
Binary file not shown.
Binary file added app/cries/178.ogg
Binary file not shown.
Binary file added app/cries/179.ogg
Binary file not shown.
Binary file added app/cries/180.ogg
Binary file not shown.
Binary file added app/cries/181-mega.ogg
Binary file not shown.
Binary file added app/cries/181.ogg
Binary file not shown.
Binary file added app/cries/182.ogg
Binary file not shown.
Binary file added app/cries/183.ogg
Binary file not shown.
Binary file added app/cries/184.ogg
Binary file not shown.
Binary file added app/cries/185.ogg
Binary file not shown.
Binary file added app/cries/186.ogg
Binary file not shown.
Binary file added app/cries/187.ogg
Binary file not shown.
Binary file added app/cries/188.ogg
Binary file not shown.
Binary file added app/cries/189.ogg
Binary file not shown.
Binary file added app/cries/190.ogg
Binary file not shown.
Binary file added app/cries/191.ogg
Binary file not shown.
Binary file added app/cries/192.ogg
Binary file not shown.
Binary file added app/cries/193.ogg
Binary file not shown.
Binary file added app/cries/194.ogg
Binary file not shown.
Binary file added app/cries/195.ogg
Binary file not shown.
Binary file added app/cries/196.ogg
Binary file not shown.
Binary file added app/cries/197.ogg
Binary file not shown.
Binary file added app/cries/198.ogg
Binary file not shown.
Binary file added app/cries/199.ogg
Binary file not shown.
Binary file added app/cries/200.ogg
Binary file not shown.
Binary file added app/cries/201.ogg
Binary file not shown.
Binary file added app/cries/202.ogg
Binary file not shown.
Binary file added app/cries/203.ogg
Binary file not shown.
Binary file added app/cries/204.ogg
Binary file not shown.
Binary file added app/cries/205.ogg
Binary file not shown.
Binary file added app/cries/206.ogg
Binary file not shown.
Binary file added app/cries/207.ogg
Binary file not shown.
Binary file added app/cries/208.ogg
Binary file not shown.
Binary file added app/cries/209.ogg
Binary file not shown.
Binary file added app/cries/210.ogg
Binary file not shown.
Binary file added app/cries/211.ogg
Binary file not shown.
Binary file added app/cries/212-mega.ogg
Binary file not shown.
Binary file added app/cries/212.ogg
Binary file not shown.
Binary file added app/cries/213.ogg
Binary file not shown.
Binary file added app/cries/214-mega.ogg
Binary file not shown.
Binary file added app/cries/214.ogg
Binary file not shown.
Binary file added app/cries/215.ogg
Binary file not shown.
Binary file added app/cries/216.ogg
Binary file not shown.
Binary file added app/cries/217.ogg
Binary file not shown.
Binary file added app/cries/218.ogg
Binary file not shown.
Binary file added app/cries/219.ogg
Binary file not shown.
Binary file added app/cries/220.ogg
Binary file not shown.
Binary file added app/cries/221.ogg
Binary file not shown.
Binary file added app/cries/222.ogg
Binary file not shown.
Binary file added app/cries/223.ogg
Binary file not shown.
Binary file added app/cries/224.ogg
Binary file not shown.
Binary file added app/cries/225.ogg
Binary file not shown.
Binary file added app/cries/226.ogg
Binary file not shown.
Binary file added app/cries/227.ogg
Binary file not shown.
Binary file added app/cries/228.ogg
Binary file not shown.
Binary file added app/cries/229-mega.ogg
Binary file not shown.
Binary file added app/cries/229.ogg
Binary file not shown.
Binary file added app/cries/230.ogg
Binary file not shown.
Binary file added app/cries/231.ogg
Binary file not shown.
Binary file added app/cries/232.ogg
Binary file not shown.
Binary file added app/cries/233.ogg
Binary file not shown.
Binary file added app/cries/234.ogg
Binary file not shown.
Binary file added app/cries/235.ogg
Binary file not shown.
Binary file added app/cries/236.ogg
Binary file not shown.
Binary file added app/cries/237.ogg
Binary file not shown.
Binary file added app/cries/238.ogg
Binary file not shown.
Binary file added app/cries/239.ogg
Binary file not shown.
Binary file added app/cries/240.ogg
Binary file not shown.
Binary file added app/cries/241.ogg
Binary file not shown.
Binary file added app/cries/242.ogg
Binary file not shown.
Binary file added app/cries/243.ogg
Binary file not shown.
Binary file added app/cries/244.ogg
Binary file not shown.
Binary file added app/cries/245.ogg
Binary file not shown.
Binary file added app/cries/246.ogg
Binary file not shown.
Binary file added app/cries/247.ogg
Binary file not shown.
Binary file added app/cries/248-mega.ogg
Binary file not shown.
Binary file added app/cries/248.ogg
Binary file not shown.
Binary file added app/cries/249.ogg
Binary file not shown.
Binary file added app/cries/250.ogg
Binary file not shown.
Binary file added app/cries/251.ogg
Binary file not shown.
Binary file added app/cries/252.ogg
Binary file not shown.
Binary file added app/cries/253.ogg
Binary file not shown.
Binary file added app/cries/254.ogg
Binary file not shown.
Binary file added app/cries/255.ogg
Binary file not shown.
Binary file added app/cries/256.ogg
Binary file not shown.
Binary file added app/cries/257-mega.ogg
Binary file not shown.
Binary file added app/cries/257.ogg
Binary file not shown.
Binary file added app/cries/258.ogg
Binary file not shown.
Binary file added app/cries/259.ogg
Binary file not shown.
Binary file added app/cries/260.ogg
Binary file not shown.
Binary file added app/cries/261.ogg
Binary file not shown.
Binary file added app/cries/262.ogg
Binary file not shown.
Binary file added app/cries/263.ogg
Binary file not shown.
Binary file added app/cries/264.ogg
Binary file not shown.
Binary file added app/cries/265.ogg
Binary file not shown.
Binary file added app/cries/266.ogg
Binary file not shown.
Binary file added app/cries/267.ogg
Binary file not shown.
Binary file added app/cries/268.ogg
Binary file not shown.
Binary file added app/cries/269.ogg
Binary file not shown.
Binary file added app/cries/270.ogg
Binary file not shown.
Binary file added app/cries/271.ogg
Binary file not shown.
Binary file added app/cries/272.ogg
Binary file not shown.
Binary file added app/cries/273.ogg
Binary file not shown.
Binary file added app/cries/274.ogg
Binary file not shown.
Binary file added app/cries/275.ogg
Binary file not shown.
Binary file added app/cries/276.ogg
Binary file not shown.
Binary file added app/cries/277.ogg
Binary file not shown.
Binary file added app/cries/278.ogg
Binary file not shown.
Binary file added app/cries/279.ogg
Binary file not shown.
Binary file added app/cries/280.ogg
Binary file not shown.
Binary file added app/cries/281.ogg
Binary file not shown.
Binary file added app/cries/282-mega.ogg
Binary file not shown.
Binary file added app/cries/282.ogg
Binary file not shown.
Binary file added app/cries/283.ogg
Binary file not shown.
Binary file added app/cries/284.ogg
Binary file not shown.
Binary file added app/cries/285.ogg
Binary file not shown.
Binary file added app/cries/286.ogg
Binary file not shown.
Binary file added app/cries/287.ogg
Binary file not shown.
Binary file added app/cries/288.ogg
Binary file not shown.
Binary file added app/cries/289.ogg
Binary file not shown.
Binary file added app/cries/290.ogg
Binary file not shown.
Binary file added app/cries/291.ogg
Binary file not shown.
Binary file added app/cries/292.ogg
Binary file not shown.
Binary file added app/cries/293.ogg
Binary file not shown.
Binary file added app/cries/294.ogg
Binary file not shown.
Binary file added app/cries/295.ogg
Binary file not shown.
Binary file added app/cries/296.ogg
Binary file not shown.
Binary file added app/cries/297.ogg
Binary file not shown.
Binary file added app/cries/298.ogg
Binary file not shown.
Binary file added app/cries/299.ogg
Binary file not shown.
Binary file added app/cries/3-mega.ogg
Binary file not shown.
Binary file added app/cries/300.ogg
Binary file not shown.
Binary file added app/cries/301.ogg
Binary file not shown.
Binary file added app/cries/302.ogg
Binary file not shown.
Binary file added app/cries/303-mega.ogg
Binary file not shown.
Binary file added app/cries/303.ogg
Binary file not shown.
Binary file added app/cries/304.ogg
Binary file not shown.
Binary file added app/cries/305.ogg
Binary file not shown.
Binary file added app/cries/306-mega.ogg
Binary file not shown.
Binary file added app/cries/306.ogg
Binary file not shown.
Binary file added app/cries/307.ogg
Binary file not shown.
Binary file added app/cries/308-mega.ogg
Binary file not shown.
Binary file added app/cries/308.ogg
Binary file not shown.
Binary file added app/cries/309.ogg
Binary file not shown.
Binary file added app/cries/310-mega.ogg
Binary file not shown.
Binary file added app/cries/310.ogg
Binary file not shown.
Binary file added app/cries/311.ogg
Binary file not shown.
Binary file added app/cries/312.ogg
Binary file not shown.
Binary file added app/cries/313.ogg
Binary file not shown.
Binary file added app/cries/314.ogg
Binary file not shown.
Binary file added app/cries/315.ogg
Binary file not shown.
Binary file added app/cries/316.ogg
Binary file not shown.
Binary file added app/cries/317.ogg
Binary file not shown.
Binary file added app/cries/318.ogg
Binary file not shown.
Binary file added app/cries/319.ogg
Binary file not shown.
Binary file added app/cries/320.ogg
Binary file not shown.
Binary file added app/cries/321.ogg
Binary file not shown.
Binary file added app/cries/322.ogg
Binary file not shown.
Binary file added app/cries/323.ogg
Binary file not shown.
Binary file added app/cries/324.ogg
Binary file not shown.
Binary file added app/cries/325.ogg
Binary file not shown.
Binary file added app/cries/326.ogg
Binary file not shown.
Binary file added app/cries/327.ogg
Binary file not shown.
Binary file added app/cries/328.ogg
Binary file not shown.
Binary file added app/cries/329.ogg
Binary file not shown.
Binary file added app/cries/330.ogg
Binary file not shown.
Binary file added app/cries/331.ogg
Binary file not shown.
Binary file added app/cries/332.ogg
Binary file not shown.
Binary file added app/cries/333.ogg
Binary file not shown.
Binary file added app/cries/334.ogg
Binary file not shown.
Binary file added app/cries/335.ogg
Binary file not shown.
Binary file added app/cries/336.ogg
Binary file not shown.
Binary file added app/cries/337.ogg
Binary file not shown.
Binary file added app/cries/338.ogg
Binary file not shown.
Binary file added app/cries/339.ogg
Binary file not shown.
Binary file added app/cries/340.ogg
Binary file not shown.
Binary file added app/cries/341.ogg
Binary file not shown.
Binary file added app/cries/342.ogg
Binary file not shown.
Binary file added app/cries/343.ogg
Binary file not shown.
Binary file added app/cries/344.ogg
Binary file not shown.
Binary file added app/cries/345.ogg
Binary file not shown.
Binary file added app/cries/346.ogg
Binary file not shown.
Binary file added app/cries/347.ogg
Binary file not shown.
Binary file added app/cries/348.ogg
Binary file not shown.
Binary file added app/cries/349.ogg
Binary file not shown.
Binary file added app/cries/350.ogg
Binary file not shown.
Binary file added app/cries/351.ogg
Binary file not shown.
Binary file added app/cries/352.ogg
Binary file not shown.
Binary file added app/cries/353.ogg
Binary file not shown.
Binary file added app/cries/354-mega.ogg
Binary file not shown.
Binary file added app/cries/354.ogg
Binary file not shown.
Binary file added app/cries/355.ogg
Binary file not shown.
Binary file added app/cries/356.ogg
Binary file not shown.
Binary file added app/cries/357.ogg
Binary file not shown.
Binary file added app/cries/358.ogg
Binary file not shown.
Binary file added app/cries/359-mega.ogg
Binary file not shown.
Binary file added app/cries/359.ogg
Binary file not shown.
Binary file added app/cries/360.ogg
Binary file not shown.
Binary file added app/cries/361.ogg
Binary file not shown.
Binary file added app/cries/362.ogg
Binary file not shown.
Binary file added app/cries/363.ogg
Binary file not shown.
Binary file added app/cries/364.ogg
Binary file not shown.
Binary file added app/cries/365.ogg
Binary file not shown.
Binary file added app/cries/366.ogg
Binary file not shown.
Binary file added app/cries/367.ogg
Binary file not shown.
Binary file added app/cries/368.ogg
Binary file not shown.
Binary file added app/cries/369.ogg
Binary file not shown.
Binary file added app/cries/370.ogg
Binary file not shown.
Binary file added app/cries/371.ogg
Binary file not shown.
Binary file added app/cries/372.ogg
Binary file not shown.
Binary file added app/cries/373.ogg
Binary file not shown.
Binary file added app/cries/374.ogg
Binary file not shown.
Binary file added app/cries/375.ogg
Binary file not shown.
Binary file added app/cries/376.ogg
Binary file not shown.
Binary file added app/cries/377.ogg
Binary file not shown.
Binary file added app/cries/378.ogg
Binary file not shown.
Binary file added app/cries/379.ogg
Binary file not shown.
Binary file added app/cries/380-mega.ogg
Binary file not shown.
Binary file added app/cries/380.ogg
Binary file not shown.
Binary file added app/cries/381-mega.ogg
Binary file not shown.
Binary file added app/cries/381.ogg
Binary file not shown.
Binary file added app/cries/382.ogg
Binary file not shown.
Binary file added app/cries/383.ogg
Binary file not shown.
Binary file added app/cries/384.ogg
Binary file not shown.
Binary file added app/cries/385.ogg
Binary file not shown.
Binary file added app/cries/386.ogg
Binary file not shown.
Binary file added app/cries/387.ogg
Binary file not shown.
Binary file added app/cries/388.ogg
Binary file not shown.
Binary file added app/cries/389.ogg
Binary file not shown.
Binary file added app/cries/390.ogg
Binary file not shown.
Binary file added app/cries/391.ogg
Binary file not shown.
Binary file added app/cries/392.ogg
Binary file not shown.
Binary file added app/cries/393.ogg
Binary file not shown.
Binary file added app/cries/394.ogg
Binary file not shown.
Binary file added app/cries/395.ogg
Binary file not shown.
Binary file added app/cries/396.ogg
Binary file not shown.
Binary file added app/cries/397.ogg
Binary file not shown.
Binary file added app/cries/398.ogg
Binary file not shown.
Binary file added app/cries/399.ogg
Binary file not shown.
Binary file added app/cries/400.ogg
Binary file not shown.
Binary file added app/cries/401.ogg
Binary file not shown.
Binary file added app/cries/402.ogg
Binary file not shown.
Binary file added app/cries/403.ogg
Binary file not shown.
Binary file added app/cries/404.ogg
Binary file not shown.
Binary file added app/cries/405.ogg
Binary file not shown.
Binary file added app/cries/406.ogg
Binary file not shown.
Binary file added app/cries/407.ogg
Binary file not shown.
Binary file added app/cries/408.ogg
Binary file not shown.
Binary file added app/cries/409.ogg
Binary file not shown.
Binary file added app/cries/410.ogg
Binary file not shown.
Binary file added app/cries/411.ogg
Binary file not shown.
Binary file added app/cries/412.ogg
Binary file not shown.
Binary file added app/cries/413.ogg
Binary file not shown.
Binary file added app/cries/414.ogg
Binary file not shown.
Binary file added app/cries/415.ogg
Binary file not shown.
Binary file added app/cries/416.ogg
Binary file not shown.
Binary file added app/cries/417.ogg
Binary file not shown.
Binary file added app/cries/418.ogg
Binary file not shown.
Binary file added app/cries/419.ogg
Binary file not shown.
Binary file added app/cries/420.ogg
Binary file not shown.
Binary file added app/cries/421.ogg
Binary file not shown.
Binary file added app/cries/422.ogg
Binary file not shown.
Binary file added app/cries/423.ogg
Binary file not shown.
Binary file added app/cries/424.ogg
Binary file not shown.
Loading

0 comments on commit 43a374b

Please sign in to comment.