├── .dvc ├── .gitignore └── config ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── check commits.yml │ ├── frontend-build.yml │ ├── map-deploy.yml │ ├── tile-compiler-build.yml │ └── update-wiki-sources.yml ├── .gitignore ├── .gitmodules ├── README.md ├── build ├── Dockerfile └── compile.sh ├── frontend ├── index.html ├── package-lock.json ├── package.json ├── public │ └── fonts │ │ └── NotoSans-Medium │ │ ├── 0-255.pbf │ │ ├── 1024-1279.pbf │ │ ├── 10240-10495.pbf │ │ ├── 10496-10751.pbf │ │ ├── 10752-11007.pbf │ │ ├── 11008-11263.pbf │ │ ├── 11264-11519.pbf │ │ ├── 11520-11775.pbf │ │ ├── 11776-12031.pbf │ │ ├── 12032-12287.pbf │ │ ├── 12288-12543.pbf │ │ ├── 12544-12799.pbf │ │ ├── 1280-1535.pbf │ │ ├── 12800-13055.pbf │ │ ├── 13056-13311.pbf │ │ ├── 13312-13567.pbf │ │ ├── 13568-13823.pbf │ │ ├── 13824-14079.pbf │ │ ├── 14080-14335.pbf │ │ ├── 14336-14591.pbf │ │ ├── 14592-14847.pbf │ │ ├── 14848-15103.pbf │ │ ├── 15104-15359.pbf │ │ ├── 1536-1791.pbf │ │ ├── 15360-15615.pbf │ │ ├── 15616-15871.pbf │ │ ├── 15872-16127.pbf │ │ ├── 16128-16383.pbf │ │ ├── 16384-16639.pbf │ │ ├── 16640-16895.pbf │ │ ├── 16896-17151.pbf │ │ ├── 17152-17407.pbf │ │ ├── 17408-17663.pbf │ │ ├── 17664-17919.pbf │ │ ├── 1792-2047.pbf │ │ ├── 17920-18175.pbf │ │ ├── 18176-18431.pbf │ │ ├── 18432-18687.pbf │ │ ├── 18688-18943.pbf │ │ ├── 18944-19199.pbf │ │ ├── 19200-19455.pbf │ │ ├── 19456-19711.pbf │ │ ├── 19712-19967.pbf │ │ ├── 19968-20223.pbf │ │ ├── 20224-20479.pbf │ │ ├── 2048-2303.pbf │ │ ├── 20480-20735.pbf │ │ ├── 20736-20991.pbf │ │ ├── 20992-21247.pbf │ │ ├── 21248-21503.pbf │ │ ├── 21504-21759.pbf │ │ ├── 21760-22015.pbf │ │ ├── 22016-22271.pbf │ │ ├── 22272-22527.pbf │ │ ├── 22528-22783.pbf │ │ ├── 22784-23039.pbf │ │ ├── 2304-2559.pbf │ │ ├── 23040-23295.pbf │ │ ├── 23296-23551.pbf │ │ ├── 23552-23807.pbf │ │ ├── 23808-24063.pbf │ │ ├── 24064-24319.pbf │ │ ├── 24320-24575.pbf │ │ ├── 24576-24831.pbf │ │ ├── 24832-25087.pbf │ │ ├── 25088-25343.pbf │ │ ├── 25344-25599.pbf │ │ ├── 256-511.pbf │ │ ├── 2560-2815.pbf │ │ ├── 25600-25855.pbf │ │ ├── 25856-26111.pbf │ │ ├── 26112-26367.pbf │ │ ├── 26368-26623.pbf │ │ ├── 26624-26879.pbf │ │ ├── 26880-27135.pbf │ │ ├── 27136-27391.pbf │ │ ├── 27392-27647.pbf │ │ ├── 27648-27903.pbf │ │ ├── 27904-28159.pbf │ │ ├── 2816-3071.pbf │ │ ├── 28160-28415.pbf │ │ ├── 28416-28671.pbf │ │ ├── 28672-28927.pbf │ │ ├── 28928-29183.pbf │ │ ├── 29184-29439.pbf │ │ ├── 29440-29695.pbf │ │ ├── 29696-29951.pbf │ │ ├── 29952-30207.pbf │ │ ├── 30208-30463.pbf │ │ ├── 30464-30719.pbf │ │ ├── 3072-3327.pbf │ │ ├── 30720-30975.pbf │ │ ├── 30976-31231.pbf │ │ ├── 31232-31487.pbf │ │ ├── 31488-31743.pbf │ │ ├── 31744-31999.pbf │ │ ├── 32000-32255.pbf │ │ ├── 32256-32511.pbf │ │ ├── 32512-32767.pbf │ │ ├── 32768-33023.pbf │ │ ├── 33024-33279.pbf │ │ ├── 3328-3583.pbf │ │ ├── 33280-33535.pbf │ │ ├── 33536-33791.pbf │ │ ├── 33792-34047.pbf │ │ ├── 34048-34303.pbf │ │ ├── 34304-34559.pbf │ │ ├── 34560-34815.pbf │ │ ├── 34816-35071.pbf │ │ ├── 35072-35327.pbf │ │ ├── 35328-35583.pbf │ │ ├── 35584-35839.pbf │ │ ├── 3584-3839.pbf │ │ ├── 35840-36095.pbf │ │ ├── 36096-36351.pbf │ │ ├── 36352-36607.pbf │ │ ├── 36608-36863.pbf │ │ ├── 36864-37119.pbf │ │ ├── 37120-37375.pbf │ │ ├── 37376-37631.pbf │ │ ├── 37632-37887.pbf │ │ ├── 37888-38143.pbf │ │ ├── 38144-38399.pbf │ │ ├── 3840-4095.pbf │ │ ├── 38400-38655.pbf │ │ ├── 38656-38911.pbf │ │ ├── 38912-39167.pbf │ │ ├── 39168-39423.pbf │ │ ├── 39424-39679.pbf │ │ ├── 39680-39935.pbf │ │ ├── 39936-40191.pbf │ │ ├── 40192-40447.pbf │ │ ├── 40448-40703.pbf │ │ ├── 40704-40959.pbf │ │ ├── 4096-4351.pbf │ │ ├── 40960-41215.pbf │ │ ├── 41216-41471.pbf │ │ ├── 41472-41727.pbf │ │ ├── 41728-41983.pbf │ │ ├── 41984-42239.pbf │ │ ├── 42240-42495.pbf │ │ ├── 42496-42751.pbf │ │ ├── 42752-43007.pbf │ │ ├── 43008-43263.pbf │ │ ├── 43264-43519.pbf │ │ ├── 4352-4607.pbf │ │ ├── 43520-43775.pbf │ │ ├── 43776-44031.pbf │ │ ├── 44032-44287.pbf │ │ ├── 44288-44543.pbf │ │ ├── 44544-44799.pbf │ │ ├── 44800-45055.pbf │ │ ├── 45056-45311.pbf │ │ ├── 45312-45567.pbf │ │ ├── 45568-45823.pbf │ │ ├── 45824-46079.pbf │ │ ├── 4608-4863.pbf │ │ ├── 46080-46335.pbf │ │ ├── 46336-46591.pbf │ │ ├── 46592-46847.pbf │ │ ├── 46848-47103.pbf │ │ ├── 47104-47359.pbf │ │ ├── 47360-47615.pbf │ │ ├── 47616-47871.pbf │ │ ├── 47872-48127.pbf │ │ ├── 48128-48383.pbf │ │ ├── 48384-48639.pbf │ │ ├── 4864-5119.pbf │ │ ├── 48640-48895.pbf │ │ ├── 48896-49151.pbf │ │ ├── 49152-49407.pbf │ │ ├── 49408-49663.pbf │ │ ├── 49664-49919.pbf │ │ ├── 49920-50175.pbf │ │ ├── 50176-50431.pbf │ │ ├── 50432-50687.pbf │ │ ├── 50688-50943.pbf │ │ ├── 50944-51199.pbf │ │ ├── 512-767.pbf │ │ ├── 5120-5375.pbf │ │ ├── 51200-51455.pbf │ │ ├── 51456-51711.pbf │ │ ├── 51712-51967.pbf │ │ ├── 51968-52223.pbf │ │ ├── 52224-52479.pbf │ │ ├── 52480-52735.pbf │ │ ├── 52736-52991.pbf │ │ ├── 52992-53247.pbf │ │ ├── 53248-53503.pbf │ │ ├── 53504-53759.pbf │ │ ├── 5376-5631.pbf │ │ ├── 53760-54015.pbf │ │ ├── 54016-54271.pbf │ │ ├── 54272-54527.pbf │ │ ├── 54528-54783.pbf │ │ ├── 54784-55039.pbf │ │ ├── 55040-55295.pbf │ │ ├── 55296-55551.pbf │ │ ├── 55552-55807.pbf │ │ ├── 55808-56063.pbf │ │ ├── 56064-56319.pbf │ │ ├── 5632-5887.pbf │ │ ├── 56320-56575.pbf │ │ ├── 56576-56831.pbf │ │ ├── 56832-57087.pbf │ │ ├── 57088-57343.pbf │ │ ├── 57344-57599.pbf │ │ ├── 57600-57855.pbf │ │ ├── 57856-58111.pbf │ │ ├── 58112-58367.pbf │ │ ├── 58368-58623.pbf │ │ ├── 58624-58879.pbf │ │ ├── 5888-6143.pbf │ │ ├── 58880-59135.pbf │ │ ├── 59136-59391.pbf │ │ ├── 59392-59647.pbf │ │ ├── 59648-59903.pbf │ │ ├── 59904-60159.pbf │ │ ├── 60160-60415.pbf │ │ ├── 60416-60671.pbf │ │ ├── 60672-60927.pbf │ │ ├── 60928-61183.pbf │ │ ├── 61184-61439.pbf │ │ ├── 6144-6399.pbf │ │ ├── 61440-61695.pbf │ │ ├── 61696-61951.pbf │ │ ├── 61952-62207.pbf │ │ ├── 62208-62463.pbf │ │ ├── 62464-62719.pbf │ │ ├── 62720-62975.pbf │ │ ├── 62976-63231.pbf │ │ ├── 63232-63487.pbf │ │ ├── 63488-63743.pbf │ │ ├── 63744-63999.pbf │ │ ├── 6400-6655.pbf │ │ ├── 64000-64255.pbf │ │ ├── 64256-64511.pbf │ │ ├── 64512-64767.pbf │ │ ├── 64768-65023.pbf │ │ ├── 65024-65279.pbf │ │ ├── 65280-65535.pbf │ │ ├── 6656-6911.pbf │ │ ├── 6912-7167.pbf │ │ ├── 7168-7423.pbf │ │ ├── 7424-7679.pbf │ │ ├── 768-1023.pbf │ │ ├── 7680-7935.pbf │ │ ├── 7936-8191.pbf │ │ ├── 8192-8447.pbf │ │ ├── 8448-8703.pbf │ │ ├── 8704-8959.pbf │ │ ├── 8960-9215.pbf │ │ ├── 9216-9471.pbf │ │ ├── 9472-9727.pbf │ │ ├── 9728-9983.pbf │ │ └── 9984-10239.pbf ├── redirect.html ├── src │ ├── CachedPmTiles.ts │ ├── definitions.d.ts │ ├── layers.ts │ ├── main.ts │ ├── stars.webp │ ├── style.scss │ └── tools │ │ ├── CompactAttributionControl.ts │ │ ├── NewTab.ts │ │ ├── location-popup.ts │ │ ├── measure.ts │ │ ├── right-click-menu.ts │ │ └── special-url-options.ts ├── tsconfig.json └── vite.config.js ├── sources ├── cities.geojson ├── images │ ├── avistan │ │ ├── World Guide │ │ │ ├── .gitignore │ │ │ ├── avistan.webp.aux.xml │ │ │ └── avistan.webp.dvc │ │ ├── absalom │ │ │ ├── Extinction Curse │ │ │ │ ├── .gitignore │ │ │ │ ├── swardlands-labels_modified.tif.aux.xml │ │ │ │ └── swardlands-labels_modified.tif.dvc │ │ │ └── The Blakros Matrimony │ │ │ │ ├── .gitignore │ │ │ │ ├── PariolIsland.png.dvc │ │ │ │ ├── PariolIsland_modified.pgw │ │ │ │ ├── PariolIsland_modified.png.aux.xml │ │ │ │ └── PariolIsland_modified.png.dvc │ │ ├── broken lands │ │ │ ├── brevoy │ │ │ │ ├── .gitignore │ │ │ │ ├── stolen-land.png.aux.xml │ │ │ │ ├── stolen-land.png.dvc │ │ │ │ ├── stolen-land.png.points │ │ │ │ ├── stolen-land_labeled.png.aux.xml │ │ │ │ ├── stolen-land_labeled.png.dvc │ │ │ │ ├── stolen-land_labeled.png.points │ │ │ │ ├── stolen-land_labeled_modified.tif.aux.xml │ │ │ │ ├── stolen-land_labeled_modified.tif.dvc │ │ │ │ ├── stolen-land_modified.tif.aux.xml │ │ │ │ └── stolen-land_modified.tif.dvc │ │ │ └── river kingdoms │ │ │ │ ├── Kingmaker │ │ │ │ ├── .gitignore │ │ │ │ ├── stolen-lands.png.aux.xml │ │ │ │ ├── stolen-lands.png.dvc │ │ │ │ ├── stolen-lands.png.points │ │ │ │ ├── stolen-lands_modified.tif.aux.xml │ │ │ │ └── stolen-lands_modified.tif.dvc │ │ │ │ └── Thornkeep │ │ │ │ ├── .gitignore │ │ │ │ ├── thornkeep-labels.png.dvc │ │ │ │ ├── thornkeep-labels_georeferenced.pgw │ │ │ │ ├── thornkeep-labels_georeferenced.png.aux.xml │ │ │ │ └── thornkeep-labels_georeferenced.png.dvc │ │ ├── eye of dread │ │ │ └── isle of terror │ │ │ │ └── City of Golden Death │ │ │ │ ├── .gitignore │ │ │ │ ├── isle of terror.webp.aux.xml │ │ │ │ ├── isle of terror.webp.dvc │ │ │ │ ├── isle of terror.webp.points │ │ │ │ ├── isle of terror_modified.tif.aux.xml │ │ │ │ └── isle of terror_modified.tif.dvc │ │ ├── old cheliax │ │ │ ├── Hell's Rebels Poster Map Folio │ │ │ │ ├── .gitignore │ │ │ │ ├── vyre_labeled_georeferenced.pgw │ │ │ │ ├── vyre_labeled_georeferenced.png.aux.xml │ │ │ │ ├── vyre_labeled_georeferenced.png.dvc │ │ │ │ ├── vyre_unlabeled_georeferenced.pgw │ │ │ │ ├── vyre_unlabeled_georeferenced.png.aux.xml │ │ │ │ └── vyre_unlabeled_georeferenced.png.dvc │ │ │ ├── In Hell's Bright Shadow │ │ │ │ ├── .gitignore │ │ │ │ ├── acisazi_unlabeled_georeferenced.pgw │ │ │ │ ├── acisazi_unlabeled_georeferenced.png.aux.xml │ │ │ │ ├── acisazi_unlabeled_georeferenced.png.dvc │ │ │ │ ├── kintargo_labeled_mapfolio_georeferenced.pgw │ │ │ │ ├── kintargo_labeled_mapfolio_georeferenced.png.aux.xml │ │ │ │ ├── kintargo_labeled_mapfolio_georeferenced.png.dvc │ │ │ │ ├── kintargo_unlabeled_mapfolio_georeferenced.pgw │ │ │ │ ├── kintargo_unlabeled_mapfolio_georeferenced.png.aux.xml │ │ │ │ ├── kintargo_unlabeled_mapfolio_georeferenced.png.dvc │ │ │ │ ├── ravounel-labels.png.dvc │ │ │ │ ├── ravounel_labeled.png.aux.xml │ │ │ │ ├── ravounel_labeled.png.dvc │ │ │ │ ├── ravounel_labeled.points │ │ │ │ ├── ravounel_labeled_modified.tif.aux.xml │ │ │ │ ├── ravounel_labeled_modified.tif.dvc │ │ │ │ ├── ravounel_unlabeled.png.dvc │ │ │ │ ├── ravounel_unlabeled_modified.tif.aux.xml │ │ │ │ └── ravounel_unlabeled_modified.tif.dvc │ │ │ └── No Response from Deepmar │ │ │ │ ├── .gitignore │ │ │ │ ├── deepmar_labeled_georeferenced.pgw │ │ │ │ ├── deepmar_labeled_georeferenced.png.aux.xml │ │ │ │ ├── deepmar_labeled_georeferenced.png.dvc │ │ │ │ ├── deepmar_penal_colony_labeled_georeferenced.pgw │ │ │ │ ├── deepmar_penal_colony_labeled_georeferenced.png.aux.xml │ │ │ │ ├── deepmar_penal_colony_labeled_georeferenced.png.dvc │ │ │ │ ├── deepmar_penal_colony_unlabeled_georeferenced.pgw │ │ │ │ ├── deepmar_penal_colony_unlabeled_georeferenced.png.aux.xml │ │ │ │ ├── deepmar_penal_colony_unlabeled_georeferenced.png.dvc │ │ │ │ ├── deepmar_unlabeled_georeferenced.pgw │ │ │ │ ├── deepmar_unlabeled_georeferenced.png.aux.xml │ │ │ │ └── deepmar_unlabeled_georeferenced.png.dvc │ │ ├── saga lands │ │ │ └── varisia │ │ │ │ ├── Return of the Runelords Poster Map Folio │ │ │ │ ├── .gitignore │ │ │ │ ├── Thassilon.points │ │ │ │ ├── Thassilon.tif.dvc │ │ │ │ ├── Thassilon_modified.tif.aux.xml │ │ │ │ ├── Thassilon_modified.tif.dvc │ │ │ │ └── Thassilon_modified.tif.ovr.dvc │ │ │ │ ├── Second Darkness │ │ │ │ └── Children of the Void │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── devil's elbow.tif.aux.xml │ │ │ │ │ └── devil's elbow.tif.dvc │ │ │ │ ├── Sevend Dooms of Sandpoint │ │ │ │ ├── .gitignore │ │ │ │ ├── sandpoint.pgw │ │ │ │ ├── sandpoint.png.aux.xml │ │ │ │ ├── sandpoint.png.dvc │ │ │ │ ├── sandpoint_labeled.pgw │ │ │ │ ├── sandpoint_labeled.png.aux.xml │ │ │ │ └── sandpoint_labeled.png.dvc │ │ │ │ └── Shattered Star │ │ │ │ ├── .gitignore │ │ │ │ ├── Magnimar.jgw │ │ │ │ ├── Magnimar.jpg.aux.xml │ │ │ │ ├── Magnimar.jpg.dvc │ │ │ │ ├── XinIsland.pgw │ │ │ │ ├── XinIsland.png.aux.xml │ │ │ │ ├── XinIsland.png.dvc │ │ │ │ ├── ladys_cape_unlabeled_georeferenced.pgw │ │ │ │ ├── ladys_cape_unlabeled_georeferenced.png.aux.xml │ │ │ │ └── ladys_cape_unlabeled_georeferenced.png.dvc │ │ └── shining kingdoms │ │ │ └── taldor │ │ │ ├── .gitignore │ │ │ ├── Pactbreaker.jpg.aux.xml │ │ │ ├── Pactbreaker.jpg.dvc │ │ │ ├── Pactbreaker.jpg.points │ │ │ ├── Pactbreaker_labeled.jpg.dvc │ │ │ ├── Pactbreaker_labeled_modified.tif.aux.xml │ │ │ ├── Pactbreaker_labeled_modified.tif.dvc │ │ │ ├── Pactbreaker_modified.tif.aux.xml │ │ │ └── Pactbreaker_modified.tif.dvc │ ├── casmaron │ │ ├── iobaria │ │ │ └── The Varnhold Vanishing │ │ │ │ ├── .gitignore │ │ │ │ ├── iobaria-labels.png.aux.xml │ │ │ │ ├── iobaria-labels.png.dvc │ │ │ │ ├── iobaria-labels.png.points │ │ │ │ ├── iobaria-labels_modified.tif.aux.xml │ │ │ │ └── iobaria-labels_modified.tif.dvc │ │ ├── vudra.webp.points │ │ └── vudra │ │ │ └── Impossible Lands │ │ │ ├── .gitignore │ │ │ ├── vudra_bare.tif.aux.xml │ │ │ ├── vudra_bare.tif.dvc │ │ │ ├── vudra_labels.png.points │ │ │ ├── vudra_labels.tif.aux.xml │ │ │ └── vudra_labels.tif.dvc │ ├── crown-of-the-world │ │ └── 1e Jade Regent │ │ │ ├── .gitignore │ │ │ ├── CrownOfTheWorld-projected.png.dvc │ │ │ ├── CrownOfTheWorldLabeled-projected.png.dvc │ │ │ ├── crown-arcadia.png.aux.xml │ │ │ ├── crown-arcadia.png.dvc │ │ │ ├── crown-arcadia.png.points │ │ │ ├── crown-arcadia_modified.tif.aux.xml │ │ │ ├── crown-arcadia_modified.tif.dvc │ │ │ ├── crown-avistan-labeled2.png.aux.xml │ │ │ ├── crown-avistan-labeled2.png.dvc │ │ │ ├── crown-avistan-labeled2.png.points │ │ │ ├── crown-avistan-labeled2_modified.tif.aux.xml │ │ │ ├── crown-avistan-labeled2_modified.tif.dvc │ │ │ ├── crown-avistan-labeled3.png.aux.xml │ │ │ ├── crown-avistan-labeled3.png.dvc │ │ │ ├── crown-avistan-labeled3.png.points │ │ │ ├── crown-avistan-labeled3_modified.tif.aux.xml │ │ │ ├── crown-avistan-labeled3_modified.tif.dvc │ │ │ ├── crown-of-the-world.webp.dvc │ │ │ ├── crown-of-the-world_labels.webp.dvc │ │ │ ├── crown-tianxia-labeled1.png.dvc │ │ │ └── crown-tianxia-labeled2.png.dvc │ ├── garund │ │ ├── World Guide │ │ │ ├── .gitignore │ │ │ ├── north.webp.aux.xml │ │ │ ├── north.webp.dvc │ │ │ ├── north.webp.points │ │ │ ├── north_modified.tif.aux.xml │ │ │ └── north_modified.tif.dvc │ │ ├── mediogalti island │ │ │ ├── .gitignore │ │ │ ├── ilizmagorti_labeled_georeferenced.pgw │ │ │ ├── ilizmagorti_labeled_georeferenced.png.aux.xml │ │ │ ├── ilizmagorti_labeled_georeferenced.png.dvc │ │ │ ├── mediogalti-island_labeled.png.dvc │ │ │ ├── mediogalti-island_labeled.points │ │ │ └── mediogalti-island_labeled_modified.tif.dvc │ │ ├── mwangi expanse │ │ │ ├── .gitignore │ │ │ ├── Strength of Thousands.png.aux.xml │ │ │ ├── Strength of Thousands.png.dvc │ │ │ ├── Strength of Thousands.png.points │ │ │ ├── Strength of Thousands_modified.tif.aux.xml │ │ │ └── Strength of Thousands_modified.tif.dvc │ │ ├── osirion │ │ │ ├── .gitignore │ │ │ ├── osirion-labeled.png.aux.xml │ │ │ ├── osirion-labeled.png.dvc │ │ │ ├── osirion-labeled.png.points │ │ │ ├── osirion-labeled_modified.tif.aux.xml │ │ │ └── osirion-labeled_modified.tif.dvc │ │ ├── shackles │ │ │ ├── .gitignore │ │ │ ├── port-peril_labeled_georeferenced.pgw │ │ │ ├── port-peril_labeled_georeferenced.png.aux.xml │ │ │ ├── port-peril_labeled_georeferenced.png.dvc │ │ │ ├── port-peril_unlabeled_georeferenced.pgw │ │ │ ├── port-peril_unlabeled_georeferenced.png.aux.xml │ │ │ └── port-peril_unlabeled_georeferenced.png.dvc │ │ └── vidrian │ │ │ ├── .gitignore │ │ │ ├── smugglers_shiv_labeled_georeferenced.pgw │ │ │ ├── smugglers_shiv_labeled_georeferenced.png.aux.xml │ │ │ ├── smugglers_shiv_labeled_georeferenced.png.dvc │ │ │ ├── smugglers_shiv_unlabeled_georeferenced.pgw │ │ │ ├── smugglers_shiv_unlabeled_georeferenced.png.aux.xml │ │ │ └── smugglers_shiv_unlabeled_georeferenced.png.dvc │ ├── tian-xia │ │ ├── Minata │ │ │ └── Fists of the Ruby Phoenix │ │ │ │ ├── .gitignore │ │ │ │ ├── bonmu_danger-island_labeled_georeferenced.pgw │ │ │ │ ├── bonmu_danger-island_labeled_georeferenced.png.aux.xml │ │ │ │ ├── bonmu_danger-island_labeled_georeferenced.png.dvc │ │ │ │ ├── bonmu_danger-island_unlabeled_georeferenced.pgw │ │ │ │ ├── bonmu_danger-island_unlabeled_georeferenced.png.aux.xml │ │ │ │ └── bonmu_danger-island_unlabeled_georeferenced.png.dvc │ │ └── Tian Xia World Guide │ │ │ ├── .gitignore │ │ │ ├── TianXia_Poster.tif.aux.xml │ │ │ ├── TianXia_Poster.tif.dvc │ │ │ ├── TianXia_Poster.tif.points │ │ │ ├── TianXia_Poster_labeled.tif.aux.xml │ │ │ ├── TianXia_Poster_labeled.tif.dvc │ │ │ ├── TianXia_Poster_labeled_modified.tif.dvc │ │ │ ├── TianXia_Poster_labeled_modified.tif.ovr.dvc │ │ │ ├── TianXia_Poster_modified.tif.dvc │ │ │ ├── TianXia_Poster_modified.tif.ovr.dvc │ │ │ └── TianXia_Poster_top_labeled_modified.tif.aux.xml │ ├── unsorted+unmapped │ │ ├── .gitignore │ │ ├── 1e │ │ │ ├── .gitignore │ │ │ ├── Adventure Paths │ │ │ │ ├── 01 Rise of the Runelords │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── NE-Varisia-labels.png.dvc │ │ │ │ │ ├── NE-Varisia.png.dvc │ │ │ │ │ ├── hook-mountain-region-labels.png.dvc │ │ │ │ │ ├── hook-mountain-region.png.dvc │ │ │ │ │ ├── sandpoint-hinterlands-labels.png.dvc │ │ │ │ │ └── sandpoint-hinterlands.png.dvc │ │ │ │ ├── 02 Curse of the Crimson Throne │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── belkzen-labels2.png.dvc │ │ │ │ │ ├── darkmoon vale.jpg.dvc │ │ │ │ │ ├── partial-varisia-labels.png.dvc │ │ │ │ │ └── varisia.jpg.dvc │ │ │ │ ├── 03 Second Darkness │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Kyonin_Labels.png.dvc │ │ │ │ │ ├── devil's elbow.jpg.aux.xml │ │ │ │ │ ├── devil's elbow.jpg.dvc │ │ │ │ │ └── devil's elbow.jpg.points │ │ │ │ ├── 04 Legacy of Fire │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── kelmarane-area.png.dvc │ │ │ │ │ └── pale-mountains-region.png.dvc │ │ │ │ ├── 05 Council of Thieves │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── westcrown-area.png.dvc │ │ │ │ ├── 06 Kingmaker │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── iobaria-labels.png.dvc │ │ │ │ ├── 08 Carrion Crown │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Lepidstadt-area.png.dvc │ │ │ │ │ ├── Lozeri-and-Ardeal.png.dvc │ │ │ │ │ ├── Ustalav.jpg.dvc │ │ │ │ │ └── Virlych.png.dvc │ │ │ │ ├── 09 Jade Regent │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── crown-of-the-world-arcadia_labels.png.dvc │ │ │ │ │ ├── crown-of-the-world-avistan.png.aux.xml │ │ │ │ │ ├── crown-of-the-world-avistan.png.dvc │ │ │ │ │ ├── crown-of-the-world-avistan_labels.png.dvc │ │ │ │ │ ├── crown-of-the-world-casmaron.png.dvc │ │ │ │ │ ├── crown-of-the-world-casmaron_labels.png.dvc │ │ │ │ │ ├── crown-of-the-world-tian-xia.png.dvc │ │ │ │ │ ├── crown-of-the-world-tian-xia_labels.png.dvc │ │ │ │ │ ├── crown-of-the-world.webp.dvc │ │ │ │ │ ├── crown-of-the-world_labels.webp.dvc │ │ │ │ │ └── minkai-labeled.png.dvc │ │ │ │ ├── 11 Shattered Star │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── the-ladys-cape.png.dvc │ │ │ │ ├── 12 Reign of Winter │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── border-wood-labeled.png.dvc │ │ │ │ │ ├── border-wood.png.dvc │ │ │ │ │ ├── hoofwood-area-labeled.png.dvc │ │ │ │ │ ├── hoofwood-area.png.dvc │ │ │ │ │ └── irrisen.png.dvc │ │ │ │ ├── 13 Wrath of the Righteous │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── drezen-area-labeled.png.dvc │ │ │ │ │ ├── drezen-area.png.dvc │ │ │ │ │ ├── marchlands-labeled.png.dvc │ │ │ │ │ └── marchlands.png.dvc │ │ │ │ ├── 14 Mummy's Mask │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── parched-dunes-labeled.png.dvc │ │ │ │ ├── 16 Giantslayer │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── mindspin-mountains-labeled.png.dvc │ │ │ │ ├── 17 Hell's Rebels │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── dismal-nitch-labeled.png.dvc │ │ │ │ │ └── dismal-nitch.png.dvc │ │ │ │ ├── 18 Hell's Vengeance │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── whisperwood-labeled.png.dvc │ │ │ │ │ ├── winter-grove-area-labeled.png.dvc │ │ │ │ │ └── winter-grove-area.png.dvc │ │ │ │ ├── 19 Strange Aeons │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── sellen-river.png.dvc │ │ │ │ ├── 20 Ironfang Invasion │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── nesmian-plains-labels.png.dvc │ │ │ │ │ └── nesmian-plains-labels_modified.tif.dvc │ │ │ │ ├── 22 War for the Crown │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── county-of-meratt-labels.png.dvc │ │ │ │ │ ├── county-of-meratt-labels_modified.tif.dvc │ │ │ │ │ ├── county-of-meratt-minimap.png.dvc │ │ │ │ │ ├── county-of-meratt-minimap_modified.tif.dvc │ │ │ │ │ └── meratt.png.dvc │ │ │ │ └── 24 Tyrant's Grasp │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── gravelands.png.dvc │ │ │ │ │ ├── xopatl-labels.png.dvc │ │ │ │ │ └── xopatl-labels_modified.tif.dvc │ │ │ ├── Chronicles │ │ │ │ ├── .gitignore │ │ │ │ ├── guide-to-the-river-kingdoms.webp.dvc │ │ │ │ ├── guide-to-the-river-kingdoms_labeled.webp.dvc │ │ │ │ ├── guide-to-the-river-kingdoms_labeled_modified.tif.dvc │ │ │ │ └── guide-to-the-river-kingdoms_modified.tif.dvc │ │ │ ├── belkzen-hold-of-the-orc-hordes │ │ │ │ ├── .gitignore │ │ │ │ └── belkzen-labels.png.dvc │ │ │ ├── cheliax-the-infernal-empire │ │ │ │ ├── .gitignore │ │ │ │ ├── cheliax-archduchies-labels.png.dvc │ │ │ │ └── cheliax-archduchies-labels_modified.tif.dvc │ │ │ ├── dark-markets │ │ │ │ ├── .gitignore │ │ │ │ ├── katapesh-labels.png.dvc │ │ │ │ └── katapesh-labels_modified.tif.dvc │ │ │ ├── druma-profit-and-prophecy │ │ │ │ ├── .gitignore │ │ │ │ ├── druma-labels.png.dvc │ │ │ │ └── druma-labels_modified.tif.dvc │ │ │ ├── inner-sea-world-guide │ │ │ │ ├── .gitignore │ │ │ │ ├── Absalom.png.dvc │ │ │ │ ├── Andoran.png.dvc │ │ │ │ ├── Belkzen.png.dvc │ │ │ │ ├── Brevoy.png.dvc │ │ │ │ ├── Cheliax.png.dvc │ │ │ │ ├── Isger.png.dvc │ │ │ │ ├── Katapesh.png.dvc │ │ │ │ ├── Katapesh_modified.tif.dvc │ │ │ │ ├── River-Kingdoms.png.dvc │ │ │ │ └── River-Kingdoms_modified.tif.dvc │ │ │ ├── irrisen-land-of-eternal-winter │ │ │ │ ├── .gitignore │ │ │ │ ├── irrisen-labels.png.dvc │ │ │ │ └── irrisen-labels_modified.tif.dvc │ │ │ ├── land-of-conflict │ │ │ │ ├── .gitignore │ │ │ │ ├── molthune-labels.png.dvc │ │ │ │ ├── molthune-labels_modified.tif.dvc │ │ │ │ ├── nirmathas-labels.png.dvc │ │ │ │ └── nirmathas-labels_modified.tif.dvc │ │ │ ├── lands-of-the-linnorm-kings │ │ │ │ ├── .gitignore │ │ │ │ ├── lands-of-the-linnorm-kings-labels.png.dvc │ │ │ │ └── lands-of-the-linnorm-kings-labels_modified.tif.dvc │ │ │ ├── mystic-realms │ │ │ │ ├── .gitignore │ │ │ │ └── valashmai-jungle-labels.png.dvc │ │ │ ├── nidal-land-of-shadows │ │ │ │ ├── .gitignore │ │ │ │ ├── nidal-labels.png.dvc │ │ │ │ └── nidal-labels_modified.tif.dvc │ │ │ ├── numeria-land-of-fallen-stars │ │ │ │ ├── .gitignore │ │ │ │ ├── numeria-labels.png.dvc │ │ │ │ └── numeria-labels_modified.tif.dvc │ │ │ ├── occult realms │ │ │ │ ├── .gitignore │ │ │ │ ├── Grand Sarret Labeled.png.aux.xml │ │ │ │ ├── Grand Sarret Labeled.png.dvc │ │ │ │ ├── Grand Sarret Labeled.png.points │ │ │ │ ├── Grand Sarret Labeled_modified.tif.aux.xml │ │ │ │ ├── Grand Sarret Labeled_modified.tif.dvc │ │ │ │ ├── Vergan Forest Labeled.png.aux.xml │ │ │ │ ├── Vergan Forest Labeled.png.dvc │ │ │ │ ├── Vergan Forest Labeled.png.points │ │ │ │ ├── Vergan Forest Labeled_modified.tif.aux.xml │ │ │ │ ├── Vergan Forest Labeled_modified.tif.dvc │ │ │ │ ├── Zi Ha Labeled.png.aux.xml │ │ │ │ ├── Zi Ha Labeled.png.dvc │ │ │ │ ├── Zi Ha Labeled.png.points │ │ │ │ ├── Zi Ha Labeled_modified.tif.aux.xml │ │ │ │ └── Zi Ha Labeled_modified.tif.dvc │ │ │ ├── qadira-jewel-of-the-east │ │ │ │ ├── .gitignore │ │ │ │ ├── qadira-labels.png.dvc │ │ │ │ └── qadira-labels_modified.tif.dvc │ │ │ ├── rule-of-fear │ │ │ │ ├── .gitignore │ │ │ │ ├── ustalav-labels.png.dvc │ │ │ │ └── ustalav-labels_modified.tif.dvc │ │ │ ├── taldor-the-first-empire │ │ │ │ ├── .gitignore │ │ │ │ ├── taldor-labels.png.dvc │ │ │ │ └── taldor-labels_modified.tif.dvc │ │ │ ├── the-mwangi-expanse │ │ │ │ ├── .gitignore │ │ │ │ ├── vidrian-labels.png.dvc │ │ │ │ └── vidrian-labels_modified.tif.dvc │ │ │ └── the-worldwound │ │ │ │ ├── .gitignore │ │ │ │ ├── worldwound-labels.png.dvc │ │ │ │ └── worldwound-labels_modified.tif.dvc │ │ ├── 2e │ │ │ ├── .gitignore │ │ │ ├── Adventure Paths │ │ │ │ ├── Bloodlords │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── holomog-labels.png.dvc │ │ │ │ │ └── holomog.webp.dvc │ │ │ │ ├── Extinction Curse │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Swardlands.webp.dvc │ │ │ │ │ ├── kortos-mountains-labels.png.dvc │ │ │ │ │ ├── kortos-mountains.png.dvc │ │ │ │ │ ├── swardlands-labels.png.aux.xml │ │ │ │ │ ├── swardlands-labels.png.dvc │ │ │ │ │ └── swardlands-labels.png.points │ │ │ │ ├── Fists of the Ruby Phoenix │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── bonmu-labels.png.dvc │ │ │ │ ├── Gatewalkers │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── The Lake of Mists and Veils.png.dvc │ │ │ │ │ └── The Lake of Mists and Veils_labeled.png.dvc │ │ │ │ ├── Outlaws of Alkenstar │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── spellscar-desert-labels.png.dvc │ │ │ │ └── Strength of Thousands │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── sodden_lands_mmwangi_jungle_labels.png.dvc │ │ │ ├── Highhelm │ │ │ │ ├── .gitignore │ │ │ │ ├── FiveKingsMountains-labels.png.dvc │ │ │ │ ├── FiveKingsMountains-labels_modified.tif.dvc │ │ │ │ └── FiveKingsMountains.png.dvc │ │ │ ├── Impossible Lands │ │ │ │ ├── .gitignore │ │ │ │ ├── alkenstar-labels.png.dvc │ │ │ │ ├── alkenstar-labels_modified.tif.dvc │ │ │ │ ├── bhopan-labels.png.dvc │ │ │ │ ├── geb-labels.png.dvc │ │ │ │ ├── geb-labels_modified.tif.dvc │ │ │ │ ├── jalmeray-labels.png.dvc │ │ │ │ ├── jalmeray-labels_modified.tif.dvc │ │ │ │ ├── nex-labels.png.dvc │ │ │ │ └── nex-labels_modified.tif.dvc │ │ │ ├── absalom.png.dvc │ │ │ ├── knights-of-lastwall │ │ │ │ ├── .gitignore │ │ │ │ ├── gravelands_labels.png.dvc │ │ │ │ └── gravelands_labels_modified.tif.dvc │ │ │ ├── modules │ │ │ │ ├── .gitignore │ │ │ │ └── Crown of the Kobold King.png.dvc │ │ │ └── world-guide │ │ │ │ ├── .gitignore │ │ │ │ ├── broken-lands.png.dvc │ │ │ │ ├── eye-of-dread.png.dvc │ │ │ │ ├── golden-road.png.dvc │ │ │ │ ├── high-seas.png.dvc │ │ │ │ ├── impossible-lands - Copy.png.dvc │ │ │ │ ├── impossible-lands.png.dvc │ │ │ │ ├── mwangi-expanse.png.dvc │ │ │ │ ├── old-cheliax.png.dvc │ │ │ │ ├── online │ │ │ │ ├── .gitignore │ │ │ │ ├── broken-lands.png.dvc │ │ │ │ ├── eye-of-terror.png.dvc │ │ │ │ ├── golden-rox.png.dvc │ │ │ │ ├── impossible-lands.png.dvc │ │ │ │ ├── mwangi-expanse.png.dvc │ │ │ │ ├── old-cheliax.png.dvc │ │ │ │ ├── saga-lands.png.dvc │ │ │ │ ├── shining-kingdoms.png.dvc │ │ │ │ └── starstone-isle.png.dvc │ │ │ │ ├── saga-lands.png.dvc │ │ │ │ ├── shining-kingdoms.png.dvc │ │ │ │ ├── starstone-isle-labels.png.dvc │ │ │ │ └── starstone-isle-partial.webp.dvc │ │ ├── arcadia.webp.dvc │ │ ├── raw-paizo-treasure-trove │ │ │ ├── .gitignore │ │ │ ├── Broken Lands.psd.dvc │ │ │ ├── Broken Lands_rivers.svg.dvc │ │ │ ├── Broken Lands_rivers_dry.svg.dvc │ │ │ ├── Broken Lands_rivers_stream_valleys.svg.dvc │ │ │ ├── Eye of Terror.psd.dvc │ │ │ ├── Eye of Terror_rivers.svg.dvc │ │ │ ├── Eye of Terror_rivers_dry.svg.dvc │ │ │ ├── Eye of Terror_rivers_stream_valleys.svg.dvc │ │ │ ├── Golarion_bkg-01.psd.dvc │ │ │ ├── Golden Road.psd.dvc │ │ │ ├── Golden Road_rivers.svg.dvc │ │ │ ├── Golden Road_rivers_dry.svg.dvc │ │ │ ├── Golden Road_rivers_stream_valleys.svg.dvc │ │ │ ├── High Seas.psd.dvc │ │ │ ├── Impossible Lands.psd.dvc │ │ │ ├── Impossible Lands_rivers.svg.dvc │ │ │ ├── Impossible Lands_rivers_stream_valleys.svg.dvc │ │ │ ├── Inner_Sea_bkg.psd.dvc │ │ │ ├── Mwangi Expanse.psd.dvc │ │ │ ├── Mwangi Expanse_rivers.svg.dvc │ │ │ ├── Mwangi Expanse_rivers_stream_valleys.svg.dvc │ │ │ ├── Old Cheliax.psd.dvc │ │ │ ├── Old Cheliax_rivers.svg.dvc │ │ │ ├── Old Cheliax_rivers_stream_valleys.svg.dvc │ │ │ ├── Saga Lands.psd.dvc │ │ │ ├── Saga Lands_rivers.svg.dvc │ │ │ ├── Saga Lands_rivers_dry.svg.dvc │ │ │ ├── Saga Lands_rivers_stream_valleys.svg.dvc │ │ │ ├── Shining Kingdoms.psd.dvc │ │ │ ├── Shining Kingdoms_rivers.svg.dvc │ │ │ ├── Shining Kingdoms_rivers_dry.svg.dvc │ │ │ ├── Shining Kingdoms_rivers_stream_valleys.svg.dvc │ │ │ ├── Starstone Isle.psd.dvc │ │ │ ├── Starstone Isle_rivers.svg.dvc │ │ │ └── Starstone Isle_rivers_stream_valleys.svg.dvc │ │ ├── shackles.webp.dvc │ │ └── tian_xia.webp.dvc │ └── world │ │ └── Core Rulebook │ │ ├── .gitignore │ │ ├── Golarion.jpg.aux.xml │ │ ├── Golarion.jpg.dvc │ │ ├── Golarion.jpg.points │ │ ├── GolarionRivers.png.aux.xml │ │ ├── GolarionRivers.png.dvc │ │ ├── GolarionRivers.png.points │ │ ├── GolarionRivers_modified.png.aux.xml │ │ ├── GolarionRivers_modified.png.dvc │ │ ├── GolarionRivers_modified.png.points │ │ ├── GolarionRivers_modified.tif.aux.xml │ │ ├── GolarionRivers_modified.wld.dvc │ │ ├── GolarionRivers_modified2.png.dvc │ │ ├── GolarionRivers_modified2.wld.dvc │ │ ├── GolarionTerrainMaster.jpg.aux.xml │ │ ├── GolarionTerrainMaster.jpg.dvc │ │ ├── GolarionTerrainMaster.jpg.points │ │ ├── GolarionTerrainMaster_modified.tif.aux.xml │ │ ├── GolarionTerrainMaster_modified.tif.dvc │ │ ├── Golarion_modified.tif.aux.xml │ │ ├── Golarion_modified.tif.dvc │ │ └── Golarion_modified.tif.ovr.dvc ├── locations.geojson ├── qgis-plugins │ └── stable_project_files │ │ ├── LICENSE │ │ ├── __init__.py │ │ └── metadata.txt └── qgis.qgs ├── tile-compiler ├── pom.xml ├── remoteDebug.sh ├── run.sh ├── sprites │ ├── city-large-capital.svg │ ├── city-large.svg │ ├── city-major-capital.svg │ ├── city-major.svg │ ├── city-medium-capital.svg │ ├── city-medium.svg │ ├── city-small-capital.svg │ ├── city-small.svg │ ├── location-castle-ruin.svg │ ├── location-castle.svg │ ├── location-city-ruins.svg │ ├── location-graveyard.svg │ ├── location-mountain.svg │ ├── location-other.svg │ └── location-tower.svg ├── src │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── pfwikis │ │ │ ├── CLI.java │ │ │ ├── CLIOptions.java │ │ │ ├── LayersCompiler.java │ │ │ ├── TileCompiler.java │ │ │ ├── fractaldetailer │ │ │ ├── AddDetails.java │ │ │ ├── FastNoiseLite.java │ │ │ └── FractalLines.java │ │ │ ├── layercompiler │ │ │ ├── description │ │ │ │ ├── LCDescription.java │ │ │ │ └── StepDescription.java │ │ │ └── steps │ │ │ │ ├── AddCityZoom.java │ │ │ │ ├── AddFractalDetail.java │ │ │ │ ├── AddPoints.java │ │ │ │ ├── AddPolygons.java │ │ │ │ ├── AddZoom.java │ │ │ │ ├── BorderVariants.java │ │ │ │ ├── BufferPolygons.java │ │ │ │ ├── CityPolygons.java │ │ │ │ ├── CityTypeToIcon.java │ │ │ │ ├── ColorBuildings.java │ │ │ │ ├── ColorGenericLabels.java │ │ │ │ ├── CompileSprites.java │ │ │ │ ├── CompileTiles.java │ │ │ │ ├── CreateSearchIndex.java │ │ │ │ ├── DistrictGap.java │ │ │ │ ├── GenerateLabelCenters.java │ │ │ │ ├── LocationGroup.java │ │ │ │ ├── LocationTypeToIcon.java │ │ │ │ ├── MergeGeometry.java │ │ │ │ ├── MergeLabels.java │ │ │ │ ├── ReadFile.java │ │ │ │ ├── ResolveLabels.java │ │ │ │ ├── ShapeRoads.java │ │ │ │ ├── SmoothLines.java │ │ │ │ ├── Subtract.java │ │ │ │ ├── model │ │ │ │ ├── LCContent.java │ │ │ │ ├── LCContentBytes.java │ │ │ │ ├── LCContentEmpty.java │ │ │ │ ├── LCContentOM.java │ │ │ │ ├── LCContentPath.java │ │ │ │ └── LCStep.java │ │ │ │ └── rivers │ │ │ │ ├── PointsOnLandSelector.java │ │ │ │ ├── RPoint.java │ │ │ │ ├── RiverLabels.java │ │ │ │ ├── ShapeRivers.java │ │ │ │ └── SmoothInterpolator.java │ │ │ ├── model │ │ │ ├── AnyJson.java │ │ │ ├── Edge.java │ │ │ ├── Feature.java │ │ │ ├── FeatureCollection.java │ │ │ ├── Geometry.java │ │ │ ├── Label.java │ │ │ ├── LngLat.java │ │ │ └── Properties.java │ │ │ ├── run │ │ │ ├── Runner.java │ │ │ ├── StdHelper.java │ │ │ ├── ToolVariant.java │ │ │ └── Tools.java │ │ │ └── util │ │ │ ├── CatmullRomSpline.java │ │ │ ├── ColorUtil.java │ │ │ └── Projection.java │ │ └── resources │ │ └── logback.xml ├── steps.yaml └── tippecanoe-tmp │ └── geom70.XXTrPg1i └── wiki-downloader ├── pom.xml └── src └── main └── java └── io └── github └── pfwikis ├── DownloadCities.java ├── DownloadLoI.java ├── Helper.java ├── Jackson.java └── model ├── City.java ├── Feature.java ├── FeatureCollection.java ├── Geometry.java ├── LoI.java ├── Properties.java └── Response.java /.dvc/.gitignore: -------------------------------------------------------------------------------- 1 | /config.local 2 | /tmp 3 | /cache 4 | -------------------------------------------------------------------------------- /.dvc/config: -------------------------------------------------------------------------------- 1 | [core] 2 | remote = webdav 3 | autostage = true 4 | ['remote "webdav"'] 5 | url = webdavs://webdav.pathfinderwiki.com 6 | user = pf-mapping 7 | timeout = 300 8 | jobs = 4 9 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.dvc merge=dvc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "npm" 4 | directory: "/frontend" 5 | schedule: 6 | interval: "weekly" 7 | groups: 8 | frontend-dependencies: 9 | patterns: 10 | - "*" 11 | - package-ecosystem: "maven" 12 | directory: "/tile-compiler" 13 | schedule: 14 | interval: "weekly" 15 | groups: 16 | compiler-dependencies: 17 | patterns: 18 | - "*" 19 | -------------------------------------------------------------------------------- /.github/workflows/frontend-build.yml: -------------------------------------------------------------------------------- 1 | name: Frontend Build 2 | 3 | on: 4 | workflow_call: 5 | push: 6 | paths: 7 | - 'frontend/**' 8 | workflow_dispatch: 9 | 10 | jobs: 11 | # Build job 12 | build: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - name: Checkout 16 | uses: actions/checkout@v3 17 | with: 18 | sparse-checkout: frontend 19 | - name: Build Frontend 20 | run: | 21 | cd frontend 22 | npm ci 23 | npm run build 24 | 25 | -------------------------------------------------------------------------------- /.github/workflows/tile-compiler-build.yml: -------------------------------------------------------------------------------- 1 | name: Tile Compiler Build 2 | 3 | on: 4 | workflow_call: 5 | push: 6 | branch: 'main' 7 | paths: 8 | - 'tile-compiler/**' 9 | workflow_dispatch: 10 | 11 | jobs: 12 | build: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - name: Checkout 16 | uses: actions/checkout@v3 17 | with: 18 | sparse-checkout: tile-compiler 19 | - name: Setup Java 20 | uses: actions/setup-java@v3 21 | with: 22 | distribution: 'temurin' 23 | java-version: '21' 24 | cache: 'maven' 25 | - name: Build 26 | run: | 27 | cd tile-compiler 28 | mvn -B compile 29 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | frontend/public/sprites 3 | frontend/public/data* 4 | frontend/public/golarion.pmtiles 5 | frontend/.env.local 6 | frontend/dist 7 | tile-compiler/geo 8 | wiki-downloader/target 9 | **/.project 10 | **/.classpath 11 | **/.settings 12 | tile-compiler/target 13 | 14 | # IntelliJ 15 | .idea/* 16 | *.iml 17 | /sources/qgis.qgs~ 18 | /sources/qgis_attachments.zip 19 | frontend/public/golarion.pmtiles* 20 | **/__pycache__ 21 | frontend/public/search.json* 22 | frontend/public/debug.pmtiles 23 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/.gitmodules -------------------------------------------------------------------------------- /build/compile.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | echo "I am '$(whoami)'" 5 | 6 | echo "Downloading newest mapping data." 7 | kart clone https://github.com/pf-wikis/mapping-data.git /w/data 8 | 9 | echo "Building frontend" 10 | datahash=`expr $(date +%s) / 60` 11 | cd /w/frontend 12 | printf "VITE_DATA_HASH=$datahash" > ./.env.local 13 | npm ci 14 | npm run build 15 | 16 | echo "Compiling tiles" 17 | cd /w/tile-compiler 18 | mvn -B compile package 19 | java -jar target/tile-compiler.jar compileTiles -maxZoom 12 -useBuildShortcut -prodDetail -mappingDataFile ../data/data.gpkg 20 | cd /w 21 | 22 | # copy results to output 23 | echo "Copying results" 24 | cp -rf frontend/dist/* /w/output/ 25 | 26 | # clean up old files 27 | echo "Cleaning old files" 28 | find /w/output -mtime +7 -type f -delete 29 | -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Map of Golarion 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mapbox-vector-tiles", 3 | "type": "module", 4 | "dependencies": { 5 | "@mapbox/mapbox-gl-draw": "^1.5.0", 6 | "@turf/distance": "^7.2.0", 7 | "@turf/line-segment": "^7.2.0", 8 | "@turf/midpoint": "^7.2.0", 9 | "mapbox-gl-draw-geodesic": "^2.3.1", 10 | "maplibre-gl": "^5.1.1", 11 | "pmtiles": "^4.3.0", 12 | "pure-context-menu": "^1.2.8" 13 | }, 14 | "devDependencies": { 15 | "@babel/core": "^7.26.9", 16 | "@types/mapbox__mapbox-gl-draw": "^1.4.8", 17 | "sass": "^1.85.1", 18 | "vite": "^6.2.0", 19 | "vite-plugin-compression2": "^1.3.3" 20 | }, 21 | "scripts": { 22 | "start": "npx vite", 23 | "build": "vite build" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/0-255.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/0-255.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/1024-1279.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/1024-1279.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/10240-10495.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 10240-10495 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/10496-10751.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 10496-10751 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/10752-11007.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 10752-11007 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/11008-11263.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 11008-11263 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/11264-11519.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/11264-11519.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/11520-11775.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/11520-11775.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/11776-12031.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/11776-12031.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/12032-12287.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 12032-12287 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/12288-12543.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 12288-12543 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/12544-12799.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 12544-12799 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/1280-1535.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/1280-1535.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/12800-13055.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 12800-13055 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/13056-13311.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 13056-13311 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/13312-13567.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 13312-13567 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/13568-13823.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 13568-13823 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/13824-14079.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 13824-14079 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/14080-14335.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 14080-14335 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/14336-14591.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 14336-14591 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/14592-14847.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 14592-14847 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/14848-15103.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 14848-15103 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/15104-15359.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 15104-15359 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/1536-1791.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 1536-1791 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/15360-15615.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 15360-15615 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/15616-15871.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 15616-15871 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/15872-16127.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 15872-16127 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/16128-16383.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 16128-16383 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/16384-16639.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 16384-16639 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/16640-16895.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 16640-16895 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/16896-17151.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 16896-17151 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/17152-17407.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 17152-17407 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/17408-17663.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 17408-17663 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/17664-17919.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 17664-17919 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/1792-2047.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 1792-2047 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/17920-18175.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 17920-18175 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/18176-18431.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 18176-18431 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/18432-18687.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 18432-18687 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/18688-18943.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 18688-18943 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/18944-19199.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 18944-19199 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/19200-19455.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 19200-19455 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/19456-19711.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 19456-19711 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/19712-19967.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 19712-19967 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/19968-20223.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 19968-20223 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/20224-20479.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 20224-20479 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/2048-2303.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 2048-2303 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/20480-20735.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 20480-20735 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/20736-20991.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 20736-20991 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/20992-21247.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 20992-21247 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/21248-21503.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 21248-21503 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/21504-21759.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 21504-21759 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/21760-22015.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 21760-22015 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/22016-22271.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 22016-22271 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/22272-22527.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 22272-22527 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/22528-22783.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 22528-22783 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/22784-23039.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 22784-23039 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/2304-2559.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/2304-2559.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/23040-23295.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 23040-23295 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/23296-23551.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 23296-23551 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/23552-23807.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 23552-23807 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/23808-24063.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 23808-24063 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/24064-24319.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 24064-24319 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/24320-24575.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 24320-24575 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/24576-24831.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 24576-24831 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/24832-25087.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 24832-25087 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/25088-25343.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 25088-25343 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/25344-25599.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 25344-25599 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/256-511.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/256-511.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/2560-2815.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 2560-2815 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/25600-25855.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 25600-25855 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/25856-26111.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 25856-26111 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/26112-26367.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 26112-26367 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/26368-26623.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 26368-26623 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/26624-26879.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 26624-26879 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/26880-27135.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 26880-27135 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/27136-27391.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 27136-27391 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/27392-27647.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 27392-27647 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/27648-27903.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 27648-27903 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/27904-28159.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 27904-28159 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/2816-3071.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 2816-3071 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/28160-28415.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 28160-28415 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/28416-28671.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 28416-28671 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/28672-28927.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 28672-28927 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/28928-29183.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 28928-29183 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/29184-29439.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 29184-29439 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/29440-29695.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 29440-29695 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/29696-29951.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 29696-29951 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/29952-30207.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 29952-30207 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/30208-30463.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 30208-30463 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/30464-30719.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 30464-30719 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/3072-3327.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 3072-3327 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/30720-30975.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 30720-30975 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/30976-31231.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 30976-31231 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/31232-31487.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 31232-31487 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/31488-31743.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 31488-31743 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/31744-31999.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 31744-31999 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/32000-32255.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 32000-32255 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/32256-32511.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 32256-32511 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/32512-32767.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 32512-32767 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/32768-33023.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 32768-33023 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/33024-33279.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 33024-33279 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/3328-3583.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 3328-3583 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/33280-33535.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 33280-33535 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/33536-33791.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 33536-33791 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/33792-34047.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 33792-34047 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/34048-34303.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 34048-34303 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/34304-34559.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 34304-34559 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/34560-34815.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 34560-34815 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/34816-35071.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 34816-35071 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/35072-35327.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 35072-35327 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/35328-35583.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 35328-35583 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/35584-35839.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 35584-35839 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/3584-3839.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 3584-3839 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/35840-36095.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 35840-36095 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/36096-36351.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 36096-36351 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/36352-36607.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 36352-36607 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/36608-36863.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 36608-36863 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/36864-37119.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 36864-37119 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/37120-37375.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 37120-37375 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/37376-37631.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 37376-37631 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/37632-37887.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 37632-37887 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/37888-38143.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 37888-38143 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/38144-38399.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 38144-38399 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/3840-4095.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 3840-4095 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/38400-38655.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 38400-38655 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/38656-38911.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 38656-38911 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/38912-39167.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 38912-39167 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/39168-39423.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 39168-39423 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/39424-39679.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 39424-39679 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/39680-39935.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 39680-39935 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/39936-40191.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 39936-40191 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/40192-40447.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 40192-40447 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/40448-40703.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 40448-40703 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/40704-40959.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 40704-40959 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/4096-4351.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 4096-4351 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/40960-41215.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 40960-41215 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/41216-41471.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 41216-41471 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/41472-41727.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 41472-41727 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/41728-41983.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 41728-41983 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/41984-42239.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 41984-42239 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/42240-42495.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 42240-42495 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/42496-42751.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/42496-42751.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/42752-43007.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/42752-43007.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/43008-43263.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/43008-43263.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/43264-43519.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/43264-43519.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/4352-4607.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 4352-4607 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/43520-43775.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 43520-43775 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/43776-44031.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/43776-44031.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/44032-44287.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 44032-44287 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/44288-44543.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 44288-44543 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/44544-44799.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 44544-44799 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/44800-45055.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 44800-45055 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/45056-45311.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 45056-45311 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/45312-45567.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 45312-45567 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/45568-45823.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 45568-45823 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/45824-46079.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 45824-46079 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/4608-4863.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 4608-4863 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/46080-46335.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 46080-46335 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/46336-46591.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 46336-46591 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/46592-46847.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 46592-46847 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/46848-47103.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 46848-47103 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/47104-47359.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 47104-47359 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/47360-47615.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 47360-47615 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/47616-47871.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 47616-47871 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/47872-48127.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 47872-48127 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/48128-48383.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 48128-48383 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/48384-48639.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 48384-48639 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/4864-5119.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 4864-5119 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/48640-48895.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 48640-48895 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/48896-49151.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 48896-49151 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/49152-49407.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 49152-49407 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/49408-49663.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 49408-49663 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/49664-49919.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 49664-49919 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/49920-50175.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 49920-50175 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/50176-50431.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 50176-50431 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/50432-50687.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 50432-50687 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/50688-50943.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 50688-50943 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/50944-51199.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 50944-51199 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/512-767.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/512-767.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/5120-5375.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 5120-5375 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/51200-51455.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 51200-51455 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/51456-51711.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 51456-51711 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/51712-51967.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 51712-51967 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/51968-52223.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 51968-52223 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/52224-52479.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 52224-52479 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/52480-52735.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 52480-52735 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/52736-52991.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 52736-52991 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/52992-53247.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 52992-53247 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/53248-53503.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 53248-53503 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/53504-53759.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 53504-53759 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/5376-5631.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 5376-5631 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/53760-54015.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 53760-54015 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/54016-54271.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 54016-54271 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/54272-54527.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 54272-54527 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/54528-54783.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 54528-54783 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/54784-55039.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 54784-55039 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/55040-55295.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 55040-55295 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/55296-55551.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 55296-55551 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/55552-55807.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 55552-55807 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/55808-56063.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 55808-56063 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/56064-56319.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 56064-56319 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/5632-5887.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 5632-5887 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/56320-56575.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 56320-56575 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/56576-56831.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 56576-56831 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/56832-57087.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 56832-57087 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/57088-57343.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 57088-57343 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/57344-57599.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 57344-57599 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/57600-57855.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 57600-57855 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/57856-58111.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 57856-58111 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/58112-58367.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 58112-58367 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/58368-58623.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 58368-58623 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/58624-58879.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 58624-58879 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/5888-6143.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 5888-6143 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/58880-59135.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 58880-59135 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/59136-59391.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 59136-59391 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/59392-59647.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 59392-59647 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/59648-59903.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 59648-59903 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/59904-60159.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 59904-60159 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/60160-60415.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 60160-60415 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/60416-60671.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 60416-60671 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/60672-60927.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 60672-60927 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/60928-61183.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 60928-61183 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/61184-61439.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 61184-61439 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/6144-6399.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 6144-6399 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/61440-61695.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 61440-61695 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/61696-61951.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 61696-61951 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/61952-62207.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 61952-62207 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/62208-62463.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 62208-62463 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/62464-62719.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 62464-62719 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/62720-62975.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 62720-62975 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/62976-63231.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 62976-63231 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/63232-63487.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 63232-63487 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/63488-63743.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 63488-63743 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/63744-63999.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 63744-63999 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/6400-6655.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 6400-6655 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/64000-64255.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 64000-64255 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/64256-64511.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/64256-64511.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/64512-64767.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 64512-64767 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/64768-65023.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 64768-65023 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/65024-65279.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/65024-65279.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/65280-65535.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/65280-65535.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/6656-6911.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/6656-6911.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/6912-7167.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 6912-7167 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/7168-7423.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/7168-7423.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/7424-7679.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/7424-7679.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/768-1023.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/768-1023.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/7680-7935.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/7680-7935.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/7936-8191.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/7936-8191.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/8192-8447.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/8192-8447.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/8448-8703.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/8448-8703.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/8704-8959.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/8704-8959.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/8960-9215.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 8960-9215 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/9216-9471.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 9216-9471 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/9472-9727.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/public/fonts/NotoSans-Medium/9472-9727.pbf -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/9728-9983.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 9728-9983 -------------------------------------------------------------------------------- /frontend/public/fonts/NotoSans-Medium/9984-10239.pbf: -------------------------------------------------------------------------------- 1 | 2 |  3 | Noto Sans Medium 4 | 9984-10239 -------------------------------------------------------------------------------- /frontend/redirect.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 10 | 11 | -------------------------------------------------------------------------------- /frontend/src/definitions.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'pure-context-menu'; 2 | declare module 'mapbox-gl-draw-geodesic'; 3 | 4 | interface ImportMetaEnv { 5 | readonly VITE_DATA_HASH: string 6 | } 7 | 8 | interface ImportMeta { 9 | readonly env: ImportMetaEnv 10 | } 11 | -------------------------------------------------------------------------------- /frontend/src/stars.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/frontend/src/stars.webp -------------------------------------------------------------------------------- /frontend/src/tools/CompactAttributionControl.ts: -------------------------------------------------------------------------------- 1 | import { AttributionControl, Map } from "maplibre-gl"; 2 | 3 | export class CompactAttributionControl extends AttributionControl { 4 | 5 | private oldUpdateCompact: () => void; 6 | 7 | constructor(embedded:boolean) { 8 | super({compact: true}); 9 | if(embedded) { 10 | this.oldUpdateCompact = this._updateCompact; 11 | this._updateCompact = ()=> { 12 | this.oldUpdateCompact(); 13 | this._toggleAttribution(); 14 | } 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ESNext", 4 | "module": "ESNext", 5 | "moduleResolution": "Bundler", 6 | "noImplicitAny": true, 7 | "removeComments": true, 8 | "sourceMap": true, 9 | "isolatedModules": true 10 | }, 11 | "include": ["src/**/*"], 12 | "exclude": ["node_modules", "**/*.spec.ts"] 13 | } -------------------------------------------------------------------------------- /sources/images/avistan/World Guide/.gitignore: -------------------------------------------------------------------------------- 1 | /avistan.webp 2 | -------------------------------------------------------------------------------- /sources/images/avistan/World Guide/avistan.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 38f9583453b58a32ed255a544866e7b9 3 | size: 17158034 4 | hash: md5 5 | path: avistan.webp 6 | -------------------------------------------------------------------------------- /sources/images/avistan/absalom/Extinction Curse/.gitignore: -------------------------------------------------------------------------------- 1 | /swardlands-labels_modified.tif 2 | -------------------------------------------------------------------------------- /sources/images/avistan/absalom/Extinction Curse/swardlands-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 5b98e5b433d8cdb488d7162f2bddbe97 3 | size: 8296192 4 | hash: md5 5 | path: swardlands-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/avistan/absalom/The Blakros Matrimony/.gitignore: -------------------------------------------------------------------------------- 1 | /PariolIsland_modified.png 2 | /PariolIsland.png 3 | -------------------------------------------------------------------------------- /sources/images/avistan/absalom/The Blakros Matrimony/PariolIsland.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0240b69e6726e7c84401ba475189d731 3 | size: 1590800 4 | hash: md5 5 | path: PariolIsland.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/absalom/The Blakros Matrimony/PariolIsland_modified.pgw: -------------------------------------------------------------------------------- 1 | 0.0000355239477 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000355239477 5 | -0.5541902090327 6 | 30.6410379144423 -------------------------------------------------------------------------------- /sources/images/avistan/absalom/The Blakros Matrimony/PariolIsland_modified.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: c5607c3d303cdc7d58b2ce35a8fd2806 3 | size: 1671320 4 | hash: md5 5 | path: PariolIsland_modified.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/broken lands/brevoy/.gitignore: -------------------------------------------------------------------------------- 1 | /stolen-land.png 2 | /stolen-land_labeled.png 3 | /stolen-land_labeled_modified.tif 4 | /stolen-land_modified.tif 5 | -------------------------------------------------------------------------------- /sources/images/avistan/broken lands/brevoy/stolen-land.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 6cabc7e9f2056114451990d563b242f7 3 | size: 1997083 4 | hash: md5 5 | path: stolen-land.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/broken lands/brevoy/stolen-land_labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 8369a82256cd71c3159c21e675753183 3 | size: 1845768 4 | hash: md5 5 | path: stolen-land_labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/broken lands/brevoy/stolen-land_labeled_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: d63ac14e7273d916207b6466a5b29a13 3 | size: 2633661 4 | hash: md5 5 | path: stolen-land_labeled_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/avistan/broken lands/brevoy/stolen-land_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: b560a570ed9a8fcc291eea58a63ce156 3 | size: 2665167 4 | hash: md5 5 | path: stolen-land_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/avistan/broken lands/river kingdoms/Kingmaker/.gitignore: -------------------------------------------------------------------------------- 1 | /stolen-lands.png 2 | /stolen-lands_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/avistan/broken lands/river kingdoms/Kingmaker/stolen-lands.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: bdfda81a933058f138af63f796fdb658 3 | size: 42337284 4 | hash: md5 5 | path: stolen-lands.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/broken lands/river kingdoms/Kingmaker/stolen-lands_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 7eec2df2806c761937d2bae92e37924f 3 | size: 37775294 4 | hash: md5 5 | path: stolen-lands_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/avistan/broken lands/river kingdoms/Thornkeep/.gitignore: -------------------------------------------------------------------------------- 1 | /thornkeep-labels.png 2 | /thornkeep-labels_georeferenced.png 3 | -------------------------------------------------------------------------------- /sources/images/avistan/broken lands/river kingdoms/Thornkeep/thornkeep-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 4ea1e97cf220e01c516fab8e6daf32c7 3 | size: 4757378 4 | hash: md5 5 | path: thornkeep-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/broken lands/river kingdoms/Thornkeep/thornkeep-labels_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0001313756912 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0001313756912 5 | -4.8157763631583 6 | 47.6355758419079 -------------------------------------------------------------------------------- /sources/images/avistan/broken lands/river kingdoms/Thornkeep/thornkeep-labels_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: bde7087443fca223974e76664dff6df4 3 | size: 4691734 4 | hash: md5 5 | path: thornkeep-labels_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/eye of dread/isle of terror/City of Golden Death/.gitignore: -------------------------------------------------------------------------------- 1 | /isle of terror.webp 2 | /isle of terror_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/avistan/eye of dread/isle of terror/City of Golden Death/isle of terror.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 933e2619762eee5a8a98cffb82ca2a7c 3 | size: 274480 4 | hash: md5 5 | path: isle of terror.webp 6 | -------------------------------------------------------------------------------- /sources/images/avistan/eye of dread/isle of terror/City of Golden Death/isle of terror_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 9c9b7752ba1a872ef5ea79a3ad3e64ad 3 | size: 6382602 4 | hash: md5 5 | path: isle of terror_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/Hell's Rebels Poster Map Folio/.gitignore: -------------------------------------------------------------------------------- 1 | /vyre_labeled_georeferenced.png 2 | /vyre_unlabeled_georeferenced.png 3 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/Hell's Rebels Poster Map Folio/vyre_labeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000084515300 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000084515300 5 | -24.1753655475111 6 | 39.8315463063632 -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/Hell's Rebels Poster Map Folio/vyre_labeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 41672a0bcc3f845acaa128aea20423d5 3 | size: 27726652 4 | hash: md5 5 | path: vyre_labeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/Hell's Rebels Poster Map Folio/vyre_unlabeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000084515300 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000084515300 5 | -24.1753655475111 6 | 39.8315463063632 -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/Hell's Rebels Poster Map Folio/vyre_unlabeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 57478558006f739b4c964ef4df175c0f 3 | size: 31425739 4 | hash: md5 5 | path: vyre_unlabeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/In Hell's Bright Shadow/.gitignore: -------------------------------------------------------------------------------- 1 | ravounel-labels.png 2 | /ravounel_labeled.png 3 | /ravounel_unlabeled.png 4 | /ravounel_labeled_modified.tif 5 | /ravounel_unlabeled_modified.tif 6 | /acisazi_unlabeled_georeferenced.png 7 | /kintargo_labeled_mapfolio_georeferenced.png 8 | /kintargo_unlabeled_mapfolio_georeferenced.png 9 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/In Hell's Bright Shadow/acisazi_unlabeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000182466366 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000182466366 5 | -24.1784030483935 6 | 38.8040593937293 -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/In Hell's Bright Shadow/acisazi_unlabeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 7b479d9790a316d17422bc3006a70494 3 | size: 272385 4 | hash: md5 5 | path: acisazi_unlabeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/In Hell's Bright Shadow/kintargo_labeled_mapfolio_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000024132346 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000024132346 5 | -23.0943094927882 6 | 39.0739128496843 -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/In Hell's Bright Shadow/kintargo_labeled_mapfolio_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 84bb831f1648067d1122297af1129ad5 3 | size: 72721933 4 | hash: md5 5 | path: kintargo_labeled_mapfolio_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/In Hell's Bright Shadow/kintargo_unlabeled_mapfolio_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000048266118 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000048266118 5 | -23.0943235442541 6 | 39.0739272932310 -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/In Hell's Bright Shadow/kintargo_unlabeled_mapfolio_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: e9e4cd41bfb7cee5b0bf3a530d59c2d9 3 | size: 27244823 4 | hash: md5 5 | path: kintargo_unlabeled_mapfolio_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/In Hell's Bright Shadow/ravounel-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 1f53b39c37600b6cc41c8fb9a8c0b4d1 3 | size: 4632294 4 | hash: md5 5 | path: ravounel-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/In Hell's Bright Shadow/ravounel_labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 89bd91e04d7f812ce7a149f5a87a7e5f 3 | size: 4147077 4 | hash: md5 5 | path: ravounel_labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/In Hell's Bright Shadow/ravounel_labeled_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 6ec90f17d2be88d20609da6902349c42 3 | size: 5765400 4 | hash: md5 5 | path: ravounel_labeled_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/In Hell's Bright Shadow/ravounel_unlabeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 72529c2bc9bd5f36db673740ea75e98a 3 | size: 4353659 4 | hash: md5 5 | path: ravounel_unlabeled.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/In Hell's Bright Shadow/ravounel_unlabeled_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 7444cfb67a4541fb7a28bb243f7f3c02 3 | size: 6086434 4 | hash: md5 5 | path: ravounel_unlabeled_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/No Response from Deepmar/.gitignore: -------------------------------------------------------------------------------- 1 | /deepmar_labeled_georeferenced.png 2 | /deepmar_penal_colony_labeled_georeferenced.png 3 | /deepmar_penal_colony_unlabeled_georeferenced.png 4 | /deepmar_unlabeled_georeferenced.png 5 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/No Response from Deepmar/deepmar_labeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0006138366593 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0006138366593 5 | -25.2159524837109 6 | 40.6282930581089 -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/No Response from Deepmar/deepmar_labeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 6bfd03ddca5c87cd960b62bab8924b24 3 | size: 898016 4 | hash: md5 5 | path: deepmar_labeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/No Response from Deepmar/deepmar_penal_colony_labeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000007274213 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000007274213 5 | -24.7501403624871 6 | 40.1998987837335 -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/No Response from Deepmar/deepmar_penal_colony_labeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: dcfe42e457964b3e83c904ddbad8b726 3 | size: 2489334 4 | hash: md5 5 | path: deepmar_penal_colony_labeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/No Response from Deepmar/deepmar_penal_colony_unlabeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000007267995 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000007267995 5 | -24.7460569940021 6 | 40.1974617376188 -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/No Response from Deepmar/deepmar_penal_colony_unlabeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 32d666d081cd9277278d00736c7f41b8 3 | size: 2450204 4 | hash: md5 5 | path: deepmar_penal_colony_unlabeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/No Response from Deepmar/deepmar_unlabeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0006136240894 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0006136240894 5 | -25.2150333538057 6 | 40.6281989958984 -------------------------------------------------------------------------------- /sources/images/avistan/old cheliax/No Response from Deepmar/deepmar_unlabeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 283e70e66b74879cccdd0a98157e942b 3 | size: 890876 4 | hash: md5 5 | path: deepmar_unlabeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Return of the Runelords Poster Map Folio/.gitignore: -------------------------------------------------------------------------------- 1 | /Thassilon_modified.tif 2 | /Thassilon.tif 3 | /Thassilon_modified.tif.ovr 4 | -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Return of the Runelords Poster Map Folio/Thassilon.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 7a31e0425357d07e24dfe3faf933f921 3 | size: 17445832 4 | hash: md5 5 | path: Thassilon.tif 6 | -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Return of the Runelords Poster Map Folio/Thassilon_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 64d4632ab8c97097ba8d7dcb7b34f838 3 | size: 102296029 4 | hash: md5 5 | path: Thassilon_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Return of the Runelords Poster Map Folio/Thassilon_modified.tif.ovr.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0656fe11916610b2a464d6dbc3a9d058 3 | size: 75035289 4 | hash: md5 5 | path: Thassilon_modified.tif.ovr 6 | -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Second Darkness/Children of the Void/.gitignore: -------------------------------------------------------------------------------- 1 | /devil's elbow.tif 2 | -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Second Darkness/Children of the Void/devil's elbow.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: f5a1856ee1de7ab8d8503dbf00cb3e74 3 | size: 3907008 4 | hash: md5 5 | path: devil's elbow.tif 6 | -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Sevend Dooms of Sandpoint/.gitignore: -------------------------------------------------------------------------------- 1 | /sandpoint.png 2 | /sandpoint_labeled.png 3 | -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Sevend Dooms of Sandpoint/sandpoint.pgw: -------------------------------------------------------------------------------- 1 | 0.0001014222357 2 | -0.0000000000000 3 | -0.0000000000000 4 | -0.0000730292987 5 | -27.2602537167766 6 | 44.1298817520809 -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Sevend Dooms of Sandpoint/sandpoint.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 232c156cf2cf6fccd44a187777eaac35 3 | size: 8021902 4 | hash: md5 5 | path: sandpoint.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Sevend Dooms of Sandpoint/sandpoint_labeled.pgw: -------------------------------------------------------------------------------- 1 | 0.0001014222357 2 | -0.0000000000000 3 | -0.0000000000000 4 | -0.0000730292987 5 | -27.2602537167766 6 | 44.1298817520809 -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Sevend Dooms of Sandpoint/sandpoint_labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 6e4dfd97b1301d5af9b9ebe67b8f07f6 3 | size: 8118841 4 | hash: md5 5 | path: sandpoint_labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Shattered Star/.gitignore: -------------------------------------------------------------------------------- 1 | /Magnimar.jpg 2 | /XinIsland.png 3 | /ladys_cape_unlabeled_georeferenced.png 4 | -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Shattered Star/Magnimar.jgw: -------------------------------------------------------------------------------- 1 | 0.0000045947473 2 | -0.0000000000000 3 | -0.0000000000000 4 | -0.0000033069638 5 | -28.0439836732660 6 | 43.9413026522509 -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Shattered Star/Magnimar.jpg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 957eca87530be6a5b27fe490e69ce13e 3 | size: 13613491 4 | hash: md5 5 | path: Magnimar.jpg 6 | -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Shattered Star/XinIsland.pgw: -------------------------------------------------------------------------------- 1 | 0.0000082746238 2 | -0.0000000000000 3 | -0.0000000000000 4 | -0.0000059725862 5 | -30.6986839399993 6 | 43.8526931928778 -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Shattered Star/XinIsland.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 05ee69eebbf371f18ea3b7a36c1874f4 3 | size: 1085043 4 | hash: md5 5 | path: XinIsland.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Shattered Star/ladys_cape_unlabeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000536102218 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000536102218 5 | -28.3722529465725 6 | 43.2010591199092 -------------------------------------------------------------------------------- /sources/images/avistan/saga lands/varisia/Shattered Star/ladys_cape_unlabeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0a356efa00f6c89136998dc1631a4a5f 3 | size: 1219342 4 | hash: md5 5 | path: ladys_cape_unlabeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/avistan/shining kingdoms/taldor/.gitignore: -------------------------------------------------------------------------------- 1 | /Pactbreaker.jpg 2 | /Pactbreaker_labeled.jpg 3 | /Pactbreaker_labeled_modified.tif 4 | /Pactbreaker_modified.tif 5 | -------------------------------------------------------------------------------- /sources/images/avistan/shining kingdoms/taldor/Pactbreaker.jpg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 8fa8d33c3bd931151fddbdcd299896fd 3 | size: 3336753 4 | hash: md5 5 | path: Pactbreaker.jpg 6 | -------------------------------------------------------------------------------- /sources/images/avistan/shining kingdoms/taldor/Pactbreaker_labeled.jpg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 1dc74cc6c5295c0257e968d7e8e33870 3 | size: 3180219 4 | hash: md5 5 | path: Pactbreaker_labeled.jpg 6 | -------------------------------------------------------------------------------- /sources/images/avistan/shining kingdoms/taldor/Pactbreaker_labeled_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: c5b280734f3e49b6997e63f8133f55c8 3 | size: 21372719 4 | hash: md5 5 | path: Pactbreaker_labeled_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/avistan/shining kingdoms/taldor/Pactbreaker_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: e9d6bf2792b0ef566fbf9a5e49d3ba50 3 | size: 21632505 4 | hash: md5 5 | path: Pactbreaker_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/casmaron/iobaria/The Varnhold Vanishing/.gitignore: -------------------------------------------------------------------------------- 1 | /iobaria-labels.png 2 | /iobaria-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/casmaron/iobaria/The Varnhold Vanishing/iobaria-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: b08f7ed02b0e43d00aea2a05383aaf64 3 | size: 5150800 4 | hash: md5 5 | path: iobaria-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/casmaron/iobaria/The Varnhold Vanishing/iobaria-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: e325abe634501531fb41a0fd677546d4 3 | size: 16771726 4 | hash: md5 5 | path: iobaria-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/casmaron/vudra/Impossible Lands/.gitignore: -------------------------------------------------------------------------------- 1 | /vudra_bare.tif 2 | /vudra_labels.tif 3 | -------------------------------------------------------------------------------- /sources/images/casmaron/vudra/Impossible Lands/vudra_bare.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 6cef492297e490d13e7967de5516298a 3 | size: 4954925 4 | hash: md5 5 | path: vudra_bare.tif 6 | -------------------------------------------------------------------------------- /sources/images/casmaron/vudra/Impossible Lands/vudra_labels.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: ec1ac091f2c0b39cce2c59694698cc99 3 | size: 7564875 4 | hash: md5 5 | path: vudra_labels.tif 6 | -------------------------------------------------------------------------------- /sources/images/crown-of-the-world/1e Jade Regent/.gitignore: -------------------------------------------------------------------------------- 1 | /crown-arcadia.png 2 | /crown-arcadia_modified.tif 3 | /crown-avistan-labeled2.png 4 | /crown-avistan-labeled2_modified.tif 5 | /crown-avistan-labeled3.png 6 | /crown-avistan-labeled3_modified.tif 7 | /crown-of-the-world.webp 8 | /crown-of-the-world_labels.webp 9 | /crown-tianxia-labeled1.png 10 | /crown-tianxia-labeled2.png 11 | /CrownOfTheWorld-projected.png 12 | /CrownOfTheWorldLabeled-projected.png 13 | -------------------------------------------------------------------------------- /sources/images/crown-of-the-world/1e Jade Regent/CrownOfTheWorld-projected.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 871992596e13cbf7d147a887e5c88f44 3 | size: 3357320 4 | hash: md5 5 | path: CrownOfTheWorld-projected.png 6 | -------------------------------------------------------------------------------- /sources/images/crown-of-the-world/1e Jade Regent/CrownOfTheWorldLabeled-projected.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 1a643ba5edf3aa11530123a12c3106ba 3 | size: 3423292 4 | hash: md5 5 | path: CrownOfTheWorldLabeled-projected.png 6 | -------------------------------------------------------------------------------- /sources/images/crown-of-the-world/1e Jade Regent/crown-arcadia.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 8c861e6fe3d6ea506e9cc1568c574a0e 3 | size: 10196927 4 | hash: md5 5 | path: crown-arcadia.png 6 | -------------------------------------------------------------------------------- /sources/images/crown-of-the-world/1e Jade Regent/crown-arcadia_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 7e342c74f45b42f525b511e7aafb38b6 3 | size: 28554628 4 | hash: md5 5 | path: crown-arcadia_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/crown-of-the-world/1e Jade Regent/crown-avistan-labeled2.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 42debda930fa9f147b6dbe1a632df36a 3 | size: 15619274 4 | hash: md5 5 | path: crown-avistan-labeled2.png 6 | -------------------------------------------------------------------------------- /sources/images/crown-of-the-world/1e Jade Regent/crown-avistan-labeled2_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 95ba316d30c8c27ec463da7a2482a450 3 | size: 66071644 4 | hash: md5 5 | path: crown-avistan-labeled2_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/crown-of-the-world/1e Jade Regent/crown-avistan-labeled3.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: f321b2701627ff22307c34c20cd7a2cd 3 | size: 16713960 4 | hash: md5 5 | path: crown-avistan-labeled3.png 6 | -------------------------------------------------------------------------------- /sources/images/crown-of-the-world/1e Jade Regent/crown-avistan-labeled3_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 759abffa2e102594fecbb016298a38d7 3 | size: 66046474 4 | hash: md5 5 | path: crown-avistan-labeled3_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/crown-of-the-world/1e Jade Regent/crown-of-the-world.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: cd461d833d6d9250df7a7748bd6a11e7 3 | size: 336348 4 | hash: md5 5 | path: crown-of-the-world.webp 6 | -------------------------------------------------------------------------------- /sources/images/crown-of-the-world/1e Jade Regent/crown-of-the-world_labels.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: a4eb5000332757d568fbbea6348ed430 3 | size: 321446 4 | hash: md5 5 | path: crown-of-the-world_labels.webp 6 | -------------------------------------------------------------------------------- /sources/images/crown-of-the-world/1e Jade Regent/crown-tianxia-labeled1.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 42fc4c2583a5ef5242c514b8389c1368 3 | size: 32417365 4 | hash: md5 5 | path: crown-tianxia-labeled1.png 6 | -------------------------------------------------------------------------------- /sources/images/crown-of-the-world/1e Jade Regent/crown-tianxia-labeled2.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 156861eea0e5da931670e1c19eb5d5e4 3 | size: 31893331 4 | hash: md5 5 | path: crown-tianxia-labeled2.png 6 | -------------------------------------------------------------------------------- /sources/images/garund/World Guide/.gitignore: -------------------------------------------------------------------------------- 1 | /north.webp 2 | /north_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/garund/World Guide/north.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 58eeb837eed60c363310ef0809d324bf 3 | size: 11060964 4 | hash: md5 5 | path: north.webp 6 | -------------------------------------------------------------------------------- /sources/images/garund/World Guide/north_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: c0f3dbacae76a692e721c0655aae36e8 3 | size: 61386194 4 | hash: md5 5 | path: north_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/garund/mediogalti island/.gitignore: -------------------------------------------------------------------------------- 1 | /ilizmagorti_labeled_georeferenced.png 2 | /mediogalti-island_labeled.png 3 | /mediogalti-island_labeled_modified.tif 4 | -------------------------------------------------------------------------------- /sources/images/garund/mediogalti island/ilizmagorti_labeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000048104473 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000048104473 5 | -30.7580597159836 6 | 24.2813959178283 -------------------------------------------------------------------------------- /sources/images/garund/mediogalti island/ilizmagorti_labeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 382291cceb0fb906a73abdec7bf1d1aa 3 | size: 15148570 4 | hash: md5 5 | path: ilizmagorti_labeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/garund/mediogalti island/mediogalti-island_labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 2c41de950bd059fdf21d8bdf2d117bc0 3 | size: 2905849 4 | hash: md5 5 | path: mediogalti-island_labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/garund/mediogalti island/mediogalti-island_labeled_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 373bafa108cdbeb0e5e08c92dc13dd4e 3 | size: 3541231 4 | hash: md5 5 | path: mediogalti-island_labeled_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/garund/mwangi expanse/.gitignore: -------------------------------------------------------------------------------- 1 | /Strength of Thousands.png 2 | /Strength of Thousands_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/garund/mwangi expanse/Strength of Thousands.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 24eb593a3cd11b6f21db25acb7038e40 3 | size: 4938814 4 | hash: md5 5 | path: Strength of Thousands.png 6 | -------------------------------------------------------------------------------- /sources/images/garund/mwangi expanse/Strength of Thousands_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: aa80451d9bfd520227976c9438515c81 3 | size: 11745700 4 | hash: md5 5 | path: Strength of Thousands_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/garund/osirion/.gitignore: -------------------------------------------------------------------------------- 1 | osirion-labeled.png 2 | osirion-labeled_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/garund/osirion/osirion-labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: d897b999bb97142cc4ad8f2bbd4c8cae 3 | size: 4227827 4 | hash: md5 5 | path: osirion-labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/garund/osirion/osirion-labeled_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 00ec9775a371bbd62febbec88c4e53fc 3 | size: 16014696 4 | hash: md5 5 | path: osirion-labeled_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/garund/shackles/.gitignore: -------------------------------------------------------------------------------- 1 | /port-peril_labeled_georeferenced.png 2 | /port-peril_unlabeled_georeferenced.png 3 | -------------------------------------------------------------------------------- /sources/images/garund/shackles/port-peril_labeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000107548928 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000107548928 5 | -25.8643081581705 6 | 17.8495225432186 -------------------------------------------------------------------------------- /sources/images/garund/shackles/port-peril_labeled_georeferenced.png.aux.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]] 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /sources/images/garund/shackles/port-peril_labeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 4fb16c498f712b894ee7f5c12e273843 3 | size: 6397907 4 | hash: md5 5 | path: port-peril_labeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/garund/shackles/port-peril_unlabeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000107576037 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000107576037 5 | -25.8643089499583 6 | 17.8495263940138 -------------------------------------------------------------------------------- /sources/images/garund/shackles/port-peril_unlabeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: f0a0347b57fbc04a445025b5bac86ed7 3 | size: 6826385 4 | hash: md5 5 | path: port-peril_unlabeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/garund/vidrian/.gitignore: -------------------------------------------------------------------------------- 1 | /smugglers_shiv_labeled_georeferenced.png 2 | /smugglers_shiv_unlabeled_georeferenced.png 3 | -------------------------------------------------------------------------------- /sources/images/garund/vidrian/smugglers_shiv_labeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000898301544 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000898301544 5 | -22.0601081846101 6 | 13.8317432688564 -------------------------------------------------------------------------------- /sources/images/garund/vidrian/smugglers_shiv_labeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: cc3d86e34eecf1791ae5680f4ab73a90 3 | size: 5979006 4 | hash: md5 5 | path: smugglers_shiv_labeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/garund/vidrian/smugglers_shiv_unlabeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000898550101 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000898550101 5 | -22.0600909674231 6 | 13.8317768862167 -------------------------------------------------------------------------------- /sources/images/garund/vidrian/smugglers_shiv_unlabeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: cb4bcb8a1e79bf2ed2bceb8570edcfce 3 | size: 6578770 4 | hash: md5 5 | path: smugglers_shiv_unlabeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/tian-xia/Minata/Fists of the Ruby Phoenix/.gitignore: -------------------------------------------------------------------------------- 1 | /bonmu_danger-island_labeled_georeferenced.png 2 | /bonmu_danger-island_unlabeled_georeferenced.png 3 | -------------------------------------------------------------------------------- /sources/images/tian-xia/Minata/Fists of the Ruby Phoenix/bonmu_danger-island_labeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000226429011 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000226429011 5 | 179.2467822940659 6 | -27.6773618703053 -------------------------------------------------------------------------------- /sources/images/tian-xia/Minata/Fists of the Ruby Phoenix/bonmu_danger-island_labeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 8c7ff117ce538f79a6cd1785b736adfe 3 | size: 10080010 4 | hash: md5 5 | path: bonmu_danger-island_labeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/tian-xia/Minata/Fists of the Ruby Phoenix/bonmu_danger-island_unlabeled_georeferenced.pgw: -------------------------------------------------------------------------------- 1 | 0.0000226491663 2 | 0.0000000000000 3 | 0.0000000000000 4 | -0.0000226491663 5 | 179.2467821419000 6 | -27.6773617037238 -------------------------------------------------------------------------------- /sources/images/tian-xia/Minata/Fists of the Ruby Phoenix/bonmu_danger-island_unlabeled_georeferenced.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 4c6000b35078e8b0589cabde4b5e51c4 3 | size: 10819884 4 | hash: md5 5 | path: bonmu_danger-island_unlabeled_georeferenced.png 6 | -------------------------------------------------------------------------------- /sources/images/tian-xia/Tian Xia World Guide/.gitignore: -------------------------------------------------------------------------------- 1 | /TianXia_Poster.tif 2 | /TianXia_Poster_labeled.tif 3 | /TianXia_Poster_labeled_modified.tif 4 | /TianXia_Poster_modified.tif 5 | /TianXia_Poster_labeled_modified.tif.ovr 6 | /TianXia_Poster_modified.tif.ovr 7 | -------------------------------------------------------------------------------- /sources/images/tian-xia/Tian Xia World Guide/TianXia_Poster.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: a137311c9d4b7b9134f3eb1c4fd9a2d1 3 | size: 73666306 4 | hash: md5 5 | path: TianXia_Poster.tif 6 | -------------------------------------------------------------------------------- /sources/images/tian-xia/Tian Xia World Guide/TianXia_Poster_labeled.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 4235657f619cb141dc696354bde3613f 3 | size: 74199875 4 | hash: md5 5 | path: TianXia_Poster_labeled.tif 6 | -------------------------------------------------------------------------------- /sources/images/tian-xia/Tian Xia World Guide/TianXia_Poster_labeled_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0a9a7660177640c82622b499b8d68621 3 | size: 102870657 4 | hash: md5 5 | path: TianXia_Poster_labeled_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/tian-xia/Tian Xia World Guide/TianXia_Poster_labeled_modified.tif.ovr.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 5d25e321d214b9b6cb5de671a0b52124 3 | size: 121616063 4 | hash: md5 5 | path: TianXia_Poster_labeled_modified.tif.ovr 6 | -------------------------------------------------------------------------------- /sources/images/tian-xia/Tian Xia World Guide/TianXia_Poster_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: ae61bc607226bce88aee7ead92e6e9d4 3 | size: 102737380 4 | hash: md5 5 | path: TianXia_Poster_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/tian-xia/Tian Xia World Guide/TianXia_Poster_modified.tif.ovr.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 1e7ff4cf2cd74df8f6b3b305fb4f7b43 3 | size: 121616063 4 | hash: md5 5 | path: TianXia_Poster_modified.tif.ovr 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/.gitignore: -------------------------------------------------------------------------------- 1 | /arcadia.webp 2 | /shackles.webp 3 | /tian_xia.webp 4 | /vudra.webp 5 | /vudra.webp.aux.xml 6 | /vudra_labels.png 7 | /vudra_labels.png.aux.xml 8 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/sources/images/unsorted+unmapped/1e/.gitignore -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/01 Rise of the Runelords/.gitignore: -------------------------------------------------------------------------------- 1 | /hook-mountain-region-labels.png 2 | /hook-mountain-region.png 3 | /NE-Varisia-labels.png 4 | /NE-Varisia.png 5 | /sandpoint-hinterlands-labels.png 6 | /sandpoint-hinterlands.png 7 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/01 Rise of the Runelords/NE-Varisia-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: d39335323a853a48de8982b8eadf9141 3 | size: 5166127 4 | hash: md5 5 | path: NE-Varisia-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/01 Rise of the Runelords/NE-Varisia.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0bd9898cdfb5e71cf3c7b3c3a2f95fdb 3 | size: 3430936 4 | hash: md5 5 | path: NE-Varisia.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/01 Rise of the Runelords/hook-mountain-region-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: a9ae9baf6c381f852fee23446a80a950 3 | size: 3893792 4 | hash: md5 5 | path: hook-mountain-region-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/01 Rise of the Runelords/hook-mountain-region.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 9cf503e515d2bd4c3899d211fe49fcde 3 | size: 4215636 4 | hash: md5 5 | path: hook-mountain-region.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/01 Rise of the Runelords/sandpoint-hinterlands-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: f1c1001801d437abe00d34d62e142227 3 | size: 3859902 4 | hash: md5 5 | path: sandpoint-hinterlands-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/01 Rise of the Runelords/sandpoint-hinterlands.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 67dca0d12621704539a5392f55f2bbaf 3 | size: 3586708 4 | hash: md5 5 | path: sandpoint-hinterlands.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/02 Curse of the Crimson Throne/.gitignore: -------------------------------------------------------------------------------- 1 | /belkzen-labels2.png 2 | /darkmoon vale.jpg 3 | /partial-varisia-labels.png 4 | /varisia.jpg 5 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/02 Curse of the Crimson Throne/belkzen-labels2.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0f09b35f85332734cb8cd3f62c4ae98e 3 | size: 6301573 4 | hash: md5 5 | path: belkzen-labels2.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/02 Curse of the Crimson Throne/darkmoon vale.jpg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: fc00812133ab9de44395076af023f924 3 | size: 877306 4 | hash: md5 5 | path: darkmoon vale.jpg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/02 Curse of the Crimson Throne/partial-varisia-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: ae631731ca46ddf3448f3d53564a7ea6 3 | size: 2153522 4 | hash: md5 5 | path: partial-varisia-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/02 Curse of the Crimson Throne/varisia.jpg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: c0255f252bfeb70079864480a6dca0ad 3 | size: 824890 4 | hash: md5 5 | path: varisia.jpg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/03 Second Darkness/.gitignore: -------------------------------------------------------------------------------- 1 | /devil's elbow.jpg 2 | /Kyonin_Labels.png 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/03 Second Darkness/Kyonin_Labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: ef97d8607d164212a31ad9ed1412a0d7 3 | size: 2841293 4 | hash: md5 5 | path: Kyonin_Labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/03 Second Darkness/devil's elbow.jpg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 177ac408f3ff066854556c2684169db2 3 | size: 181475 4 | hash: md5 5 | path: devil's elbow.jpg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/04 Legacy of Fire/.gitignore: -------------------------------------------------------------------------------- 1 | /kelmarane-area.png 2 | /pale-mountains-region.png 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/04 Legacy of Fire/kelmarane-area.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 55b16bafcd9bc4cf28f7a78e469e1c17 3 | size: 2792310 4 | hash: md5 5 | path: kelmarane-area.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/04 Legacy of Fire/pale-mountains-region.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: bbb4b6d3d8cd40dd3f34910976c365bd 3 | size: 4223385 4 | hash: md5 5 | path: pale-mountains-region.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/05 Council of Thieves/.gitignore: -------------------------------------------------------------------------------- 1 | /westcrown-area.png 2 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/05 Council of Thieves/westcrown-area.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 8d74138bae17fbda5ce3390b21791b11 3 | size: 1824367 4 | hash: md5 5 | path: westcrown-area.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/06 Kingmaker/.gitignore: -------------------------------------------------------------------------------- 1 | /iobaria-labels.png 2 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/06 Kingmaker/iobaria-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: b08f7ed02b0e43d00aea2a05383aaf64 3 | size: 5150800 4 | hash: md5 5 | path: iobaria-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/08 Carrion Crown/.gitignore: -------------------------------------------------------------------------------- 1 | /Lepidstadt-area.png 2 | /Lozeri-and-Ardeal.png 3 | /Ustalav.jpg 4 | /Virlych.png 5 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/08 Carrion Crown/Lepidstadt-area.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 5e34e13f78a669848531866f3aee68a2 3 | size: 3741175 4 | hash: md5 5 | path: Lepidstadt-area.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/08 Carrion Crown/Lozeri-and-Ardeal.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 9a4ce7c7f9f6064037306dbd7a4dc785 3 | size: 3522122 4 | hash: md5 5 | path: Lozeri-and-Ardeal.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/08 Carrion Crown/Ustalav.jpg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: ceef459e9fa5e1e5a01faad823b09c7c 3 | size: 2009257 4 | hash: md5 5 | path: Ustalav.jpg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/08 Carrion Crown/Virlych.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: e4b3c298d4bf33cca603c7c9cdffe76e 3 | size: 5086480 4 | hash: md5 5 | path: Virlych.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/09 Jade Regent/.gitignore: -------------------------------------------------------------------------------- 1 | /crown-of-the-world-arcadia_labels.png 2 | /crown-of-the-world-avistan.png 3 | /crown-of-the-world-avistan_labels.png 4 | /crown-of-the-world-casmaron.png 5 | /crown-of-the-world-casmaron_labels.png 6 | /crown-of-the-world-tian-xia.png 7 | /crown-of-the-world-tian-xia_labels.png 8 | /crown-of-the-world.webp 9 | /crown-of-the-world_labels.webp 10 | /minkai-labeled.png 11 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/09 Jade Regent/crown-of-the-world-arcadia_labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 2bd42cfc3f3f0b2fd627f3b1c11e78f5 3 | size: 621894 4 | hash: md5 5 | path: crown-of-the-world-arcadia_labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/09 Jade Regent/crown-of-the-world-avistan.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0ced1971c1d34021906b54cad35670fc 3 | size: 2599515 4 | hash: md5 5 | path: crown-of-the-world-avistan.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/09 Jade Regent/crown-of-the-world-avistan_labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 1e654fda13c7b9b29c6f4e22e49498c4 3 | size: 2599515 4 | hash: md5 5 | path: crown-of-the-world-avistan_labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/09 Jade Regent/crown-of-the-world-casmaron.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 8e4035dbe57c2c81af1d6eb6186e003a 3 | size: 800956 4 | hash: md5 5 | path: crown-of-the-world-casmaron.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/09 Jade Regent/crown-of-the-world-casmaron_labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 2db130f24cb3b78fa55a3e1fcb8c2757 3 | size: 800956 4 | hash: md5 5 | path: crown-of-the-world-casmaron_labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/09 Jade Regent/crown-of-the-world-tian-xia.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 519bf8c06ce24c68b249fc9145d093b6 3 | size: 2406526 4 | hash: md5 5 | path: crown-of-the-world-tian-xia.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/09 Jade Regent/crown-of-the-world-tian-xia_labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 96247d7e61ef408482a3f9ef3d02ad4a 3 | size: 2406526 4 | hash: md5 5 | path: crown-of-the-world-tian-xia_labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/09 Jade Regent/crown-of-the-world.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: cd461d833d6d9250df7a7748bd6a11e7 3 | size: 336348 4 | hash: md5 5 | path: crown-of-the-world.webp 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/09 Jade Regent/crown-of-the-world_labels.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: a4eb5000332757d568fbbea6348ed430 3 | size: 321446 4 | hash: md5 5 | path: crown-of-the-world_labels.webp 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/09 Jade Regent/minkai-labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 3446186a09a7ed55a12aec16b0d96671 3 | size: 2734505 4 | hash: md5 5 | path: minkai-labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/11 Shattered Star/.gitignore: -------------------------------------------------------------------------------- 1 | /the-ladys-cape.png 2 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/11 Shattered Star/the-ladys-cape.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 4135aadf03f4f21e648421125998cdd0 3 | size: 3473445 4 | hash: md5 5 | path: the-ladys-cape.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/12 Reign of Winter/.gitignore: -------------------------------------------------------------------------------- 1 | /border-wood-labeled.png 2 | /border-wood.png 3 | /hoofwood-area-labeled.png 4 | /hoofwood-area.png 5 | /irrisen.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/12 Reign of Winter/border-wood-labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 35d7e8c5998a3589f0e62dfa0d1f8b83 3 | size: 5966528 4 | hash: md5 5 | path: border-wood-labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/12 Reign of Winter/border-wood.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 1b1637bce1134500d5514f31059b53f9 3 | size: 5873340 4 | hash: md5 5 | path: border-wood.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/12 Reign of Winter/hoofwood-area-labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 1b303761d3e3ab10ed1c2cfe051de332 3 | size: 1762107 4 | hash: md5 5 | path: hoofwood-area-labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/12 Reign of Winter/hoofwood-area.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 5a95c9b65bae94f965f30819ff8f7f50 3 | size: 1697010 4 | hash: md5 5 | path: hoofwood-area.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/12 Reign of Winter/irrisen.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 36069d0804c78bd1077597c7c80b8dc0 3 | size: 3166184 4 | hash: md5 5 | path: irrisen.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/13 Wrath of the Righteous/.gitignore: -------------------------------------------------------------------------------- 1 | /drezen-area-labeled.png 2 | /drezen-area.png 3 | /marchlands-labeled.png 4 | /marchlands.png 5 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/13 Wrath of the Righteous/drezen-area-labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: aff210264071b0e382f67e64c9b1e47f 3 | size: 2212585 4 | hash: md5 5 | path: drezen-area-labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/13 Wrath of the Righteous/drezen-area.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 22502dd6f4394699d0665a42459320c8 3 | size: 2188570 4 | hash: md5 5 | path: drezen-area.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/13 Wrath of the Righteous/marchlands-labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 8aa3906ef45dfb6046c30186346c3dfb 3 | size: 3830505 4 | hash: md5 5 | path: marchlands-labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/13 Wrath of the Righteous/marchlands.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 135c3f947d3200c554041a3cf411c66b 3 | size: 3850058 4 | hash: md5 5 | path: marchlands.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/14 Mummy's Mask/.gitignore: -------------------------------------------------------------------------------- 1 | /parched-dunes-labeled.png 2 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/14 Mummy's Mask/parched-dunes-labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: c9b323f87ca8f060572c39744fe49827 3 | size: 4463428 4 | hash: md5 5 | path: parched-dunes-labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/16 Giantslayer/.gitignore: -------------------------------------------------------------------------------- 1 | /mindspin-mountains-labeled.png 2 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/16 Giantslayer/mindspin-mountains-labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 08a880cc121d279f89bd13a1c4b50c67 3 | size: 5674926 4 | hash: md5 5 | path: mindspin-mountains-labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/17 Hell's Rebels/.gitignore: -------------------------------------------------------------------------------- 1 | /dismal-nitch-labeled.png 2 | /dismal-nitch.png 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/17 Hell's Rebels/dismal-nitch-labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: a8d871ef04c6263866c7e43832c6556e 3 | size: 1309107 4 | hash: md5 5 | path: dismal-nitch-labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/17 Hell's Rebels/dismal-nitch.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: df90789ac6fcf67b0250a76bd111d10e 3 | size: 1303315 4 | hash: md5 5 | path: dismal-nitch.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/18 Hell's Vengeance/.gitignore: -------------------------------------------------------------------------------- 1 | /whisperwood-labeled.png 2 | /winter-grove-area-labeled.png 3 | /winter-grove-area.png 4 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/18 Hell's Vengeance/whisperwood-labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 07324d807813b2186a9cc67620e01229 3 | size: 2731885 4 | hash: md5 5 | path: whisperwood-labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/18 Hell's Vengeance/winter-grove-area-labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 3b86e95687167adeae47e8f7973bedfb 3 | size: 3741754 4 | hash: md5 5 | path: winter-grove-area-labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/18 Hell's Vengeance/winter-grove-area.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 7f6bfbf5e3f4af39511e2b7edb823e16 3 | size: 3749107 4 | hash: md5 5 | path: winter-grove-area.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/19 Strange Aeons/.gitignore: -------------------------------------------------------------------------------- 1 | /sellen-river.png 2 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/19 Strange Aeons/sellen-river.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: ccb29044fd530aecd3778b959e90bf06 3 | size: 6304240 4 | hash: md5 5 | path: sellen-river.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/20 Ironfang Invasion/.gitignore: -------------------------------------------------------------------------------- 1 | /nesmian-plains-labels.png 2 | /nesmian-plains-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/20 Ironfang Invasion/nesmian-plains-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: c3a04284780b85222b410fc0c518526d 3 | size: 1037161 4 | hash: md5 5 | path: nesmian-plains-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/20 Ironfang Invasion/nesmian-plains-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: e468a6ea5227271aafc243cb70ee668a 3 | size: 5583822 4 | hash: md5 5 | path: nesmian-plains-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/22 War for the Crown/.gitignore: -------------------------------------------------------------------------------- 1 | /county-of-meratt-labels.png 2 | /county-of-meratt-labels_modified.tif 3 | /county-of-meratt-minimap.png 4 | /county-of-meratt-minimap_modified.tif 5 | /meratt.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/22 War for the Crown/county-of-meratt-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 3e29372e5e96e471bfde395eb52f149e 3 | size: 3225497 4 | hash: md5 5 | path: county-of-meratt-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/22 War for the Crown/county-of-meratt-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 9c529b6180cad4d721c981cc9028ecb1 3 | size: 5241281 4 | hash: md5 5 | path: county-of-meratt-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/22 War for the Crown/county-of-meratt-minimap.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 3e29372e5e96e471bfde395eb52f149e 3 | size: 3225497 4 | hash: md5 5 | path: county-of-meratt-minimap.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/22 War for the Crown/county-of-meratt-minimap_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: ea5ba9534a336d69a8f44aa0ba976da5 3 | size: 9470452 4 | hash: md5 5 | path: county-of-meratt-minimap_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/22 War for the Crown/meratt.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 603aac42d4244878ab0df694364ab552 3 | size: 18545851 4 | hash: md5 5 | path: meratt.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/24 Tyrant's Grasp/.gitignore: -------------------------------------------------------------------------------- 1 | /gravelands.png 2 | /xopatl-labels.png 3 | /xopatl-labels_modified.tif 4 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/24 Tyrant's Grasp/gravelands.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: b1840159479ffad977ae609bf0feccd8 3 | size: 6254532 4 | hash: md5 5 | path: gravelands.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/24 Tyrant's Grasp/xopatl-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 85375e7e5ef22d79e2a8527135a8eccf 3 | size: 4515204 4 | hash: md5 5 | path: xopatl-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Adventure Paths/24 Tyrant's Grasp/xopatl-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 2cac581131d1621f80d4a0f1a6bcb835 3 | size: 12466536 4 | hash: md5 5 | path: xopatl-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Chronicles/.gitignore: -------------------------------------------------------------------------------- 1 | /guide-to-the-river-kingdoms.webp 2 | /guide-to-the-river-kingdoms_labeled.webp 3 | /guide-to-the-river-kingdoms_labeled_modified.tif 4 | /guide-to-the-river-kingdoms_modified.tif 5 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Chronicles/guide-to-the-river-kingdoms.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 2675ef6988cd7f75ead925a2a9ff61d8 3 | size: 441038 4 | hash: md5 5 | path: guide-to-the-river-kingdoms.webp 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Chronicles/guide-to-the-river-kingdoms_labeled.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 740e9afe58903c9171a1ccc16d8733b9 3 | size: 398430 4 | hash: md5 5 | path: guide-to-the-river-kingdoms_labeled.webp 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Chronicles/guide-to-the-river-kingdoms_labeled_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 7c61b6f8f0d0b33b7b06dedf34732598 3 | size: 4705209 4 | hash: md5 5 | path: guide-to-the-river-kingdoms_labeled_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/Chronicles/guide-to-the-river-kingdoms_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 050ceb60bbd70f69675bcd0cd59ddd7c 3 | size: 4733997 4 | hash: md5 5 | path: guide-to-the-river-kingdoms_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/belkzen-hold-of-the-orc-hordes/.gitignore: -------------------------------------------------------------------------------- 1 | /belkzen-labels.png 2 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/belkzen-hold-of-the-orc-hordes/belkzen-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 02a1e885a7dab52d7c71da8c76e1e7cb 3 | size: 6991279 4 | hash: md5 5 | path: belkzen-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/cheliax-the-infernal-empire/.gitignore: -------------------------------------------------------------------------------- 1 | /cheliax-archduchies-labels.png 2 | /cheliax-archduchies-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/cheliax-the-infernal-empire/cheliax-archduchies-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 9b8fe6f5dca5580cd9c9d1f6575801f1 3 | size: 4034317 4 | hash: md5 5 | path: cheliax-archduchies-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/cheliax-the-infernal-empire/cheliax-archduchies-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 99c0131f90c8f676b207e0501c455209 3 | size: 14563016 4 | hash: md5 5 | path: cheliax-archduchies-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/dark-markets/.gitignore: -------------------------------------------------------------------------------- 1 | /katapesh-labels.png 2 | /katapesh-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/dark-markets/katapesh-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: a3d7f42ac646ef58f56a3553e6b6d98a 3 | size: 2874549 4 | hash: md5 5 | path: katapesh-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/dark-markets/katapesh-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: e20789068911d6c0bbcfbee8e0bbf599 3 | size: 7806490 4 | hash: md5 5 | path: katapesh-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/druma-profit-and-prophecy/.gitignore: -------------------------------------------------------------------------------- 1 | /druma-labels.png 2 | /druma-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/druma-profit-and-prophecy/druma-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 566c35f024721653c2de8f80dd467337 3 | size: 6917188 4 | hash: md5 5 | path: druma-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/druma-profit-and-prophecy/druma-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 23d641b63f239789c52d63db92ee5e93 3 | size: 16599408 4 | hash: md5 5 | path: druma-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/inner-sea-world-guide/.gitignore: -------------------------------------------------------------------------------- 1 | /Absalom.png 2 | /Andoran.png 3 | /Belkzen.png 4 | /Brevoy.png 5 | /Cheliax.png 6 | /Isger.png 7 | /Katapesh.png 8 | /Katapesh_modified.tif 9 | /River-Kingdoms.png 10 | /River-Kingdoms_modified.tif 11 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/inner-sea-world-guide/Absalom.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: f90eca2cc619fbd1cf3fac0d90ef4955 3 | size: 1567236 4 | hash: md5 5 | path: Absalom.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/inner-sea-world-guide/Andoran.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: fa9d648fa51a5338ba9bdf83594d66a0 3 | size: 4082272 4 | hash: md5 5 | path: Andoran.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/inner-sea-world-guide/Belkzen.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 3260afdd6c547777447be0d361181561 3 | size: 4468651 4 | hash: md5 5 | path: Belkzen.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/inner-sea-world-guide/Brevoy.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 111ff35e2bce4bf544c170c7a544eb91 3 | size: 3973047 4 | hash: md5 5 | path: Brevoy.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/inner-sea-world-guide/Cheliax.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 102cbbe9629d32f751299b58011f4d7d 3 | size: 3930149 4 | hash: md5 5 | path: Cheliax.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/inner-sea-world-guide/Isger.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 351eb9bfb4f0729929c7ed5bd5cb0754 3 | size: 4250405 4 | hash: md5 5 | path: Isger.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/inner-sea-world-guide/Katapesh.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: fb0b93830bd6dbb983502f7bd139c5d7 3 | size: 2861441 4 | hash: md5 5 | path: Katapesh.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/inner-sea-world-guide/Katapesh_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 3066eea40e2b7b9b9958854cbd661cb4 3 | size: 11860928 4 | hash: md5 5 | path: Katapesh_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/inner-sea-world-guide/River-Kingdoms.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 765e4da935c2cd1f7e274f03fb324f8b 3 | size: 4538863 4 | hash: md5 5 | path: River-Kingdoms.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/inner-sea-world-guide/River-Kingdoms_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 38bf146779e8a67831c012ded075ff84 3 | size: 12143664 4 | hash: md5 5 | path: River-Kingdoms_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/irrisen-land-of-eternal-winter/.gitignore: -------------------------------------------------------------------------------- 1 | /irrisen-labels.png 2 | /irrisen-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/irrisen-land-of-eternal-winter/irrisen-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: fab308d5cf0bcf1077766654770e8fc8 3 | size: 5900751 4 | hash: md5 5 | path: irrisen-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/irrisen-land-of-eternal-winter/irrisen-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 50b4a8d0fa1fbd1e1762ef4c08764fa9 3 | size: 12823692 4 | hash: md5 5 | path: irrisen-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/land-of-conflict/.gitignore: -------------------------------------------------------------------------------- 1 | /molthune-labels.png 2 | /molthune-labels_modified.tif 3 | /nirmathas-labels.png 4 | /nirmathas-labels_modified.tif 5 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/land-of-conflict/molthune-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: ae09b29457be483fe918f564e848d9f1 3 | size: 4048880 4 | hash: md5 5 | path: molthune-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/land-of-conflict/molthune-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 4797c8e7f8cea7f600077be8ad784145 3 | size: 10526524 4 | hash: md5 5 | path: molthune-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/land-of-conflict/nirmathas-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 2ac8ddaf044a9facca021ba5498ac70d 3 | size: 3971431 4 | hash: md5 5 | path: nirmathas-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/land-of-conflict/nirmathas-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0aaef9824a6686c42afc9a68f23f19d8 3 | size: 10348540 4 | hash: md5 5 | path: nirmathas-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/lands-of-the-linnorm-kings/.gitignore: -------------------------------------------------------------------------------- 1 | /lands-of-the-linnorm-kings-labels.png 2 | /lands-of-the-linnorm-kings-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/lands-of-the-linnorm-kings/lands-of-the-linnorm-kings-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 7f8dc27853371530ccb85f315e079f39 3 | size: 5576020 4 | hash: md5 5 | path: lands-of-the-linnorm-kings-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/lands-of-the-linnorm-kings/lands-of-the-linnorm-kings-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: d7261c72dbb2fec11c13e1a720e9365a 3 | size: 13222114 4 | hash: md5 5 | path: lands-of-the-linnorm-kings-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/mystic-realms/.gitignore: -------------------------------------------------------------------------------- 1 | /valashmai-jungle-labels.png 2 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/mystic-realms/valashmai-jungle-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 1329e9b3045bb37aaf7885c298f0c8cd 3 | size: 4000924 4 | hash: md5 5 | path: valashmai-jungle-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/nidal-land-of-shadows/.gitignore: -------------------------------------------------------------------------------- 1 | /nidal-labels.png 2 | /nidal-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/nidal-land-of-shadows/nidal-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: f9ba013906aaf69ad61759bc14f3e51f 3 | size: 7048620 4 | hash: md5 5 | path: nidal-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/nidal-land-of-shadows/nidal-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0b1f6a600479b3b6e07dd8566488dbe1 3 | size: 17501328 4 | hash: md5 5 | path: nidal-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/numeria-land-of-fallen-stars/.gitignore: -------------------------------------------------------------------------------- 1 | /numeria-labels.png 2 | /numeria-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/numeria-land-of-fallen-stars/numeria-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: a0613400105a9ef4090ed00367d9cf6a 3 | size: 4338881 4 | hash: md5 5 | path: numeria-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/numeria-land-of-fallen-stars/numeria-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: a00cfb4d7b6e849c0100e81584848f0e 3 | size: 13711364 4 | hash: md5 5 | path: numeria-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/occult realms/.gitignore: -------------------------------------------------------------------------------- 1 | /Grand Sarret Labeled.png 2 | /Grand Sarret Labeled_modified.tif 3 | /Vergan Forest Labeled.png 4 | /Vergan Forest Labeled_modified.tif 5 | /Zi Ha Labeled.png 6 | /Zi Ha Labeled_modified.tif 7 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/occult realms/Grand Sarret Labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: a221e647b9fac3777a0bc6e3e57274fc 3 | size: 440530 4 | hash: md5 5 | path: Grand Sarret Labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/occult realms/Grand Sarret Labeled_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 1cc7087b57d8e28aa6e34394a851dd9a 3 | size: 6926790 4 | hash: md5 5 | path: Grand Sarret Labeled_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/occult realms/Vergan Forest Labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 162f0afc0cbd6e1d41603568f948035e 3 | size: 1704189 4 | hash: md5 5 | path: Vergan Forest Labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/occult realms/Vergan Forest Labeled_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0bc8f5c6f68bbac7ccb61ac3805a8049 3 | size: 5431498 4 | hash: md5 5 | path: Vergan Forest Labeled_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/occult realms/Zi Ha Labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 14069868ac430d44a597516e83b48768 3 | size: 2162578 4 | hash: md5 5 | path: Zi Ha Labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/occult realms/Zi Ha Labeled_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 87c594d9459733c0b162113e06fb9199 3 | size: 7436302 4 | hash: md5 5 | path: Zi Ha Labeled_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/qadira-jewel-of-the-east/.gitignore: -------------------------------------------------------------------------------- 1 | /qadira-labels.png 2 | /qadira-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/qadira-jewel-of-the-east/qadira-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: a70feb50df3ccf35f4dfe9fd70eeb2cf 3 | size: 4247275 4 | hash: md5 5 | path: qadira-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/qadira-jewel-of-the-east/qadira-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: d0898b753623ce59ae6dd569df1e0033 3 | size: 12124036 4 | hash: md5 5 | path: qadira-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/rule-of-fear/.gitignore: -------------------------------------------------------------------------------- 1 | /ustalav-labels.png 2 | /ustalav-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/rule-of-fear/ustalav-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 28e4c19a1d5ca52563b2cb8e38bc8417 3 | size: 2418414 4 | hash: md5 5 | path: ustalav-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/rule-of-fear/ustalav-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: b6de283c4ca0258730b48751cb415857 3 | size: 10184854 4 | hash: md5 5 | path: ustalav-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/taldor-the-first-empire/.gitignore: -------------------------------------------------------------------------------- 1 | /taldor-labels.png 2 | /taldor-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/taldor-the-first-empire/taldor-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 40d22ed812a36a5454c0b91867bfb86f 3 | size: 3894441 4 | hash: md5 5 | path: taldor-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/taldor-the-first-empire/taldor-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: bc5ddc319f7fb67345e5ca2dbd24cd61 3 | size: 11668126 4 | hash: md5 5 | path: taldor-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/the-mwangi-expanse/.gitignore: -------------------------------------------------------------------------------- 1 | /vidrian-labels.png 2 | /vidrian-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/the-mwangi-expanse/vidrian-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: bfc0d383b10a12842c90a3e5a4cee2c3 3 | size: 4720451 4 | hash: md5 5 | path: vidrian-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/the-mwangi-expanse/vidrian-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 3d73a07423678b4fa61c86342d36ffad 3 | size: 9539662 4 | hash: md5 5 | path: vidrian-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/the-worldwound/.gitignore: -------------------------------------------------------------------------------- 1 | /worldwound-labels.png 2 | /worldwound-labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/the-worldwound/worldwound-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 8cbae5f55ef6a7026b003c36065309cc 3 | size: 7453638 4 | hash: md5 5 | path: worldwound-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/1e/the-worldwound/worldwound-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: cd911f5557c0ab4d90ccfa9bae351a5a 3 | size: 14639716 4 | hash: md5 5 | path: worldwound-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/.gitignore: -------------------------------------------------------------------------------- 1 | /absalom.png 2 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Bloodlords/.gitignore: -------------------------------------------------------------------------------- 1 | /holomog-labels.png 2 | /holomog.webp 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Bloodlords/holomog-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 5709556aed04250d75f7f83db66e9e6d 3 | size: 4943459 4 | hash: md5 5 | path: holomog-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Bloodlords/holomog.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 1339d74b7355d512e01b0e43fe162e52 3 | size: 669628 4 | hash: md5 5 | path: holomog.webp 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Extinction Curse/.gitignore: -------------------------------------------------------------------------------- 1 | /kortos-mountains-labels.png 2 | /kortos-mountains.png 3 | /swardlands-labels.png 4 | /Swardlands.webp 5 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Extinction Curse/Swardlands.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 8d9d56107668231cb69db910b7141090 3 | size: 169448 4 | hash: md5 5 | path: Swardlands.webp 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Extinction Curse/kortos-mountains-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 6774161b75718d773af8de89a59fd38c 3 | size: 3543345 4 | hash: md5 5 | path: kortos-mountains-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Extinction Curse/kortos-mountains.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 7296644398e5c04a2f784d82f1d59f7e 3 | size: 1994476 4 | hash: md5 5 | path: kortos-mountains.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Extinction Curse/swardlands-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: d94b5cd8d56148cb99d986abf8181c5f 3 | size: 3771940 4 | hash: md5 5 | path: swardlands-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Fists of the Ruby Phoenix/.gitignore: -------------------------------------------------------------------------------- 1 | /bonmu-labels.png 2 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Fists of the Ruby Phoenix/bonmu-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 48549566b7f052f6a052ea4b44334b91 3 | size: 4908423 4 | hash: md5 5 | path: bonmu-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Gatewalkers/.gitignore: -------------------------------------------------------------------------------- 1 | /The Lake of Mists and Veils.png 2 | /The Lake of Mists and Veils_labeled.png 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Gatewalkers/The Lake of Mists and Veils.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 5fdf4cf91da00eb282625ab8a5a3cd7e 3 | size: 2186630 4 | hash: md5 5 | path: The Lake of Mists and Veils.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Gatewalkers/The Lake of Mists and Veils_labeled.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 06debd59c81f9076f3cd506095090621 3 | size: 4459164 4 | hash: md5 5 | path: The Lake of Mists and Veils_labeled.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Outlaws of Alkenstar/.gitignore: -------------------------------------------------------------------------------- 1 | /spellscar-desert-labels.png 2 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Outlaws of Alkenstar/spellscar-desert-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: a60724acbb30d3fef62e6235b2312e59 3 | size: 3974555 4 | hash: md5 5 | path: spellscar-desert-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Strength of Thousands/.gitignore: -------------------------------------------------------------------------------- 1 | /sodden_lands_mmwangi_jungle_labels.png 2 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Adventure Paths/Strength of Thousands/sodden_lands_mmwangi_jungle_labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 24eb593a3cd11b6f21db25acb7038e40 3 | size: 4938814 4 | hash: md5 5 | path: sodden_lands_mmwangi_jungle_labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Highhelm/.gitignore: -------------------------------------------------------------------------------- 1 | /FiveKingsMountains-labels.png 2 | /FiveKingsMountains-labels_modified.tif 3 | /FiveKingsMountains.png 4 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Highhelm/FiveKingsMountains-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 078f9d3b4f858381ee68948a35b70d47 3 | size: 4818097 4 | hash: md5 5 | path: FiveKingsMountains-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Highhelm/FiveKingsMountains-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 87c0b98f10ed86047af7733aa8b71edb 3 | size: 5845384 4 | hash: md5 5 | path: FiveKingsMountains-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Highhelm/FiveKingsMountains.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 503974daad0d88e540038f49ad6c5a47 3 | size: 3387190 4 | hash: md5 5 | path: FiveKingsMountains.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Impossible Lands/.gitignore: -------------------------------------------------------------------------------- 1 | /alkenstar-labels.png 2 | /alkenstar-labels_modified.tif 3 | /bhopan-labels.png 4 | /geb-labels.png 5 | /geb-labels_modified.tif 6 | /jalmeray-labels.png 7 | /jalmeray-labels_modified.tif 8 | /nex-labels.png 9 | /nex-labels_modified.tif 10 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Impossible Lands/alkenstar-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 2385805c75c6a8470fd6a1d518d8d0bb 3 | size: 3327726 4 | hash: md5 5 | path: alkenstar-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Impossible Lands/alkenstar-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: b9017244de87d7194e5bc7521ce5ca30 3 | size: 9708550 4 | hash: md5 5 | path: alkenstar-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Impossible Lands/bhopan-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: df06b890f8b1ff2c53c703481fc6ae96 3 | size: 3709437 4 | hash: md5 5 | path: bhopan-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Impossible Lands/geb-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: c1063f2f5a70f9b1902d7647521e21d0 3 | size: 2256585 4 | hash: md5 5 | path: geb-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Impossible Lands/geb-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 234fc35d38e6e17733b292ed6810097c 3 | size: 9761860 4 | hash: md5 5 | path: geb-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Impossible Lands/jalmeray-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 2a6490c8fea8a2dd0389151712a6473f 3 | size: 1459560 4 | hash: md5 5 | path: jalmeray-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Impossible Lands/jalmeray-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: df3b3ee38f4b9ccf029061ea13adecea 3 | size: 10297954 4 | hash: md5 5 | path: jalmeray-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Impossible Lands/nex-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: c94a85deb591babc23ce779af7e4303b 3 | size: 3050649 4 | hash: md5 5 | path: nex-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/Impossible Lands/nex-labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 81a575fec30ce7bedc1059e42216ab56 3 | size: 9726184 4 | hash: md5 5 | path: nex-labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/absalom.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 69626e260cc1160f9d94888bba611b9c 3 | size: 41169734 4 | hash: md5 5 | path: absalom.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/knights-of-lastwall/.gitignore: -------------------------------------------------------------------------------- 1 | /gravelands_labels.png 2 | /gravelands_labels_modified.tif 3 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/knights-of-lastwall/gravelands_labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: de364fa034f65f4f04e3256ac56f6be1 3 | size: 2007127 4 | hash: md5 5 | path: gravelands_labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/knights-of-lastwall/gravelands_labels_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 150c9979fd42eac2c36ce12f9c2715c9 3 | size: 8821612 4 | hash: md5 5 | path: gravelands_labels_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/modules/.gitignore: -------------------------------------------------------------------------------- 1 | /Crown of the Kobold King.png 2 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/modules/Crown of the Kobold King.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: c654447a9984d31edcca294f5c9a7b3c 3 | size: 2229266 4 | hash: md5 5 | path: Crown of the Kobold King.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/.gitignore: -------------------------------------------------------------------------------- 1 | /broken-lands.png 2 | /eye-of-dread.png 3 | /golden-road.png 4 | /high-seas.png 5 | /impossible-lands - Copy.png 6 | /impossible-lands.png 7 | /mwangi-expanse.png 8 | /old-cheliax.png 9 | /saga-lands.png 10 | /shining-kingdoms.png 11 | /starstone-isle-labels.png 12 | /starstone-isle-partial.webp 13 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/broken-lands.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 1c5db328560a6314369586b9d2e401f1 3 | size: 4826630 4 | hash: md5 5 | path: broken-lands.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/eye-of-dread.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 9850e75f15af46f0ce7533730993a4e8 3 | size: 2563946 4 | hash: md5 5 | path: eye-of-dread.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/golden-road.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 82d4c3afb8393704cb4f0b76ed0edf0b 3 | size: 3113022 4 | hash: md5 5 | path: golden-road.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/high-seas.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 7a81d06f1ba5a05566b4a5848c4bf54a 3 | size: 1362045 4 | hash: md5 5 | path: high-seas.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/impossible-lands - Copy.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: e7fe1eb4951bb57ebff46333be0a6a57 3 | size: 2835970 4 | hash: md5 5 | path: impossible-lands - Copy.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/impossible-lands.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 83f0c2cdb85dce45f0beee1eff954329 3 | size: 1982419 4 | hash: md5 5 | path: impossible-lands.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/mwangi-expanse.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 49e7199f80c060bc5f051e3bf8931afb 3 | size: 3393502 4 | hash: md5 5 | path: mwangi-expanse.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/old-cheliax.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 2ad7e813581d574da105b22c6f6a57f9 3 | size: 3967986 4 | hash: md5 5 | path: old-cheliax.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/online/.gitignore: -------------------------------------------------------------------------------- 1 | /broken-lands.png 2 | /eye-of-terror.png 3 | /golden-rox.png 4 | /impossible-lands.png 5 | /mwangi-expanse.png 6 | /old-cheliax.png 7 | /saga-lands.png 8 | /shining-kingdoms.png 9 | /starstone-isle.png 10 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/online/broken-lands.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 45d5154851845f89c9a95288a66ce68f 3 | size: 3954678 4 | hash: md5 5 | path: broken-lands.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/online/eye-of-terror.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 48762b1dc5fff35e3ea65ac6659b9664 3 | size: 2094288 4 | hash: md5 5 | path: eye-of-terror.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/online/golden-rox.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 03398971314e01fed358438833253e70 3 | size: 1646889 4 | hash: md5 5 | path: golden-rox.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/online/impossible-lands.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: f95d498638b288f3be70a583a0e8d4ad 3 | size: 2019501 4 | hash: md5 5 | path: impossible-lands.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/online/mwangi-expanse.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0851bcfac7445ef92b57a82f9675740e 3 | size: 4162581 4 | hash: md5 5 | path: mwangi-expanse.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/online/old-cheliax.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 39f2c02da2cbb464698c7c9c08c6f9f2 3 | size: 2780659 4 | hash: md5 5 | path: old-cheliax.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/online/saga-lands.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: ef689e4b65ad39fbadb66dfdcf561b3b 3 | size: 3416161 4 | hash: md5 5 | path: saga-lands.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/online/shining-kingdoms.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 136fd664d73bdbf3cd7fc33ff98f8002 3 | size: 2735818 4 | hash: md5 5 | path: shining-kingdoms.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/online/starstone-isle.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: bea8a4263734dcd0858a11574f831f45 3 | size: 2440109 4 | hash: md5 5 | path: starstone-isle.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/saga-lands.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 8085e84fe6e3e277f5312f094cecddc3 3 | size: 2978383 4 | hash: md5 5 | path: saga-lands.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/shining-kingdoms.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 778f8420b4359953627f3a5ef324f705 3 | size: 3402717 4 | hash: md5 5 | path: shining-kingdoms.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/starstone-isle-labels.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: af9b69f5ee468298cff596f84bf90089 3 | size: 2156225 4 | hash: md5 5 | path: starstone-isle-labels.png 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/2e/world-guide/starstone-isle-partial.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 2e159147042a3978bb5e37fe7fbcf470 3 | size: 115730 4 | hash: md5 5 | path: starstone-isle-partial.webp 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/arcadia.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 7971a12bec60651ec535e10a6161977e 3 | size: 515902 4 | hash: md5 5 | path: arcadia.webp 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Broken Lands.psd.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 6e1934a0fc621bc02b99c8bd84fde171 3 | size: 107481627 4 | hash: md5 5 | path: Broken Lands.psd 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Broken Lands_rivers.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 5cf308c4b23ba3bae3e7368352037edc 3 | size: 199360 4 | hash: md5 5 | path: Broken Lands_rivers.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Broken Lands_rivers_dry.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: a54c62e7b918693b6082ef1c0fb069f9 3 | size: 10746 4 | hash: md5 5 | path: Broken Lands_rivers_dry.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Broken Lands_rivers_stream_valleys.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: a0c3d51931db9fcf66c882962e495fd5 3 | size: 406249 4 | hash: md5 5 | path: Broken Lands_rivers_stream_valleys.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Eye of Terror.psd.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 214936884861ab8947cc9523c4b024d1 3 | size: 113204076 4 | hash: md5 5 | path: Eye of Terror.psd 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Eye of Terror_rivers.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 41e2e456bbda8e672eb2475acc8892de 3 | size: 250863 4 | hash: md5 5 | path: Eye of Terror_rivers.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Eye of Terror_rivers_dry.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 90c92a6a58caf92c8ec57568cb86b2b9 3 | size: 7251 4 | hash: md5 5 | path: Eye of Terror_rivers_dry.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Eye of Terror_rivers_stream_valleys.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 1f7d1f3b314084344f8a6ad7d60f0d06 3 | size: 559828 4 | hash: md5 5 | path: Eye of Terror_rivers_stream_valleys.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Golarion_bkg-01.psd.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: f8706052e7141d740e1fcbfccbc6143c 3 | size: 138393964 4 | hash: md5 5 | path: Golarion_bkg-01.psd 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Golden Road.psd.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: cfa0cf33001389d0c94adf92690c163a 3 | size: 91916110 4 | hash: md5 5 | path: Golden Road.psd 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Golden Road_rivers.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 56ebca007722e9afa1f0c9b0a9f4d786 3 | size: 185063 4 | hash: md5 5 | path: Golden Road_rivers.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Golden Road_rivers_dry.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 81e31b0a36b9e6c1562e776d18b72bf9 3 | size: 2223 4 | hash: md5 5 | path: Golden Road_rivers_dry.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Golden Road_rivers_stream_valleys.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: c1fe7dddd845c86988d668d84dfa52b3 3 | size: 564352 4 | hash: md5 5 | path: Golden Road_rivers_stream_valleys.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/High Seas.psd.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 086bcd8ba3a186112e2cfcde55fac605 3 | size: 57259071 4 | hash: md5 5 | path: High Seas.psd 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Impossible Lands.psd.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 1300d64c9906bad1b1211c90d6c4dac3 3 | size: 74008827 4 | hash: md5 5 | path: Impossible Lands.psd 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Impossible Lands_rivers.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: fc43f0a4102a5486098f32a877a0464a 3 | size: 54892 4 | hash: md5 5 | path: Impossible Lands_rivers.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Impossible Lands_rivers_stream_valleys.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: d43bfa18a404d8dc50430881c893e23b 3 | size: 189649 4 | hash: md5 5 | path: Impossible Lands_rivers_stream_valleys.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Inner_Sea_bkg.psd.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 3fe6a7fb80d949c7ff1cccba20c476c9 3 | size: 568550478 4 | hash: md5 5 | path: Inner_Sea_bkg.psd 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Mwangi Expanse.psd.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 5d0f1bd6797ce91fdcd813c5ae278bf0 3 | size: 102150423 4 | hash: md5 5 | path: Mwangi Expanse.psd 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Mwangi Expanse_rivers.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: d7a6cfc226daf0c92c924d3687f66df7 3 | size: 167286 4 | hash: md5 5 | path: Mwangi Expanse_rivers.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Mwangi Expanse_rivers_stream_valleys.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 743025f2450b9d6ac9cc515cd385f398 3 | size: 531692 4 | hash: md5 5 | path: Mwangi Expanse_rivers_stream_valleys.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Old Cheliax.psd.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 78e9a377592038be5269a7cee6caad87 3 | size: 87058677 4 | hash: md5 5 | path: Old Cheliax.psd 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Old Cheliax_rivers.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0e6323315b55d505d3d596bdceed40f7 3 | size: 129980 4 | hash: md5 5 | path: Old Cheliax_rivers.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Old Cheliax_rivers_stream_valleys.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0a0593a2fe599cd3e844b7e34a8dbf4c 3 | size: 319564 4 | hash: md5 5 | path: Old Cheliax_rivers_stream_valleys.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Saga Lands.psd.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 418307bd6c090be0e89ea444ba66ca9c 3 | size: 92418156 4 | hash: md5 5 | path: Saga Lands.psd 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Saga Lands_rivers.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 6b63ea2f0e9c4ca79a7ae5e834113dd0 3 | size: 131691 4 | hash: md5 5 | path: Saga Lands_rivers.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Saga Lands_rivers_dry.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 164e6cea0c19ab4ffee4bbb3339ca54f 3 | size: 4201 4 | hash: md5 5 | path: Saga Lands_rivers_dry.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Saga Lands_rivers_stream_valleys.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: f5049a3f1a52d4eb4ce11a2c20058866 3 | size: 378277 4 | hash: md5 5 | path: Saga Lands_rivers_stream_valleys.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Shining Kingdoms.psd.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 3233fab5e188f14651c5730bdfb39bc3 3 | size: 100885850 4 | hash: md5 5 | path: Shining Kingdoms.psd 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Shining Kingdoms_rivers.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 7c4c42c93fe5b2507096115b21a8f243 3 | size: 188325 4 | hash: md5 5 | path: Shining Kingdoms_rivers.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Shining Kingdoms_rivers_dry.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: b64cca3f86e7ca68b001ad48cf657c95 3 | size: 1647 4 | hash: md5 5 | path: Shining Kingdoms_rivers_dry.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Shining Kingdoms_rivers_stream_valleys.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: af178505cdd477000a59ac9f562aa3b9 3 | size: 434738 4 | hash: md5 5 | path: Shining Kingdoms_rivers_stream_valleys.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Starstone Isle.psd.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: f527dc194ea2b8b90a5ce51a4dca41c7 3 | size: 103624117 4 | hash: md5 5 | path: Starstone Isle.psd 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Starstone Isle_rivers.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: ccc5298603980dd0a2daa2ea923c55bc 3 | size: 15714 4 | hash: md5 5 | path: Starstone Isle_rivers.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/raw-paizo-treasure-trove/Starstone Isle_rivers_stream_valleys.svg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 8e7d1de8bf69c7f76b862685936ec6b9 3 | size: 166260 4 | hash: md5 5 | path: Starstone Isle_rivers_stream_valleys.svg 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/shackles.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 6ab6f7e6964f94ee249c094be12249c8 3 | size: 1820264 4 | hash: md5 5 | path: shackles.webp 6 | -------------------------------------------------------------------------------- /sources/images/unsorted+unmapped/tian_xia.webp.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 70dde208ce84a29ab0eb9977cef34184 3 | size: 3004972 4 | hash: md5 5 | path: tian_xia.webp 6 | -------------------------------------------------------------------------------- /sources/images/world/Core Rulebook/.gitignore: -------------------------------------------------------------------------------- 1 | /Golarion.jpg 2 | /GolarionRivers.png 3 | /GolarionRivers_modified.png 4 | /GolarionRivers_modified.wld 5 | /GolarionRivers_modified2.png 6 | /GolarionRivers_modified2.wld 7 | /GolarionTerrainMaster.jpg 8 | /GolarionTerrainMaster_modified.tif 9 | /Golarion_modified.tif 10 | /Golarion_modified.tif.ovr 11 | -------------------------------------------------------------------------------- /sources/images/world/Core Rulebook/Golarion.jpg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 12136aa0317166f805c1ebdd38d81e78 3 | size: 23183849 4 | hash: md5 5 | path: Golarion.jpg 6 | -------------------------------------------------------------------------------- /sources/images/world/Core Rulebook/GolarionRivers.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: c4530045d0dabf281c653578703588a3 3 | size: 709024 4 | hash: md5 5 | path: GolarionRivers.png 6 | -------------------------------------------------------------------------------- /sources/images/world/Core Rulebook/GolarionRivers_modified.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 60e1ec39e8403dbffdb15333d25c4464 3 | size: 1581817 4 | hash: md5 5 | path: GolarionRivers_modified.png 6 | -------------------------------------------------------------------------------- /sources/images/world/Core Rulebook/GolarionRivers_modified.wld.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: d8963b0522e316c61089173f6ac64135 3 | size: 53 4 | hash: md5 5 | path: GolarionRivers_modified.wld 6 | -------------------------------------------------------------------------------- /sources/images/world/Core Rulebook/GolarionRivers_modified2.png.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: f557eda95bc0898f7ad4b080808f8f94 3 | size: 1065061 4 | hash: md5 5 | path: GolarionRivers_modified2.png 6 | -------------------------------------------------------------------------------- /sources/images/world/Core Rulebook/GolarionRivers_modified2.wld.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: d8963b0522e316c61089173f6ac64135 3 | size: 53 4 | hash: md5 5 | path: GolarionRivers_modified2.wld 6 | -------------------------------------------------------------------------------- /sources/images/world/Core Rulebook/GolarionTerrainMaster.jpg.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 9e653abd594786aaad3e87846861ccce 3 | size: 5104522 4 | hash: md5 5 | path: GolarionTerrainMaster.jpg 6 | -------------------------------------------------------------------------------- /sources/images/world/Core Rulebook/GolarionTerrainMaster_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 37251cd0d12112c0a743813ee3e2c934 3 | size: 62733510 4 | hash: md5 5 | path: GolarionTerrainMaster_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/world/Core Rulebook/Golarion_modified.tif.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 18e53061891c662acd73e256223e4a63 3 | size: 62733510 4 | hash: md5 5 | path: Golarion_modified.tif 6 | -------------------------------------------------------------------------------- /sources/images/world/Core Rulebook/Golarion_modified.tif.ovr.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: fa49828693daabc4596d29cba39d1fb1 3 | size: 23013163 4 | hash: md5 5 | path: Golarion_modified.tif.ovr 6 | -------------------------------------------------------------------------------- /sources/qgis-plugins/stable_project_files/metadata.txt: -------------------------------------------------------------------------------- 1 | [general] 2 | name=Stable QGIS Project 3 | description=Make QGIS Project files better trackable in git 4 | version=dev 5 | qgisMinimumVersion=3.38 6 | author=Manuel Hegner 7 | email=manuel-hegner@users.noreply.github.com 8 | homepage=https://github.com/manuel-hegner/qgis_stable_project_files 9 | about=Orders attributes in .qgs project files in a predictable order. This helps tracking QGIS project files in versioning systems like git. 10 | tracker=https://github.com/manuel-hegner/qgis_stable_project_files/issues 11 | repository=https://github.com/manuel-hegner/qgis_stable_project_files 12 | -------------------------------------------------------------------------------- /tile-compiler/remoteDebug.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | mvn compile package 4 | java\ 5 | -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:9999 \ 6 | -jar target/tile-compiler.jar 7 | -------------------------------------------------------------------------------- /tile-compiler/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | mvn compile package 4 | java \ 5 | -XX:ActiveProcessorCount=1 \ 6 | -jar target/tile-compiler.jar 7 | -------------------------------------------------------------------------------- /tile-compiler/sprites/city-large-capital.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /tile-compiler/sprites/city-large.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tile-compiler/sprites/city-major-capital.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /tile-compiler/sprites/city-major.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tile-compiler/sprites/city-medium-capital.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /tile-compiler/sprites/city-medium.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tile-compiler/sprites/city-small-capital.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /tile-compiler/sprites/city-small.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tile-compiler/sprites/location-city-ruins.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /tile-compiler/sprites/location-mountain.svg: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 14 | 15 | -------------------------------------------------------------------------------- /tile-compiler/sprites/location-other.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /tile-compiler/sprites/location-tower.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /tile-compiler/src/main/java/io/github/pfwikis/CLI.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis; 2 | 3 | import com.beust.jcommander.JCommander; 4 | 5 | public class CLI { 6 | public static void main(String[] args) throws Exception { 7 | var options = new CLIOptions(); 8 | var cleanOptions = new Object(); 9 | var jc = JCommander.newBuilder() 10 | .addCommand("compileTiles", options) 11 | .addCommand("clean", cleanOptions) 12 | .build(); 13 | jc.parse(args); 14 | 15 | new TileCompiler().run(options); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /tile-compiler/src/main/java/io/github/pfwikis/TileCompiler.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis; 2 | 3 | import java.io.File; 4 | 5 | import lombok.Getter; 6 | import lombok.extern.slf4j.Slf4j; 7 | 8 | @Slf4j 9 | @Getter 10 | public class TileCompiler { 11 | 12 | private CLIOptions options; 13 | private File geo; 14 | 15 | 16 | public void run(CLIOptions options) throws Exception { 17 | this.options = options; 18 | 19 | //create target folders 20 | options.targetDirectory().mkdirs(); 21 | 22 | new LayersCompiler( 23 | this, 24 | Math.min(4, Runtime.getRuntime().availableProcessors()) 25 | ).compile(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /tile-compiler/src/main/java/io/github/pfwikis/layercompiler/description/LCDescription.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis.layercompiler.description; 2 | 3 | import java.util.List; 4 | 5 | import lombok.Getter; 6 | import lombok.Setter; 7 | 8 | 9 | @Getter @Setter 10 | public class LCDescription { 11 | private String name; 12 | private List steps; 13 | 14 | public String createName(int i) { 15 | String step = steps.get(i).getStep(); 16 | String result = name+"."+step; 17 | var similar = steps.stream().filter(s->s.getStep().equals(step)).toList(); 18 | if(similar.size() == 1) 19 | return result; 20 | else 21 | return result+"_"+(1+similar.indexOf(steps.get(i))); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /tile-compiler/src/main/java/io/github/pfwikis/layercompiler/steps/AddFractalDetail.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis.layercompiler.steps; 2 | 3 | import java.io.IOException; 4 | 5 | import io.github.pfwikis.fractaldetailer.AddDetails; 6 | import io.github.pfwikis.layercompiler.steps.model.LCContent; 7 | import io.github.pfwikis.layercompiler.steps.model.LCStep; 8 | 9 | public class AddFractalDetail extends LCStep { 10 | 11 | @Override 12 | public LCContent process() throws IOException { 13 | double maxDistance = ctx.getOptions().isProdDetail()?.10:.25; 14 | return LCContent.from(AddDetails.addDetails(maxDistance, getInput().toFeatureCollection())); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /tile-compiler/src/main/java/io/github/pfwikis/layercompiler/steps/AddPoints.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis.layercompiler.steps; 2 | 3 | import io.github.pfwikis.layercompiler.steps.model.LCContent; 4 | import io.github.pfwikis.layercompiler.steps.model.LCStep; 5 | import io.github.pfwikis.run.Tools; 6 | 7 | public class AddPoints extends LCStep { 8 | 9 | @Override 10 | public LCContent process() throws Exception { 11 | return Tools.mapshaper2(this, getInput(), getInput("summand"), "combine-files", 12 | "-merge-layers", "force" 13 | ); 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /tile-compiler/src/main/java/io/github/pfwikis/layercompiler/steps/AddPolygons.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis.layercompiler.steps; 2 | 3 | import io.github.pfwikis.layercompiler.steps.model.LCContent; 4 | import io.github.pfwikis.layercompiler.steps.model.LCStep; 5 | import io.github.pfwikis.run.Tools; 6 | 7 | public class AddPolygons extends LCStep { 8 | 9 | @Override 10 | public LCContent process() throws Exception { 11 | return Tools.mapshaper2(this, getInput(), getInput("summand"), "combine-files", 12 | "-merge-layers", "force", 13 | "-dissolve2", 14 | "-explode" 15 | ); 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /tile-compiler/src/main/java/io/github/pfwikis/layercompiler/steps/CityPolygons.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis.layercompiler.steps; 2 | 3 | import java.io.IOException; 4 | 5 | import io.github.pfwikis.layercompiler.steps.model.LCContent; 6 | import io.github.pfwikis.layercompiler.steps.model.LCStep; 7 | import io.github.pfwikis.run.Tools; 8 | import lombok.RequiredArgsConstructor; 9 | 10 | public class CityPolygons extends LCStep { 11 | 12 | @Override 13 | public LCContent process() throws IOException { 14 | return Tools.mapshaper(this, getInput(), 15 | "-filter", "Boolean(city)", 16 | "-dissolve2", "city" 17 | ); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /tile-compiler/src/main/java/io/github/pfwikis/layercompiler/steps/model/LCContentBytes.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis.layercompiler.steps.model; 2 | 3 | import java.io.ByteArrayInputStream; 4 | import java.io.InputStream; 5 | 6 | import lombok.AllArgsConstructor; 7 | 8 | @AllArgsConstructor 9 | public class LCContentBytes extends LCContent { 10 | private byte[] bytes; 11 | 12 | @Override 13 | public InputStream toInputStream() { 14 | checkValidUsage(); 15 | return new ByteArrayInputStream(bytes); 16 | } 17 | 18 | @Override 19 | public byte[] toBytes() { 20 | checkValidUsage(); 21 | return bytes; 22 | } 23 | 24 | @Override 25 | protected void cleanup() { 26 | bytes = null; 27 | } 28 | } -------------------------------------------------------------------------------- /tile-compiler/src/main/java/io/github/pfwikis/layercompiler/steps/model/LCContentEmpty.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis.layercompiler.steps.model; 2 | 3 | import java.io.InputStream; 4 | 5 | import lombok.RequiredArgsConstructor; 6 | 7 | @RequiredArgsConstructor 8 | public class LCContentEmpty extends LCContent { 9 | public static LCContent INSTANCE = new LCContentEmpty(); 10 | 11 | @Override 12 | public InputStream toInputStream() { 13 | throw new IllegalStateException("Called a transformation on empty content "+name); 14 | } 15 | 16 | @Override 17 | protected synchronized void checkValidUsage() { 18 | throw new IllegalStateException("Called a transformation on empty content "+name); 19 | } 20 | } -------------------------------------------------------------------------------- /tile-compiler/src/main/java/io/github/pfwikis/layercompiler/steps/rivers/RiverLabels.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis.layercompiler.steps.rivers; 2 | 3 | import io.github.pfwikis.layercompiler.steps.model.LCContent; 4 | import io.github.pfwikis.layercompiler.steps.model.LCStep; 5 | import io.github.pfwikis.run.Tools; 6 | 7 | public class RiverLabels extends LCStep { 8 | 9 | @Override 10 | public LCContent process() throws Exception { 11 | return Tools.mapshaper(this, getInput(), 12 | "-clean", 13 | "-dissolve", "label", 14 | "-filter", "Boolean(label)", 15 | "-each", "filterMinzoom=5" 16 | ); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /tile-compiler/src/main/java/io/github/pfwikis/model/Edge.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis.model; 2 | 3 | public record Edge(LngLat a, LngLat b) { 4 | 5 | public Edge norm() { 6 | return new Edge(a.norm(), b.norm()); 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /tile-compiler/src/main/java/io/github/pfwikis/model/FeatureCollection.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis.model; 2 | 3 | import java.util.ArrayList; 4 | import java.util.List; 5 | 6 | import lombok.Getter; 7 | import lombok.Setter; 8 | 9 | @Getter 10 | @Setter 11 | public class FeatureCollection extends AnyJson { 12 | private String type = "FeatureCollection"; 13 | private List features = new ArrayList<>(); 14 | } 15 | -------------------------------------------------------------------------------- /tile-compiler/src/main/resources/logback.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | %.-1level %d{HH:mm:ss} %-30.-30(%thread %logger{0}) %replace(%msg){' 11 | ', ' 12 | '}\n 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /tile-compiler/tippecanoe-tmp/geom70.XXTrPg1i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pf-wikis/mapping/f42e7ffd66fe9ab41ab310ce0a0c0b4c67767663/tile-compiler/tippecanoe-tmp/geom70.XXTrPg1i -------------------------------------------------------------------------------- /wiki-downloader/src/main/java/io/github/pfwikis/Jackson.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis; 2 | 3 | import com.fasterxml.jackson.annotation.JsonInclude.Include; 4 | import com.fasterxml.jackson.databind.ObjectMapper; 5 | 6 | public class Jackson { 7 | 8 | public static ObjectMapper get() { 9 | return new ObjectMapper().setSerializationInclusion(Include.NON_NULL); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /wiki-downloader/src/main/java/io/github/pfwikis/model/Feature.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis.model; 2 | 3 | import com.fasterxml.jackson.annotation.JsonPropertyOrder; 4 | 5 | import lombok.Getter; 6 | import lombok.NoArgsConstructor; 7 | import lombok.Setter; 8 | 9 | @Setter 10 | @Getter 11 | @JsonPropertyOrder({"type", "properties", "geometry"}) 12 | @NoArgsConstructor 13 | public class Feature { 14 | 15 | private String type = "Feature"; 16 | private Properties properties; 17 | private Geometry geometry; 18 | 19 | public Feature(Properties properties, Geometry geometry) { 20 | this.properties = properties; 21 | this.geometry = geometry; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /wiki-downloader/src/main/java/io/github/pfwikis/model/Response.java: -------------------------------------------------------------------------------- 1 | package io.github.pfwikis.model; 2 | 3 | import java.util.List; 4 | 5 | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; 6 | 7 | import lombok.Data; 8 | 9 | @Data 10 | @JsonIgnoreProperties(ignoreUnknown = true) 11 | public class Response { 12 | private Query query; 13 | 14 | @Data 15 | @JsonIgnoreProperties(ignoreUnknown = true) 16 | public static class Query { 17 | private List results; 18 | } 19 | } 20 | --------------------------------------------------------------------------------