├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ ├── lint.yml │ └── node.js.yml ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── README.md ├── docker-compose.example.yml ├── docs ├── configuration │ ├── config.md │ ├── geojson.md │ ├── images.md │ └── locales.md ├── index.md ├── install │ ├── docker.md │ ├── quick-start.md │ └── standard.md └── requirements.txt ├── mkdocs.yml ├── package-lock.json ├── package.json ├── src ├── configs │ ├── config.example.json │ └── default.json ├── createLocales.js ├── data │ ├── default.js │ ├── item.js │ └── map.js ├── generateMasterfile.js ├── geofenceToGeoJSON.js ├── index.js ├── poracleToGeoJSON.js ├── routes │ ├── api.js │ ├── discord.js │ └── ui.js ├── services │ ├── areas.js │ ├── config.js │ ├── discord.js │ ├── events │ │ ├── guildMemberRemove.js │ │ └── guildMemberUpdate.js │ ├── mysql.js │ ├── session-store.js │ └── utils.js └── views │ ├── 429.mustache │ ├── blocked.mustache │ ├── footer.mustache │ ├── header.mustache │ ├── home.mustache │ ├── index.mustache │ └── navbar.mustache └── static ├── css ├── all.css ├── index.css └── popups.css ├── custom ├── areas.example.json ├── favicon.ico └── nests.example.json ├── data ├── cpm.json ├── defaultrarity.json └── weathertypes.json ├── img ├── battle │ ├── 0_0.png │ ├── 1_1.png │ ├── 1_2.png │ ├── 1_3.png │ ├── 1_4.png │ ├── 1_5.png │ ├── 1_6.png │ ├── 2_1.png │ ├── 2_2.png │ ├── 2_3.png │ ├── 2_4.png │ ├── 2_5.png │ ├── 2_6.png │ ├── 3_1.png │ ├── 3_2.png │ ├── 3_3.png │ ├── 3_4.png │ ├── 3_5.png │ └── 3_6.png ├── device │ ├── 0.png │ └── 1.png ├── discord.png ├── egg │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ └── 8.png ├── grunt │ ├── 0.png │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.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 │ ├── 500.png │ ├── 501.png │ ├── 502.png │ ├── 503.png │ ├── 504.png │ ├── 505.png │ ├── 506.png │ ├── 507.png │ ├── 508.png │ ├── 509.png │ ├── 510.png │ ├── 511.png │ ├── 512.png │ ├── 513.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── gym │ ├── 0_0.png │ ├── 1_1.png │ ├── 1_2.png │ ├── 1_3.png │ ├── 1_4.png │ ├── 1_5.png │ ├── 1_6.png │ ├── 2_1.png │ ├── 2_2.png │ ├── 2_3.png │ ├── 2_4.png │ ├── 2_5.png │ ├── 2_6.png │ ├── 3_1.png │ ├── 3_2.png │ ├── 3_3.png │ ├── 3_4.png │ ├── 3_5.png │ └── 3_6.png ├── invasion │ ├── i0.png │ ├── i0_0.png │ ├── i0_1.png │ ├── i0_10.png │ ├── i0_11.png │ ├── i0_12.png │ ├── i0_13.png │ ├── i0_14.png │ ├── i0_15.png │ ├── i0_16.png │ ├── i0_17.png │ ├── i0_18.png │ ├── i0_19.png │ ├── i0_2.png │ ├── i0_20.png │ ├── i0_21.png │ ├── i0_22.png │ ├── i0_23.png │ ├── i0_24.png │ ├── i0_25.png │ ├── i0_26.png │ ├── i0_27.png │ ├── i0_28.png │ ├── i0_29.png │ ├── i0_3.png │ ├── i0_30.png │ ├── i0_31.png │ ├── i0_32.png │ ├── i0_33.png │ ├── i0_34.png │ ├── i0_35.png │ ├── i0_36.png │ ├── i0_37.png │ ├── i0_38.png │ ├── i0_39.png │ ├── i0_4.png │ ├── i0_40.png │ ├── i0_41.png │ ├── i0_42.png │ ├── i0_43.png │ ├── i0_44.png │ ├── i0_47.png │ ├── i0_48.png │ ├── i0_49.png │ ├── i0_5.png │ ├── i0_50.png │ ├── i0_500.png │ ├── i0_501.png │ ├── i0_502.png │ ├── i0_503.png │ ├── i0_504.png │ ├── i0_505.png │ ├── i0_506.png │ ├── i0_507.png │ ├── i0_509.png │ ├── i0_6.png │ ├── i0_7.png │ ├── i0_8.png │ ├── i0_9.png │ ├── i0_female.png │ ├── i0_male.png │ ├── i1_0.png │ ├── i1_1.png │ ├── i1_10.png │ ├── i1_11.png │ ├── i1_12.png │ ├── i1_13.png │ ├── i1_14.png │ ├── i1_15.png │ ├── i1_16.png │ ├── i1_17.png │ ├── i1_18.png │ ├── i1_19.png │ ├── i1_2.png │ ├── i1_20.png │ ├── i1_21.png │ ├── i1_22.png │ ├── i1_23.png │ ├── i1_24.png │ ├── i1_25.png │ ├── i1_26.png │ ├── i1_27.png │ ├── i1_28.png │ ├── i1_29.png │ ├── i1_3.png │ ├── i1_30.png │ ├── i1_31.png │ ├── i1_32.png │ ├── i1_33.png │ ├── i1_34.png │ ├── i1_35.png │ ├── i1_36.png │ ├── i1_37.png │ ├── i1_38.png │ ├── i1_39.png │ ├── i1_4.png │ ├── i1_40.png │ ├── i1_41.png │ ├── i1_42.png │ ├── i1_43.png │ ├── i1_44.png │ ├── i1_47.png │ ├── i1_48.png │ ├── i1_49.png │ ├── i1_5.png │ ├── i1_50.png │ ├── i1_500.png │ ├── i1_501.png │ ├── i1_502.png │ ├── i1_503.png │ ├── i1_504.png │ ├── i1_505.png │ ├── i1_506.png │ ├── i1_507.png │ ├── i1_509.png │ ├── i1_6.png │ ├── i1_7.png │ ├── i1_8.png │ ├── i1_9.png │ ├── i1_female.png │ ├── i1_male.png │ ├── i2_0.png │ ├── i2_1.png │ ├── i2_10.png │ ├── i2_11.png │ ├── i2_12.png │ ├── i2_13.png │ ├── i2_14.png │ ├── i2_15.png │ ├── i2_16.png │ ├── i2_17.png │ ├── i2_18.png │ ├── i2_19.png │ ├── i2_2.png │ ├── i2_20.png │ ├── i2_21.png │ ├── i2_22.png │ ├── i2_23.png │ ├── i2_24.png │ ├── i2_25.png │ ├── i2_26.png │ ├── i2_27.png │ ├── i2_28.png │ ├── i2_29.png │ ├── i2_3.png │ ├── i2_30.png │ ├── i2_31.png │ ├── i2_32.png │ ├── i2_33.png │ ├── i2_34.png │ ├── i2_35.png │ ├── i2_36.png │ ├── i2_37.png │ ├── i2_38.png │ ├── i2_39.png │ ├── i2_4.png │ ├── i2_40.png │ ├── i2_41.png │ ├── i2_42.png │ ├── i2_43.png │ ├── i2_44.png │ ├── i2_47.png │ ├── i2_48.png │ ├── i2_49.png │ ├── i2_5.png │ ├── i2_50.png │ ├── i2_500.png │ ├── i2_501.png │ ├── i2_502.png │ ├── i2_503.png │ ├── i2_504.png │ ├── i2_505.png │ ├── i2_506.png │ ├── i2_507.png │ ├── i2_509.png │ ├── i2_6.png │ ├── i2_7.png │ ├── i2_8.png │ ├── i2_9.png │ ├── i2_female.png │ ├── i2_male.png │ ├── i3_0.png │ ├── i3_1.png │ ├── i3_10.png │ ├── i3_11.png │ ├── i3_12.png │ ├── i3_13.png │ ├── i3_14.png │ ├── i3_15.png │ ├── i3_16.png │ ├── i3_17.png │ ├── i3_18.png │ ├── i3_19.png │ ├── i3_2.png │ ├── i3_20.png │ ├── i3_21.png │ ├── i3_22.png │ ├── i3_23.png │ ├── i3_24.png │ ├── i3_25.png │ ├── i3_26.png │ ├── i3_27.png │ ├── i3_28.png │ ├── i3_29.png │ ├── i3_3.png │ ├── i3_30.png │ ├── i3_31.png │ ├── i3_32.png │ ├── i3_33.png │ ├── i3_34.png │ ├── i3_35.png │ ├── i3_36.png │ ├── i3_37.png │ ├── i3_38.png │ ├── i3_39.png │ ├── i3_4.png │ ├── i3_40.png │ ├── i3_41.png │ ├── i3_42.png │ ├── i3_43.png │ ├── i3_44.png │ ├── i3_47.png │ ├── i3_48.png │ ├── i3_49.png │ ├── i3_5.png │ ├── i3_50.png │ ├── i3_500.png │ ├── i3_501.png │ ├── i3_502.png │ ├── i3_503.png │ ├── i3_504.png │ ├── i3_505.png │ ├── i3_506.png │ ├── i3_507.png │ ├── i3_509.png │ ├── i3_6.png │ ├── i3_7.png │ ├── i3_8.png │ ├── i3_9.png │ ├── i3_female.png │ ├── i3_male.png │ ├── i4_0.png │ ├── i4_1.png │ ├── i4_10.png │ ├── i4_11.png │ ├── i4_12.png │ ├── i4_13.png │ ├── i4_14.png │ ├── i4_15.png │ ├── i4_16.png │ ├── i4_17.png │ ├── i4_18.png │ ├── i4_19.png │ ├── i4_2.png │ ├── i4_20.png │ ├── i4_21.png │ ├── i4_22.png │ ├── i4_23.png │ ├── i4_24.png │ ├── i4_25.png │ ├── i4_26.png │ ├── i4_27.png │ ├── i4_28.png │ ├── i4_29.png │ ├── i4_3.png │ ├── i4_30.png │ ├── i4_31.png │ ├── i4_32.png │ ├── i4_33.png │ ├── i4_34.png │ ├── i4_35.png │ ├── i4_36.png │ ├── i4_37.png │ ├── i4_38.png │ ├── i4_39.png │ ├── i4_4.png │ ├── i4_40.png │ ├── i4_41.png │ ├── i4_42.png │ ├── i4_43.png │ ├── i4_44.png │ ├── i4_47.png │ ├── i4_48.png │ ├── i4_49.png │ ├── i4_5.png │ ├── i4_50.png │ ├── i4_500.png │ ├── i4_501.png │ ├── i4_502.png │ ├── i4_503.png │ ├── i4_504.png │ ├── i4_505.png │ ├── i4_506.png │ ├── i4_507.png │ ├── i4_509.png │ ├── i4_6.png │ ├── i4_7.png │ ├── i4_8.png │ ├── i4_9.png │ ├── i4_female.png │ ├── i4_male.png │ ├── i5_0.png │ ├── i5_500.png │ ├── i5_501.png │ ├── i5_502.png │ ├── i5_503.png │ ├── i5_504.png │ ├── i5_505.png │ ├── i5_506.png │ ├── i5_507.png │ ├── i5_509.png │ ├── i_1.png │ ├── i_10.png │ ├── i_11.png │ ├── i_12.png │ ├── i_13.png │ ├── i_14.png │ ├── i_15.png │ ├── i_16.png │ ├── i_17.png │ ├── i_18.png │ ├── i_19.png │ ├── i_2.png │ ├── i_20.png │ ├── i_21.png │ ├── i_22.png │ ├── i_23.png │ ├── i_24.png │ ├── i_25.png │ ├── i_26.png │ ├── i_27.png │ ├── i_28.png │ ├── i_29.png │ ├── i_3.png │ ├── i_30.png │ ├── i_31.png │ ├── i_32.png │ ├── i_33.png │ ├── i_34.png │ ├── i_35.png │ ├── i_36.png │ ├── i_37.png │ ├── i_38.png │ ├── i_39.png │ ├── i_4.png │ ├── i_40.png │ ├── i_41.png │ ├── i_42.png │ ├── i_43.png │ ├── i_44.png │ ├── i_47.png │ ├── i_48.png │ ├── i_49.png │ ├── i_5.png │ ├── i_50.png │ ├── i_6.png │ ├── i_7.png │ ├── i_8.png │ ├── i_9.png │ ├── i_female.png │ └── i_male.png ├── item │ ├── -0.png │ ├── -1.png │ ├── -2.png │ ├── -3.png │ ├── -4.png │ ├── -5.png │ ├── -6.png │ ├── -7.png │ ├── -8.png │ ├── 0.png │ ├── 1.png │ ├── 101.png │ ├── 102.png │ ├── 103.png │ ├── 104.png │ ├── 1101.png │ ├── 1102.png │ ├── 1103.png │ ├── 1104.png │ ├── 1105.png │ ├── 1106.png │ ├── 1107.png │ ├── 1201.png │ ├── 1202.png │ ├── 1301.png │ ├── 1401.png │ ├── 1402.png │ ├── 1403.png │ ├── 1404.png │ ├── 2.png │ ├── 201.png │ ├── 202.png │ ├── 3.png │ ├── 301.png │ ├── 4.png │ ├── 401.png │ ├── 501.png │ ├── 502.png │ ├── 503.png │ ├── 504.png │ ├── 701.png │ ├── 702.png │ ├── 703.png │ ├── 704.png │ ├── 705.png │ ├── 706.png │ ├── 707.png │ └── 708.png ├── landing.png ├── misc │ ├── ar-gym.png │ ├── ar-pokestop.png │ ├── ar.png │ ├── ex.png │ ├── first.png │ ├── great.png │ ├── gym.png │ ├── little.png │ ├── master.png │ ├── nest.png │ ├── pokestop.png │ ├── portal.png │ ├── reward.png │ ├── second.png │ ├── shadow.png │ ├── sparkles.png │ ├── third.png │ ├── timer.png │ ├── ultra.png │ └── verified.png ├── navigation │ ├── applemaps.png │ ├── gmaps.png │ └── othermaps.png ├── nest │ ├── nest-bug.png │ ├── nest-dark.png │ ├── nest-dragon.png │ ├── nest-electric.png │ ├── nest-empty.png │ ├── nest-fairy.png │ ├── nest-fighting.png │ ├── nest-fire.png │ ├── nest-flying.png │ ├── nest-ghost.png │ ├── nest-grass.png │ ├── nest-ground.png │ ├── nest-ice.png │ ├── nest-normal.png │ ├── nest-poison.png │ ├── nest-psychic.png │ ├── nest-rock.png │ ├── nest-steel.png │ ├── nest-water.png │ ├── nest.png │ └── nests.psd ├── pokemon │ └── .gitkeep ├── pokestop │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── i.png │ ├── i0.png │ ├── i1.png │ ├── i2.png │ ├── i3.png │ ├── i4.png │ └── i5.png ├── spawnpoint │ ├── 0.png │ └── 1.png ├── team │ ├── 0.png │ ├── 1.png │ ├── 2.png │ └── 3.png ├── type │ ├── bug.png │ ├── dark.png │ ├── dragon.png │ ├── electric.png │ ├── fairy.png │ ├── fighting.png │ ├── fire.png │ ├── flying.png │ ├── ghost.png │ ├── grass.png │ ├── ground.png │ ├── ice.png │ ├── normal.png │ ├── poison.png │ ├── psychic.png │ ├── rock.png │ ├── steel.png │ └── water.png ├── unknown_egg │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png └── weather │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ └── 7.png ├── js ├── i18n.min.js ├── index.js └── leaflet.forceZIndex.js ├── locales ├── _de.json ├── _en.json ├── _es.json └── _pl.json ├── svg ├── location.svg └── settings.svg └── webfonts ├── fa-brands-400.eot ├── fa-brands-400.svg ├── fa-brands-400.ttf ├── fa-brands-400.woff ├── fa-brands-400.woff2 ├── fa-regular-400.eot ├── fa-regular-400.svg ├── fa-regular-400.ttf ├── fa-regular-400.woff ├── fa-regular-400.woff2 ├── fa-solid-900.eot ├── fa-solid-900.svg ├── fa-solid-900.ttf ├── fa-solid-900.woff └── fa-solid-900.woff2 /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'env': { 3 | 'commonjs': true, 4 | 'es6': true, 5 | 'node': true 6 | }, 7 | 'extends': 'eslint:recommended', 8 | 'globals': { 9 | 'Atomics': 'readonly', 10 | 'SharedArrayBuffer': 'readonly' 11 | }, 12 | 'parserOptions': { 13 | 'ecmaVersion': 2018 14 | }, 15 | 'rules': { 16 | 'indent': [ 17 | 'error', 18 | 4, 19 | { 20 | 'SwitchCase': 1 21 | } 22 | ], 23 | 'linebreak-style': [ 24 | 'error', 25 | 'unix' 26 | ], 27 | 'quotes': [ 28 | 'error', 29 | 'single' 30 | ], 31 | 'semi': [ 32 | 'error', 33 | 'always' 34 | ] 35 | } 36 | }; -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: versx # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | #patreon: # Replace with a single Patreon username 5 | #custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 6 | -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- 1 | name: Lint 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v2 14 | - name: Install modules 15 | run: npm install 16 | - name: Run ESLint 17 | run: node_modules/eslint/bin/eslint.js src/ --ext .js,.jsx,.ts,.tsx 18 | -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- 1 | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node 2 | # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions 3 | 4 | name: Node.js CI 5 | 6 | on: 7 | push: 8 | branches: [ master ] 9 | pull_request: 10 | branches: [ master ] 11 | 12 | jobs: 13 | build: 14 | runs-on: ubuntu-latest 15 | strategy: 16 | matrix: 17 | node-version: [12.x] 18 | 19 | steps: 20 | - uses: actions/checkout@v2 21 | - name: Use Node.js ${{ matrix.node-version }} 22 | uses: actions/setup-node@v1 23 | with: 24 | node-version: ${{ matrix.node-version }} 25 | - run: npm ci 26 | - run: npm run build --if-present 27 | # - run: npm test 28 | -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- 1 | # .readthedocs.yml 2 | # Read the Docs configuration file 3 | # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details 4 | 5 | # Required 6 | version: 2 7 | 8 | # Build documentation with MkDocs 9 | mkdocs: 10 | configuration: mkdocs.yml 11 | 12 | # Optionally build your docs in additional formats such as PDF 13 | formats: 14 | - pdf 15 | 16 | # Optionally set the version of Python and requirements required to build your docs 17 | python: 18 | version: 3.7 19 | install: 20 | - requirements: docs/requirements.txt 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | # DON'T BE A DICK PUBLIC LICENSE 2 | 3 | > Version 1, December 2009 4 | 5 | > Copyright (C) 2009 Philip Sturgeon 6 | 7 | Everyone is permitted to copy and distribute verbatim or modified 8 | copies of this license document, and changing it is allowed as long 9 | as the name is changed. 10 | 11 | > DON'T BE A DICK PUBLIC LICENSE 12 | > TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 13 | 14 | 1. Do whatever you like with the original work, just don't be a dick. 15 | 16 | Being a dick includes - but is not limited to - the following instances: 17 | 18 | 1a. Outright copyright infringement - Don't just copy this and change the name. 19 | 1b. Selling the unmodified original with no work done what-so-ever, that's REALLY being a dick. 20 | 1c. Modifying the original work to contain hidden harmful content. That would make you a PROPER dick. 21 | 22 | 2. If you become rich through modifications, related works/services, or supporting the original work, 23 | share the love. Only a dick would make loads off this work and not buy the original works 24 | creator(s) a pint. 25 | 26 | 3. Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes 27 | you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back. 28 | -------------------------------------------------------------------------------- /docker-compose.example.yml: -------------------------------------------------------------------------------- 1 | version: '3.2' 2 | 3 | services: 4 | mapjs: 5 | image: node:12 6 | restart: unless-stopped 7 | working_dir: /app 8 | environment: 9 | HEALTHCHECK_SECRET: "some_super_secret_value" 10 | healthcheck: 11 | test: "curl -fH \"Healthcheck-Secret: $HEALTHCHECK_SECRET\" http://localhost:8080 || exit 1" 12 | command: 13 | - sh 14 | - -c 15 | - | 16 | npm run update 17 | npm start 18 | volumes: 19 | - .:/app 20 | #- static:/static 21 | ports: 22 | - "8080:8080" 23 | 24 | #volumes: 25 | # static: 26 | -------------------------------------------------------------------------------- /docs/configuration/geojson.md: -------------------------------------------------------------------------------- 1 | # GeoJSON 2 | 3 | MapJS uses a GeoJSON formatted file for both nest polygons and scan areas. While both 4 | of these features are optional the placeholder json files must exist. 5 | 6 | ## Nests 7 | 8 | This is generated via the external [PMSFnestScript] project and support is 9 | given via the [PMSF Discord](). Once the script is ran move the `nest.json` 10 | file to `/path/to/MapJS/static/custom/nests.json`. 11 | 12 | ## Scan Area 13 | 14 | This `areas.json` file is used to show city/region boundaries on the map. You can 15 | generate it yourself via multiple free online websites, a few are listed below: 16 | 17 | - [geojson.io](https://geojson.io/) 18 | - [geoman.io](https://geoman.io/geojson-editor) 19 | - [RDM Tools](https://github.com/PickleRickVE/RealDeviceMap-tools) (self hosted) 20 | 21 | ### Convert INI to GeoJSON 22 | 23 | To easily convert INI sytle geofence format files to GeoJSON format you can use the 24 | following method. This is mainly used for the `areas.json` file to show scan areas. 25 | 26 | 1. Create `geofences` directory in root of project (with src folder) 27 | 1. Copy your `.txt` INI format geofence files to the `geofences` folder 28 | 1. Run `npm run convert -- ./geofences/` which will convert your INI geofences to one `areas.json` GeoJSON format file in the root of the project 29 | 1. Copy `areas.json` to `/path/to/MapJS/static/custom/areas.json` to show the scan areas on the map 30 | 31 | ### Convert Porcale geofence to GeoJSON 32 | 33 | To easily convert from [PoracleJS] geofence formated file into GeoJSON run the method. 34 | This is mainly used for the `areas.json` file to show scan areas. 35 | 36 | 1. Copy your `geofence.json` file from Poracle to the root of the project folder (with src folder) 37 | 1. Run `npm run convert-poracle -- geofence.json` which will convert the file to an `areas.json` GeoJSON format file in the root of the project folder 38 | 1. Copy `areas.json` to `/path/to/MapJS/static/custom/areas.json` to show the scan areas on the map 39 | 40 | 41 | [PMSF Discord]: https://discord.gg/yGujp8D 42 | [PMSFnestScript]: https://github.com/M4d40/PMSFnestScript 43 | [PoracleJS]: https://github.com/KartulUdus/PoracleJS 44 | -------------------------------------------------------------------------------- /docs/configuration/locales.md: -------------------------------------------------------------------------------- 1 | # Locales 2 | 3 | In order to support multiple languages i18n locale files are stored in two locations. 4 | 5 | Project specific translations: [WatWowMap/MapJS/static/locales] 6 | 7 | Pokemon Go related translations: [bschultz/pogo-translations] 8 | 9 | 10 | [bschultz/pogo-translations]: https://github.com/bschultz/pogo-translations 11 | [WatWowMap/MapJS/static/locales]: https://github.com/WatWowMap/MapJS/tree/master/static/locales 12 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | title: Home 2 | 3 | # Welcome to MapJS 4 | 5 | NodeJS Map clone replacement for [RealDeviceMap](https://github.com/realdevicemap/realdevicemap) 6 | 7 | ## Features 8 | 9 | - Everything from RealDeviceMap UI Map 10 | - Discord authentication or no authentication 11 | - Pokemon form filtering 12 | - Raid Pokemon form filtering 13 | - Quest Pokemon form filtering 14 | - Mega energy quest filtering 15 | - Nests and nest filtering 16 | - Pokemon glow based on minimum IV 17 | - Refactored Global IV/Pokemon/Pokestop/Raid filtering 18 | - PVP rank filtering 19 | - Invasion type filtering 20 | - Weather type filtering 21 | - Device status filtering 22 | - Big karp and tiny rat filtering 23 | - Custom icon support 24 | - 400k+ less icons 25 | - Pokemon clustering 26 | - Mobile friendly filters 27 | - Available raid boss and quest rewards from database for smaller filter lists 28 | - Scan area polygons 29 | - Configurable Quick Start Pokemon filter button for new users 30 | - Quickly filter Pokemon by generation/rarity/event 31 | - Legendary and normal raid buttons 32 | - Follow my location 33 | - Cache previous location 34 | - Global search for quest rewards, nest pokemon, gyms, and pokestops 35 | - Minimum candy and stardust amount quest filter 36 | - Zoom zoom zoom, fast 37 | - Much more... 38 | 39 | ## Screenshots 40 | 41 | ![placeholder image](https://via.placeholder.com/600x320.png?text=Placeholder+Landing+Page) 42 | 43 | ![placeholder image](https://via.placeholder.com/600x320.png?text=Placeholder+Pokemon+Filter) 44 | -------------------------------------------------------------------------------- /docs/install/docker.md: -------------------------------------------------------------------------------- 1 | # Docker Installation 2 | 3 | !!! note 4 | **Prerequisites**: 5 | Existing [RDM](https://github.com/RealDeviceMap/RealDeviceMap) or [DataParser](https://github.com/versx/DataParser) style database. 6 | 7 | 1. Install [docker]{target=_blank} 8 | 1. Install [docker-compose]{target=_blank} 9 | 1. Clone the repository 10 | 11 | ```sh 12 | git clone https://github.com/versx/MapJS && cd MapJS 13 | ``` 14 | 15 | 1. Copy the sample docker-compose file 16 | 17 | ```sh 18 | cp docker-compose.example.yml docker-compose.yml 19 | ``` 20 | 21 | 1. Fill out your docker-compose.yml file. Change your `HEALTHCHECK_SECRET` variable. 22 | 23 | ```sh 24 | vi docker-compose.yml 25 | ``` 26 | 27 | 1. Create your project config 28 | 29 | ```sh 30 | cp src/configs/config.example.json src/configs/config.json 31 | ``` 32 | 33 | 1. Fill out config. See [config#discord] for Discord Auth instructions. 34 | 35 | ```sh 36 | vi src/configs/config.json 37 | ``` 38 | 39 | 1. Create/copy a `static/custom/nests.json` file to show nests ([GeoJSON] file format) 40 | 1. Create/copy a `static/custom/areas.json` file to show scan areas ([GeoJSON] file format, see below) 41 | 1. Start with `docker-compose up -d` 42 | 1. Access via [http://machineip:port/]() login using your Discord account 43 | 44 | ## Updating 45 | 46 | 1. `cd /path/to/MapJS` 47 | 1. `git pull` 48 | 1. `docker-compose build` 49 | 1. `docker-compose up -d` 50 | 51 | 52 | [docker]: https://docs.docker.com/get-docker/ 53 | [docker-compose]: https://docs.docker.com/compose/install/ 54 | [config#discord]: ../configuration/config.md#discord 55 | [GeoJSON]: ../configuration/geojson.md 56 | -------------------------------------------------------------------------------- /docs/install/quick-start.md: -------------------------------------------------------------------------------- 1 | # Quick Start 2 | 3 | !!! note 4 | **Prerequisites**: 5 | Existing [RDM](https://github.com/RealDeviceMap/RealDeviceMap) or [DataParser](https://github.com/versx/DataParser) style database 6 | 7 | 1. Install [nodejs] v12 8 | 1. Clone the repository 9 | 10 | ```sh 11 | git clone https://github.com/versx/MapJS && cd MapJS 12 | ``` 13 | 14 | 1. Install dependencies 15 | 16 | ```sh 17 | npm run update 18 | ``` 19 | 20 | 1. Create your project config 21 | 22 | ```sh 23 | cp src/configs/config.example.json src/configs/config.json 24 | ``` 25 | 26 | 1. Fill out config. See [config#discord] for Discord Auth instructions. 27 | 28 | ```sh 29 | vi src/configs/config.json 30 | ``` 31 | 32 | 33 | 1. Create/copy a `static/custom/nests.json` file to show nests ([GeoJSON] format) 34 | 1. Create/copy a `static/custom/areas.json` file to show scan areas ([GeoJSON] format) 35 | 1. Run `npm run start` 36 | 1. Access the map via [http://machineip:port/]() 37 | 38 | 39 | [nodejs]: https://nodejs.org/en/download/ 40 | [config#discord]: ../configuration/config.md#discord 41 | [GeoJSON]: ../configuration/geojson.md 42 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs-bootswatch==1.1 2 | pymdown-extensions==8.0 3 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: MapJS 2 | site_url: https://github.com/WatWowMap/MapJS 3 | site_description: MapJS 4 | site_author: versx 5 | 6 | repo_url: https://github.com/WatWowMap/MapJS 7 | 8 | theme: 9 | name: flatly 10 | 11 | nav: 12 | - Home: 'index.md' 13 | - Install Guide: 14 | - Quick Start: install/quick-start.md 15 | - Standard: install/standard.md 16 | - Docker: install/docker.md 17 | - Configuration: 18 | - Config: configuration/config.md 19 | - GeoJSON: configuration/geojson.md 20 | - Images: configuration/images.md 21 | - Locales: configuration/locales.md 22 | - WatWowMap: https://wwm.readthedocs.io/ 23 | 24 | markdown_extensions: 25 | - toc: 26 | permalink: '#' 27 | separator: "-" 28 | - attr_list 29 | - pymdownx.highlight 30 | - pymdownx.superfences 31 | - admonition 32 | 33 | plugins: 34 | - search 35 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mapjs", 3 | "version": "1.11.1", 4 | "description": "", 5 | "main": "src/index.js", 6 | "scripts": { 7 | "convert": "node src/geofenceToGeoJSON.js", 8 | "convert-poracle": "node src/poracleToGeoJSON.js", 9 | "create-locales": "node -e 'require(\"./src/createLocales\").locales()'", 10 | "generate": "node -e 'require(\"./src/generateMasterfile\").generate()'", 11 | "start": "node src/index.js", 12 | "test": "npx eslint src/ --ext .js,.jsx,.ts,.tsx", 13 | "test-fix": "npx eslint src/ --ext .js,.jsx,.ts,.tsx --fix", 14 | "update": "npm install && npm run generate && npm run create-locales" 15 | }, 16 | "repository": { 17 | "type": "git", 18 | "url": "git+https://github.com/versx/MapJS.git" 19 | }, 20 | "author": "versx", 21 | "license": "ISC", 22 | "bugs": { 23 | "url": "https://github.com/versx/MapJS/issues" 24 | }, 25 | "homepage": "https://github.com/versx/MapJS#readme", 26 | "dependencies": { 27 | "axios": "^0.21.1", 28 | "btoa": "^1.2.1", 29 | "compression": "^1.7.4", 30 | "discord-oauth2": "^2.5.0", 31 | "discord.js": "^12.3.1", 32 | "eslint": "^7.9.0", 33 | "express": "^4.17.1", 34 | "express-mysql-session": "^2.1.6", 35 | "express-rate-limit": "^5.1.3", 36 | "express-session": "^1.17.1", 37 | "extend": "^3.0.2", 38 | "helmet": "^3.23.3", 39 | "i18n": "^0.9.1", 40 | "mustache-express": "^1.3.0", 41 | "mysql": "^2.18.1", 42 | "nodes2ts": "^2.0.0", 43 | "require-from-string": "^2.0.2", 44 | "sanitizer": "^0.1.3" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /src/createLocales.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const fs = require('fs'); 4 | const path = require('path'); 5 | const axios = require('axios'); 6 | 7 | const appLocalesFolder = path.resolve(__dirname, '../static/locales'); 8 | 9 | module.exports.locales = async function locales() { 10 | const localTranslations = await fs.promises.readdir(appLocalesFolder); 11 | const englishRef = fs.readFileSync(path.resolve(appLocalesFolder, '_en.json'), { encoding: 'utf8', flag: 'r' }); 12 | 13 | await Promise.all(localTranslations.map(async locale => { 14 | if (locale.startsWith('_')) { 15 | const mapJsTranslations = fs.readFileSync(path.resolve(appLocalesFolder, locale), { encoding: 'utf8', flag: 'r' }); 16 | const baseName = locale.replace('.json', '').replace('_', ''); 17 | const trimmedRemoteFiles = {}; 18 | 19 | try { 20 | const { data } = await axios.get(`https://raw.githubusercontent.com/WatWowMap/pogo-translations/master/static/locales/${baseName}.json`); 21 | 22 | Object.keys(data).forEach(key => { 23 | if (!key.startsWith('desc_') && !key.startsWith('pokemon_category_')) { 24 | trimmedRemoteFiles[key] = data[key]; 25 | } 26 | }); 27 | } catch (e) { 28 | console.warn(e, '\n', locale); 29 | } 30 | 31 | const finalTranslations = { 32 | ...JSON.parse(englishRef), 33 | ...JSON.parse(mapJsTranslations), 34 | ...trimmedRemoteFiles, 35 | }; 36 | fs.writeFile( 37 | path.resolve(appLocalesFolder, `${baseName}.json`), 38 | JSON.stringify(finalTranslations, null, 2), 39 | 'utf8', 40 | () => { }, 41 | ); 42 | console.log('localeFile', 'file saved.'); 43 | } 44 | })); 45 | }; 46 | -------------------------------------------------------------------------------- /src/data/default.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const config = require('../services/config.js'); 4 | const data = require('../../static/locales/' + config.locale + '.json'); 5 | data.title = config.title; 6 | data.header_title = config.headerTitle; 7 | data.locale = config.locale; 8 | data.date_time_locale = config.dateTimeLocale; 9 | data.db_type = config.dbType; 10 | data.google_analytics_id = config.google.analytics; 11 | data.google_adsense_id = config.google.adsense; 12 | data.cluster_pokemon = config.map.clusters.pokemon; 13 | data.cluster_gyms = config.map.clusters.gyms; 14 | data.cluster_pokestops = config.map.clusters.pokestops; 15 | data.cluster_zoom_level = config.map.clusters.zoomLevel; 16 | data.scouting = config.scouting.enabled; 17 | data.scouting_url = config.scouting.url; 18 | data.scouting_count = config.scouting.maxScouts; 19 | data.glow_json = JSON.stringify(config.map.glow); 20 | data.favicon = config.favicon; 21 | data.device_path_color = config.map.devicePathColor; 22 | data.nest_polygons = config.map.nestPolygons; 23 | data.config_pvp_json = JSON.stringify(config.map.pvp); 24 | data.icon_sizes_json = JSON.stringify(config.map.iconSizes); 25 | data.portal_mods_json = JSON.stringify(config.map.portalMods); 26 | 27 | // Default filter options for new users/cache clears 28 | data.default_show_pokemon = config.map.filters.pokemon; 29 | data.default_show_pokemon_timers = config.map.filters.pokemonTimers; 30 | data.default_show_raids = config.map.filters.raids; 31 | data.default_show_raid_timers = config.map.filters.raidTimers; 32 | data.default_show_gyms = config.map.filters.gyms; 33 | data.default_show_pokestops = config.map.filters.pokestops; 34 | data.default_show_quests = config.map.filters.quests; 35 | data.default_show_invasions = config.map.filters.invasions; 36 | data.default_show_invasion_timers = config.map.filters.invasionTimers; 37 | data.default_show_spawnpoints = config.map.filters.spawnpoints; 38 | data.default_show_weather = config.map.filters.weather; 39 | data.default_show_scan_cells = config.map.filters.scanCells; 40 | data.default_show_submission_cells = config.map.filters.submissionCells; 41 | data.default_show_nests = config.map.filters.nests; 42 | data.default_show_portals = config.map.filters.portals; 43 | data.default_show_scan_areas = config.map.filters.scanAreas; 44 | data.default_show_devices = config.map.filters.devices; 45 | data.pokemon_rarity_json = JSON.stringify(config.rarity); 46 | data.popup_details = JSON.stringify(config.popupDetails); 47 | 48 | module.exports = data; 49 | -------------------------------------------------------------------------------- /src/data/item.js: -------------------------------------------------------------------------------- 1 | const InventoryItemId = { 2 | //ITEM_UNKNOWN: 0, 3 | ITEM_POKE_BALL: 1, 4 | ITEM_GREAT_BALL: 2, 5 | ITEM_ULTRA_BALL: 3, 6 | //ITEM_MASTER_BALL: 4, 7 | //ITEM_PREMIER_BALL: 5, 8 | ITEM_POTION: 101, 9 | ITEM_SUPER_POTION: 102, 10 | ITEM_HYPER_POTION: 103, 11 | ITEM_MAX_POTION: 104, 12 | ITEM_REVIVE: 201, 13 | ITEM_MAX_REVIVE: 202, 14 | ITEM_LUCKY_EGG: 301, 15 | ITEM_INCENSE_ORDINARY: 401, 16 | //ITEM_INCENSE_SPICY: 402, 17 | //ITEM_INCENSE_COOL: 403, 18 | //ITEM_INCENSE_FLORAL: 404, 19 | //ITEM_INCENSE_BELUGA_BOX: 405, 20 | ITEM_TROY_DISK: 501, 21 | ITEM_TROY_DISK_GLACIAL: 502, 22 | ITEM_TROY_DISK_MOSSY: 503, 23 | ITEM_TROY_DISK_MAGNETIC: 504, 24 | ITEM_TROY_DISK_RAINY: 505, 25 | //ITEM_X_ATTACK: 602, 26 | //ITEM_X_DEFENSE: 603, 27 | //ITEM_X_MIRACLE: 604, 28 | ITEM_RAZZ_BERRY: 701, 29 | //ITEM_BLUK_BERRY: 702, 30 | ITEM_NANAB_BERRY: 703, 31 | //ITEM_WEPAR_BERRY: 704, 32 | ITEM_PINAP_BERRY: 705, 33 | ITEM_GOLDEN_RAZZ_BERRY: 706, 34 | //ITEM_GOLDEN_NANAB_BERRY: 707, 35 | ITEM_GOLDEN_PINAP_BERRY: 708, 36 | ITEM_POFFIN: 709, 37 | //ITEM_SPECIAL_CAMERA: 801, 38 | //ITEM_INCUBATOR_BASIC_UNLIMITED: 901, 39 | //ITEM_INCUBATOR_BASIC: 902, 40 | //ITEM_INCUBATOR_SUPER: 903, 41 | //ITEM_POKEMON_STORAGE_UPGRADE: 1001, 42 | //ITEM_ITEM_STORAGE_UPGRADE: 1002, 43 | ITEM_SUN_STONE: 1101, 44 | ITEM_KINGS_ROCK: 1102, 45 | ITEM_METAL_COAT: 1103, 46 | ITEM_DRAGON_SCALE: 1104, 47 | ITEM_UP_GRADE: 1105, 48 | ITEM_GEN4_EVOLUTION_STONE: 1106, 49 | ITEM_GEN5_EVOLUTION_STONE: 1107, 50 | ITEM_MOVE_REROLL_FAST_ATTACK: 1201, 51 | ITEM_MOVE_REROLL_SPECIAL_ATTACK: 1202, 52 | ITEM_MOVE_REROLL_ELITE_FAST_ATTACK: 1203, 53 | ITEM_MOVE_REROLL_ELITE_SPECIAL_ATTACK: 1204, 54 | ITEM_RARE_CANDY: 1301, 55 | ITEM_FREE_RAID_TICKET: 1401, 56 | //ITEM_PAID_RAID_TICKET: 1402, 57 | //ITEM_LEGENDARY_RAID_TICKET: 1403, 58 | ITEM_STAR_PIECE: 1404, 59 | //ITEM_FRIEND_GIFT_BOX: 1405, 60 | //ITEM_TEAM_CHANGE: 1406, 61 | //ITEM_REMOTE_RAID_TICKET: 1408, 62 | //ITEM_LEADER_MAP_FRAGMENT: 1501, 63 | //ITEM_LEADER_MAP: 1502, 64 | //ITEM_GIOVANNI_MAP: 1503, 65 | //ITEM_GLOBAL_EVENT_TICKET: 1600 66 | }; 67 | 68 | module.exports = InventoryItemId; 69 | -------------------------------------------------------------------------------- /src/generateMasterfile.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const axios = require('axios'); 3 | 4 | //module.exports.generate = async function generate() { 5 | (async () => { 6 | try { 7 | const { data } = await axios.get('https://raw.githubusercontent.com/WatWowMap/Masterfile-Generator/master/master-latest.json'); 8 | 9 | fs.writeFile( 10 | 'static/data/masterfile.json', 11 | JSON.stringify(data, null, 2), 12 | 'utf8', 13 | () => { }, 14 | ); 15 | console.log('New masterfile generated'); 16 | } catch (e) { 17 | console.warn('Unable to generate new masterfile, using existing.'); 18 | } 19 | //}; 20 | })(); -------------------------------------------------------------------------------- /src/geofenceToGeoJSON.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Credits: https://gist.github.com/moriakaice 3 | */ 4 | 5 | const fs = require('fs'); 6 | const path = require('path'); 7 | 8 | const args = process.argv.slice(2); 9 | if (args.length === 0) { 10 | console.error('Error: No geofence directory provided via command line arguments.'); 11 | return; 12 | } 13 | const geofencesFolder = path.resolve(__dirname, '../' + args[0]); 14 | if (!fs.existsSync(geofencesFolder)) { 15 | console.error('Error: Geofence directory does not exist:', geofencesFolder); 16 | return; 17 | } 18 | 19 | const geoJSON = { 20 | type: 'FeatureCollection', 21 | features: [], 22 | }; 23 | 24 | fs.readdir(geofencesFolder, (err, files) => { 25 | if (err) { 26 | console.error(err); 27 | return; 28 | } 29 | for (let i = 0; i < files.length; i++) { 30 | const file = path.resolve(geofencesFolder, files[i]); 31 | fs.readFile(file, 'utf8', (err, data) => { 32 | if (err) { 33 | console.error(err); 34 | return; 35 | } 36 | console.log('Converting ini geofence file to geoJSON format', file); 37 | const fences = data.match(/\[([^\]]+)\]([^[]*)/g); 38 | fences.forEach(fence => { 39 | const geofence = { 40 | type: 'Feature', 41 | properties: { 42 | name: '' 43 | }, 44 | geometry: { 45 | type: 'Polygon', 46 | coordinates: [[]] 47 | } 48 | }; 49 | geofence.properties.name = fence.match(/\[([^\]]+)\]/)[1]; 50 | geofence.geometry.coordinates[0] = fence.match(/[0-9\-.]+,\s*[0-9\-.]+/g).map(point => [parseFloat(point.split(',')[1]), parseFloat(point.split(',')[0])]); 51 | geofence.geometry.coordinates[0].push(geofence.geometry.coordinates[0][0]); 52 | 53 | geoJSON.features.push(geofence); 54 | }); 55 | fs.writeFile('areas.json', JSON.stringify(geoJSON, null, 2), 'utf8', () => { }); 56 | console.log('areas.json file saved.'); 57 | }); 58 | } 59 | }); -------------------------------------------------------------------------------- /src/poracleToGeoJSON.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const fs = require('fs'); 4 | const path = require('path'); 5 | 6 | const args = process.argv.slice(2); 7 | if (args.length === 0) { 8 | console.error('Error: No geofence file provided via command line arguments.'); 9 | return; 10 | } 11 | const inFilePath = args[0]; 12 | const outGeoJSON = { 13 | type: 'FeatureCollection', 14 | features: [], 15 | }; 16 | 17 | fs.readFile(inFilePath, 'utf8', (err, data) => { 18 | if (err) { 19 | console.error(err); 20 | return; 21 | } 22 | const inGeoJSON = JSON.parse(data); 23 | if (inGeoJSON.length === 0) { 24 | console.error('Failed to parse poracle geofence file'); 25 | return; 26 | } 27 | for (let i = 0; i < inGeoJSON.length; i++) { 28 | const inGeofence = inGeoJSON[i]; 29 | console.log('Converting', inGeofence.name); 30 | const outGeofence = { 31 | type: 'Feature', 32 | properties: { 33 | name: inGeofence.name || '', 34 | color: inGeofence.color || '#000000', 35 | id: inGeofence.id || 0, 36 | 37 | }, 38 | geometry: { 39 | type: 'Polygon', 40 | coordinates: [[]] 41 | } 42 | }; 43 | for (let j = 0; j < inGeofence.path.length; j++) { 44 | const coord = inGeofence.path[j]; 45 | inGeofence.path[j] = [coord[1], coord[0]]; 46 | } 47 | outGeofence.geometry.coordinates[0] = inGeofence.path; 48 | outGeoJSON.features.push(outGeofence); 49 | } 50 | const outFilePath = path.resolve(path.dirname(inFilePath), 'areas.json'); 51 | fs.writeFile(outFilePath, JSON.stringify(outGeoJSON, null, 2), 'utf8', () => { 52 | console.log(`${outFilePath} file saved.`); 53 | }); 54 | }); 55 | -------------------------------------------------------------------------------- /src/services/areas.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const fs = require('fs'); 4 | const path = require('path'); 5 | const config = require('../services/config.js'); 6 | 7 | const loadAreas = () => { 8 | let areas = {}; 9 | let showWarning = false; 10 | 11 | const areasFilePath = path.resolve(__dirname, '../../static/custom/areas.json'); 12 | try { 13 | const data = fs.readFileSync(areasFilePath, 'utf8'); 14 | areas = JSON.parse(data); 15 | } catch (err) { 16 | for (const role of Object.values(config.discord.areaRestrictions)) { 17 | if (role['roles'].length !== 0) showWarning = true; 18 | } 19 | if (showWarning) console.warn('[Area Restrictions] Disabled - `areas.json` file is missing or broken.'); 20 | } 21 | return areas; 22 | }; 23 | 24 | const parseAreas = (areasObj) => { 25 | let names = {}; 26 | let polygons = {}; 27 | 28 | if (Object.keys(areasObj).length === 0) return { names, polygons }; 29 | 30 | for (const feature of areasObj.features) { 31 | // TODO: MultiPolygon support? 32 | if (feature.geometry.type == 'Polygon' && feature.properties.name) { 33 | polygons[feature.properties.name] = []; 34 | for (const polygonCoordinates of feature.geometry.coordinates) polygons[feature.properties.name].push(...polygonCoordinates); 35 | } 36 | } 37 | names = Object.keys(polygons); 38 | return { names, polygons }; 39 | }; 40 | 41 | const raw = loadAreas(); 42 | const { names, polygons } = parseAreas(raw); 43 | 44 | module.exports = { 45 | raw, 46 | names, 47 | polygons 48 | }; 49 | -------------------------------------------------------------------------------- /src/services/config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const extend = require('extend'); 4 | const uConfig = require('../configs/config.json'); 5 | const eConfig = require('../configs/default.json'); 6 | const target = {}; 7 | /* 8 | * deep Boolean (optional) If set, the merge becomes recursive (i.e. deep copy). 9 | * target Object The object to extend. 10 | * object1 Object The object that will be merged into the first. 11 | * objectN Object (Optional) More objects to merge into the first. 12 | */ 13 | extend(true, target, eConfig, uConfig); 14 | 15 | module.exports = target; 16 | -------------------------------------------------------------------------------- /src/services/events/guildMemberRemove.js: -------------------------------------------------------------------------------- 1 | const { clearOtherSessions } = require('../session-store.js'); 2 | 3 | module.exports = async (client, member) => { 4 | try { 5 | await clearOtherSessions(member.id, ''); 6 | } catch (e) { 7 | console.error(`Could not clear sessions for ${member.username}`); 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/services/events/guildMemberUpdate.js: -------------------------------------------------------------------------------- 1 | /* global BigInt */ 2 | const { clearOtherSessions } = require('../session-store.js'); 3 | 4 | module.exports = async (client, oldPresence, newPresence) => { 5 | const rolesBefore = oldPresence.roles.cache 6 | .filter(x => BigInt(x.id).toString()) 7 | .keyArray(); 8 | const rolesAfter = newPresence.roles.cache 9 | .filter(x => BigInt(x.id).toString()) 10 | .keyArray(); 11 | const perms = [...new Set( 12 | Object.values(client.config.discord.perms) 13 | .map(x => x.roles) 14 | .flat() 15 | )]; 16 | const roleDiff = rolesBefore 17 | .filter(x => !rolesAfter.includes(x)) 18 | .concat(rolesAfter 19 | .filter(x => !rolesBefore.includes(x)) 20 | ); 21 | try { 22 | if (perms.includes(roleDiff[0])) { 23 | await clearOtherSessions(oldPresence.user.id, ''); 24 | } 25 | } catch (e) { 26 | console.error(`Could not clear sessions for ${oldPresence.user.username}#${oldPresence.user.discriminator}`); 27 | } 28 | }; 29 | -------------------------------------------------------------------------------- /src/services/mysql.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const mysql = require('mysql'); 4 | 5 | const getConnection = (config) => { 6 | const conn = mysql.createConnection({ 7 | host: config.host, 8 | port: config.port, 9 | user: config.username, 10 | password: config.password, 11 | database: config.database, 12 | charset: config.charset, 13 | supportBigNumbers: true 14 | }); 15 | 16 | conn.connect((err) => { 17 | if (err) { 18 | console.error('Failed to connect to the database:', config.db); 19 | return; 20 | } 21 | }); 22 | 23 | conn.on('error', (err) => { 24 | console.error(`Mysql error: ${err}`); 25 | }); 26 | return conn; 27 | }; 28 | 29 | class MySQLConnector { 30 | constructor(config) { 31 | this.config = config; 32 | } 33 | 34 | async query(sql, args) { 35 | return new Promise((resolve, reject) => { 36 | // The Promise constructor should catch any errors thrown on 37 | // this tick. Alternately, try/catch and reject(err) on catch. 38 | const conn = getConnection(this.config); 39 | /* eslint-disable no-unused-vars */ 40 | conn.query(sql, args, (err, rows, fields) => { 41 | /* eslint-enable no-unused-vars */ 42 | // Call reject on error states, 43 | // call resolve with results 44 | if (err) { 45 | return reject(err); 46 | } 47 | resolve(rows); 48 | conn.end((err, args) => { 49 | if (err) { 50 | console.error(`Failed to close mysql connection: ${args}`); 51 | return; 52 | } 53 | }); 54 | }); 55 | }); 56 | } 57 | } 58 | 59 | module.exports = MySQLConnector; -------------------------------------------------------------------------------- /src/services/session-store.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const session = require('express-session'); 4 | const MySQLStore = require('express-mysql-session')(session); 5 | 6 | const config = require('../services/config.js'); 7 | const MySQLConnector = require('../services/mysql.js'); 8 | 9 | const { scanner, manualdb } = config.db; 10 | const dbSelection = manualdb.useFor.includes('session') ? manualdb : scanner; 11 | const db = new MySQLConnector(dbSelection); 12 | 13 | // MySQL session store 14 | const sessionStore = new MySQLStore({ 15 | // Database server IP address/hostname 16 | host: dbSelection.host, 17 | // Database server listening port 18 | port: dbSelection.port, 19 | // Database username 20 | user: dbSelection.username, 21 | // Password for the above database user 22 | password: dbSelection.password, 23 | // Database name to save sessions table to 24 | database: dbSelection.database, 25 | // Whether or not to automatically check for and clear expired sessions: 26 | clearExpired: true, 27 | // How frequently expired sessions will be cleared; milliseconds: 28 | checkExpirationInterval: 900000, 29 | // Whether or not to create the sessions database table, if one does not already exist 30 | createDatabaseTable: true, 31 | // Set Sessions table name 32 | schema: { 33 | tableName: dbSelection.sessionTable 34 | } 35 | }); 36 | 37 | const isValidSession = async (userId) => { 38 | let sql = ` 39 | SELECT session_id 40 | FROM ${dbSelection.sessionTable} 41 | WHERE 42 | json_extract(data, '$.user_id') = ? 43 | AND expires >= UNIX_TIMESTAMP() 44 | `; 45 | let args = [userId]; 46 | let results = await db.query(sql, args); 47 | return results.length <= config.maxSessions; 48 | }; 49 | 50 | const clearOtherSessions = async (userId, currentSessionId) => { 51 | let sql = ` 52 | DELETE FROM ${dbSelection.sessionTable} 53 | WHERE 54 | json_extract(data, '$.user_id') = ? 55 | AND session_id != ? 56 | `; 57 | let args = [userId, currentSessionId]; 58 | let results = await db.query(sql, args); 59 | console.log('[Session] Clear Result:', results); 60 | }; 61 | 62 | module.exports = { 63 | sessionStore, 64 | isValidSession, 65 | clearOtherSessions 66 | }; 67 | -------------------------------------------------------------------------------- /src/services/utils.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const config = require('../services/config.js'); 4 | 5 | const generateString = () => { 6 | return Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15); 7 | }; 8 | 9 | const hasGuild = (guilds) => { 10 | if (!config.discord.enabled) { 11 | return true; 12 | } 13 | if (config.discord.allowedGuilds.length === 0) { 14 | return true; 15 | } 16 | if (guilds.length === 0) { 17 | return false; 18 | } 19 | for (let i = 0; i < guilds.length; i++) { 20 | const guild = guilds[i]; 21 | if (config.discord.allowedGuilds.includes(guild)) { 22 | return true; 23 | } 24 | } 25 | return false; 26 | }; 27 | 28 | const hasRole = (userRoles, requiredRoles) => { 29 | if (!config.discord.enabled) { 30 | return true; 31 | } 32 | if (requiredRoles.length === 0) { 33 | return true; 34 | } 35 | if (userRoles.length === 0) { 36 | return false; 37 | } 38 | for (let i = 0; i < userRoles.length; i++) { 39 | const role = userRoles[i]; 40 | if (requiredRoles.includes(role)) { 41 | return true; 42 | } 43 | } 44 | return false; 45 | }; 46 | 47 | const zeroPad = (num, places) => String(num).padStart(places, '0'); 48 | 49 | module.exports = { 50 | generateString, 51 | hasGuild, 52 | hasRole, 53 | zeroPad 54 | }; 55 | -------------------------------------------------------------------------------- /src/views/429.mustache: -------------------------------------------------------------------------------- 1 | You are being rate limited, you are now on time out. -------------------------------------------------------------------------------- /src/views/footer.mustache: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/custom/areas.example.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "geometry": { 6 | "type": "Polygon", 7 | "coordinates": [ 8 | [ 9 | [ 10 | -100, 11 | 4 12 | ] 13 | ] 14 | ] 15 | }, 16 | "type": "Feature", 17 | "id": 0, 18 | "properties": { 19 | "name": "Unknown Areaname", 20 | "stroke-opacity": 1.0, 21 | "fill-opacity": 0.5, 22 | "stroke": "#352BFF", 23 | "stroke-width": 2.0, 24 | "fill": "#0651FF", 25 | "hidden": false 26 | } 27 | } 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /static/custom/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/custom/favicon.ico -------------------------------------------------------------------------------- /static/custom/nests.example.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "geometry": { 6 | "type": "Polygon", 7 | "coordinates": [ 8 | [ 9 | [ 10 | -100, 11 | 4 12 | ] 13 | ] 14 | ] 15 | }, 16 | "type": "Feature", 17 | "id": 0, 18 | "properties": { 19 | "name": "Unknown Areaname", 20 | "stroke-opacity": 1.0, 21 | "fill-opacity": 0.5, 22 | "stroke": "#352BFF", 23 | "stroke-width": 2.0, 24 | "fill": "#0651FF" 25 | } 26 | } 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /static/data/weathertypes.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "types": [], 4 | "name": "none" 5 | }, 6 | "1": { 7 | "types": ["fire","grass","ground"], 8 | "name": "clear" 9 | }, 10 | "2": { 11 | "types": ["water","electric","bug"], 12 | "name": "rain" 13 | }, 14 | "3": { 15 | "types": ["normal","rock"], 16 | "name": "partly_cloudy" 17 | }, 18 | "4": { 19 | "types": ["fairy","fighting","poison"], 20 | "name": "cloudy" 21 | }, 22 | "5": { 23 | "types": ["dragon","flying","psychic"], 24 | "name": "windy" 25 | }, 26 | "6": { 27 | "types": ["ice","steel"], 28 | "name": "snow" 29 | }, 30 | "7" : { 31 | "types": ["dark","ghost"], 32 | "name": "fog" 33 | } 34 | } -------------------------------------------------------------------------------- /static/img/battle/0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/0_0.png -------------------------------------------------------------------------------- /static/img/battle/1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/1_1.png -------------------------------------------------------------------------------- /static/img/battle/1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/1_2.png -------------------------------------------------------------------------------- /static/img/battle/1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/1_3.png -------------------------------------------------------------------------------- /static/img/battle/1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/1_4.png -------------------------------------------------------------------------------- /static/img/battle/1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/1_5.png -------------------------------------------------------------------------------- /static/img/battle/1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/1_6.png -------------------------------------------------------------------------------- /static/img/battle/2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/2_1.png -------------------------------------------------------------------------------- /static/img/battle/2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/2_2.png -------------------------------------------------------------------------------- /static/img/battle/2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/2_3.png -------------------------------------------------------------------------------- /static/img/battle/2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/2_4.png -------------------------------------------------------------------------------- /static/img/battle/2_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/2_5.png -------------------------------------------------------------------------------- /static/img/battle/2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/2_6.png -------------------------------------------------------------------------------- /static/img/battle/3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/3_1.png -------------------------------------------------------------------------------- /static/img/battle/3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/3_2.png -------------------------------------------------------------------------------- /static/img/battle/3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/3_3.png -------------------------------------------------------------------------------- /static/img/battle/3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/3_4.png -------------------------------------------------------------------------------- /static/img/battle/3_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/3_5.png -------------------------------------------------------------------------------- /static/img/battle/3_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/battle/3_6.png -------------------------------------------------------------------------------- /static/img/device/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/device/0.png -------------------------------------------------------------------------------- /static/img/device/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/device/1.png -------------------------------------------------------------------------------- /static/img/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/discord.png -------------------------------------------------------------------------------- /static/img/egg/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/egg/1.png -------------------------------------------------------------------------------- /static/img/egg/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/egg/2.png -------------------------------------------------------------------------------- /static/img/egg/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/egg/3.png -------------------------------------------------------------------------------- /static/img/egg/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/egg/4.png -------------------------------------------------------------------------------- /static/img/egg/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/egg/5.png -------------------------------------------------------------------------------- /static/img/egg/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/egg/6.png -------------------------------------------------------------------------------- /static/img/egg/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/egg/7.png -------------------------------------------------------------------------------- /static/img/egg/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/egg/8.png -------------------------------------------------------------------------------- /static/img/grunt/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/0.png -------------------------------------------------------------------------------- /static/img/grunt/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/1.png -------------------------------------------------------------------------------- /static/img/grunt/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/10.png -------------------------------------------------------------------------------- /static/img/grunt/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/11.png -------------------------------------------------------------------------------- /static/img/grunt/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/12.png -------------------------------------------------------------------------------- /static/img/grunt/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/13.png -------------------------------------------------------------------------------- /static/img/grunt/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/14.png -------------------------------------------------------------------------------- /static/img/grunt/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/15.png -------------------------------------------------------------------------------- /static/img/grunt/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/16.png -------------------------------------------------------------------------------- /static/img/grunt/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/17.png -------------------------------------------------------------------------------- /static/img/grunt/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/18.png -------------------------------------------------------------------------------- /static/img/grunt/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/19.png -------------------------------------------------------------------------------- /static/img/grunt/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/2.png -------------------------------------------------------------------------------- /static/img/grunt/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/20.png -------------------------------------------------------------------------------- /static/img/grunt/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/21.png -------------------------------------------------------------------------------- /static/img/grunt/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/22.png -------------------------------------------------------------------------------- /static/img/grunt/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/23.png -------------------------------------------------------------------------------- /static/img/grunt/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/24.png -------------------------------------------------------------------------------- /static/img/grunt/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/25.png -------------------------------------------------------------------------------- /static/img/grunt/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/26.png -------------------------------------------------------------------------------- /static/img/grunt/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/27.png -------------------------------------------------------------------------------- /static/img/grunt/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/28.png -------------------------------------------------------------------------------- /static/img/grunt/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/29.png -------------------------------------------------------------------------------- /static/img/grunt/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/3.png -------------------------------------------------------------------------------- /static/img/grunt/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/30.png -------------------------------------------------------------------------------- /static/img/grunt/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/31.png -------------------------------------------------------------------------------- /static/img/grunt/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/32.png -------------------------------------------------------------------------------- /static/img/grunt/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/33.png -------------------------------------------------------------------------------- /static/img/grunt/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/34.png -------------------------------------------------------------------------------- /static/img/grunt/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/35.png -------------------------------------------------------------------------------- /static/img/grunt/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/36.png -------------------------------------------------------------------------------- /static/img/grunt/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/37.png -------------------------------------------------------------------------------- /static/img/grunt/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/38.png -------------------------------------------------------------------------------- /static/img/grunt/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/39.png -------------------------------------------------------------------------------- /static/img/grunt/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/4.png -------------------------------------------------------------------------------- /static/img/grunt/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/40.png -------------------------------------------------------------------------------- /static/img/grunt/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/41.png -------------------------------------------------------------------------------- /static/img/grunt/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/42.png -------------------------------------------------------------------------------- /static/img/grunt/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/43.png -------------------------------------------------------------------------------- /static/img/grunt/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/44.png -------------------------------------------------------------------------------- /static/img/grunt/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/45.png -------------------------------------------------------------------------------- /static/img/grunt/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/46.png -------------------------------------------------------------------------------- /static/img/grunt/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/47.png -------------------------------------------------------------------------------- /static/img/grunt/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/48.png -------------------------------------------------------------------------------- /static/img/grunt/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/49.png -------------------------------------------------------------------------------- /static/img/grunt/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/5.png -------------------------------------------------------------------------------- /static/img/grunt/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/50.png -------------------------------------------------------------------------------- /static/img/grunt/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/500.png -------------------------------------------------------------------------------- /static/img/grunt/501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/501.png -------------------------------------------------------------------------------- /static/img/grunt/502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/502.png -------------------------------------------------------------------------------- /static/img/grunt/503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/503.png -------------------------------------------------------------------------------- /static/img/grunt/504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/504.png -------------------------------------------------------------------------------- /static/img/grunt/505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/505.png -------------------------------------------------------------------------------- /static/img/grunt/506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/506.png -------------------------------------------------------------------------------- /static/img/grunt/507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/507.png -------------------------------------------------------------------------------- /static/img/grunt/508.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/508.png -------------------------------------------------------------------------------- /static/img/grunt/509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/509.png -------------------------------------------------------------------------------- /static/img/grunt/510.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/510.png -------------------------------------------------------------------------------- /static/img/grunt/511.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/511.png -------------------------------------------------------------------------------- /static/img/grunt/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/512.png -------------------------------------------------------------------------------- /static/img/grunt/513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/513.png -------------------------------------------------------------------------------- /static/img/grunt/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/6.png -------------------------------------------------------------------------------- /static/img/grunt/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/7.png -------------------------------------------------------------------------------- /static/img/grunt/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/8.png -------------------------------------------------------------------------------- /static/img/grunt/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/grunt/9.png -------------------------------------------------------------------------------- /static/img/gym/0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/0_0.png -------------------------------------------------------------------------------- /static/img/gym/1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/1_1.png -------------------------------------------------------------------------------- /static/img/gym/1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/1_2.png -------------------------------------------------------------------------------- /static/img/gym/1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/1_3.png -------------------------------------------------------------------------------- /static/img/gym/1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/1_4.png -------------------------------------------------------------------------------- /static/img/gym/1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/1_5.png -------------------------------------------------------------------------------- /static/img/gym/1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/1_6.png -------------------------------------------------------------------------------- /static/img/gym/2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/2_1.png -------------------------------------------------------------------------------- /static/img/gym/2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/2_2.png -------------------------------------------------------------------------------- /static/img/gym/2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/2_3.png -------------------------------------------------------------------------------- /static/img/gym/2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/2_4.png -------------------------------------------------------------------------------- /static/img/gym/2_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/2_5.png -------------------------------------------------------------------------------- /static/img/gym/2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/2_6.png -------------------------------------------------------------------------------- /static/img/gym/3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/3_1.png -------------------------------------------------------------------------------- /static/img/gym/3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/3_2.png -------------------------------------------------------------------------------- /static/img/gym/3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/3_3.png -------------------------------------------------------------------------------- /static/img/gym/3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/3_4.png -------------------------------------------------------------------------------- /static/img/gym/3_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/3_5.png -------------------------------------------------------------------------------- /static/img/gym/3_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/gym/3_6.png -------------------------------------------------------------------------------- /static/img/invasion/i0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0.png -------------------------------------------------------------------------------- /static/img/invasion/i0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_0.png -------------------------------------------------------------------------------- /static/img/invasion/i0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_1.png -------------------------------------------------------------------------------- /static/img/invasion/i0_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_10.png -------------------------------------------------------------------------------- /static/img/invasion/i0_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_11.png -------------------------------------------------------------------------------- /static/img/invasion/i0_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_12.png -------------------------------------------------------------------------------- /static/img/invasion/i0_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_13.png -------------------------------------------------------------------------------- /static/img/invasion/i0_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_14.png -------------------------------------------------------------------------------- /static/img/invasion/i0_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_15.png -------------------------------------------------------------------------------- /static/img/invasion/i0_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_16.png -------------------------------------------------------------------------------- /static/img/invasion/i0_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_17.png -------------------------------------------------------------------------------- /static/img/invasion/i0_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_18.png -------------------------------------------------------------------------------- /static/img/invasion/i0_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_19.png -------------------------------------------------------------------------------- /static/img/invasion/i0_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_2.png -------------------------------------------------------------------------------- /static/img/invasion/i0_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_20.png -------------------------------------------------------------------------------- /static/img/invasion/i0_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_21.png -------------------------------------------------------------------------------- /static/img/invasion/i0_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_22.png -------------------------------------------------------------------------------- /static/img/invasion/i0_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_23.png -------------------------------------------------------------------------------- /static/img/invasion/i0_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_24.png -------------------------------------------------------------------------------- /static/img/invasion/i0_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_25.png -------------------------------------------------------------------------------- /static/img/invasion/i0_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_26.png -------------------------------------------------------------------------------- /static/img/invasion/i0_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_27.png -------------------------------------------------------------------------------- /static/img/invasion/i0_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_28.png -------------------------------------------------------------------------------- /static/img/invasion/i0_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_29.png -------------------------------------------------------------------------------- /static/img/invasion/i0_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_3.png -------------------------------------------------------------------------------- /static/img/invasion/i0_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_30.png -------------------------------------------------------------------------------- /static/img/invasion/i0_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_31.png -------------------------------------------------------------------------------- /static/img/invasion/i0_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_32.png -------------------------------------------------------------------------------- /static/img/invasion/i0_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_33.png -------------------------------------------------------------------------------- /static/img/invasion/i0_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_34.png -------------------------------------------------------------------------------- /static/img/invasion/i0_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_35.png -------------------------------------------------------------------------------- /static/img/invasion/i0_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_36.png -------------------------------------------------------------------------------- /static/img/invasion/i0_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_37.png -------------------------------------------------------------------------------- /static/img/invasion/i0_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_38.png -------------------------------------------------------------------------------- /static/img/invasion/i0_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_39.png -------------------------------------------------------------------------------- /static/img/invasion/i0_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_4.png -------------------------------------------------------------------------------- /static/img/invasion/i0_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_40.png -------------------------------------------------------------------------------- /static/img/invasion/i0_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_41.png -------------------------------------------------------------------------------- /static/img/invasion/i0_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_42.png -------------------------------------------------------------------------------- /static/img/invasion/i0_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_43.png -------------------------------------------------------------------------------- /static/img/invasion/i0_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_44.png -------------------------------------------------------------------------------- /static/img/invasion/i0_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_47.png -------------------------------------------------------------------------------- /static/img/invasion/i0_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_48.png -------------------------------------------------------------------------------- /static/img/invasion/i0_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_49.png -------------------------------------------------------------------------------- /static/img/invasion/i0_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_5.png -------------------------------------------------------------------------------- /static/img/invasion/i0_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_50.png -------------------------------------------------------------------------------- /static/img/invasion/i0_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_500.png -------------------------------------------------------------------------------- /static/img/invasion/i0_501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_501.png -------------------------------------------------------------------------------- /static/img/invasion/i0_502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_502.png -------------------------------------------------------------------------------- /static/img/invasion/i0_503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_503.png -------------------------------------------------------------------------------- /static/img/invasion/i0_504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_504.png -------------------------------------------------------------------------------- /static/img/invasion/i0_505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_505.png -------------------------------------------------------------------------------- /static/img/invasion/i0_506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_506.png -------------------------------------------------------------------------------- /static/img/invasion/i0_507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_507.png -------------------------------------------------------------------------------- /static/img/invasion/i0_509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_509.png -------------------------------------------------------------------------------- /static/img/invasion/i0_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_6.png -------------------------------------------------------------------------------- /static/img/invasion/i0_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_7.png -------------------------------------------------------------------------------- /static/img/invasion/i0_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_8.png -------------------------------------------------------------------------------- /static/img/invasion/i0_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_9.png -------------------------------------------------------------------------------- /static/img/invasion/i0_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_female.png -------------------------------------------------------------------------------- /static/img/invasion/i0_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i0_male.png -------------------------------------------------------------------------------- /static/img/invasion/i1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_0.png -------------------------------------------------------------------------------- /static/img/invasion/i1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_1.png -------------------------------------------------------------------------------- /static/img/invasion/i1_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_10.png -------------------------------------------------------------------------------- /static/img/invasion/i1_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_11.png -------------------------------------------------------------------------------- /static/img/invasion/i1_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_12.png -------------------------------------------------------------------------------- /static/img/invasion/i1_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_13.png -------------------------------------------------------------------------------- /static/img/invasion/i1_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_14.png -------------------------------------------------------------------------------- /static/img/invasion/i1_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_15.png -------------------------------------------------------------------------------- /static/img/invasion/i1_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_16.png -------------------------------------------------------------------------------- /static/img/invasion/i1_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_17.png -------------------------------------------------------------------------------- /static/img/invasion/i1_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_18.png -------------------------------------------------------------------------------- /static/img/invasion/i1_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_19.png -------------------------------------------------------------------------------- /static/img/invasion/i1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_2.png -------------------------------------------------------------------------------- /static/img/invasion/i1_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_20.png -------------------------------------------------------------------------------- /static/img/invasion/i1_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_21.png -------------------------------------------------------------------------------- /static/img/invasion/i1_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_22.png -------------------------------------------------------------------------------- /static/img/invasion/i1_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_23.png -------------------------------------------------------------------------------- /static/img/invasion/i1_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_24.png -------------------------------------------------------------------------------- /static/img/invasion/i1_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_25.png -------------------------------------------------------------------------------- /static/img/invasion/i1_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_26.png -------------------------------------------------------------------------------- /static/img/invasion/i1_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_27.png -------------------------------------------------------------------------------- /static/img/invasion/i1_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_28.png -------------------------------------------------------------------------------- /static/img/invasion/i1_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_29.png -------------------------------------------------------------------------------- /static/img/invasion/i1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_3.png -------------------------------------------------------------------------------- /static/img/invasion/i1_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_30.png -------------------------------------------------------------------------------- /static/img/invasion/i1_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_31.png -------------------------------------------------------------------------------- /static/img/invasion/i1_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_32.png -------------------------------------------------------------------------------- /static/img/invasion/i1_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_33.png -------------------------------------------------------------------------------- /static/img/invasion/i1_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_34.png -------------------------------------------------------------------------------- /static/img/invasion/i1_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_35.png -------------------------------------------------------------------------------- /static/img/invasion/i1_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_36.png -------------------------------------------------------------------------------- /static/img/invasion/i1_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_37.png -------------------------------------------------------------------------------- /static/img/invasion/i1_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_38.png -------------------------------------------------------------------------------- /static/img/invasion/i1_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_39.png -------------------------------------------------------------------------------- /static/img/invasion/i1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_4.png -------------------------------------------------------------------------------- /static/img/invasion/i1_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_40.png -------------------------------------------------------------------------------- /static/img/invasion/i1_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_41.png -------------------------------------------------------------------------------- /static/img/invasion/i1_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_42.png -------------------------------------------------------------------------------- /static/img/invasion/i1_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_43.png -------------------------------------------------------------------------------- /static/img/invasion/i1_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_44.png -------------------------------------------------------------------------------- /static/img/invasion/i1_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_47.png -------------------------------------------------------------------------------- /static/img/invasion/i1_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_48.png -------------------------------------------------------------------------------- /static/img/invasion/i1_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_49.png -------------------------------------------------------------------------------- /static/img/invasion/i1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_5.png -------------------------------------------------------------------------------- /static/img/invasion/i1_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_50.png -------------------------------------------------------------------------------- /static/img/invasion/i1_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_500.png -------------------------------------------------------------------------------- /static/img/invasion/i1_501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_501.png -------------------------------------------------------------------------------- /static/img/invasion/i1_502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_502.png -------------------------------------------------------------------------------- /static/img/invasion/i1_503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_503.png -------------------------------------------------------------------------------- /static/img/invasion/i1_504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_504.png -------------------------------------------------------------------------------- /static/img/invasion/i1_505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_505.png -------------------------------------------------------------------------------- /static/img/invasion/i1_506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_506.png -------------------------------------------------------------------------------- /static/img/invasion/i1_507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_507.png -------------------------------------------------------------------------------- /static/img/invasion/i1_509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_509.png -------------------------------------------------------------------------------- /static/img/invasion/i1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_6.png -------------------------------------------------------------------------------- /static/img/invasion/i1_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_7.png -------------------------------------------------------------------------------- /static/img/invasion/i1_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_8.png -------------------------------------------------------------------------------- /static/img/invasion/i1_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_9.png -------------------------------------------------------------------------------- /static/img/invasion/i1_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_female.png -------------------------------------------------------------------------------- /static/img/invasion/i1_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i1_male.png -------------------------------------------------------------------------------- /static/img/invasion/i2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_0.png -------------------------------------------------------------------------------- /static/img/invasion/i2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_1.png -------------------------------------------------------------------------------- /static/img/invasion/i2_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_10.png -------------------------------------------------------------------------------- /static/img/invasion/i2_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_11.png -------------------------------------------------------------------------------- /static/img/invasion/i2_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_12.png -------------------------------------------------------------------------------- /static/img/invasion/i2_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_13.png -------------------------------------------------------------------------------- /static/img/invasion/i2_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_14.png -------------------------------------------------------------------------------- /static/img/invasion/i2_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_15.png -------------------------------------------------------------------------------- /static/img/invasion/i2_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_16.png -------------------------------------------------------------------------------- /static/img/invasion/i2_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_17.png -------------------------------------------------------------------------------- /static/img/invasion/i2_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_18.png -------------------------------------------------------------------------------- /static/img/invasion/i2_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_19.png -------------------------------------------------------------------------------- /static/img/invasion/i2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_2.png -------------------------------------------------------------------------------- /static/img/invasion/i2_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_20.png -------------------------------------------------------------------------------- /static/img/invasion/i2_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_21.png -------------------------------------------------------------------------------- /static/img/invasion/i2_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_22.png -------------------------------------------------------------------------------- /static/img/invasion/i2_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_23.png -------------------------------------------------------------------------------- /static/img/invasion/i2_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_24.png -------------------------------------------------------------------------------- /static/img/invasion/i2_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_25.png -------------------------------------------------------------------------------- /static/img/invasion/i2_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_26.png -------------------------------------------------------------------------------- /static/img/invasion/i2_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_27.png -------------------------------------------------------------------------------- /static/img/invasion/i2_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_28.png -------------------------------------------------------------------------------- /static/img/invasion/i2_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_29.png -------------------------------------------------------------------------------- /static/img/invasion/i2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_3.png -------------------------------------------------------------------------------- /static/img/invasion/i2_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_30.png -------------------------------------------------------------------------------- /static/img/invasion/i2_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_31.png -------------------------------------------------------------------------------- /static/img/invasion/i2_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_32.png -------------------------------------------------------------------------------- /static/img/invasion/i2_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_33.png -------------------------------------------------------------------------------- /static/img/invasion/i2_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_34.png -------------------------------------------------------------------------------- /static/img/invasion/i2_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_35.png -------------------------------------------------------------------------------- /static/img/invasion/i2_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_36.png -------------------------------------------------------------------------------- /static/img/invasion/i2_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_37.png -------------------------------------------------------------------------------- /static/img/invasion/i2_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_38.png -------------------------------------------------------------------------------- /static/img/invasion/i2_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_39.png -------------------------------------------------------------------------------- /static/img/invasion/i2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_4.png -------------------------------------------------------------------------------- /static/img/invasion/i2_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_40.png -------------------------------------------------------------------------------- /static/img/invasion/i2_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_41.png -------------------------------------------------------------------------------- /static/img/invasion/i2_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_42.png -------------------------------------------------------------------------------- /static/img/invasion/i2_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_43.png -------------------------------------------------------------------------------- /static/img/invasion/i2_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_44.png -------------------------------------------------------------------------------- /static/img/invasion/i2_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_47.png -------------------------------------------------------------------------------- /static/img/invasion/i2_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_48.png -------------------------------------------------------------------------------- /static/img/invasion/i2_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_49.png -------------------------------------------------------------------------------- /static/img/invasion/i2_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_5.png -------------------------------------------------------------------------------- /static/img/invasion/i2_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_50.png -------------------------------------------------------------------------------- /static/img/invasion/i2_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_500.png -------------------------------------------------------------------------------- /static/img/invasion/i2_501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_501.png -------------------------------------------------------------------------------- /static/img/invasion/i2_502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_502.png -------------------------------------------------------------------------------- /static/img/invasion/i2_503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_503.png -------------------------------------------------------------------------------- /static/img/invasion/i2_504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_504.png -------------------------------------------------------------------------------- /static/img/invasion/i2_505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_505.png -------------------------------------------------------------------------------- /static/img/invasion/i2_506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_506.png -------------------------------------------------------------------------------- /static/img/invasion/i2_507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_507.png -------------------------------------------------------------------------------- /static/img/invasion/i2_509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_509.png -------------------------------------------------------------------------------- /static/img/invasion/i2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_6.png -------------------------------------------------------------------------------- /static/img/invasion/i2_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_7.png -------------------------------------------------------------------------------- /static/img/invasion/i2_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_8.png -------------------------------------------------------------------------------- /static/img/invasion/i2_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_9.png -------------------------------------------------------------------------------- /static/img/invasion/i2_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_female.png -------------------------------------------------------------------------------- /static/img/invasion/i2_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i2_male.png -------------------------------------------------------------------------------- /static/img/invasion/i3_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_0.png -------------------------------------------------------------------------------- /static/img/invasion/i3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_1.png -------------------------------------------------------------------------------- /static/img/invasion/i3_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_10.png -------------------------------------------------------------------------------- /static/img/invasion/i3_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_11.png -------------------------------------------------------------------------------- /static/img/invasion/i3_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_12.png -------------------------------------------------------------------------------- /static/img/invasion/i3_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_13.png -------------------------------------------------------------------------------- /static/img/invasion/i3_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_14.png -------------------------------------------------------------------------------- /static/img/invasion/i3_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_15.png -------------------------------------------------------------------------------- /static/img/invasion/i3_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_16.png -------------------------------------------------------------------------------- /static/img/invasion/i3_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_17.png -------------------------------------------------------------------------------- /static/img/invasion/i3_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_18.png -------------------------------------------------------------------------------- /static/img/invasion/i3_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_19.png -------------------------------------------------------------------------------- /static/img/invasion/i3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_2.png -------------------------------------------------------------------------------- /static/img/invasion/i3_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_20.png -------------------------------------------------------------------------------- /static/img/invasion/i3_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_21.png -------------------------------------------------------------------------------- /static/img/invasion/i3_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_22.png -------------------------------------------------------------------------------- /static/img/invasion/i3_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_23.png -------------------------------------------------------------------------------- /static/img/invasion/i3_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_24.png -------------------------------------------------------------------------------- /static/img/invasion/i3_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_25.png -------------------------------------------------------------------------------- /static/img/invasion/i3_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_26.png -------------------------------------------------------------------------------- /static/img/invasion/i3_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_27.png -------------------------------------------------------------------------------- /static/img/invasion/i3_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_28.png -------------------------------------------------------------------------------- /static/img/invasion/i3_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_29.png -------------------------------------------------------------------------------- /static/img/invasion/i3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_3.png -------------------------------------------------------------------------------- /static/img/invasion/i3_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_30.png -------------------------------------------------------------------------------- /static/img/invasion/i3_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_31.png -------------------------------------------------------------------------------- /static/img/invasion/i3_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_32.png -------------------------------------------------------------------------------- /static/img/invasion/i3_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_33.png -------------------------------------------------------------------------------- /static/img/invasion/i3_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_34.png -------------------------------------------------------------------------------- /static/img/invasion/i3_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_35.png -------------------------------------------------------------------------------- /static/img/invasion/i3_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_36.png -------------------------------------------------------------------------------- /static/img/invasion/i3_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_37.png -------------------------------------------------------------------------------- /static/img/invasion/i3_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_38.png -------------------------------------------------------------------------------- /static/img/invasion/i3_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_39.png -------------------------------------------------------------------------------- /static/img/invasion/i3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_4.png -------------------------------------------------------------------------------- /static/img/invasion/i3_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_40.png -------------------------------------------------------------------------------- /static/img/invasion/i3_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_41.png -------------------------------------------------------------------------------- /static/img/invasion/i3_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_42.png -------------------------------------------------------------------------------- /static/img/invasion/i3_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_43.png -------------------------------------------------------------------------------- /static/img/invasion/i3_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_44.png -------------------------------------------------------------------------------- /static/img/invasion/i3_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_47.png -------------------------------------------------------------------------------- /static/img/invasion/i3_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_48.png -------------------------------------------------------------------------------- /static/img/invasion/i3_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_49.png -------------------------------------------------------------------------------- /static/img/invasion/i3_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_5.png -------------------------------------------------------------------------------- /static/img/invasion/i3_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_50.png -------------------------------------------------------------------------------- /static/img/invasion/i3_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_500.png -------------------------------------------------------------------------------- /static/img/invasion/i3_501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_501.png -------------------------------------------------------------------------------- /static/img/invasion/i3_502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_502.png -------------------------------------------------------------------------------- /static/img/invasion/i3_503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_503.png -------------------------------------------------------------------------------- /static/img/invasion/i3_504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_504.png -------------------------------------------------------------------------------- /static/img/invasion/i3_505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_505.png -------------------------------------------------------------------------------- /static/img/invasion/i3_506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_506.png -------------------------------------------------------------------------------- /static/img/invasion/i3_507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_507.png -------------------------------------------------------------------------------- /static/img/invasion/i3_509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_509.png -------------------------------------------------------------------------------- /static/img/invasion/i3_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_6.png -------------------------------------------------------------------------------- /static/img/invasion/i3_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_7.png -------------------------------------------------------------------------------- /static/img/invasion/i3_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_8.png -------------------------------------------------------------------------------- /static/img/invasion/i3_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_9.png -------------------------------------------------------------------------------- /static/img/invasion/i3_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_female.png -------------------------------------------------------------------------------- /static/img/invasion/i3_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i3_male.png -------------------------------------------------------------------------------- /static/img/invasion/i4_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_0.png -------------------------------------------------------------------------------- /static/img/invasion/i4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_1.png -------------------------------------------------------------------------------- /static/img/invasion/i4_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_10.png -------------------------------------------------------------------------------- /static/img/invasion/i4_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_11.png -------------------------------------------------------------------------------- /static/img/invasion/i4_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_12.png -------------------------------------------------------------------------------- /static/img/invasion/i4_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_13.png -------------------------------------------------------------------------------- /static/img/invasion/i4_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_14.png -------------------------------------------------------------------------------- /static/img/invasion/i4_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_15.png -------------------------------------------------------------------------------- /static/img/invasion/i4_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_16.png -------------------------------------------------------------------------------- /static/img/invasion/i4_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_17.png -------------------------------------------------------------------------------- /static/img/invasion/i4_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_18.png -------------------------------------------------------------------------------- /static/img/invasion/i4_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_19.png -------------------------------------------------------------------------------- /static/img/invasion/i4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_2.png -------------------------------------------------------------------------------- /static/img/invasion/i4_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_20.png -------------------------------------------------------------------------------- /static/img/invasion/i4_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_21.png -------------------------------------------------------------------------------- /static/img/invasion/i4_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_22.png -------------------------------------------------------------------------------- /static/img/invasion/i4_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_23.png -------------------------------------------------------------------------------- /static/img/invasion/i4_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_24.png -------------------------------------------------------------------------------- /static/img/invasion/i4_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_25.png -------------------------------------------------------------------------------- /static/img/invasion/i4_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_26.png -------------------------------------------------------------------------------- /static/img/invasion/i4_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_27.png -------------------------------------------------------------------------------- /static/img/invasion/i4_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_28.png -------------------------------------------------------------------------------- /static/img/invasion/i4_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_29.png -------------------------------------------------------------------------------- /static/img/invasion/i4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_3.png -------------------------------------------------------------------------------- /static/img/invasion/i4_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_30.png -------------------------------------------------------------------------------- /static/img/invasion/i4_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_31.png -------------------------------------------------------------------------------- /static/img/invasion/i4_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_32.png -------------------------------------------------------------------------------- /static/img/invasion/i4_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_33.png -------------------------------------------------------------------------------- /static/img/invasion/i4_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_34.png -------------------------------------------------------------------------------- /static/img/invasion/i4_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_35.png -------------------------------------------------------------------------------- /static/img/invasion/i4_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_36.png -------------------------------------------------------------------------------- /static/img/invasion/i4_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_37.png -------------------------------------------------------------------------------- /static/img/invasion/i4_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_38.png -------------------------------------------------------------------------------- /static/img/invasion/i4_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_39.png -------------------------------------------------------------------------------- /static/img/invasion/i4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_4.png -------------------------------------------------------------------------------- /static/img/invasion/i4_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_40.png -------------------------------------------------------------------------------- /static/img/invasion/i4_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_41.png -------------------------------------------------------------------------------- /static/img/invasion/i4_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_42.png -------------------------------------------------------------------------------- /static/img/invasion/i4_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_43.png -------------------------------------------------------------------------------- /static/img/invasion/i4_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_44.png -------------------------------------------------------------------------------- /static/img/invasion/i4_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_47.png -------------------------------------------------------------------------------- /static/img/invasion/i4_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_48.png -------------------------------------------------------------------------------- /static/img/invasion/i4_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_49.png -------------------------------------------------------------------------------- /static/img/invasion/i4_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_5.png -------------------------------------------------------------------------------- /static/img/invasion/i4_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_50.png -------------------------------------------------------------------------------- /static/img/invasion/i4_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_500.png -------------------------------------------------------------------------------- /static/img/invasion/i4_501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_501.png -------------------------------------------------------------------------------- /static/img/invasion/i4_502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_502.png -------------------------------------------------------------------------------- /static/img/invasion/i4_503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_503.png -------------------------------------------------------------------------------- /static/img/invasion/i4_504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_504.png -------------------------------------------------------------------------------- /static/img/invasion/i4_505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_505.png -------------------------------------------------------------------------------- /static/img/invasion/i4_506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_506.png -------------------------------------------------------------------------------- /static/img/invasion/i4_507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_507.png -------------------------------------------------------------------------------- /static/img/invasion/i4_509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_509.png -------------------------------------------------------------------------------- /static/img/invasion/i4_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_6.png -------------------------------------------------------------------------------- /static/img/invasion/i4_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_7.png -------------------------------------------------------------------------------- /static/img/invasion/i4_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_8.png -------------------------------------------------------------------------------- /static/img/invasion/i4_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_9.png -------------------------------------------------------------------------------- /static/img/invasion/i4_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_female.png -------------------------------------------------------------------------------- /static/img/invasion/i4_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i4_male.png -------------------------------------------------------------------------------- /static/img/invasion/i5_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i5_0.png -------------------------------------------------------------------------------- /static/img/invasion/i5_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i5_500.png -------------------------------------------------------------------------------- /static/img/invasion/i5_501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i5_501.png -------------------------------------------------------------------------------- /static/img/invasion/i5_502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i5_502.png -------------------------------------------------------------------------------- /static/img/invasion/i5_503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i5_503.png -------------------------------------------------------------------------------- /static/img/invasion/i5_504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i5_504.png -------------------------------------------------------------------------------- /static/img/invasion/i5_505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i5_505.png -------------------------------------------------------------------------------- /static/img/invasion/i5_506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i5_506.png -------------------------------------------------------------------------------- /static/img/invasion/i5_507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i5_507.png -------------------------------------------------------------------------------- /static/img/invasion/i5_509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i5_509.png -------------------------------------------------------------------------------- /static/img/invasion/i_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_1.png -------------------------------------------------------------------------------- /static/img/invasion/i_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_10.png -------------------------------------------------------------------------------- /static/img/invasion/i_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_11.png -------------------------------------------------------------------------------- /static/img/invasion/i_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_12.png -------------------------------------------------------------------------------- /static/img/invasion/i_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_13.png -------------------------------------------------------------------------------- /static/img/invasion/i_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_14.png -------------------------------------------------------------------------------- /static/img/invasion/i_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_15.png -------------------------------------------------------------------------------- /static/img/invasion/i_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_16.png -------------------------------------------------------------------------------- /static/img/invasion/i_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_17.png -------------------------------------------------------------------------------- /static/img/invasion/i_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_18.png -------------------------------------------------------------------------------- /static/img/invasion/i_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_19.png -------------------------------------------------------------------------------- /static/img/invasion/i_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_2.png -------------------------------------------------------------------------------- /static/img/invasion/i_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_20.png -------------------------------------------------------------------------------- /static/img/invasion/i_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_21.png -------------------------------------------------------------------------------- /static/img/invasion/i_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_22.png -------------------------------------------------------------------------------- /static/img/invasion/i_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_23.png -------------------------------------------------------------------------------- /static/img/invasion/i_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_24.png -------------------------------------------------------------------------------- /static/img/invasion/i_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_25.png -------------------------------------------------------------------------------- /static/img/invasion/i_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_26.png -------------------------------------------------------------------------------- /static/img/invasion/i_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_27.png -------------------------------------------------------------------------------- /static/img/invasion/i_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_28.png -------------------------------------------------------------------------------- /static/img/invasion/i_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_29.png -------------------------------------------------------------------------------- /static/img/invasion/i_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_3.png -------------------------------------------------------------------------------- /static/img/invasion/i_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_30.png -------------------------------------------------------------------------------- /static/img/invasion/i_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_31.png -------------------------------------------------------------------------------- /static/img/invasion/i_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_32.png -------------------------------------------------------------------------------- /static/img/invasion/i_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_33.png -------------------------------------------------------------------------------- /static/img/invasion/i_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_34.png -------------------------------------------------------------------------------- /static/img/invasion/i_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_35.png -------------------------------------------------------------------------------- /static/img/invasion/i_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_36.png -------------------------------------------------------------------------------- /static/img/invasion/i_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_37.png -------------------------------------------------------------------------------- /static/img/invasion/i_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_38.png -------------------------------------------------------------------------------- /static/img/invasion/i_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_39.png -------------------------------------------------------------------------------- /static/img/invasion/i_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_4.png -------------------------------------------------------------------------------- /static/img/invasion/i_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_40.png -------------------------------------------------------------------------------- /static/img/invasion/i_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_41.png -------------------------------------------------------------------------------- /static/img/invasion/i_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_42.png -------------------------------------------------------------------------------- /static/img/invasion/i_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_43.png -------------------------------------------------------------------------------- /static/img/invasion/i_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_44.png -------------------------------------------------------------------------------- /static/img/invasion/i_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_47.png -------------------------------------------------------------------------------- /static/img/invasion/i_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_48.png -------------------------------------------------------------------------------- /static/img/invasion/i_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_49.png -------------------------------------------------------------------------------- /static/img/invasion/i_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_5.png -------------------------------------------------------------------------------- /static/img/invasion/i_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_50.png -------------------------------------------------------------------------------- /static/img/invasion/i_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_6.png -------------------------------------------------------------------------------- /static/img/invasion/i_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_7.png -------------------------------------------------------------------------------- /static/img/invasion/i_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_8.png -------------------------------------------------------------------------------- /static/img/invasion/i_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_9.png -------------------------------------------------------------------------------- /static/img/invasion/i_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_female.png -------------------------------------------------------------------------------- /static/img/invasion/i_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/invasion/i_male.png -------------------------------------------------------------------------------- /static/img/item/-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/-0.png -------------------------------------------------------------------------------- /static/img/item/-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/-1.png -------------------------------------------------------------------------------- /static/img/item/-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/-2.png -------------------------------------------------------------------------------- /static/img/item/-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/-3.png -------------------------------------------------------------------------------- /static/img/item/-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/-4.png -------------------------------------------------------------------------------- /static/img/item/-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/-5.png -------------------------------------------------------------------------------- /static/img/item/-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/-6.png -------------------------------------------------------------------------------- /static/img/item/-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/-7.png -------------------------------------------------------------------------------- /static/img/item/-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/-8.png -------------------------------------------------------------------------------- /static/img/item/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/0.png -------------------------------------------------------------------------------- /static/img/item/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1.png -------------------------------------------------------------------------------- /static/img/item/101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/101.png -------------------------------------------------------------------------------- /static/img/item/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/102.png -------------------------------------------------------------------------------- /static/img/item/103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/103.png -------------------------------------------------------------------------------- /static/img/item/104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/104.png -------------------------------------------------------------------------------- /static/img/item/1101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1101.png -------------------------------------------------------------------------------- /static/img/item/1102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1102.png -------------------------------------------------------------------------------- /static/img/item/1103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1103.png -------------------------------------------------------------------------------- /static/img/item/1104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1104.png -------------------------------------------------------------------------------- /static/img/item/1105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1105.png -------------------------------------------------------------------------------- /static/img/item/1106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1106.png -------------------------------------------------------------------------------- /static/img/item/1107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1107.png -------------------------------------------------------------------------------- /static/img/item/1201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1201.png -------------------------------------------------------------------------------- /static/img/item/1202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1202.png -------------------------------------------------------------------------------- /static/img/item/1301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1301.png -------------------------------------------------------------------------------- /static/img/item/1401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1401.png -------------------------------------------------------------------------------- /static/img/item/1402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1402.png -------------------------------------------------------------------------------- /static/img/item/1403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1403.png -------------------------------------------------------------------------------- /static/img/item/1404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/1404.png -------------------------------------------------------------------------------- /static/img/item/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/2.png -------------------------------------------------------------------------------- /static/img/item/201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/201.png -------------------------------------------------------------------------------- /static/img/item/202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/202.png -------------------------------------------------------------------------------- /static/img/item/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/3.png -------------------------------------------------------------------------------- /static/img/item/301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/301.png -------------------------------------------------------------------------------- /static/img/item/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/4.png -------------------------------------------------------------------------------- /static/img/item/401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/401.png -------------------------------------------------------------------------------- /static/img/item/501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/501.png -------------------------------------------------------------------------------- /static/img/item/502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/502.png -------------------------------------------------------------------------------- /static/img/item/503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/503.png -------------------------------------------------------------------------------- /static/img/item/504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/504.png -------------------------------------------------------------------------------- /static/img/item/701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/701.png -------------------------------------------------------------------------------- /static/img/item/702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/702.png -------------------------------------------------------------------------------- /static/img/item/703.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/703.png -------------------------------------------------------------------------------- /static/img/item/704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/704.png -------------------------------------------------------------------------------- /static/img/item/705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/705.png -------------------------------------------------------------------------------- /static/img/item/706.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/706.png -------------------------------------------------------------------------------- /static/img/item/707.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/707.png -------------------------------------------------------------------------------- /static/img/item/708.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/item/708.png -------------------------------------------------------------------------------- /static/img/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/landing.png -------------------------------------------------------------------------------- /static/img/misc/ar-gym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/ar-gym.png -------------------------------------------------------------------------------- /static/img/misc/ar-pokestop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/ar-pokestop.png -------------------------------------------------------------------------------- /static/img/misc/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/ar.png -------------------------------------------------------------------------------- /static/img/misc/ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/ex.png -------------------------------------------------------------------------------- /static/img/misc/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/first.png -------------------------------------------------------------------------------- /static/img/misc/great.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/great.png -------------------------------------------------------------------------------- /static/img/misc/gym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/gym.png -------------------------------------------------------------------------------- /static/img/misc/little.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/little.png -------------------------------------------------------------------------------- /static/img/misc/master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/master.png -------------------------------------------------------------------------------- /static/img/misc/nest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/nest.png -------------------------------------------------------------------------------- /static/img/misc/pokestop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/pokestop.png -------------------------------------------------------------------------------- /static/img/misc/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/portal.png -------------------------------------------------------------------------------- /static/img/misc/reward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/reward.png -------------------------------------------------------------------------------- /static/img/misc/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/second.png -------------------------------------------------------------------------------- /static/img/misc/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/shadow.png -------------------------------------------------------------------------------- /static/img/misc/sparkles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/sparkles.png -------------------------------------------------------------------------------- /static/img/misc/third.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/third.png -------------------------------------------------------------------------------- /static/img/misc/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/timer.png -------------------------------------------------------------------------------- /static/img/misc/ultra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/ultra.png -------------------------------------------------------------------------------- /static/img/misc/verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/misc/verified.png -------------------------------------------------------------------------------- /static/img/navigation/applemaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/navigation/applemaps.png -------------------------------------------------------------------------------- /static/img/navigation/gmaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/navigation/gmaps.png -------------------------------------------------------------------------------- /static/img/navigation/othermaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/navigation/othermaps.png -------------------------------------------------------------------------------- /static/img/nest/nest-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-bug.png -------------------------------------------------------------------------------- /static/img/nest/nest-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-dark.png -------------------------------------------------------------------------------- /static/img/nest/nest-dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-dragon.png -------------------------------------------------------------------------------- /static/img/nest/nest-electric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-electric.png -------------------------------------------------------------------------------- /static/img/nest/nest-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-empty.png -------------------------------------------------------------------------------- /static/img/nest/nest-fairy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-fairy.png -------------------------------------------------------------------------------- /static/img/nest/nest-fighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-fighting.png -------------------------------------------------------------------------------- /static/img/nest/nest-fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-fire.png -------------------------------------------------------------------------------- /static/img/nest/nest-flying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-flying.png -------------------------------------------------------------------------------- /static/img/nest/nest-ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-ghost.png -------------------------------------------------------------------------------- /static/img/nest/nest-grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-grass.png -------------------------------------------------------------------------------- /static/img/nest/nest-ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-ground.png -------------------------------------------------------------------------------- /static/img/nest/nest-ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-ice.png -------------------------------------------------------------------------------- /static/img/nest/nest-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-normal.png -------------------------------------------------------------------------------- /static/img/nest/nest-poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-poison.png -------------------------------------------------------------------------------- /static/img/nest/nest-psychic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-psychic.png -------------------------------------------------------------------------------- /static/img/nest/nest-rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-rock.png -------------------------------------------------------------------------------- /static/img/nest/nest-steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-steel.png -------------------------------------------------------------------------------- /static/img/nest/nest-water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest-water.png -------------------------------------------------------------------------------- /static/img/nest/nest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nest.png -------------------------------------------------------------------------------- /static/img/nest/nests.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/nest/nests.psd -------------------------------------------------------------------------------- /static/img/pokemon/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /static/img/pokestop/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/pokestop/0.png -------------------------------------------------------------------------------- /static/img/pokestop/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/pokestop/1.png -------------------------------------------------------------------------------- /static/img/pokestop/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/pokestop/2.png -------------------------------------------------------------------------------- /static/img/pokestop/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/pokestop/3.png -------------------------------------------------------------------------------- /static/img/pokestop/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/pokestop/4.png -------------------------------------------------------------------------------- /static/img/pokestop/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/pokestop/5.png -------------------------------------------------------------------------------- /static/img/pokestop/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/pokestop/i.png -------------------------------------------------------------------------------- /static/img/pokestop/i0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/pokestop/i0.png -------------------------------------------------------------------------------- /static/img/pokestop/i1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/pokestop/i1.png -------------------------------------------------------------------------------- /static/img/pokestop/i2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/pokestop/i2.png -------------------------------------------------------------------------------- /static/img/pokestop/i3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/pokestop/i3.png -------------------------------------------------------------------------------- /static/img/pokestop/i4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/pokestop/i4.png -------------------------------------------------------------------------------- /static/img/pokestop/i5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/pokestop/i5.png -------------------------------------------------------------------------------- /static/img/spawnpoint/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/spawnpoint/0.png -------------------------------------------------------------------------------- /static/img/spawnpoint/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/spawnpoint/1.png -------------------------------------------------------------------------------- /static/img/team/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/team/0.png -------------------------------------------------------------------------------- /static/img/team/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/team/1.png -------------------------------------------------------------------------------- /static/img/team/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/team/2.png -------------------------------------------------------------------------------- /static/img/team/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/team/3.png -------------------------------------------------------------------------------- /static/img/type/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/bug.png -------------------------------------------------------------------------------- /static/img/type/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/dark.png -------------------------------------------------------------------------------- /static/img/type/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/dragon.png -------------------------------------------------------------------------------- /static/img/type/electric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/electric.png -------------------------------------------------------------------------------- /static/img/type/fairy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/fairy.png -------------------------------------------------------------------------------- /static/img/type/fighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/fighting.png -------------------------------------------------------------------------------- /static/img/type/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/fire.png -------------------------------------------------------------------------------- /static/img/type/flying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/flying.png -------------------------------------------------------------------------------- /static/img/type/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/ghost.png -------------------------------------------------------------------------------- /static/img/type/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/grass.png -------------------------------------------------------------------------------- /static/img/type/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/ground.png -------------------------------------------------------------------------------- /static/img/type/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/ice.png -------------------------------------------------------------------------------- /static/img/type/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/normal.png -------------------------------------------------------------------------------- /static/img/type/poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/poison.png -------------------------------------------------------------------------------- /static/img/type/psychic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/psychic.png -------------------------------------------------------------------------------- /static/img/type/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/rock.png -------------------------------------------------------------------------------- /static/img/type/steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/steel.png -------------------------------------------------------------------------------- /static/img/type/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/type/water.png -------------------------------------------------------------------------------- /static/img/unknown_egg/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/unknown_egg/1.png -------------------------------------------------------------------------------- /static/img/unknown_egg/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/unknown_egg/2.png -------------------------------------------------------------------------------- /static/img/unknown_egg/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/unknown_egg/3.png -------------------------------------------------------------------------------- /static/img/unknown_egg/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/unknown_egg/4.png -------------------------------------------------------------------------------- /static/img/unknown_egg/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/unknown_egg/5.png -------------------------------------------------------------------------------- /static/img/unknown_egg/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/unknown_egg/6.png -------------------------------------------------------------------------------- /static/img/weather/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/weather/1.png -------------------------------------------------------------------------------- /static/img/weather/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/weather/2.png -------------------------------------------------------------------------------- /static/img/weather/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/weather/3.png -------------------------------------------------------------------------------- /static/img/weather/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/weather/4.png -------------------------------------------------------------------------------- /static/img/weather/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/weather/5.png -------------------------------------------------------------------------------- /static/img/weather/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/weather/6.png -------------------------------------------------------------------------------- /static/img/weather/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/img/weather/7.png -------------------------------------------------------------------------------- /static/js/i18n.min.js: -------------------------------------------------------------------------------- 1 | (function(){var t,n,e,r=function(t,n){return function(){return t.apply(n,arguments)}};t=function(){function t(){this.translate=r(this.translate,this),this.data={},this.globalContext={}}return t.prototype.translate=function(t,n,e,r,l){var o,a,i,u;return null==l&&(l=this.globalContext),(i=function(t){var n;return"function"===(n=typeof t)||"object"===n&&!!t})(n)?(o=null,u=null,a=n,l=e||this.globalContext):"number"==typeof n?(o=null,u=n,a=e,l=r||this.globalContext):(o=n,"number"==typeof e?(u=e,a=r,l=l):(u=null,a=e,l=r||this.globalContext)),i(t)?(i(t.i18n)&&(t=t.i18n),this.translateHash(t,l)):this.translateText(t,u,a,l,o)},t.prototype.add=function(t){var n,e,r,l,o,a,i,u;if(null!=t)for(e in a=t)r=a[e],this.data[e]=r;if(null!=t.contexts){for(u=[],l=0,o=(i=t.contexts).length;l=(o=a[i])[0]||null===o[0])&&(n<=o[1]||null===o[1]))return l=this.applyFormatting(o[2].replace("-%n",String(-n)),n,e),this.applyFormatting(l.replace("%n",String(n)),n,e);return null},t.prototype.getContextData=function(t,n){var e,r,l,o,a,i,u,s;if(null==t.contexts)return null;for(a=0,i=(u=t.contexts).length;a 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/svg/settings.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatWowMap/MapJS/5cb2aa8ca10590d2d55a1d6df4e5da77348334d9/static/webfonts/fa-solid-900.woff2 --------------------------------------------------------------------------------