From b7b546ee1cd2cecc607cd81da09a61850915cde1 Mon Sep 17 00:00:00 2001 From: starknetdev Date: Tue, 10 Oct 2023 12:51:34 +0100 Subject: [PATCH] - fix death dialog - fix "You Coward! on attack - cleanup files --- ui/src/app/components/ArcadeDialog.tsx | 1 + ui/src/app/components/CountDown.tsx | 1 - ui/src/app/components/GameData.tsx | 16 - ui/src/app/components/TopUpDialog.tsx | 2 +- .../components/actions/DiscoveryDisplay.tsx | 1 - .../app/components/actions/KillAdventurer.tsx | 101 - ui/src/app/components/adventurer/Info.tsx | 2 +- ui/src/app/components/adventurer/TopInfo.tsx | 59 - .../components/animations/PixelatedImage.tsx | 6 +- .../app/components/archived/ANSIGenerator.tsx | 58 - ui/src/app/components/archived/Clock.tsx | 80 - .../components/archived/DevnetConnectors.tsx | 111 - .../archived/NetworkErrorScreen.tsx | 7 - ui/src/app/components/archived/Spinner.tsx | 39 - ui/src/app/components/intro/ArcadeIntro.tsx | 2 +- .../app/components/inventory/InventoryRow.tsx | 1 - .../components/marketplace/MarketplaceRow.tsx | 10 +- .../components/navigation/MobileHeader.tsx | 1 - .../navigation/NetworkSwitchError.tsx | 4 +- .../notifications/NotificationComponent.tsx | 2 +- .../notifications/NotificationDisplay.tsx | 2 +- .../app/components/start/AdventurersList.tsx | 1 - .../app/components/upgrade/StatAttribute.tsx | 5 +- ui/src/app/containers/BeastScreen.tsx | 4 +- ui/src/app/containers/InventoryScreen.tsx | 2 +- ui/src/app/containers/ProfileScreen.tsx | 3 +- ui/src/app/lib/arcade.ts | 2 +- ui/src/app/lib/realms.json | 105878 --------------- ui/src/app/lib/utils/index.ts | 7 - 29 files changed, 18 insertions(+), 106390 deletions(-) delete mode 100644 ui/src/app/components/actions/KillAdventurer.tsx delete mode 100644 ui/src/app/components/adventurer/TopInfo.tsx delete mode 100644 ui/src/app/components/archived/ANSIGenerator.tsx delete mode 100644 ui/src/app/components/archived/Clock.tsx delete mode 100644 ui/src/app/components/archived/DevnetConnectors.tsx delete mode 100644 ui/src/app/components/archived/NetworkErrorScreen.tsx delete mode 100644 ui/src/app/components/archived/Spinner.tsx delete mode 100644 ui/src/app/lib/realms.json diff --git a/ui/src/app/components/ArcadeDialog.tsx b/ui/src/app/components/ArcadeDialog.tsx index 99b9f21a4..0ed9d4d93 100644 --- a/ui/src/app/components/ArcadeDialog.tsx +++ b/ui/src/app/components/ArcadeDialog.tsx @@ -185,6 +185,7 @@ export const ArcadeDialog = () => {

{isSettingPermissions diff --git a/ui/src/app/components/CountDown.tsx b/ui/src/app/components/CountDown.tsx index 820c7df65..00c96fe1c 100644 --- a/ui/src/app/components/CountDown.tsx +++ b/ui/src/app/components/CountDown.tsx @@ -2,7 +2,6 @@ import { useEffect, useRef } from "react"; import { useCountUp } from "react-countup"; import { useState } from "react"; import { penaltyTime } from "../lib/constants"; -import { convertTime } from "../lib/utils"; export const HealthCountDown = ({ health }: any) => { const countUpRef = useRef(null); diff --git a/ui/src/app/components/GameData.tsx b/ui/src/app/components/GameData.tsx index 86f15b814..4b4388b96 100644 --- a/ui/src/app/components/GameData.tsx +++ b/ui/src/app/components/GameData.tsx @@ -4,7 +4,6 @@ export type Dict = { [key: number]: T }; export type DictString = { [key: string]: T }; export class GameData { - CONTRACTS: DictString; BEASTS: Dict; BEAST_TIERS: Dict; BEAST_TYPES: Dict; @@ -34,21 +33,6 @@ export class GameData { QUERY_KEYS: DictString; constructor() { - this.CONTRACTS = { - goerliAdventurer: - "0x035d755a23ec72df90819f584d9a1849bbc21fa77f96d25e03f1736883895248", - goerliBeast: - "0x000f4dbfe5d15792aa91025e42ee1d74c22bdeb1eef0b9bc19a37216377290c1", - goerliLoot: - "0x065669e15c8f1a7f17b7062e4eb1b709b922b931b93c59577f1848a85c30ab1f", - devnetAdventurer: - "0x005160ffc8910638190fbe80296932ce90be9091f622b30b299ed81c7be7d359", - devnetBeast: - "0x061533cb6f21d230aeef9ac2aecf0c70679d1d50d9d61f11bd6a6113cf3d7d85", - devnetLoot: - "0x040583a9197a52f289a5f6f03981ace0b3dfcc7496137fa292ec67796be22766", - }; - this.BEASTS = { 1: "Warlock", 2: "Typhon", diff --git a/ui/src/app/components/TopUpDialog.tsx b/ui/src/app/components/TopUpDialog.tsx index 4fdb01408..d918b54ec 100644 --- a/ui/src/app/components/TopUpDialog.tsx +++ b/ui/src/app/components/TopUpDialog.tsx @@ -12,7 +12,7 @@ interface TopUpDialogProps { } export const TopUpDialog = ({ token }: TopUpDialogProps) => { - const { account: walletAccount, address, connector } = useAccount(); + const { account: walletAccount, address } = useAccount(); const { connect, available } = useConnectors(); const showTopUpDialog = useUIStore((state) => state.showTopUpDialog); const topUpAccount = useUIStore((state) => state.topUpAccount); diff --git a/ui/src/app/components/actions/DiscoveryDisplay.tsx b/ui/src/app/components/actions/DiscoveryDisplay.tsx index e82a5cb0f..505c49281 100644 --- a/ui/src/app/components/actions/DiscoveryDisplay.tsx +++ b/ui/src/app/components/actions/DiscoveryDisplay.tsx @@ -7,7 +7,6 @@ import { GiSandsOfTimeIcon, TwoCoinIcon, HealthPotionIcon, - GiStarsStackIcon, } from "../icons/Icons"; import { Discovery } from "@/app/types"; diff --git a/ui/src/app/components/actions/KillAdventurer.tsx b/ui/src/app/components/actions/KillAdventurer.tsx deleted file mode 100644 index 4e3db5aea..000000000 --- a/ui/src/app/components/actions/KillAdventurer.tsx +++ /dev/null @@ -1,101 +0,0 @@ -import { useState } from "react"; -import { Button } from "../buttons/Button"; -import { useContracts } from "@/app/hooks/useContracts"; -import useTransactionCartStore from "@/app/hooks/useTransactionCartStore"; -import { useUiSounds, soundSelector } from "../../hooks/useUiSound"; -import useCustomQuery from "@/app/hooks/useCustomQuery"; -import { getAdventurerById } from "../../hooks/graphql/queries"; -import TopInfo from "../adventurer/TopInfo"; -import { useQueriesStore } from "@/app/hooks/useQueryStore"; -import { useBlock } from "@starknet-react/core"; -import { NullAdventurer } from "@/app/types"; -import LootIconLoader from "../icons/Loader"; - -export default function KillAdventurer() { - const { gameContract } = useContracts(); - const [adventurerTarget, setAdventurerTarget] = useState(""); - const addToCalls = useTransactionCartStore((s) => s.addToCalls); - const { play: clickPlay } = useUiSounds(soundSelector.click); - const { data: blockData } = useBlock({ - refetchInterval: false, - }); - const { data, isLoading } = useQueriesStore(); - - const handleInputChange = (event: React.ChangeEvent) => { - setAdventurerTarget(event.target.value); - }; - - const slayIdleAdventurerTx = { - contractAddress: gameContract?.address ?? "", - entrypoint: "slay_idle_adventurer", - calldata: [adventurerTarget], - metadata: `Slaying ${adventurerTarget}`, - }; - - const handleSlayAdventurer = async () => { - addToCalls(slayIdleAdventurerTx); - }; - - useCustomQuery("adventurerToSlayQuery", getAdventurerById, { - id: parseInt(adventurerTarget), - }); - - const slayAdventurer = data.adventurerToSlayQuery - ? data.adventurerToSlayQuery.adventurers[0] - : NullAdventurer; - - const formatLastActionBlock = (slayAdventurer?.lastAction ?? 0) % 512; - const formatCurrentBlock = (blockData?.block_number ?? 0) % 512; - - const idleTime = - formatCurrentBlock >= formatLastActionBlock - ? formatCurrentBlock - formatLastActionBlock - : 512 - formatLastActionBlock + formatCurrentBlock; - - const IDLE_DEATH_PENALTY_BLOCKS = 300; - - return ( -
-
-

- Slay Idle Adventurer -

- -
- - {isLoading.adventurerToSlayQuery ? ( - - ) : ( - - )} -
- ); -} diff --git a/ui/src/app/components/adventurer/Info.tsx b/ui/src/app/components/adventurer/Info.tsx index f4e2f81bc..71e107ecb 100644 --- a/ui/src/app/components/adventurer/Info.tsx +++ b/ui/src/app/components/adventurer/Info.tsx @@ -2,7 +2,7 @@ import { Adventurer, NullAdventurer, NullItem } from "../../types"; import { HeartIcon, CoinIcon, QuestionMarkIcon } from "../icons/Icons"; import { ItemDisplay } from "./ItemDisplay"; import LevelBar from "./LevelBar"; -import { getRealmNameById, getKeyFromValue } from "../../lib/utils"; +import { getKeyFromValue } from "../../lib/utils"; import { useQueriesStore } from "../../hooks/useQueryStore"; import useUIStore from "../../hooks/useUIStore"; import { Item } from "@/app/types"; diff --git a/ui/src/app/components/adventurer/TopInfo.tsx b/ui/src/app/components/adventurer/TopInfo.tsx deleted file mode 100644 index aacac2f62..000000000 --- a/ui/src/app/components/adventurer/TopInfo.tsx +++ /dev/null @@ -1,59 +0,0 @@ -import { Adventurer, NullAdventurer } from "../../types"; -import { HeartIcon, CoinIcon } from "../icons/Icons"; -import LevelBar from "./LevelBar"; -import { getRealmNameById } from "../../lib/utils"; - -interface InfoProps { - adventurer: Adventurer | undefined; -} - -export default function TopInfo({ adventurer }: InfoProps) { - const formatAdventurer = adventurer ? adventurer : NullAdventurer; - - return ( - <> - {adventurer?.id ? ( -
-
-
-
- {formatAdventurer.classType ?? 0}{" "} - - { - getRealmNameById(formatAdventurer.homeRealm ?? 0) - ?.properties.name - } - - - { - getRealmNameById(formatAdventurer.homeRealm ?? 0) - ?.properties.order - } - -
-
- {formatAdventurer.name} - - {" "} - {formatAdventurer.gold ? formatAdventurer.gold : 0} - - - {" "} - {`${formatAdventurer.health ?? 0}/${ - 100 + (formatAdventurer.vitality ?? 0) * 20 - }`} - -
- -
- -
-
-
-
- ) : ( -

Choose an adventurer

- )} - - ); -} diff --git a/ui/src/app/components/animations/PixelatedImage.tsx b/ui/src/app/components/animations/PixelatedImage.tsx index 6692cc55f..1c9db0272 100644 --- a/ui/src/app/components/animations/PixelatedImage.tsx +++ b/ui/src/app/components/animations/PixelatedImage.tsx @@ -5,6 +5,7 @@ interface PixelatedImageProps { pixelSize: number; setImageLoading?: (imageLoaded: boolean) => void; fill?: boolean; + pulsate?: boolean; } const PixelatedImage: React.FC = ({ @@ -12,6 +13,7 @@ const PixelatedImage: React.FC = ({ pixelSize, setImageLoading, fill, + pulsate, }) => { const canvasRef = useRef(null); const [dimensions, setDimensions] = useState({ width: 0, height: 0 }); @@ -84,7 +86,7 @@ const PixelatedImage: React.FC = ({ } setTimeout(() => { - setImageLoading && setImageLoading(true); + setImageLoading && setImageLoading(false); }, maxTimeout); }; }; @@ -93,7 +95,7 @@ const PixelatedImage: React.FC = ({ return ( { - const [ansiArt, setAnsiArt] = useState(""); - - useEffect(() => { - const getColorCode = (pixel: any) => { - const [r, g, b] = pixel; - return `rgba(${r}, ${g}, ${b}, 255)`; - }; - - const loadAndRenderImage = async () => { - const img = new Image(); - img.src = src; - - await new Promise((resolve) => { - img.onload = resolve; - }); - - const canvas = document.createElement("canvas"); - const ctx = canvas.getContext("2d") as CanvasRenderingContext2D; - const aspectRatio = img.height / img.width; - const height = Math.floor(aspectRatio * newWidth); - - canvas.width = newWidth; - canvas.height = height; - - ctx.drawImage(img, 0, 0, newWidth, height); - - const imageData = ctx.getImageData(0, 0, newWidth, height).data; - const blockSize = 4; - let ansiArtHtml = ""; - - for (let y = 0; y < height; y += blockSize) { - for (let x = 0; x < newWidth; x += blockSize) { - const i = (y * newWidth + x) * 4; - const pixel = [imageData[i], imageData[i + 1], imageData[i + 2]]; - const colorCode = getColorCode(pixel); - const block = "\u2588"; - - ansiArtHtml += `${block}`; - } - ansiArtHtml += "
"; - } - - setAnsiArt(ansiArtHtml); - }; - - loadAndRenderImage(); - }, [src, newWidth]); - - return ( -
- ); -}; diff --git a/ui/src/app/components/archived/Clock.tsx b/ui/src/app/components/archived/Clock.tsx deleted file mode 100644 index 8ad46781e..000000000 --- a/ui/src/app/components/archived/Clock.tsx +++ /dev/null @@ -1,80 +0,0 @@ -import React, { useState, useEffect } from "react"; -import { formatTime as libFormatTime } from "../../lib/utils"; - -export const UTCClock: React.FC = () => { - const [currentTime, setCurrentTime] = useState(new Date()); - - useEffect(() => { - const timer = setInterval(() => { - setCurrentTime(new Date()); - }, 1000); - - // Clean up the timer when the component is unmounted - return () => clearInterval(timer); - }, []); - - return ( -
-

{`Time: ${libFormatTime(currentTime)} UTC`}

-
- ); -}; - -interface CountdownProps { - countingMessage: string; - finishedMessage: string; - targetTime?: Date; -} - -export const Countdown: React.FC = ({ - countingMessage, - finishedMessage, - targetTime, -}) => { - const [seconds, setSeconds] = useState(0); - const [displayTime, setDisplayTime] = useState(""); - - useEffect(() => { - if (targetTime) { - const updateCountdown = () => { - const currentTime = new Date().getTime(); - const timeRemaining = targetTime.getTime() - currentTime; - setSeconds(Math.floor(timeRemaining / 1000)); - }; - - updateCountdown(); - const interval = setInterval(updateCountdown, 1000); - - return () => { - clearInterval(interval); - }; - } - }, [targetTime]); - - useEffect(() => { - if (seconds <= 0) { - setDisplayTime(finishedMessage); - } else { - setDisplayTime(`${countingMessage} ${formatTime(seconds)}`); - } - }, [seconds, countingMessage, finishedMessage]); - - const formatTime = (totalSeconds: number) => { - const hours = Math.floor(totalSeconds / 3600); - const minutes = Math.floor((totalSeconds - hours * 3600) / 60); - const seconds = totalSeconds % 60; - return `${hours.toString().padStart(2, "0")}:${minutes - .toString() - .padStart(2, "0")}:${seconds.toString().padStart(2, "0")}`; - }; - - return ( -
- {targetTime ? ( -

{displayTime}

- ) : ( -

Loading

- )} -
- ); -}; diff --git a/ui/src/app/components/archived/DevnetConnectors.tsx b/ui/src/app/components/archived/DevnetConnectors.tsx deleted file mode 100644 index efd867f32..000000000 --- a/ui/src/app/components/archived/DevnetConnectors.tsx +++ /dev/null @@ -1,111 +0,0 @@ -import { useAccount } from "@starknet-react/core"; -import { Button } from "../buttons/Button"; -import { mintEth } from "../../api/api"; - -interface AddDevnetButtonProps { - isDisabled: boolean; - setAddDevnet: (value: boolean) => void; -} - -export const AddDevnetButton = ({ - isDisabled, - setAddDevnet, -}: AddDevnetButtonProps) => { - const { connector } = useAccount(); - const wallet = (connector as any)?._wallet; - - const handleAddDevnet = async () => { - await wallet?.request({ - type: "wallet_addStarknetChain", - params: { - id: "90013", - chainName: "Loot Survivor Devnet", - chainId: "LS_DEVNET", - baseUrl: "https://survivor-indexer.bibliothecadao.xyz", - rpcUrls: ["https://survivor-indexer.bibliothecadao.xyz/rpc"], - // accountImplementation: - // "0x3ebe39375ba9e0f8cc21d5ee38c48818e8ed6612fa2e4e04702a323d64b96ba", - }, - }); - }; - - return ( - - ); -}; - -interface SwitchDevnetButtonProps { - isDisabled: boolean; -} - -export const SwitchToDevnetButton = ({ - isDisabled, -}: SwitchDevnetButtonProps) => { - const { connector } = useAccount(); - const wallet = (connector as any)?._wallet; - - const handeleSwitchToDevnet = async () => { - await wallet?.request({ - type: "wallet_switchStarknetChain", - params: { - chainId: "LS_DEVNET", - }, - }); - }; - - return ( - - ); -}; - -export const AddDevnetEthButton = () => { - const { connector } = useAccount(); - const wallet = (connector as any)?._wallet; - - const handeleAddDevnetEth = async () => { - await wallet?.request({ - type: "wallet_watchAsset", - params: { - type: "ERC20", - options: { - address: - "0x49D36570D4E46F48E99674BD3FCC84644DDD6B96F7C741B1562B82F9E004DC7", - symbol: "ETH", - decimals: 18, - name: "Ether", - }, - }, - }); - }; - - return ( - - ); -}; - -export const MintEthButton = () => { - const { account } = useAccount(); - - const handeleMintEth = async () => { - if (account?.address) { - await mintEth({ address: account?.address }); - } - }; - - return ; -}; diff --git a/ui/src/app/components/archived/NetworkErrorScreen.tsx b/ui/src/app/components/archived/NetworkErrorScreen.tsx deleted file mode 100644 index 5a9641c80..000000000 --- a/ui/src/app/components/archived/NetworkErrorScreen.tsx +++ /dev/null @@ -1,7 +0,0 @@ -export default function NetworkScreen() { - return ( -
-

OH NO! You have encountered a network error.

-
- ); -} diff --git a/ui/src/app/components/archived/Spinner.tsx b/ui/src/app/components/archived/Spinner.tsx deleted file mode 100644 index bfb64c3e4..000000000 --- a/ui/src/app/components/archived/Spinner.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import React, { SVGProps } from "react"; - -interface SpinnerProps extends SVGProps { - color?: string; -} - -const Spinner: React.FC = ({ - color = "currentColor", - ...rest -}) => { - return ( - - - - - - - - - - - ); -}; - -export default Spinner; diff --git a/ui/src/app/components/intro/ArcadeIntro.tsx b/ui/src/app/components/intro/ArcadeIntro.tsx index 2d6e5cf55..f2714547d 100644 --- a/ui/src/app/components/intro/ArcadeIntro.tsx +++ b/ui/src/app/components/intro/ArcadeIntro.tsx @@ -32,7 +32,6 @@ export const ArcadeIntro = () => { const handleSubmitCalls = useTransactionCartStore( (state) => state.handleSubmitCalls ); - const { writeAsync } = useContractWrite({ calls }); const { data: ethBalance } = useBalance({ token: ethContract?.address, address, @@ -150,6 +149,7 @@ export const ArcadeIntro = () => {

{isSettingPermissions diff --git a/ui/src/app/components/inventory/InventoryRow.tsx b/ui/src/app/components/inventory/InventoryRow.tsx index 2260d7f0b..d78441d74 100644 --- a/ui/src/app/components/inventory/InventoryRow.tsx +++ b/ui/src/app/components/inventory/InventoryRow.tsx @@ -51,7 +51,6 @@ export const InventoryRow = ({ adventurer?.id?.toString() ?? "", equipItems.length, ...equipItems, - // getKeyFromValue(gameData.ITEMS, item) ?? "", ], metadata: `Equipping ${item}!`, }; diff --git a/ui/src/app/components/marketplace/MarketplaceRow.tsx b/ui/src/app/components/marketplace/MarketplaceRow.tsx index 88bcf0aa1..d59db9b5e 100644 --- a/ui/src/app/components/marketplace/MarketplaceRow.tsx +++ b/ui/src/app/components/marketplace/MarketplaceRow.tsx @@ -1,21 +1,13 @@ import { useCallback, useEffect, useState } from "react"; import { Button } from "../buttons/Button"; -import { useContracts } from "../../hooks/useContracts"; import { getItemData, getItemPrice, getKeyFromValue } from "../../lib/utils"; import useAdventurerStore from "../../hooks/useAdventurerStore"; -import useTransactionCartStore from "../../hooks/useTransactionCartStore"; import LootIcon from "../icons/LootIcon"; import { useTransactionManager, useWaitForTransaction, } from "@starknet-react/core"; -import { - Metadata, - Item, - Adventurer, - ItemPurchase, - UpgradeStats, -} from "../../types"; +import { Metadata, Item, ItemPurchase, UpgradeStats } from "../../types"; import { CoinIcon } from "../icons/Icons"; import EfficacyDisplay from "../icons/EfficacyIcon"; import { GameData } from "../GameData"; diff --git a/ui/src/app/components/navigation/MobileHeader.tsx b/ui/src/app/components/navigation/MobileHeader.tsx index 7d955783c..dd6b651f2 100644 --- a/ui/src/app/components/navigation/MobileHeader.tsx +++ b/ui/src/app/components/navigation/MobileHeader.tsx @@ -2,7 +2,6 @@ import { Button } from "../buttons/Button"; import { ProfileIcon, TrophyIcon } from "../icons/Icons"; import useUIStore from "../../hooks/useUIStore"; import { capitalizeFirstLetter } from "../../lib/utils"; -import Image from "next/image"; export default function MobileHeader() { const screen = useUIStore((state) => state.screen); diff --git a/ui/src/app/components/navigation/NetworkSwitchError.tsx b/ui/src/app/components/navigation/NetworkSwitchError.tsx index e5c5976d0..e4b837c2d 100644 --- a/ui/src/app/components/navigation/NetworkSwitchError.tsx +++ b/ui/src/app/components/navigation/NetworkSwitchError.tsx @@ -1,6 +1,4 @@ -"use client"; -import { useAccount, useNetwork } from "@starknet-react/core"; -import { Button } from "../buttons/Button"; +import { useAccount } from "@starknet-react/core"; export interface NetworkSwitchErrorProps { isWrongNetwork: boolean; diff --git a/ui/src/app/components/notifications/NotificationComponent.tsx b/ui/src/app/components/notifications/NotificationComponent.tsx index bfb8f3fe5..4cacff68f 100644 --- a/ui/src/app/components/notifications/NotificationComponent.tsx +++ b/ui/src/app/components/notifications/NotificationComponent.tsx @@ -1,4 +1,4 @@ -import { useState, useEffect, useRef } from "react"; +import { useState, useEffect } from "react"; import SpriteAnimation from "../animations/SpriteAnimation"; import { notificationAnimations } from "@/app/lib/constants"; import useLoadingStore from "@/app/hooks/useLoadingStore"; diff --git a/ui/src/app/components/notifications/NotificationDisplay.tsx b/ui/src/app/components/notifications/NotificationDisplay.tsx index 57c4d89df..7e6c95d93 100644 --- a/ui/src/app/components/notifications/NotificationDisplay.tsx +++ b/ui/src/app/components/notifications/NotificationDisplay.tsx @@ -1,6 +1,6 @@ import useAdventurerStore from "../../hooks/useAdventurerStore"; import { soundSelector, useUiSounds } from "../../hooks/useUiSound"; -import { useCallback, useEffect, useState } from "react"; +import { useCallback, useState } from "react"; import { useQueriesStore } from "../../hooks/useQueryStore"; import { NullAdventurer } from "@/app/types"; import NotificationComponent from "./NotificationComponent"; diff --git a/ui/src/app/components/start/AdventurersList.tsx b/ui/src/app/components/start/AdventurersList.tsx index 4b8a2d25d..18ba59962 100644 --- a/ui/src/app/components/start/AdventurersList.tsx +++ b/ui/src/app/components/start/AdventurersList.tsx @@ -2,7 +2,6 @@ import { useState, useEffect, useRef, useCallback } from "react"; import { Button } from "../buttons/Button"; import Info from "../adventurer/Info"; import useAdventurerStore from "../../hooks/useAdventurerStore"; -import { ButtonData } from "../KeyboardControls"; import { Adventurer } from "@/app/types"; import { SkullIcon } from "../icons/Icons"; import useUIStore from "@/app/hooks/useUIStore"; diff --git a/ui/src/app/components/upgrade/StatAttribute.tsx b/ui/src/app/components/upgrade/StatAttribute.tsx index 69d31eded..a150760ce 100644 --- a/ui/src/app/components/upgrade/StatAttribute.tsx +++ b/ui/src/app/components/upgrade/StatAttribute.tsx @@ -1,7 +1,6 @@ -import { ReactElement, use, useEffect, useState, useRef } from "react"; +import { ReactElement, useEffect, useState, useRef } from "react"; import QuantityButtons from "../buttons/QuantityButtons"; import useAdventurerStore from "@/app/hooks/useAdventurerStore"; -import { getKeyFromValue, removeElement } from "@/app/lib/utils"; import { GameData } from "../GameData"; import useTransactionCartStore from "@/app/hooks/useTransactionCartStore"; import useUIStore from "@/app/hooks/useUIStore"; @@ -11,7 +10,6 @@ interface StatAttributeProps { name: string; icon: ReactElement; description: string; - buttonText: string; upgradeHandler: ( upgrades?: UpgradeStats, potions?: number, @@ -23,7 +21,6 @@ export const StatAttribute = ({ name, icon, description, - buttonText, upgradeHandler, }: StatAttributeProps) => { const adventurer = useAdventurerStore((state) => state.adventurer); diff --git a/ui/src/app/containers/BeastScreen.tsx b/ui/src/app/containers/BeastScreen.tsx index 26eb14ffd..6f210f70c 100644 --- a/ui/src/app/containers/BeastScreen.tsx +++ b/ui/src/app/containers/BeastScreen.tsx @@ -63,8 +63,6 @@ export default function BeastScreen({ attack, flee }: BeastScreenProps) { { id: 2, label: "TILL DEATH", - mouseEnter: handleMouseEnter, - mouseLeave: handleMouseLeave, action: async () => { resetNotification(); await attack(true, beastData); @@ -82,6 +80,8 @@ export default function BeastScreen({ attack, flee }: BeastScreenProps) { { id: 1, label: adventurer?.dexterity === 0 ? "DEX TOO LOW" : "SINGLE", + mouseEnter: handleMouseEnter, + mouseLeave: handleMouseLeave, action: async () => { resetNotification(); await flee(false, beastData); diff --git a/ui/src/app/containers/InventoryScreen.tsx b/ui/src/app/containers/InventoryScreen.tsx index dff3f354c..03f13addc 100644 --- a/ui/src/app/containers/InventoryScreen.tsx +++ b/ui/src/app/containers/InventoryScreen.tsx @@ -14,7 +14,7 @@ import useTransactionCartStore from "../hooks/useTransactionCartStore"; import { useQueriesStore } from "../hooks/useQueryStore"; import LootIcon from "../components/icons/LootIcon"; import { InfoIcon, BagIcon } from "../components/icons/Icons"; -import { Call, Item, Metadata } from "../types"; +import { Item, Metadata } from "../types"; import { GameData } from "../components/GameData"; import useUIStore from "../hooks/useUIStore"; diff --git a/ui/src/app/containers/ProfileScreen.tsx b/ui/src/app/containers/ProfileScreen.tsx index 54c2fc08e..f3f0dc327 100644 --- a/ui/src/app/containers/ProfileScreen.tsx +++ b/ui/src/app/containers/ProfileScreen.tsx @@ -7,8 +7,7 @@ import EncountersScreen from "./EncountersScreen"; import { NullAdventurer } from "../types"; export default function Profile() { - const { data, setData, setIsLoading, setNotLoading, refetch } = - useQueriesStore(); + const { data } = useQueriesStore(); const profile = useUIStore((state) => state.profile); const [encounters, setEncounters] = useState(false); diff --git a/ui/src/app/lib/arcade.ts b/ui/src/app/lib/arcade.ts index f342d2050..235648785 100644 --- a/ui/src/app/lib/arcade.ts +++ b/ui/src/app/lib/arcade.ts @@ -1,7 +1,7 @@ import { AccountChangeEventHandler } from "get-starknet-core"; import { AccountInterface, Account } from "starknet"; import { Connector } from "@starknet-react/core"; // Assuming Connector is defined in './connector' -import { padAddress, shortenHex } from "./utils"; +import { shortenHex } from "./utils"; export class ArcadeConnector extends Connector { private _account: AccountInterface | Account | null; diff --git a/ui/src/app/lib/realms.json b/ui/src/app/lib/realms.json deleted file mode 100644 index d751d9420..000000000 --- a/ui/src/app/lib/realms.json +++ /dev/null @@ -1,105878 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.7471, -18.92] - }, - "properties": { - "name": "Stolsli", - "realm_idx": 1, - "order": "The Order of Giants", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.0133, 0.5246] - }, - "properties": { - "name": "Ilgzhijajilg", - "realm_idx": 2, - "order": "The Order of Perfection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.4801, 16.6004] - }, - "properties": { - "name": "Hetokamohuti", - "realm_idx": 3, - "order": "The Order of Rage", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.367, -33.3106] - }, - "properties": { - "name": "Egonal", - "realm_idx": 4, - "order": "The Order of the Fox", - "resources": ["Copper", "Wood", "Ironwood", "Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.2801, -54.5996] - }, - "properties": { - "name": "\u2018oak Leukue", - "realm_idx": 5, - "order": "The Order of the Twins", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.5137, 51.2713] - }, - "properties": { - "name": "Noykkuynoyk", - "realm_idx": 6, - "order": "The Order of Fury", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.349, 27.3504] - }, - "properties": { - "name": "ta Tin", - "realm_idx": 7, - "order": "The Order of Reflection", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.18, -5.1997] - }, - "properties": { - "name": "M\u00e1kosk\u00fak", - "realm_idx": 8, - "order": "The Order of Detection", - "resources": ["Wood", "Silver", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.6701, 45.7468] - }, - "properties": { - "name": "Niotsae", - "realm_idx": 9, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.6068, -0.8031] - }, - "properties": { - "name": "\u2018unpik", - "realm_idx": 10, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Silver", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.6047, 12.5257] - }, - "properties": { - "name": "Ozh\u00e9ch", - "realm_idx": 11, - "order": "The Order of Fury", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.7529, 45.68] - }, - "properties": { - "name": "L\u00e4n\u00e4ngun", - "realm_idx": 12, - "order": "The Order of Fury", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.6471, 26.08] - }, - "properties": { - "name": "Tultul", - "realm_idx": 13, - "order": "The Order of Skill", - "resources": ["Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.7471, -20.92] - }, - "properties": { - "name": "t\u00e1l \u0160nislis", - "realm_idx": 14, - "order": "The Order of Perfection", - "resources": ["Mithral", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.18, -15.0997] - }, - "properties": { - "name": "Qeujqeujwouw", - "realm_idx": 15, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.48, 17.4003] - }, - "properties": { - "name": "\u00cf\u0161-Arg", - "realm_idx": 16, - "order": "The Order of Detection", - "resources": ["Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.4471, 12.18] - }, - "properties": { - "name": "Skassluk", - "realm_idx": 17, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.4801, -48.1996] - }, - "properties": { - "name": "Ulolepon", - "realm_idx": 18, - "order": "The Order of the Twins", - "resources": ["Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.88, -5.6997] - }, - "properties": { - "name": "Emilsh Imnos", - "realm_idx": 19, - "order": "The Order of Reflection", - "resources": ["Coal", "Silver", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.0471, -22.32] - }, - "properties": { - "name": "Uyqlayros", - "realm_idx": 20, - "order": "The Order of Giants", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.88, 11.8003] - }, - "properties": { - "name": "Lemoltnuls", - "realm_idx": 21, - "order": "The Order of Detection", - "resources": ["Silver", "Wood", "Alchemical Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [126.678, 8.7865] - }, - "properties": { - "name": "Hemmemsk\u00e4n", - "realm_idx": 22, - "order": "The Order of Protection", - "resources": [ - "Coal", - "Silver", - "Wood", - "Cold Iron", - "Stone", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-127.88, -11.9997] - }, - "properties": { - "name": "Ur Murorzh", - "realm_idx": 23, - "order": "The Order of Detection", - "resources": [ - "Alchemical Silver", - "Silver", - "Cold Iron", - "Deep Crystal", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.7471, -13.92] - }, - "properties": { - "name": "Poi a Polih", - "realm_idx": 24, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.88, 13.1003] - }, - "properties": { - "name": "Aunomim", - "realm_idx": 25, - "order": "The Order of Detection", - "resources": ["Wood", "Copper", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.7471, -9.62] - }, - "properties": { - "name": "lel K\u00fabklor", - "realm_idx": 26, - "order": "The Order of Power", - "resources": ["Obsidian", "Cold Iron", "Stone", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.7471, -12.72] - }, - "properties": { - "name": "Konlompon", - "realm_idx": 27, - "order": "The Order of Perfection", - "resources": ["Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-42.6927, 52.9557] - }, - "properties": { - "name": "Quokquok", - "realm_idx": 28, - "order": "The Order of Fury", - "resources": ["Coal", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.0529, -6.82] - }, - "properties": { - "name": "ken Nint\u00e4n", - "realm_idx": 29, - "order": "The Order of the Fox", - "resources": [ - "Hartwood", - "Silver", - "Cold Iron", - "Stone", - "Coal", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.6471, 34.58] - }, - "properties": { - "name": "Um nyn Ansyn", - "realm_idx": 30, - "order": "The Order of Titans", - "resources": ["Hartwood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.4471, 47.58] - }, - "properties": { - "name": "\u2018ilh\u2018ilhmil", - "realm_idx": 31, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.68, -46.5997] - }, - "properties": { - "name": "up \u00cdm\u00e1s\u00edmis", - "realm_idx": 32, - "order": "The Order of the Fox", - "resources": ["Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.7471, 4.88] - }, - "properties": { - "name": "Anonganimong", - "realm_idx": 33, - "order": "The Order of Brilliance", - "resources": ["Silver", "Hartwood", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.68, 0.4003] - }, - "properties": { - "name": "Zhusa-Letepo", - "realm_idx": 34, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood", "Ironwood", "Obsidian", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [69.8015, -15.4092] - }, - "properties": { - "name": "Temleknonnep", - "realm_idx": 35, - "order": "The Order of Perfection", - "resources": [ - "Cold Iron", - "Obsidian", - "Stone", - "Wood", - "Ironwood", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.98, -7.1997] - }, - "properties": { - "name": "Sn\u00fadusugato", - "realm_idx": 36, - "order": "The Order of Reflection", - "resources": ["Wood", "Copper", "Stone", "Ignium", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.8618, 5.9607] - }, - "properties": { - "name": "Windom Dun", - "realm_idx": 37, - "order": "The Order of Protection", - "resources": ["Wood", "Cold Iron", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.7471, 33.68] - }, - "properties": { - "name": "Sd\u00eddzhish", - "realm_idx": 38, - "order": "The Order of Skill", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.6852, -16.9351] - }, - "properties": { - "name": "Mensinnon", - "realm_idx": 39, - "order": "The Order of Perfection", - "resources": ["Gold", "Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.5471, 41.98] - }, - "properties": { - "name": "Skapnap", - "realm_idx": 40, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.5471, 11.58] - }, - "properties": { - "name": "Keuk Duokkou", - "realm_idx": 41, - "order": "The Order of Brilliance", - "resources": ["Coal", "Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.0993, -19.4254] - }, - "properties": { - "name": "Randulghid", - "realm_idx": 42, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Ironwood", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.6529, -28.12] - }, - "properties": { - "name": "Nisku", - "realm_idx": 43, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.9529, 26.58] - }, - "properties": { - "name": "Duyshbo", - "realm_idx": 44, - "order": "The Order of Vitriol", - "resources": ["Cold Iron", "Copper", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.4689, -10.6388] - }, - "properties": { - "name": "\u00cdw\u00e1w Ulul", - "realm_idx": 45, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.28, 10.8003] - }, - "properties": { - "name": "N\u00f3tkaun", - "realm_idx": 46, - "order": "The Order of Fury", - "resources": ["Stone", "Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.5471, -19.72] - }, - "properties": { - "name": "N\u00ef\u00e4n\u00ebon", - "realm_idx": 47, - "order": "The Order of Perfection", - "resources": ["Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.88, -47.1997] - }, - "properties": { - "name": "Or-Urnpir", - "realm_idx": 48, - "order": "The Order of the Fox", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.58, 7.9003] - }, - "properties": { - "name": "L\u00edsh\u00edm\u00e1", - "realm_idx": 49, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.58, 8.1003] - }, - "properties": { - "name": "Konkonkinnan", - "realm_idx": 50, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.0471, 46.08] - }, - "properties": { - "name": "\u2018ilweli", - "realm_idx": 51, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Hartwood", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.8529, -26.22] - }, - "properties": { - "name": "Unum-Ununan", - "realm_idx": 52, - "order": "The Order of Power", - "resources": ["Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.4471, -15.12] - }, - "properties": { - "name": "U-pu-Hunak", - "realm_idx": 53, - "order": "The Order of Power", - "resources": ["Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.8708, 47.3956] - }, - "properties": { - "name": "Loseplal", - "realm_idx": 54, - "order": "The Order of Fury", - "resources": ["Twilight Quartz", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.9471, 25.58] - }, - "properties": { - "name": "Pinten", - "realm_idx": 55, - "order": "The Order of Skill", - "resources": ["Wood", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.9471, 30.08] - }, - "properties": { - "name": "Gompon", - "realm_idx": 56, - "order": "The Order of Skill", - "resources": ["Ignium", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.2471, -3.12] - }, - "properties": { - "name": "Kum Pin", - "realm_idx": 57, - "order": "The Order of Power", - "resources": ["Coal", "Ruby", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.6471, 14.58] - }, - "properties": { - "name": "rien Katvier", - "realm_idx": 58, - "order": "The Order of Brilliance", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.2471, 16.58] - }, - "properties": { - "name": "Ngimsngamgin", - "realm_idx": 59, - "order": "The Order of Skill", - "resources": ["Wood", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.4529, 14.88] - }, - "properties": { - "name": "Schint\u00edsi", - "realm_idx": 60, - "order": "The Order of Vitriol", - "resources": ["Coal", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.7801, 44.9004] - }, - "properties": { - "name": "Siwseysawp", - "realm_idx": 61, - "order": "The Order of Anger", - "resources": ["Stone", "Wood", "Coal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.5471, 30.78] - }, - "properties": { - "name": "Emalim", - "realm_idx": 62, - "order": "The Order of Skill", - "resources": ["Wood", "Coal", "Copper", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.2801, 45.1004] - }, - "properties": { - "name": "as Oket", - "realm_idx": 63, - "order": "The Order of Anger", - "resources": ["Copper", "Wood", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.9201, 43.098] - }, - "properties": { - "name": "Goxnlen", - "realm_idx": 64, - "order": "The Order of Anger", - "resources": ["Ironwood", "Gold", "Obsidian", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.4471, 0.28] - }, - "properties": { - "name": "Klehl\u00eaktlik", - "realm_idx": 65, - "order": "The Order of Giants", - "resources": ["Copper", "Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.7801, 39.3004] - }, - "properties": { - "name": "Nriputam", - "realm_idx": 66, - "order": "The Order of Anger", - "resources": ["Silver", "True Ice", "Deep Crystal", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-21.9529, 43.08] - }, - "properties": { - "name": "Elolkalnul", - "realm_idx": 67, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.3471, 47.98] - }, - "properties": { - "name": "Lounloun", - "realm_idx": 68, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2801, 46.4004] - }, - "properties": { - "name": "Syunnan-Tin", - "realm_idx": 69, - "order": "The Order of Anger", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.3471, 58.28] - }, - "properties": { - "name": "Pweis", - "realm_idx": 70, - "order": "The Order of Enlightenment", - "resources": ["Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.7471, -32.72] - }, - "properties": { - "name": "Pem\u2018\u00e2p Pi\u2018", - "realm_idx": 71, - "order": "The Order of Giants", - "resources": ["Stone", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.98, -13.4997] - }, - "properties": { - "name": "Mol\u00e9mok\u00e1slul", - "realm_idx": 72, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.8471, 43.38] - }, - "properties": { - "name": "Nikun Hihni", - "realm_idx": 73, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.2471, -21.32] - }, - "properties": { - "name": "Punsittil", - "realm_idx": 74, - "order": "The Order of Giants", - "resources": ["True Ice", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.6529, 47.48] - }, - "properties": { - "name": "Hueteumuam", - "realm_idx": 75, - "order": "The Order of Fury", - "resources": ["Obsidian", "Mithral", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.6471, 15.48] - }, - "properties": { - "name": "Sguk Sjak", - "realm_idx": 76, - "order": "The Order of Brilliance", - "resources": ["Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.4471, 11.88] - }, - "properties": { - "name": "Nalxgitxmik", - "realm_idx": 77, - "order": "The Order of Titans", - "resources": ["Obsidian", "Deep Crystal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.7529, -7.92] - }, - "properties": { - "name": "Kl\u00edtsuk", - "realm_idx": 78, - "order": "The Order of the Fox", - "resources": ["Wood", "Obsidian", "Coal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.88, -50.3996] - }, - "properties": { - "name": "Amtunung", - "realm_idx": 79, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood", "Gold", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.88, -59.9996] - }, - "properties": { - "name": "\u0160j\u00e1pbjat\u0161j\u00e1p", - "realm_idx": 80, - "order": "The Order of the Fox", - "resources": [ - "Cold Iron", - "Ironwood", - "Gold", - "Coal", - "Obsidian", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.7471, -8.82] - }, - "properties": { - "name": "Sel \u00d3lng\u00e1rq", - "realm_idx": 81, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.48, 34.6003] - }, - "properties": { - "name": "Siosua", - "realm_idx": 82, - "order": "The Order of Reflection", - "resources": ["Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.28, 9.6003] - }, - "properties": { - "name": "Mihiko", - "realm_idx": 83, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.7956, -50.2645] - }, - "properties": { - "name": "Oqovuv", - "realm_idx": 84, - "order": "The Order of the Fox", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.0758, 45.7623] - }, - "properties": { - "name": "Munsmum", - "realm_idx": 85, - "order": "The Order of Anger", - "resources": ["Silver", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.28, 8.7003] - }, - "properties": { - "name": "Pengse", - "realm_idx": 86, - "order": "The Order of Detection", - "resources": ["Coal", "Stone", "Obsidian", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.1801, -33.2996] - }, - "properties": { - "name": "Gislegob", - "realm_idx": 87, - "order": "The Order of the Twins", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.5471, 48.78] - }, - "properties": { - "name": "Momskemsken", - "realm_idx": 88, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Ironwood", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.28, -7.7997] - }, - "properties": { - "name": "sh\u00eds T\u00e9ssm\u00e9s", - "realm_idx": 89, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.7471, -44.52] - }, - "properties": { - "name": "Det\u00fasek Ekek", - "realm_idx": 90, - "order": "The Order of Giants", - "resources": ["Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.1471, 42.18] - }, - "properties": { - "name": "Idududim", - "realm_idx": 91, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.3471, -10.92] - }, - "properties": { - "name": "Nenne", - "realm_idx": 92, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.1801, 49.1004] - }, - "properties": { - "name": "Spinkonpin", - "realm_idx": 93, - "order": "The Order of Anger", - "resources": ["Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.6471, -13.72] - }, - "properties": { - "name": "Poils\u00eaul Pos", - "realm_idx": 94, - "order": "The Order of Giants", - "resources": ["Stone", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.2925, -19.6809] - }, - "properties": { - "name": "shuh Spu", - "realm_idx": 95, - "order": "The Order of Protection", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.6471, 49.28] - }, - "properties": { - "name": "Susuki", - "realm_idx": 96, - "order": "The Order of Enlightenment", - "resources": ["Ironwood", "Coal", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.4471, -7.22] - }, - "properties": { - "name": "Tawmnu", - "realm_idx": 97, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.0471, 8.98] - }, - "properties": { - "name": "Smenkin", - "realm_idx": 98, - "order": "The Order of Titans", - "resources": ["Wood", "Cold Iron", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.9592, -23.9063] - }, - "properties": { - "name": "Nint\u00fam", - "realm_idx": 99, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Coal", "Cold Iron", "Ruby", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.7471, 10.28] - }, - "properties": { - "name": "Kaatsnootstu", - "realm_idx": 100, - "order": "The Order of Protection", - "resources": [ - "Silver", - "Coal", - "Stone", - "Deep Crystal", - "Wood", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.469, -22.7292] - }, - "properties": { - "name": "Umpojkmikpop", - "realm_idx": 101, - "order": "The Order of Protection", - "resources": ["Coal", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.18, 28.7003] - }, - "properties": { - "name": "Niopzhop", - "realm_idx": 102, - "order": "The Order of Fury", - "resources": ["Copper", "Wood", "Coal", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.4471, 20.78] - }, - "properties": { - "name": "Shetep", - "realm_idx": 103, - "order": "The Order of Skill", - "resources": ["Cold Iron", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.1471, 22.28] - }, - "properties": { - "name": "L\u00e2vqyvvio", - "realm_idx": 104, - "order": "The Order of Skill", - "resources": ["Copper", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.2471, 23.38] - }, - "properties": { - "name": "Dawudhijkid", - "realm_idx": 105, - "order": "The Order of Skill", - "resources": ["Copper", "Diamonds", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.4471, -34.92] - }, - "properties": { - "name": "Lopgach", - "realm_idx": 106, - "order": "The Order of Power", - "resources": ["Copper", "Cold Iron", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.1801, 4.1004] - }, - "properties": { - "name": "Silli Suulko", - "realm_idx": 107, - "order": "The Order of Rage", - "resources": ["Stone", "Copper", "Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.2471, 36.48] - }, - "properties": { - "name": "Komali", - "realm_idx": 108, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.3471, 29.78] - }, - "properties": { - "name": "Srulkrekuk", - "realm_idx": 109, - "order": "The Order of Enlightenment", - "resources": [ - "Stone", - "Wood", - "Twilight Quartz", - "Ironwood", - "Cold Iron", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.7471, 6.98] - }, - "properties": { - "name": "Raryrir", - "realm_idx": 110, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.8841, -10.7095] - }, - "properties": { - "name": "Owuwul", - "realm_idx": 111, - "order": "The Order of the Fox", - "resources": ["Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.2471, 32.48] - }, - "properties": { - "name": "Kuimkuip", - "realm_idx": 112, - "order": "The Order of Titans", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.4801, 40.1004] - }, - "properties": { - "name": "Purskirkir", - "realm_idx": 113, - "order": "The Order of Anger", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.156, 56.9385] - }, - "properties": { - "name": "Tchontcho", - "realm_idx": 114, - "order": "The Order of Fury", - "resources": ["Obsidian", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.6471, 6.88] - }, - "properties": { - "name": "k\u00ef-Nis\u00eflm", - "realm_idx": 115, - "order": "The Order of Brilliance", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.5471, -26.72] - }, - "properties": { - "name": "Kik\u2018enlulkik", - "realm_idx": 116, - "order": "The Order of Perfection", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.68, 7.4003] - }, - "properties": { - "name": "Qenkon", - "realm_idx": 117, - "order": "The Order of Detection", - "resources": ["Ironwood", "Wood", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.7529, -5.12] - }, - "properties": { - "name": "Songkensong", - "realm_idx": 118, - "order": "The Order of the Fox", - "resources": ["Coal", "Hartwood", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.2471, -33.22] - }, - "properties": { - "name": "Chruktrikwik", - "realm_idx": 119, - "order": "The Order of Giants", - "resources": ["Adamantine", "Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.0615, -11.6644] - }, - "properties": { - "name": "Nramkan", - "realm_idx": 120, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.2471, 33.68] - }, - "properties": { - "name": "K\u00efrl\u00efdl\u00efd", - "realm_idx": 121, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.3471, 42.88] - }, - "properties": { - "name": "Muki Kaki", - "realm_idx": 122, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Cold Iron", "Stone", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.0471, 22.98] - }, - "properties": { - "name": "Glumxixkum", - "realm_idx": 123, - "order": "The Order of Skill", - "resources": ["Stone", "Gold", "Coal", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.68, -5.5997] - }, - "properties": { - "name": "Fdiqchud", - "realm_idx": 124, - "order": "The Order of Detection", - "resources": ["Stone", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.4471, -1.72] - }, - "properties": { - "name": "Enh\u00fcm", - "realm_idx": 125, - "order": "The Order of Power", - "resources": ["Coal", "Ruby", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.28, -31.9997] - }, - "properties": { - "name": "Dupchiep", - "realm_idx": 126, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.1471, -42.12] - }, - "properties": { - "name": "Us\u00e9l\u00e9s", - "realm_idx": 127, - "order": "The Order of Giants", - "resources": ["Coal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.9801, -18.7996] - }, - "properties": { - "name": "pit Kuklak", - "realm_idx": 128, - "order": "The Order of the Twins", - "resources": ["Wood", "Ironwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.8471, 10.68] - }, - "properties": { - "name": "Namum", - "realm_idx": 129, - "order": "The Order of Titans", - "resources": ["Ironwood", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.1801, -19.6996] - }, - "properties": { - "name": "Nrussrim", - "realm_idx": 130, - "order": "The Order of the Twins", - "resources": ["Hartwood", "Sapphire", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.7529, 22.28] - }, - "properties": { - "name": "Miqakami", - "realm_idx": 131, - "order": "The Order of Vitriol", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.0268, 52.3409] - }, - "properties": { - "name": "Zaizbun", - "realm_idx": 132, - "order": "The Order of Fury", - "resources": ["Wood", "Gold", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.38, 13.2003] - }, - "properties": { - "name": "At\u00edqij", - "realm_idx": 133, - "order": "The Order of Detection", - "resources": ["Coal", "Sapphire", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.0471, 28.28] - }, - "properties": { - "name": "Nganu", - "realm_idx": 134, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [13.2471, -37.92] - }, - "properties": { - "name": "Lulu-Lulutik", - "realm_idx": 135, - "order": "The Order of Power", - "resources": ["Wood", "Copper", "Adamantine", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2801, -20.2996] - }, - "properties": { - "name": "M\u00e1kk\u00e9 sok Mi", - "realm_idx": 136, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.4935, -20.1535] - }, - "properties": { - "name": "Sinsinsin", - "realm_idx": 137, - "order": "The Order of Protection", - "resources": ["Coal", "Copper", "Deep Crystal", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.5801, -33.2996] - }, - "properties": { - "name": "Pengseng", - "realm_idx": 138, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-42.5529, 3.68] - }, - "properties": { - "name": "Zarmaln", - "realm_idx": 139, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Ignium", "Wood", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.6471, -18.22] - }, - "properties": { - "name": "Pjenmjum", - "realm_idx": 140, - "order": "The Order of Perfection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.2529, -3.72] - }, - "properties": { - "name": "Osmop", - "realm_idx": 141, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.3268, 52.4409] - }, - "properties": { - "name": "Duu Kemwoona", - "realm_idx": 142, - "order": "The Order of Fury", - "resources": ["Wood", "True Ice", "Coal", "Stone", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.9529, 26.08] - }, - "properties": { - "name": "sk\u00fan Chumkon", - "realm_idx": 143, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.9471, 3.28] - }, - "properties": { - "name": "Ukuletulipip", - "realm_idx": 144, - "order": "The Order of Brilliance", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.2471, -14.22] - }, - "properties": { - "name": "Niuniugais", - "realm_idx": 145, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.0644, -23.8546] - }, - "properties": { - "name": "Ghunbun", - "realm_idx": 146, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.3471, -37.42] - }, - "properties": { - "name": "Teslesklek", - "realm_idx": 147, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.2471, 29.28] - }, - "properties": { - "name": "S\u00f3ls\u00f3l\u00f3liror", - "realm_idx": 148, - "order": "The Order of Titans", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.6412, -22.768] - }, - "properties": { - "name": "Semege", - "realm_idx": 149, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.9471, 55.08] - }, - "properties": { - "name": "Leunhoalwiu", - "realm_idx": 150, - "order": "The Order of Titans", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.8025, 5.2829] - }, - "properties": { - "name": "Mikuku", - "realm_idx": 151, - "order": "The Order of Protection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.5676, 4.4052] - }, - "properties": { - "name": "I-tek-Sil", - "realm_idx": 152, - "order": "The Order of Protection", - "resources": ["Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.88, 13.2003] - }, - "properties": { - "name": "Nongkhunkang", - "realm_idx": 153, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.2471, 51.28] - }, - "properties": { - "name": "Upahupum", - "realm_idx": 154, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.28, -5.0997] - }, - "properties": { - "name": "T\u00eam\u00eal-Tumtut", - "realm_idx": 155, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.0471, -12.02] - }, - "properties": { - "name": "Gisik", - "realm_idx": 156, - "order": "The Order of Perfection", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.6529, -22.72] - }, - "properties": { - "name": "Syushstes", - "realm_idx": 157, - "order": "The Order of Power", - "resources": ["Coal", "Silver", "Gold", "Hartwood", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.9529, 36.38] - }, - "properties": { - "name": "Ikhikqiloik", - "realm_idx": 158, - "order": "The Order of Titans", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.6801, -14.6996] - }, - "properties": { - "name": "Zhezhi", - "realm_idx": 159, - "order": "The Order of Rage", - "resources": ["Sapphire", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.9527, 52.5801] - }, - "properties": { - "name": "Snimstwn", - "realm_idx": 160, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [27.7471, -39.22] - }, - "properties": { - "name": "Kesiselm El", - "realm_idx": 161, - "order": "The Order of Giants", - "resources": ["Copper", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.9471, 31.48] - }, - "properties": { - "name": "Em \u2018u", - "realm_idx": 162, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.78, -42.4996] - }, - "properties": { - "name": "Poimmaeppeu", - "realm_idx": 163, - "order": "The Order of the Fox", - "resources": ["Coal", "Stone", "Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.68, -33.8997] - }, - "properties": { - "name": "Sn\u00fcngs\u00fcng", - "realm_idx": 164, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.4471, 30.58] - }, - "properties": { - "name": "Ghusschum", - "realm_idx": 165, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Obsidian", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.1471, -12.82] - }, - "properties": { - "name": "Nguillair", - "realm_idx": 166, - "order": "The Order of Power", - "resources": ["Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.4524, 44.9418] - }, - "properties": { - "name": "Tathamke", - "realm_idx": 167, - "order": "The Order of Anger", - "resources": ["Coal", "Hartwood", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.1529, 44.68] - }, - "properties": { - "name": "\u0160ommun", - "realm_idx": 168, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Gold", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.4471, 16.88] - }, - "properties": { - "name": "Tuptet", - "realm_idx": 169, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Coal", "Gold", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.08, 12.2003] - }, - "properties": { - "name": "shut Ugshum", - "realm_idx": 170, - "order": "The Order of Detection", - "resources": ["Stone", "Copper", "Obsidian", "Wood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.4736, -17.4134] - }, - "properties": { - "name": "Puknuk", - "realm_idx": 171, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.247, -1.92] - }, - "properties": { - "name": "I\u00e9 Tete\u00e9s\u00edku", - "realm_idx": 172, - "order": "The Order of Perfection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.5471, 6.88] - }, - "properties": { - "name": "O\u2018inew", - "realm_idx": 173, - "order": "The Order of Brilliance", - "resources": ["Silver", "Stone", "Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.8801, -21.9996] - }, - "properties": { - "name": "Niolaekae", - "realm_idx": 174, - "order": "The Order of the Twins", - "resources": ["Silver", "Copper", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.4471, 53.88] - }, - "properties": { - "name": "Nenshnan", - "realm_idx": 175, - "order": "The Order of Titans", - "resources": ["Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.2471, 54.88] - }, - "properties": { - "name": "S\u00e1ng\u00fam \u00c1ig\u00fai", - "realm_idx": 176, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.18, -51.4996] - }, - "properties": { - "name": "Tizgizgezmiz", - "realm_idx": 177, - "order": "The Order of the Fox", - "resources": ["Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.6471, 11.18] - }, - "properties": { - "name": "Tuknek", - "realm_idx": 178, - "order": "The Order of Titans", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.2529, 5.88] - }, - "properties": { - "name": "Nulmop", - "realm_idx": 179, - "order": "The Order of Vitriol", - "resources": ["Wood", "Hartwood", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.2431, 38.5125] - }, - "properties": { - "name": "Lonoskak", - "realm_idx": 180, - "order": "The Order of Fury", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.0529, 29.78] - }, - "properties": { - "name": "Tus Luksus", - "realm_idx": 181, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.5471, 14.78] - }, - "properties": { - "name": "sun Shmam", - "realm_idx": 182, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.2801, 47.2004] - }, - "properties": { - "name": "Klunklinpun", - "realm_idx": 183, - "order": "The Order of Anger", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.4471, 0.68] - }, - "properties": { - "name": "\u00dcn\u00fckuh\u00fckom", - "realm_idx": 184, - "order": "The Order of Power", - "resources": ["Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.8471, 17.48] - }, - "properties": { - "name": "Kulususyn", - "realm_idx": 185, - "order": "The Order of Protection", - "resources": ["Coal", "Stone", "Silver", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.2801, -11.9996] - }, - "properties": { - "name": "Lew Yiw", - "realm_idx": 186, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.68, -10.9997] - }, - "properties": { - "name": "Tolpel", - "realm_idx": 187, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.48, -51.5996] - }, - "properties": { - "name": "Ozhbub", - "realm_idx": 188, - "order": "The Order of the Fox", - "resources": ["Stone", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.38, -48.2997] - }, - "properties": { - "name": "Iszhekulari", - "realm_idx": 189, - "order": "The Order of the Fox", - "resources": ["Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.2471, 11.08] - }, - "properties": { - "name": "Tils\u00f4l", - "realm_idx": 190, - "order": "The Order of Protection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.7529, 25.78] - }, - "properties": { - "name": "Naunsmansmum", - "realm_idx": 191, - "order": "The Order of Vitriol", - "resources": ["Copper", "Wood", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.4529, 24.78] - }, - "properties": { - "name": "Uhomuhomam", - "realm_idx": 192, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.58, 0.4003] - }, - "properties": { - "name": "Kuimmian", - "realm_idx": 193, - "order": "The Order of Detection", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.1471, 14.28] - }, - "properties": { - "name": "S\u00fanin", - "realm_idx": 194, - "order": "The Order of Protection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.9359, 10.0273] - }, - "properties": { - "name": "Muzhden", - "realm_idx": 195, - "order": "The Order of Protection", - "resources": ["Ironwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.2471, 19.98] - }, - "properties": { - "name": "Uketap Uhup", - "realm_idx": 196, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.3801, 6.3004] - }, - "properties": { - "name": "Imuwogugog", - "realm_idx": 197, - "order": "The Order of Rage", - "resources": ["Stone", "Gold", "Ignium", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.0801, 46.4004] - }, - "properties": { - "name": "Luuslumsluum", - "realm_idx": 198, - "order": "The Order of Anger", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.2471, 9.58] - }, - "properties": { - "name": "sun Damken", - "realm_idx": 199, - "order": "The Order of Protection", - "resources": ["Obsidian", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.0801, 50.8004] - }, - "properties": { - "name": "Aami\u017e", - "realm_idx": 200, - "order": "The Order of Anger", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.8471, 16.88] - }, - "properties": { - "name": "Amlutlush", - "realm_idx": 201, - "order": "The Order of Brilliance", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.2801, -48.0996] - }, - "properties": { - "name": "T\u00e1gziszistit", - "realm_idx": 202, - "order": "The Order of the Twins", - "resources": [ - "Cold Iron", - "Wood", - "True Ice", - "Coal", - "Gold", - "Ironwood", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.0801, 28.9004] - }, - "properties": { - "name": "Shollur", - "realm_idx": 203, - "order": "The Order of Rage", - "resources": ["Coal", "Silver", "Wood", "Copper", "Sapphire", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.9471, -40.82] - }, - "properties": { - "name": "Roshnok", - "realm_idx": 204, - "order": "The Order of Giants", - "resources": ["Gold", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.4529, 55.58] - }, - "properties": { - "name": "Erkdornmur", - "realm_idx": 205, - "order": "The Order of Fury", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.88, 29.8003] - }, - "properties": { - "name": "Izh\u00e1zh\u00e1sizh", - "realm_idx": 206, - "order": "The Order of Fury", - "resources": ["Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.38, 20.5003] - }, - "properties": { - "name": "ep Akipetut", - "realm_idx": 207, - "order": "The Order of Fury", - "resources": ["Silver", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.5801, -26.4996] - }, - "properties": { - "name": "Wamwammunkun", - "realm_idx": 208, - "order": "The Order of the Twins", - "resources": ["Stone", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.68, 9.6003] - }, - "properties": { - "name": "Tonnen", - "realm_idx": 209, - "order": "The Order of Detection", - "resources": ["Stone", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.08, -33.9997] - }, - "properties": { - "name": "Nla\u2018wul", - "realm_idx": 210, - "order": "The Order of Detection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.78, -39.4997] - }, - "properties": { - "name": "Srigh", - "realm_idx": 211, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.6801, -33.0996] - }, - "properties": { - "name": "B\u00edghk\u00edk", - "realm_idx": 212, - "order": "The Order of the Twins", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-78.8801, 44.0004] - }, - "properties": { - "name": "Nainuonuopau", - "realm_idx": 213, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.3471, -11.92] - }, - "properties": { - "name": "Sm\u00e1kw\u00e1\u2018", - "realm_idx": 214, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.2471, 4.38] - }, - "properties": { - "name": "Tikke\u00fatkit", - "realm_idx": 215, - "order": "The Order of Power", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.1471, 48.18] - }, - "properties": { - "name": "Giz Liz", - "realm_idx": 216, - "order": "The Order of Titans", - "resources": ["Deep Crystal", "Copper", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.3039, 3.7715] - }, - "properties": { - "name": "Lewkkekpiiw", - "realm_idx": 217, - "order": "The Order of Protection", - "resources": ["Coal", "Wood", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [8.3471, 13.98] - }, - "properties": { - "name": "Samikmik", - "realm_idx": 218, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.0471, -22.22] - }, - "properties": { - "name": "Slazhgux", - "realm_idx": 219, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.5529, 54.48] - }, - "properties": { - "name": "Shohih", - "realm_idx": 220, - "order": "The Order of Fury", - "resources": ["Coal", "Wood", "Obsidian", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.7471, -19.32] - }, - "properties": { - "name": "Chosol", - "realm_idx": 221, - "order": "The Order of Giants", - "resources": ["Stone", "Silver", "Twilight Quartz", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.9529, -24.72] - }, - "properties": { - "name": "Snossn\u00fab", - "realm_idx": 222, - "order": "The Order of Power", - "resources": [ - "Hartwood", - "Coal", - "Copper", - "Cold Iron", - "Stone", - "Ignium" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.0471, -32.12] - }, - "properties": { - "name": "Muzhsush", - "realm_idx": 223, - "order": "The Order of Giants", - "resources": ["Ironwood", "Sapphire", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.5529, 44.88] - }, - "properties": { - "name": "Titnletnlit", - "realm_idx": 224, - "order": "The Order of Fury", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.4529, 8.88] - }, - "properties": { - "name": "Sonmlwmljam", - "realm_idx": 225, - "order": "The Order of Vitriol", - "resources": ["Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.4801, -14.0996] - }, - "properties": { - "name": "ak Inop", - "realm_idx": 226, - "order": "The Order of Rage", - "resources": ["Stone", "Coal", "Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.8471, 39.28] - }, - "properties": { - "name": "Bulxbar", - "realm_idx": 227, - "order": "The Order of Skill", - "resources": ["Gold", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.5471, 15.28] - }, - "properties": { - "name": "lin Minnan", - "realm_idx": 228, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.6471, 16.28] - }, - "properties": { - "name": "Yalyng\u00e2", - "realm_idx": 229, - "order": "The Order of Brilliance", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.6471, 12.68] - }, - "properties": { - "name": "Kenteh", - "realm_idx": 230, - "order": "The Order of Skill", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.8471, 1.48] - }, - "properties": { - "name": "Lokyoup", - "realm_idx": 231, - "order": "The Order of Brilliance", - "resources": ["Copper", "Gold", "Ruby", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.3529, 19.98] - }, - "properties": { - "name": "Keslek", - "realm_idx": 232, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.28, -32.1997] - }, - "properties": { - "name": "T\u00e1t\u00edlisum", - "realm_idx": 233, - "order": "The Order of Reflection", - "resources": ["Stone", "Ignium", "Copper", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.58, -34.3997] - }, - "properties": { - "name": "Slunnlin", - "realm_idx": 234, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.78, 39.9003] - }, - "properties": { - "name": "Gunungqun", - "realm_idx": 235, - "order": "The Order of Reflection", - "resources": ["Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.2471, 20.48] - }, - "properties": { - "name": "Varing", - "realm_idx": 236, - "order": "The Order of Skill", - "resources": ["Ironwood", "Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.5471, -16.32] - }, - "properties": { - "name": "Kuozhuad", - "realm_idx": 237, - "order": "The Order of Giants", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [44.5471, -37.02] - }, - "properties": { - "name": "Jans\u00edn", - "realm_idx": 238, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.3801, -18.6996] - }, - "properties": { - "name": "Zumzin", - "realm_idx": 239, - "order": "The Order of the Twins", - "resources": ["Silver", "Hartwood", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.5801, -16.1996] - }, - "properties": { - "name": "Qaunnauq", - "realm_idx": 240, - "order": "The Order of Rage", - "resources": ["Hartwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.7108, -13.7354] - }, - "properties": { - "name": "Tetezo", - "realm_idx": 241, - "order": "The Order of Rage", - "resources": ["Copper", "True Ice", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.58, -55.4996] - }, - "properties": { - "name": "Udidir", - "realm_idx": 242, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Stone", "Wood", "Copper", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.5471, 42.28] - }, - "properties": { - "name": "T\u00faaptiukt\u00faap", - "realm_idx": 243, - "order": "The Order of Enlightenment", - "resources": ["Sapphire", "Stone", "Obsidian", "Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.9471, 3.88] - }, - "properties": { - "name": "Nlat-M\u00fatmlum", - "realm_idx": 244, - "order": "The Order of Brilliance", - "resources": ["Gold", "Copper", "Wood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.1471, -0.92] - }, - "properties": { - "name": "Vig Ping", - "realm_idx": 245, - "order": "The Order of Giants", - "resources": ["Coal", "Sapphire", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.3529, -27.52] - }, - "properties": { - "name": "Ipzuw", - "realm_idx": 246, - "order": "The Order of Power", - "resources": ["Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.1471, 18.08] - }, - "properties": { - "name": "\u00catetpitak", - "realm_idx": 247, - "order": "The Order of Brilliance", - "resources": ["Stone", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.4471, 17.28] - }, - "properties": { - "name": "\u00cfr\u00efr\u00eflm\u00efr", - "realm_idx": 248, - "order": "The Order of Skill", - "resources": ["Ruby", "Cold Iron", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.6529, 46.18] - }, - "properties": { - "name": "Vuiryai", - "realm_idx": 249, - "order": "The Order of Fury", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.78, 35.9003] - }, - "properties": { - "name": "Nunkonlam", - "realm_idx": 250, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.6471, 6.08] - }, - "properties": { - "name": "Son Nulunmun", - "realm_idx": 251, - "order": "The Order of Brilliance", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.7367, 10.8385] - }, - "properties": { - "name": "Atkrukrotkeh", - "realm_idx": 252, - "order": "The Order of Protection", - "resources": ["Coal", "Copper", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.38, -59.5996] - }, - "properties": { - "name": "Upimim", - "realm_idx": 253, - "order": "The Order of the Fox", - "resources": ["Coal", "Copper", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-126.48, 4.3003] - }, - "properties": { - "name": "Schgontamrum", - "realm_idx": 254, - "order": "The Order of Detection", - "resources": ["Copper", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.0527, -51.1606] - }, - "properties": { - "name": "Morszizsgum", - "realm_idx": 255, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.18, -50.8996] - }, - "properties": { - "name": "L\u00e4nm\u00e4mp\u00e4n", - "realm_idx": 256, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.18, 22.6003] - }, - "properties": { - "name": "K\u00f6zhzuib", - "realm_idx": 257, - "order": "The Order of Detection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.4732, -20.1304] - }, - "properties": { - "name": "Kotimlishan", - "realm_idx": 258, - "order": "The Order of Perfection", - "resources": ["Stone", "Alchemical Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.0304, -20.2652] - }, - "properties": { - "name": "Lemem Eme", - "realm_idx": 259, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.8529, 10.58] - }, - "properties": { - "name": "Animum Inom", - "realm_idx": 260, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.2471, 6.28] - }, - "properties": { - "name": "Koho mu Huho", - "realm_idx": 261, - "order": "The Order of Protection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.8529, 30.78] - }, - "properties": { - "name": "L\u00e4ngmonkong", - "realm_idx": 262, - "order": "The Order of Vitriol", - "resources": ["Diamonds", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.4471, -25.62] - }, - "properties": { - "name": "Amenqan", - "realm_idx": 263, - "order": "The Order of Perfection", - "resources": ["Stone", "Coal", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.0471, 56.18] - }, - "properties": { - "name": "Ilqlolury", - "realm_idx": 264, - "order": "The Order of Titans", - "resources": ["Stone", "Gold", "True Ice", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.3801, 19.9004] - }, - "properties": { - "name": "K\u00faanmup", - "realm_idx": 265, - "order": "The Order of Rage", - "resources": ["Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.2801, 24.4004] - }, - "properties": { - "name": "Azwy\u00f3zh", - "realm_idx": 266, - "order": "The Order of Rage", - "resources": ["Silver", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.7471, 32.68] - }, - "properties": { - "name": "Miu Leit", - "realm_idx": 267, - "order": "The Order of Skill", - "resources": ["Ethereal Silica", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.2333, 3.5503] - }, - "properties": { - "name": "My\u00edtmil Mak", - "realm_idx": 268, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.6471, -0.72] - }, - "properties": { - "name": "Giozzom", - "realm_idx": 269, - "order": "The Order of Brilliance", - "resources": ["Copper", "Stone", "Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.2471, -12.42] - }, - "properties": { - "name": "Densdung", - "realm_idx": 270, - "order": "The Order of Giants", - "resources": ["Coal", "Obsidian", "Copper", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.0529, -0.92] - }, - "properties": { - "name": "K\u00f3ndjut", - "realm_idx": 271, - "order": "The Order of Vitriol", - "resources": ["Wood", "Gold", "Silver", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.88, -38.9997] - }, - "properties": { - "name": "bu\u017e Zoltgi", - "realm_idx": 272, - "order": "The Order of Reflection", - "resources": ["Diamonds", "Copper", "Coal", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.1801, -2.6996] - }, - "properties": { - "name": "Gegkieg", - "realm_idx": 273, - "order": "The Order of Rage", - "resources": ["Gold", "Wood", "Cold Iron", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.1312, 37.4204] - }, - "properties": { - "name": "Pix Sezh", - "realm_idx": 274, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.7978, 8.687] - }, - "properties": { - "name": "Hohmip", - "realm_idx": 275, - "order": "The Order of Protection", - "resources": ["Copper", "Ironwood", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.1529, 2.88] - }, - "properties": { - "name": "Dukitdun", - "realm_idx": 276, - "order": "The Order of Vitriol", - "resources": ["Wood", "Twilight Quartz", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.5471, 44.78] - }, - "properties": { - "name": "Solon", - "realm_idx": 277, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.78, 7.7003] - }, - "properties": { - "name": "Zaranu\u010du\u010d\u010dus", - "realm_idx": 278, - "order": "The Order of Detection", - "resources": ["Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.7529, -11.22] - }, - "properties": { - "name": "Tessoltos", - "realm_idx": 279, - "order": "The Order of the Fox", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.08, 19.7003] - }, - "properties": { - "name": "\u2018ikpishak", - "realm_idx": 280, - "order": "The Order of Fury", - "resources": ["Coal", "Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.38, -24.6997] - }, - "properties": { - "name": "Enhin", - "realm_idx": 281, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.5471, 23.28] - }, - "properties": { - "name": "Kraukpaud", - "realm_idx": 282, - "order": "The Order of Skill", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.9529, -11.82] - }, - "properties": { - "name": "Slak\u2018ukpuk", - "realm_idx": 283, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.3747, -17.8757] - }, - "properties": { - "name": "Stchetchszid", - "realm_idx": 284, - "order": "The Order of Protection", - "resources": ["Coal", "Wood", "Silver", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.08, -8.1997] - }, - "properties": { - "name": "Nuhnekmuhhok", - "realm_idx": 285, - "order": "The Order of Reflection", - "resources": ["Coal", "Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.58, -43.2996] - }, - "properties": { - "name": "Osyolyolokos", - "realm_idx": 286, - "order": "The Order of the Fox", - "resources": [ - "Silver", - "Obsidian", - "Cold Iron", - "Copper", - "Coal", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.4801, -56.0996] - }, - "properties": { - "name": "U\u2018unun", - "realm_idx": 287, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.7471, 52.08] - }, - "properties": { - "name": "O\u00fclkun", - "realm_idx": 288, - "order": "The Order of Skill", - "resources": ["Hartwood", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.8471, -10.82] - }, - "properties": { - "name": "K\u00e4dron", - "realm_idx": 289, - "order": "The Order of Giants", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.48, -0.3997] - }, - "properties": { - "name": "Kuell\u00e9dg\u00edzh", - "realm_idx": 290, - "order": "The Order of Detection", - "resources": ["Coal", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.9578, -23.9371] - }, - "properties": { - "name": "Taupti\u00edmai", - "realm_idx": 291, - "order": "The Order of Reflection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.5471, 11.58] - }, - "properties": { - "name": "Mansbim", - "realm_idx": 292, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.5471, 41.18] - }, - "properties": { - "name": "Zrahpoztiz", - "realm_idx": 293, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Copper", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.08, -45.2997] - }, - "properties": { - "name": "Lashsishtosh", - "realm_idx": 294, - "order": "The Order of the Fox", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.9801, 38.6004] - }, - "properties": { - "name": "Ukusun", - "realm_idx": 295, - "order": "The Order of Anger", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.0801, -40.3996] - }, - "properties": { - "name": "Soskirk", - "realm_idx": 296, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.0529, 12.48] - }, - "properties": { - "name": "Plusblomnlaz", - "realm_idx": 297, - "order": "The Order of Vitriol", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.1471, -26.62] - }, - "properties": { - "name": "Mapmo", - "realm_idx": 298, - "order": "The Order of Perfection", - "resources": ["Wood", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.1801, -15.4996] - }, - "properties": { - "name": "K\u00e1lmhahil", - "realm_idx": 299, - "order": "The Order of Rage", - "resources": ["Silver", "Stone", "Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.18, -0.5997] - }, - "properties": { - "name": "Klan-tin-Lem", - "realm_idx": 300, - "order": "The Order of Detection", - "resources": ["Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.5471, -32.02] - }, - "properties": { - "name": "As-dum-Iggis", - "realm_idx": 301, - "order": "The Order of Giants", - "resources": ["Silver", "Ironwood", "Wood", "Coal", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.0471, -6.72] - }, - "properties": { - "name": "\u00cdpuhuwuyuzh", - "realm_idx": 302, - "order": "The Order of Giants", - "resources": ["Wood", "Alchemical Silver", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.2471, 31.08] - }, - "properties": { - "name": "Baasaan", - "realm_idx": 303, - "order": "The Order of Titans", - "resources": ["Silver", "Stone", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [69.7471, 48.68] - }, - "properties": { - "name": "\u00cdhn\u00ednil", - "realm_idx": 304, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.4471, -38.12] - }, - "properties": { - "name": "Kusip Saptit", - "realm_idx": 305, - "order": "The Order of Giants", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.5529, 55.38] - }, - "properties": { - "name": "Maptitnim", - "realm_idx": 306, - "order": "The Order of Fury", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.28, -34.1997] - }, - "properties": { - "name": "Kuk\u00famnregrom", - "realm_idx": 307, - "order": "The Order of the Fox", - "resources": ["Stone", "Cold Iron", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.8756, -35.9676] - }, - "properties": { - "name": "Konkon", - "realm_idx": 308, - "order": "The Order of Reflection", - "resources": ["Wood", "Silver", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.5529, -31.32] - }, - "properties": { - "name": "Iniiimaal", - "realm_idx": 309, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Copper", "Hartwood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.9409, 31.033] - }, - "properties": { - "name": "Onuhamomom", - "realm_idx": 310, - "order": "The Order of Reflection", - "resources": ["Gold", "Wood", "Coal", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.6471, -16.02] - }, - "properties": { - "name": "Nuddu", - "realm_idx": 311, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.5383, 27.9385] - }, - "properties": { - "name": "\u00c2m\u00e2n\u00e2me", - "realm_idx": 312, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.6471, -37.32] - }, - "properties": { - "name": "Nusang", - "realm_idx": 313, - "order": "The Order of Giants", - "resources": ["Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.2417, -27.4546] - }, - "properties": { - "name": "Dadiddom", - "realm_idx": 314, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.263, 21.3974] - }, - "properties": { - "name": "Dendumtengin", - "realm_idx": 315, - "order": "The Order of Fury", - "resources": ["Wood", "Coal", "Obsidian", "Stone", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.9381, 28.7596] - }, - "properties": { - "name": "Slikslul", - "realm_idx": 316, - "order": "The Order of Reflection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.647, -4.52] - }, - "properties": { - "name": "Slenwin", - "realm_idx": 317, - "order": "The Order of Perfection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.88, 16.7003] - }, - "properties": { - "name": "Kikan", - "realm_idx": 318, - "order": "The Order of Detection", - "resources": ["Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.9471, 18.28] - }, - "properties": { - "name": "Simsimpan", - "realm_idx": 319, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.8471, 29.28] - }, - "properties": { - "name": "Kummiam-Am", - "realm_idx": 320, - "order": "The Order of Skill", - "resources": ["Silver", "Coal", "Wood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.78, 11.5003] - }, - "properties": { - "name": "Urturmlort", - "realm_idx": 321, - "order": "The Order of Detection", - "resources": ["Wood", "Obsidian", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.6801, 42.9004] - }, - "properties": { - "name": "Tumnurtar", - "realm_idx": 322, - "order": "The Order of Anger", - "resources": ["Coal", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.8471, 7.88] - }, - "properties": { - "name": "Mup-Moam", - "realm_idx": 323, - "order": "The Order of Titans", - "resources": [ - "Hartwood", - "Obsidian", - "Coal", - "Stone", - "Ignium", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.0529, -21.82] - }, - "properties": { - "name": "Shamung\u00fcmsha", - "realm_idx": 324, - "order": "The Order of Power", - "resources": ["Silver", "Wood", "Gold", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.2471, 23.48] - }, - "properties": { - "name": "Laieieuwaul", - "realm_idx": 325, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.7471, -37.22] - }, - "properties": { - "name": "Nrennren", - "realm_idx": 326, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.4123, -25.783] - }, - "properties": { - "name": "Kimki", - "realm_idx": 327, - "order": "The Order of Perfection", - "resources": ["Wood", "Obsidian", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.4097, -40.0011] - }, - "properties": { - "name": "Pan nen Nin", - "realm_idx": 328, - "order": "The Order of the Fox", - "resources": [ - "Copper", - "Gold", - "Wood", - "Stone", - "Twilight Quartz", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.2471, 42.28] - }, - "properties": { - "name": "Nampatutu", - "realm_idx": 329, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.7471, 7.78] - }, - "properties": { - "name": "Uus ko Osun", - "realm_idx": 330, - "order": "The Order of Brilliance", - "resources": ["Hartwood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.5529, 13.78] - }, - "properties": { - "name": "Sokumo", - "realm_idx": 331, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [101.6471, 48.38] - }, - "properties": { - "name": "Mamnimmlup", - "realm_idx": 332, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.4529, 22.68] - }, - "properties": { - "name": "Shunsnum", - "realm_idx": 333, - "order": "The Order of Vitriol", - "resources": ["Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.3471, 35.98] - }, - "properties": { - "name": "Nosekeken", - "realm_idx": 334, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.5801, 6.7004] - }, - "properties": { - "name": "Xeswet", - "realm_idx": 335, - "order": "The Order of Rage", - "resources": ["Deep Crystal", "Hartwood", "Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.8471, 58.48] - }, - "properties": { - "name": "Enenhae", - "realm_idx": 336, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.1529, -1.02] - }, - "properties": { - "name": "Saountioum", - "realm_idx": 337, - "order": "The Order of Vitriol", - "resources": [ - "Hartwood", - "Silver", - "Ironwood", - "Coal", - "Copper", - "Alchemical Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.88, -28.5997] - }, - "properties": { - "name": "Kirkipa", - "realm_idx": 338, - "order": "The Order of Detection", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.1471, 31.38] - }, - "properties": { - "name": "Ilnpiltiln", - "realm_idx": 339, - "order": "The Order of Enlightenment", - "resources": ["Hartwood", "Stone", "Coal", "Wood", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [44.2471, -36.12] - }, - "properties": { - "name": "Turpmumhe", - "realm_idx": 340, - "order": "The Order of Giants", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [44.5471, 13.28] - }, - "properties": { - "name": "Krokkok Kezh", - "realm_idx": 341, - "order": "The Order of Titans", - "resources": ["Gold", "Stone", "Hartwood", "Coal", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.2471, 38.48] - }, - "properties": { - "name": "K\u00eflil\u00ebk\u00ef", - "realm_idx": 342, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.8471, 20.68] - }, - "properties": { - "name": "Glakzles", - "realm_idx": 343, - "order": "The Order of Skill", - "resources": ["Hartwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.7529, 1.48] - }, - "properties": { - "name": "buz Gumsz\u00e4b", - "realm_idx": 344, - "order": "The Order of Vitriol", - "resources": ["Stone", "Adamantine", "Coal", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.9527, 51.9801] - }, - "properties": { - "name": "Shmizskozpes", - "realm_idx": 345, - "order": "The Order of the Twins", - "resources": ["Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.6801, 16.4004] - }, - "properties": { - "name": "Toksottol", - "realm_idx": 346, - "order": "The Order of Rage", - "resources": [ - "Copper", - "Hartwood", - "Obsidian", - "Coal", - "Ironwood", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.9801, 22.8004] - }, - "properties": { - "name": "Azh\u00efzet\u00ebzh", - "realm_idx": 347, - "order": "The Order of Rage", - "resources": ["Wood", "Copper", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.7529, 2.18] - }, - "properties": { - "name": "Lilil", - "realm_idx": 348, - "order": "The Order of Vitriol", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.3471, -10.72] - }, - "properties": { - "name": "Oltoltek", - "realm_idx": 349, - "order": "The Order of Power", - "resources": ["Coal", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.1471, 32.78] - }, - "properties": { - "name": "N\u00e1mk\u00e1wnom", - "realm_idx": 350, - "order": "The Order of Enlightenment", - "resources": ["Ironwood", "Wood", "Ruby", "Gold", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.3862, 5.3251] - }, - "properties": { - "name": "Oshrarsheb", - "realm_idx": 351, - "order": "The Order of Protection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.1801, -35.5996] - }, - "properties": { - "name": "Skohnikkezh", - "realm_idx": 352, - "order": "The Order of the Twins", - "resources": ["Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.0529, -0.32] - }, - "properties": { - "name": "Smomsmorspey", - "realm_idx": 353, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.5471, -46.52] - }, - "properties": { - "name": "Tuqtun", - "realm_idx": 354, - "order": "The Order of Giants", - "resources": ["Wood", "Silver", "Coal", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.1801, -2.9996] - }, - "properties": { - "name": "Bingsen Mosi", - "realm_idx": 355, - "order": "The Order of Rage", - "resources": ["Wood", "Silver", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.3801, 38.7004] - }, - "properties": { - "name": "Toalnuopeam", - "realm_idx": 356, - "order": "The Order of Anger", - "resources": ["Copper", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.1477, -16.1797] - }, - "properties": { - "name": "Osyok", - "realm_idx": 357, - "order": "The Order of Protection", - "resources": ["Obsidian", "Ironwood", "Sapphire", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.4471, 19.68] - }, - "properties": { - "name": "Ulmmorh", - "realm_idx": 358, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.1471, -49.32] - }, - "properties": { - "name": "Uunip", - "realm_idx": 359, - "order": "The Order of Giants", - "resources": ["Silver", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.1801, 26.1004] - }, - "properties": { - "name": "leil-Wlenlum", - "realm_idx": 360, - "order": "The Order of Rage", - "resources": ["Wood", "Sapphire", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.4471, 47.18] - }, - "properties": { - "name": "Sum\u0161numkum", - "realm_idx": 361, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.8514, -24.0399] - }, - "properties": { - "name": "M\u00edkp\u00edkp\u00edk", - "realm_idx": 362, - "order": "The Order of Perfection", - "resources": ["Stone", "Gold", "Cold Iron", "Copper", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.9801, -55.6996] - }, - "properties": { - "name": "\u00cdmurm \u00c1k", - "realm_idx": 363, - "order": "The Order of the Twins", - "resources": ["Copper", "Obsidian", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.2533, 33.6863] - }, - "properties": { - "name": "Nirmu", - "realm_idx": 364, - "order": "The Order of Anger", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.6471, -14.42] - }, - "properties": { - "name": "Titkain", - "realm_idx": 365, - "order": "The Order of Giants", - "resources": [ - "Ironwood", - "Silver", - "Copper", - "Coal", - "Wood", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.3471, 35.88] - }, - "properties": { - "name": "Slonhaw", - "realm_idx": 366, - "order": "The Order of Enlightenment", - "resources": ["Ethereal Silica", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.8529, 46.68] - }, - "properties": { - "name": "Kikkakpim", - "realm_idx": 367, - "order": "The Order of Titans", - "resources": [ - "Cold Iron", - "Wood", - "Coal", - "Obsidian", - "Ironwood", - "Copper", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.4471, 40.78] - }, - "properties": { - "name": "Sa Ri", - "realm_idx": 368, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Gold", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.747, -3.72] - }, - "properties": { - "name": "Sarpurk", - "realm_idx": 369, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.1801, -23.0996] - }, - "properties": { - "name": "Ch\u00fadyog", - "realm_idx": 370, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.0801, 28.8004] - }, - "properties": { - "name": "\u00c4j\u00e4jsiwm\u00e4j\u00e4j", - "realm_idx": 371, - "order": "The Order of Rage", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.2471, 19.68] - }, - "properties": { - "name": "Tippim", - "realm_idx": 372, - "order": "The Order of Brilliance", - "resources": ["Coal", "Copper", "Hartwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.9471, 53.88] - }, - "properties": { - "name": "lus Kismas", - "realm_idx": 373, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [8.9471, 28.08] - }, - "properties": { - "name": "Enuntchenun", - "realm_idx": 374, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.4471, 9.68] - }, - "properties": { - "name": "Tatspoot", - "realm_idx": 375, - "order": "The Order of Protection", - "resources": ["Stone", "Coal", "Ironwood", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.3471, -20.22] - }, - "properties": { - "name": "Naeniuguisoi", - "realm_idx": 376, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.0801, 17.8004] - }, - "properties": { - "name": "Nunnunnam", - "realm_idx": 377, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.8801, 6.3004] - }, - "properties": { - "name": "Ku\u00f3z\u00e1akj\u00fao", - "realm_idx": 378, - "order": "The Order of Rage", - "resources": ["Copper", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.9596, -21.0575] - }, - "properties": { - "name": "P\u00efssasnanmut", - "realm_idx": 379, - "order": "The Order of Perfection", - "resources": ["Silver", "Wood", "Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.3471, -20.12] - }, - "properties": { - "name": "Idsuch", - "realm_idx": 380, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.7307, 14.2502] - }, - "properties": { - "name": "Oaswikopowik", - "realm_idx": 381, - "order": "The Order of Fury", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [101.5471, 50.78] - }, - "properties": { - "name": "Ulww\u00f3w\u2018", - "realm_idx": 382, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.8529, -34.12] - }, - "properties": { - "name": "Schpunschnin", - "realm_idx": 383, - "order": "The Order of Power", - "resources": ["Coal", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.6058, -1.2885] - }, - "properties": { - "name": "Oolusoolip", - "realm_idx": 384, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Silver", "Stone", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.6269, -20.3262] - }, - "properties": { - "name": "Lazhu", - "realm_idx": 385, - "order": "The Order of Perfection", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.2529, -10.92] - }, - "properties": { - "name": "Emrelrel", - "realm_idx": 386, - "order": "The Order of the Fox", - "resources": ["Cold Iron", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.4471, -21.42] - }, - "properties": { - "name": "Tin\u00edpi", - "realm_idx": 387, - "order": "The Order of Giants", - "resources": ["Cold Iron", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.5801, -35.3996] - }, - "properties": { - "name": "Musit ut Men", - "realm_idx": 388, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.0148, 30.6577] - }, - "properties": { - "name": "Tinnu", - "realm_idx": 389, - "order": "The Order of Anger", - "resources": ["Copper", "Hartwood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.247, 2.38] - }, - "properties": { - "name": "Neksan", - "realm_idx": 390, - "order": "The Order of Perfection", - "resources": ["Coal", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.7529, 14.48] - }, - "properties": { - "name": "\u00c1l\u00e1l Kuwmk\u00edw", - "realm_idx": 391, - "order": "The Order of Vitriol", - "resources": ["Silver", "Wood", "Stone", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.8621, 36.0286] - }, - "properties": { - "name": "Um\u0161animra", - "realm_idx": 392, - "order": "The Order of Reflection", - "resources": ["Sapphire", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.6801, -22.3996] - }, - "properties": { - "name": "Mrushvez", - "realm_idx": 393, - "order": "The Order of the Twins", - "resources": ["Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [107.5471, 52.38] - }, - "properties": { - "name": "Gogzhotsch", - "realm_idx": 394, - "order": "The Order of Enlightenment", - "resources": ["Ironwood", "Obsidian", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.6471, 6.38] - }, - "properties": { - "name": "Slilml\u00eds-Lis", - "realm_idx": 395, - "order": "The Order of Protection", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.5471, 51.48] - }, - "properties": { - "name": "mat-Mloppak", - "realm_idx": 396, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.0471, 43.88] - }, - "properties": { - "name": "Tarkeswlmwp", - "realm_idx": 397, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.0471, 26.98] - }, - "properties": { - "name": "K\u00e1k\u00e1p\u00e9\u2018mep", - "realm_idx": 398, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.7529, 45.08] - }, - "properties": { - "name": "Mriimmraat", - "realm_idx": 399, - "order": "The Order of Fury", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.38, -9.6997] - }, - "properties": { - "name": "Alalunem", - "realm_idx": 400, - "order": "The Order of Detection", - "resources": ["Ignium", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.4529, 48.68] - }, - "properties": { - "name": "Nuanuemia", - "realm_idx": 401, - "order": "The Order of Fury", - "resources": ["Coal", "Stone", "Obsidian", "Ironwood", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.3801, 40.7004] - }, - "properties": { - "name": "Tusluslustos", - "realm_idx": 402, - "order": "The Order of Anger", - "resources": ["Wood", "Silver", "Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.68, -4.9997] - }, - "properties": { - "name": "En ga Ngeme", - "realm_idx": 403, - "order": "The Order of Detection", - "resources": ["Ironwood", "Coal", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.8158, -35.7449] - }, - "properties": { - "name": "Ookokus", - "realm_idx": 404, - "order": "The Order of Reflection", - "resources": ["Copper", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.78, -45.0996] - }, - "properties": { - "name": "Myqsutgyngt\u00e2", - "realm_idx": 405, - "order": "The Order of the Fox", - "resources": [ - "Hartwood", - "Stone", - "Cold Iron", - "Wood", - "Ironwood", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.5529, 30.08] - }, - "properties": { - "name": "Aumaum", - "realm_idx": 406, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper", "Obsidian", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.68, -29.0997] - }, - "properties": { - "name": "Siningiinnin", - "realm_idx": 407, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.28, -28.5997] - }, - "properties": { - "name": "Punko", - "realm_idx": 408, - "order": "The Order of Reflection", - "resources": ["Stone", "Copper", "Wood", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.0971, -13.1575] - }, - "properties": { - "name": "bus-Rozbeych", - "realm_idx": 409, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Ironwood", "Gold", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.4471, 45.48] - }, - "properties": { - "name": "Hriptihpom", - "realm_idx": 410, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.0529, -22.62] - }, - "properties": { - "name": "Pootzizdaas", - "realm_idx": 411, - "order": "The Order of Power", - "resources": ["Coal", "Stone", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.6375, -16.5478] - }, - "properties": { - "name": "Touttou", - "realm_idx": 412, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.8471, 52.98] - }, - "properties": { - "name": "Wiehzoahzoah", - "realm_idx": 413, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.6529, 18.18] - }, - "properties": { - "name": "Zhonkronchom", - "realm_idx": 414, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.5471, -33.72] - }, - "properties": { - "name": "Kunsladslib", - "realm_idx": 415, - "order": "The Order of Giants", - "resources": ["Gold", "Copper", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.748, -24.1621] - }, - "properties": { - "name": "Mu\u00fano\u00fakeu", - "realm_idx": 416, - "order": "The Order of Perfection", - "resources": ["Silver", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.0471, -12.42] - }, - "properties": { - "name": "Tusunu Nusha", - "realm_idx": 417, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.68, -3.6997] - }, - "properties": { - "name": "Hyusmyespwux", - "realm_idx": 418, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.88, -32.7997] - }, - "properties": { - "name": "Dedgarop", - "realm_idx": 419, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.4477, 41.7842] - }, - "properties": { - "name": "Enuhuh", - "realm_idx": 420, - "order": "The Order of Anger", - "resources": ["Cold Iron", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.4471, 3.08] - }, - "properties": { - "name": "Kulkolt", - "realm_idx": 421, - "order": "The Order of Brilliance", - "resources": ["Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.2529, -21.22] - }, - "properties": { - "name": "Nitagu", - "realm_idx": 422, - "order": "The Order of Power", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.2801, 46.0004] - }, - "properties": { - "name": "Imupon", - "realm_idx": 423, - "order": "The Order of Anger", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.9471, 14.98] - }, - "properties": { - "name": "Stettetkot", - "realm_idx": 424, - "order": "The Order of Titans", - "resources": ["Wood", "Copper", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.9082, 5.1385] - }, - "properties": { - "name": "Goukgoep", - "realm_idx": 425, - "order": "The Order of Protection", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.8801, 2.0004] - }, - "properties": { - "name": "Tetmo", - "realm_idx": 426, - "order": "The Order of Rage", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.9471, 27.88] - }, - "properties": { - "name": "Akhekx\u00fab", - "realm_idx": 427, - "order": "The Order of Titans", - "resources": ["Obsidian", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.8801, 41.6004] - }, - "properties": { - "name": "Kozhdus", - "realm_idx": 428, - "order": "The Order of Anger", - "resources": ["Stone", "Silver", "Wood", "Ironwood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.48, 33.5003] - }, - "properties": { - "name": "Pezhsazh", - "realm_idx": 429, - "order": "The Order of Fury", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.58, 14.3003] - }, - "properties": { - "name": "Tudosakunuda", - "realm_idx": 430, - "order": "The Order of Detection", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.8471, 38.88] - }, - "properties": { - "name": "Usmurg", - "realm_idx": 431, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.8487, -24.8122] - }, - "properties": { - "name": "Hut Nihnat", - "realm_idx": 432, - "order": "The Order of Reflection", - "resources": ["Coal", "Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.8471, 5.38] - }, - "properties": { - "name": "Kakbos", - "realm_idx": 433, - "order": "The Order of Brilliance", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.355, -35.5973] - }, - "properties": { - "name": "Itik\u00fcn", - "realm_idx": 434, - "order": "The Order of Reflection", - "resources": ["Cold Iron", "Alchemical Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.198, -26.6748] - }, - "properties": { - "name": "Mult-old-It", - "realm_idx": 435, - "order": "The Order of Protection", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.88, 31.4003] - }, - "properties": { - "name": "me-Ku", - "realm_idx": 436, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.7529, -40.32] - }, - "properties": { - "name": "Suloton", - "realm_idx": 437, - "order": "The Order of Power", - "resources": ["Copper", "Cold Iron", "Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.498, -46.9904] - }, - "properties": { - "name": "Po\u00fakko\u00fam", - "realm_idx": 438, - "order": "The Order of the Fox", - "resources": ["Copper", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.0488, -54.4699] - }, - "properties": { - "name": "Melese", - "realm_idx": 439, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.0529, 16.48] - }, - "properties": { - "name": "Mokk\u00e1n", - "realm_idx": 440, - "order": "The Order of Vitriol", - "resources": ["Copper", "Gold", "Stone", "Obsidian", "True Ice", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.28, -50.6996] - }, - "properties": { - "name": "Shabe", - "realm_idx": 441, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.1801, 4.1004] - }, - "properties": { - "name": "Onkok", - "realm_idx": 442, - "order": "The Order of Rage", - "resources": ["Coal", "Gold", "Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.3529, 32.98] - }, - "properties": { - "name": "Skesxmun", - "realm_idx": 443, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.9471, 17.28] - }, - "properties": { - "name": "Xhilmop", - "realm_idx": 444, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.88, 28.1003] - }, - "properties": { - "name": "Sunte", - "realm_idx": 445, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Ignium", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.68, -48.2996] - }, - "properties": { - "name": "M\u00e2lsy\u00f4n", - "realm_idx": 446, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.8471, 33.88] - }, - "properties": { - "name": "u-Onwunom", - "realm_idx": 447, - "order": "The Order of Enlightenment", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.2529, -8.82] - }, - "properties": { - "name": "Toknir", - "realm_idx": 448, - "order": "The Order of the Fox", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.4801, 44.5004] - }, - "properties": { - "name": "el-Sort", - "realm_idx": 449, - "order": "The Order of Anger", - "resources": ["Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.0471, 53.58] - }, - "properties": { - "name": "Himin", - "realm_idx": 450, - "order": "The Order of Enlightenment", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.1471, 11.78] - }, - "properties": { - "name": "\u00e1m B\u00fab", - "realm_idx": 451, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.4471, 12.68] - }, - "properties": { - "name": "Tas-N\u00edsk\u00edk", - "realm_idx": 452, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.08, 9.5003] - }, - "properties": { - "name": "Wawspap", - "realm_idx": 453, - "order": "The Order of Detection", - "resources": ["Obsidian", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.4801, -39.3996] - }, - "properties": { - "name": "Luomteop", - "realm_idx": 454, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Hartwood", "Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.3471, 55.68] - }, - "properties": { - "name": "Ululek", - "realm_idx": 455, - "order": "The Order of Titans", - "resources": ["Coal", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.18, -50.5996] - }, - "properties": { - "name": "Noutuo", - "realm_idx": 456, - "order": "The Order of the Fox", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.2471, -13.62] - }, - "properties": { - "name": "Ruen Gue\u0161eo", - "realm_idx": 457, - "order": "The Order of Perfection", - "resources": ["Wood", "Ironwood", "Adamantine", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [24.6471, 41.18] - }, - "properties": { - "name": "Elnurme\u2018", - "realm_idx": 458, - "order": "The Order of Titans", - "resources": ["Ironwood", "Coal", "Stone", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.0471, 48.48] - }, - "properties": { - "name": "Saiptiknius", - "realm_idx": 459, - "order": "The Order of Skill", - "resources": ["Stone", "Wood", "Copper", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.2801, 4.6004] - }, - "properties": { - "name": "pel Minkek", - "realm_idx": 460, - "order": "The Order of Rage", - "resources": ["Coal", "Obsidian", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.6471, 44.88] - }, - "properties": { - "name": "Salilu", - "realm_idx": 461, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.9529, 40.88] - }, - "properties": { - "name": "Sims\u00edssu\u00edl", - "realm_idx": 462, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.8471, 46.08] - }, - "properties": { - "name": "Skolskolmo", - "realm_idx": 463, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.8471, 26.08] - }, - "properties": { - "name": "Mot\u00e1mo", - "realm_idx": 464, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.3471, -39.02] - }, - "properties": { - "name": "Taggigbir", - "realm_idx": 465, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.5529, 9.88] - }, - "properties": { - "name": "Nuknuksl\u00e1k", - "realm_idx": 466, - "order": "The Order of Titans", - "resources": ["Copper", "Wood", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.58, -4.2997] - }, - "properties": { - "name": "Pispim", - "realm_idx": 467, - "order": "The Order of Detection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.3801, -22.9996] - }, - "properties": { - "name": "\u2018uwim\u2018angnaa", - "realm_idx": 468, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.9471, -13.22] - }, - "properties": { - "name": "Sm\u00e9pston Sna", - "realm_idx": 469, - "order": "The Order of Power", - "resources": ["Copper", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.5801, 27.0004] - }, - "properties": { - "name": "pul-Serupur", - "realm_idx": 470, - "order": "The Order of Rage", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.347, 0.28] - }, - "properties": { - "name": "Lulmis", - "realm_idx": 471, - "order": "The Order of Perfection", - "resources": ["Stone", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.7801, 4.9004] - }, - "properties": { - "name": "Waswashauk", - "realm_idx": 472, - "order": "The Order of Rage", - "resources": ["Coal", "Stone", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.7133, 0.5246] - }, - "properties": { - "name": "Noku Likuku", - "realm_idx": 473, - "order": "The Order of Perfection", - "resources": [ - "Wood", - "Copper", - "Obsidian", - "Cold Iron", - "Ruby", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.0471, 19.18] - }, - "properties": { - "name": "Mu\u00e1kl\u00edkna\u00edp", - "realm_idx": 474, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Silver", "Hartwood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.8529, -7.82] - }, - "properties": { - "name": "Walwhulnmow", - "realm_idx": 475, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.3471, 12.78] - }, - "properties": { - "name": "Moshshwuzh", - "realm_idx": 476, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-41.3529, -10.82] - }, - "properties": { - "name": "Panguqgi", - "realm_idx": 477, - "order": "The Order of the Fox", - "resources": ["Coal", "Cold Iron", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.9801, -53.0996] - }, - "properties": { - "name": "S\u00e4pme Flefm\u00e4", - "realm_idx": 478, - "order": "The Order of the Twins", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.2801, -18.8996] - }, - "properties": { - "name": "Okitehumok", - "realm_idx": 479, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.5471, 27.78] - }, - "properties": { - "name": "si Mimimu", - "realm_idx": 480, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.8801, 51.5004] - }, - "properties": { - "name": "Tukumo", - "realm_idx": 481, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.3529, -26.02] - }, - "properties": { - "name": "Smomsnon", - "realm_idx": 482, - "order": "The Order of Power", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.2801, 27.8004] - }, - "properties": { - "name": "Qemwekqemsan", - "realm_idx": 483, - "order": "The Order of Rage", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.9794, -13.3027] - }, - "properties": { - "name": "Kukflupup", - "realm_idx": 484, - "order": "The Order of Perfection", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.28, 13.4003] - }, - "properties": { - "name": "Ulqalalqal", - "realm_idx": 485, - "order": "The Order of Detection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-21.9529, -0.22] - }, - "properties": { - "name": "Wepwulwep", - "realm_idx": 486, - "order": "The Order of Vitriol", - "resources": ["Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.1471, -14.42] - }, - "properties": { - "name": "Arum-Unarev", - "realm_idx": 487, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [101.8471, 50.78] - }, - "properties": { - "name": "Nussmussmus", - "realm_idx": 488, - "order": "The Order of Enlightenment", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.0471, 17.48] - }, - "properties": { - "name": "Eqerum", - "realm_idx": 489, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.0529, 29.88] - }, - "properties": { - "name": "Mayloym", - "realm_idx": 490, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.6471, 18.58] - }, - "properties": { - "name": "Smetteis", - "realm_idx": 491, - "order": "The Order of Brilliance", - "resources": ["Coal", "Obsidian", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.3529, 46.68] - }, - "properties": { - "name": "Numeltulmi", - "realm_idx": 492, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Silver", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.88, -22.0997] - }, - "properties": { - "name": "Songgen", - "realm_idx": 493, - "order": "The Order of Reflection", - "resources": ["Wood", "Ironwood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.08, -54.2996] - }, - "properties": { - "name": "Limon Utipit", - "realm_idx": 494, - "order": "The Order of the Fox", - "resources": ["Stone", "Copper", "Ironwood", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.5471, 1.18] - }, - "properties": { - "name": "Bumzanggun", - "realm_idx": 495, - "order": "The Order of Brilliance", - "resources": ["Silver", "Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.9529, 18.28] - }, - "properties": { - "name": "Wawddojb", - "realm_idx": 496, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.4471, -12.22] - }, - "properties": { - "name": "Kewmiw", - "realm_idx": 497, - "order": "The Order of Perfection", - "resources": ["Stone", "Obsidian", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.48, -60.0996] - }, - "properties": { - "name": "Kunomsen", - "realm_idx": 498, - "order": "The Order of the Fox", - "resources": [ - "Ethereal Silica", - "Wood", - "Copper", - "Gold", - "Coal", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.28, -30.7997] - }, - "properties": { - "name": "Tumpulmuttil", - "realm_idx": 499, - "order": "The Order of Detection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.1506, -22.5227] - }, - "properties": { - "name": "Kopkop", - "realm_idx": 500, - "order": "The Order of Protection", - "resources": ["Gold", "Ironwood", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.5471, -40.72] - }, - "properties": { - "name": "Okekusiksus", - "realm_idx": 501, - "order": "The Order of Giants", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.48, 33.1003] - }, - "properties": { - "name": "Nun Pun", - "realm_idx": 502, - "order": "The Order of Fury", - "resources": ["Silver", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.8471, -48.22] - }, - "properties": { - "name": "Dunsdunsqim", - "realm_idx": 503, - "order": "The Order of Giants", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.5471, 21.48] - }, - "properties": { - "name": "Miz\u00f3s", - "realm_idx": 504, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Silver", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.2529, 44.48] - }, - "properties": { - "name": "Lolslil", - "realm_idx": 505, - "order": "The Order of Fury", - "resources": ["Coal", "Ironwood", "Ethereal Silica", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.2529, 24.48] - }, - "properties": { - "name": "\u00edn Om\u00e1k\u00edd", - "realm_idx": 506, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.0529, -35.52] - }, - "properties": { - "name": "Talosu", - "realm_idx": 507, - "order": "The Order of Power", - "resources": ["Cold Iron", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.9801, -45.6996] - }, - "properties": { - "name": "Chozhdukzhor", - "realm_idx": 508, - "order": "The Order of the Twins", - "resources": ["Ethereal Silica", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.9529, 1.58] - }, - "properties": { - "name": "Sdenwem", - "realm_idx": 509, - "order": "The Order of Power", - "resources": ["Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.2471, 52.28] - }, - "properties": { - "name": "Emabekoz", - "realm_idx": 510, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.4524, -35.9101] - }, - "properties": { - "name": "Hakuk", - "realm_idx": 511, - "order": "The Order of Reflection", - "resources": ["Copper", "Coal", "Stone", "Ironwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.1801, 26.3004] - }, - "properties": { - "name": "ghe Lekhulo", - "realm_idx": 512, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Gold", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.4471, -9.02] - }, - "properties": { - "name": "Loskom", - "realm_idx": 513, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.7529, 6.98] - }, - "properties": { - "name": "P\u00eakshluk", - "realm_idx": 514, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.1529, 0.48] - }, - "properties": { - "name": "Nuz\u0161a\u0161duu\u0161du", - "realm_idx": 515, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.4471, -13.72] - }, - "properties": { - "name": "Aalpaamtaa", - "realm_idx": 516, - "order": "The Order of Perfection", - "resources": ["Silver", "Ironwood", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.9471, 13.48] - }, - "properties": { - "name": "Ruvtogugur", - "realm_idx": 517, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.1801, -23.4996] - }, - "properties": { - "name": "Myn\u00e2klys", - "realm_idx": 518, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.6529, -16.32] - }, - "properties": { - "name": "Exuxexip", - "realm_idx": 519, - "order": "The Order of Power", - "resources": ["Ironwood", "Stone", "Wood", "Coal", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.4529, 16.38] - }, - "properties": { - "name": "Pullesponlu", - "realm_idx": 520, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Cold Iron", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.4471, -10.62] - }, - "properties": { - "name": "Maktattuit", - "realm_idx": 521, - "order": "The Order of Giants", - "resources": ["Copper", "Stone", "Coal", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [11.2471, -12.82] - }, - "properties": { - "name": "Emulala", - "realm_idx": 522, - "order": "The Order of Power", - "resources": ["Stone", "Ironwood", "Obsidian", "Silver", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.9471, 59.48] - }, - "properties": { - "name": "Nok\u00fcn", - "realm_idx": 523, - "order": "The Order of Titans", - "resources": ["Wood", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.8471, 43.88] - }, - "properties": { - "name": "Oopen", - "realm_idx": 524, - "order": "The Order of Skill", - "resources": ["Obsidian", "Wood", "Gold", "Sapphire", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.7471, -17.32] - }, - "properties": { - "name": "Pus-wip-Sod", - "realm_idx": 525, - "order": "The Order of Perfection", - "resources": ["Copper", "Wood", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.9693, -22.2732] - }, - "properties": { - "name": "Minulnul", - "realm_idx": 526, - "order": "The Order of Protection", - "resources": ["Wood", "True Ice", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.6529, 33.68] - }, - "properties": { - "name": "\u00c2pw\u00e2h", - "realm_idx": 527, - "order": "The Order of Vitriol", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.2801, 44.7004] - }, - "properties": { - "name": "Nilalni Pe", - "realm_idx": 528, - "order": "The Order of Anger", - "resources": ["Wood", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.7471, 8.58] - }, - "properties": { - "name": "Tomakos", - "realm_idx": 529, - "order": "The Order of Brilliance", - "resources": ["Copper", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.0471, -18.02] - }, - "properties": { - "name": "Shzishzibuwi", - "realm_idx": 530, - "order": "The Order of Giants", - "resources": ["Coal", "Copper", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.5471, 53.48] - }, - "properties": { - "name": "Igususimagus", - "realm_idx": 531, - "order": "The Order of Titans", - "resources": ["Stone", "Copper", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.4801, 49.4004] - }, - "properties": { - "name": "Pulsilkpelm", - "realm_idx": 532, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.8529, 17.68] - }, - "properties": { - "name": "Surolk", - "realm_idx": 533, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.7801, 28.8004] - }, - "properties": { - "name": "Bakhi Tula", - "realm_idx": 534, - "order": "The Order of Rage", - "resources": ["Obsidian", "Wood", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.6471, -22.82] - }, - "properties": { - "name": "Spipsus", - "realm_idx": 535, - "order": "The Order of Giants", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.88, 7.3003] - }, - "properties": { - "name": "Lwklws", - "realm_idx": 536, - "order": "The Order of Detection", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.48, 38.2003] - }, - "properties": { - "name": "Plimsen", - "realm_idx": 537, - "order": "The Order of Reflection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.6524, 45.1418] - }, - "properties": { - "name": "L\u00e9nnunne", - "realm_idx": 538, - "order": "The Order of Anger", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.2394, 3.0847] - }, - "properties": { - "name": "Irma\u017eimil\u017e", - "realm_idx": 539, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Wood", "Ethereal Silica", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.4872, 12.6446] - }, - "properties": { - "name": "Zoultuolloun", - "realm_idx": 540, - "order": "The Order of Protection", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.6471, 17.18] - }, - "properties": { - "name": "Luameee", - "realm_idx": 541, - "order": "The Order of Brilliance", - "resources": ["Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.7801, -35.7996] - }, - "properties": { - "name": "Usuzh", - "realm_idx": 542, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.88, -57.0996] - }, - "properties": { - "name": "Skunsnin", - "realm_idx": 543, - "order": "The Order of the Fox", - "resources": ["Silver", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.6471, -44.02] - }, - "properties": { - "name": "Kheghe", - "realm_idx": 544, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.8737, -13.8787] - }, - "properties": { - "name": "Loloswo", - "realm_idx": 545, - "order": "The Order of Perfection", - "resources": ["Wood", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.2801, 13.1004] - }, - "properties": { - "name": "Sischen", - "realm_idx": 546, - "order": "The Order of Rage", - "resources": ["Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-27.5527, 50.5801] - }, - "properties": { - "name": "Unlupin", - "realm_idx": 547, - "order": "The Order of the Twins", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.08, 30.3003] - }, - "properties": { - "name": "Yoy\u00e1 v\u00e1 Yo", - "realm_idx": 548, - "order": "The Order of Fury", - "resources": ["Stone", "Copper", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.4529, 23.68] - }, - "properties": { - "name": "Ozuzuz", - "realm_idx": 549, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.1471, -15.82] - }, - "properties": { - "name": "Mamnau Ha", - "realm_idx": 550, - "order": "The Order of Power", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.1529, -24.52] - }, - "properties": { - "name": "Ujidik", - "realm_idx": 551, - "order": "The Order of Power", - "resources": ["Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.9801, -39.4996] - }, - "properties": { - "name": "Alanusus", - "realm_idx": 552, - "order": "The Order of the Twins", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.7471, 18.68] - }, - "properties": { - "name": "Zhozizia", - "realm_idx": 553, - "order": "The Order of Brilliance", - "resources": ["Copper", "Stone", "Silver", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.3801, -26.9996] - }, - "properties": { - "name": "Kanlemlen", - "realm_idx": 554, - "order": "The Order of the Twins", - "resources": ["Deep Crystal", "Silver", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.6801, -32.2996] - }, - "properties": { - "name": "Neper", - "realm_idx": 555, - "order": "The Order of the Twins", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.0471, 31.98] - }, - "properties": { - "name": "Muzpozpuzh", - "realm_idx": 556, - "order": "The Order of Skill", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.1529, 11.58] - }, - "properties": { - "name": "Nenm\u00e2snop", - "realm_idx": 557, - "order": "The Order of Titans", - "resources": ["Obsidian", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.7471, -9.82] - }, - "properties": { - "name": "nus Dulak", - "realm_idx": 558, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.5471, 9.38] - }, - "properties": { - "name": "Mumsmu", - "realm_idx": 559, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal", "Deep Crystal", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.8246, 41.6281] - }, - "properties": { - "name": "Tinkeniimtin", - "realm_idx": 560, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.9471, 9.98] - }, - "properties": { - "name": "Lalplin", - "realm_idx": 561, - "order": "The Order of Titans", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.8471, 12.38] - }, - "properties": { - "name": "Leotnous", - "realm_idx": 562, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.6471, 13.58] - }, - "properties": { - "name": "Linl\u00e1nlim", - "realm_idx": 563, - "order": "The Order of Protection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.9801, 37.0004] - }, - "properties": { - "name": "Rizhubred", - "realm_idx": 564, - "order": "The Order of Anger", - "resources": ["Silver", "Sapphire", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.8471, 12.48] - }, - "properties": { - "name": "Ginnim Dan", - "realm_idx": 565, - "order": "The Order of Titans", - "resources": ["Stone", "Copper", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.7471, 20.88] - }, - "properties": { - "name": "Ukkuktulk", - "realm_idx": 566, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.6471, 40.88] - }, - "properties": { - "name": "ob-Orosuuz", - "realm_idx": 567, - "order": "The Order of Enlightenment", - "resources": [ - "True Ice", - "Cold Iron", - "Silver", - "Copper", - "Twilight Quartz" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.8471, -19.52] - }, - "properties": { - "name": "Ahtihim Iiha", - "realm_idx": 568, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.8471, 5.68] - }, - "properties": { - "name": "Piekiek", - "realm_idx": 569, - "order": "The Order of Brilliance", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.1495, -23.6184] - }, - "properties": { - "name": "Niname Mahe", - "realm_idx": 570, - "order": "The Order of Perfection", - "resources": ["Silver", "Wood", "Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.28, 32.3003] - }, - "properties": { - "name": "men Kenmum", - "realm_idx": 571, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.08, 24.2003] - }, - "properties": { - "name": "Non Neng", - "realm_idx": 572, - "order": "The Order of Fury", - "resources": ["Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.3529, 20.68] - }, - "properties": { - "name": "Nukhunub", - "realm_idx": 573, - "order": "The Order of Vitriol", - "resources": [ - "Stone", - "Ethereal Silica", - "Obsidian", - "Wood", - "Sapphire", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.3471, 48.28] - }, - "properties": { - "name": "Usnum", - "realm_idx": 574, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.1801, -28.5996] - }, - "properties": { - "name": "Tap Nah", - "realm_idx": 575, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.7529, 10.88] - }, - "properties": { - "name": "Pipikipu", - "realm_idx": 576, - "order": "The Order of Vitriol", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.4793, 34.8164] - }, - "properties": { - "name": "Moupkiapiw", - "realm_idx": 577, - "order": "The Order of Anger", - "resources": ["Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.5471, 30.08] - }, - "properties": { - "name": "Nusmus", - "realm_idx": 578, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.6471, 14.38] - }, - "properties": { - "name": "Wawpuch", - "realm_idx": 579, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Obsidian", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.9471, -4.12] - }, - "properties": { - "name": "Li\u00e2mo\u00e2s", - "realm_idx": 580, - "order": "The Order of Power", - "resources": ["Hartwood", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.1471, -10.32] - }, - "properties": { - "name": "Ryungwut", - "realm_idx": 581, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper", "Silver", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.2801, 20.4004] - }, - "properties": { - "name": "Rikkik", - "realm_idx": 582, - "order": "The Order of Rage", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.9471, 60.08] - }, - "properties": { - "name": "Dulbulsgal", - "realm_idx": 583, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.0801, -2.2996] - }, - "properties": { - "name": "Nikeh", - "realm_idx": 584, - "order": "The Order of Rage", - "resources": ["Coal", "Ironwood", "Stone", "Obsidian", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.1471, -45.82] - }, - "properties": { - "name": "Nokkikapi", - "realm_idx": 585, - "order": "The Order of Giants", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.4607, 39.1164] - }, - "properties": { - "name": "Su ij Chu", - "realm_idx": 586, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.1471, -30.12] - }, - "properties": { - "name": "Nil kiv Kit", - "realm_idx": 587, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.5471, 8.68] - }, - "properties": { - "name": "Ghalqid", - "realm_idx": 588, - "order": "The Order of Brilliance", - "resources": ["Silver", "Coal", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.0801, 33.5004] - }, - "properties": { - "name": "Meketypa", - "realm_idx": 589, - "order": "The Order of Anger", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.3471, 24.18] - }, - "properties": { - "name": "Schas Ol", - "realm_idx": 590, - "order": "The Order of Skill", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [14.3471, 22.08] - }, - "properties": { - "name": "S\u00eft Myut", - "realm_idx": 591, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Stone", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.6491, -16.4331] - }, - "properties": { - "name": "Liluntumunsi", - "realm_idx": 592, - "order": "The Order of Protection", - "resources": ["Copper", "Silver", "Stone", "Coal", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.1471, 42.88] - }, - "properties": { - "name": "Oponosit", - "realm_idx": 593, - "order": "The Order of Skill", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.5859, -28.333] - }, - "properties": { - "name": "Lwpuplwp", - "realm_idx": 594, - "order": "The Order of Protection", - "resources": ["Coal", "Gold", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.4801, -15.4996] - }, - "properties": { - "name": "Loem Toi", - "realm_idx": 595, - "order": "The Order of Rage", - "resources": ["Coal", "Cold Iron", "Wood", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.9801, 14.5004] - }, - "properties": { - "name": "\u2018ap Hihi", - "realm_idx": 596, - "order": "The Order of Rage", - "resources": [ - "Stone", - "Deep Crystal", - "Obsidian", - "Copper", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.7529, 20.68] - }, - "properties": { - "name": "Paummu\u00e1mm\u00e1uk", - "realm_idx": 597, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.072, 52.2739] - }, - "properties": { - "name": "\u00cfh\u00efh \u00efn Uh\u00eft", - "realm_idx": 598, - "order": "The Order of Fury", - "resources": ["Deep Crystal", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.3955, 35.3634] - }, - "properties": { - "name": "Unul Mak", - "realm_idx": 599, - "order": "The Order of Fury", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.3471, 5.88] - }, - "properties": { - "name": "Slivsvisqev", - "realm_idx": 600, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.6471, 18.58] - }, - "properties": { - "name": "Taatitaa", - "realm_idx": 601, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Stone", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.0471, 26.08] - }, - "properties": { - "name": "Nunupi", - "realm_idx": 602, - "order": "The Order of Skill", - "resources": ["Ironwood", "Mithral", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.9471, 44.48] - }, - "properties": { - "name": "Il-Rilgil", - "realm_idx": 603, - "order": "The Order of Skill", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.0197, 51.0712] - }, - "properties": { - "name": "\u0160ykg\u00e2k", - "realm_idx": 604, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.1471, -40.72] - }, - "properties": { - "name": "Kumpolmim", - "realm_idx": 605, - "order": "The Order of Giants", - "resources": ["Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.2801, -40.1996] - }, - "properties": { - "name": "Doiknuezou", - "realm_idx": 606, - "order": "The Order of the Twins", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.811, -18.5278] - }, - "properties": { - "name": "Ml\u00e9kzl\u00edktlos", - "realm_idx": 607, - "order": "The Order of Protection", - "resources": ["Coal", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.9471, -0.72] - }, - "properties": { - "name": "\u00cbngnguwr", - "realm_idx": 608, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.263, 19.0387] - }, - "properties": { - "name": "Ungrim", - "realm_idx": 609, - "order": "The Order of Fury", - "resources": ["Stone", "True Ice", "Coal", "Obsidian", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-78.5262, -35.7674] - }, - "properties": { - "name": "nrep Kretnel", - "realm_idx": 610, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.0801, -37.6996] - }, - "properties": { - "name": "Yikyik", - "realm_idx": 611, - "order": "The Order of the Twins", - "resources": ["Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.38, 15.9003] - }, - "properties": { - "name": "Nekumikpuu", - "realm_idx": 612, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Sapphire", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.9471, 54.68] - }, - "properties": { - "name": "Lu Num", - "realm_idx": 613, - "order": "The Order of Titans", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.8801, -20.0996] - }, - "properties": { - "name": "Nits\u00e9g", - "realm_idx": 614, - "order": "The Order of the Twins", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.1471, 30.98] - }, - "properties": { - "name": "Izetsch", - "realm_idx": 615, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.18, -46.9996] - }, - "properties": { - "name": "Irtorirt", - "realm_idx": 616, - "order": "The Order of the Fox", - "resources": ["Coal", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.8471, 33.18] - }, - "properties": { - "name": "i Kiki", - "realm_idx": 617, - "order": "The Order of Skill", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [23.0471, 42.98] - }, - "properties": { - "name": "Klimtlan", - "realm_idx": 618, - "order": "The Order of Titans", - "resources": ["Wood", "Cold Iron", "Stone", "Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.78, 2.3003] - }, - "properties": { - "name": "Mamsunmummim", - "realm_idx": 619, - "order": "The Order of Detection", - "resources": ["Stone", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.4529, 26.38] - }, - "properties": { - "name": "Pinblim", - "realm_idx": 620, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.2534, -24.6779] - }, - "properties": { - "name": "\u00cbtepep-\u00cbt\u00e4k", - "realm_idx": 621, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.9471, 20.28] - }, - "properties": { - "name": "Snanninshnun", - "realm_idx": 622, - "order": "The Order of Skill", - "resources": ["Deep Crystal", "Stone", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.5341, 45.256] - }, - "properties": { - "name": "Teptum", - "realm_idx": 623, - "order": "The Order of Fury", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.7471, 16.68] - }, - "properties": { - "name": "Letnuemtoup", - "realm_idx": 624, - "order": "The Order of Skill", - "resources": ["True Ice", "Coal", "Cold Iron", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.0471, 37.18] - }, - "properties": { - "name": "Y\u00e1t\u00e1chh\u00edz", - "realm_idx": 625, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.3437, 52.3339] - }, - "properties": { - "name": "Sitkukkukpit", - "realm_idx": 626, - "order": "The Order of Fury", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-131.28, 1.0003] - }, - "properties": { - "name": "Ikii\u2018a\u2018", - "realm_idx": 627, - "order": "The Order of Detection", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.2471, 35.38] - }, - "properties": { - "name": "Supepokosu", - "realm_idx": 628, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.1471, -0.52] - }, - "properties": { - "name": "Ousgoug", - "realm_idx": 629, - "order": "The Order of Giants", - "resources": ["Silver", "Obsidian", "Diamonds", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.2354, 40.8658] - }, - "properties": { - "name": "leil Urelsh", - "realm_idx": 630, - "order": "The Order of Anger", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.3471, 39.08] - }, - "properties": { - "name": "Hube\u00edk", - "realm_idx": 631, - "order": "The Order of Enlightenment", - "resources": ["Ironwood", "Hartwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.3801, -27.8996] - }, - "properties": { - "name": "K\u00e4mplin", - "realm_idx": 632, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.6471, 22.08] - }, - "properties": { - "name": "Totortson", - "realm_idx": 633, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Ruby", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.9471, -16.12] - }, - "properties": { - "name": "Sbikmus", - "realm_idx": 634, - "order": "The Order of Perfection", - "resources": [ - "Stone", - "Deep Crystal", - "Obsidian", - "Ironwood", - "Coal", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.6801, 11.1004] - }, - "properties": { - "name": "i Utti U", - "realm_idx": 635, - "order": "The Order of Rage", - "resources": ["Silver", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.6471, -10.12] - }, - "properties": { - "name": "Pochmum", - "realm_idx": 636, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.1471, -29.22] - }, - "properties": { - "name": "Dammramdam", - "realm_idx": 637, - "order": "The Order of Power", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.0801, -27.4996] - }, - "properties": { - "name": "L\u00e1knak", - "realm_idx": 638, - "order": "The Order of the Twins", - "resources": ["Wood", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.6471, 39.68] - }, - "properties": { - "name": "Genun", - "realm_idx": 639, - "order": "The Order of Enlightenment", - "resources": [ - "Copper", - "Alchemical Silver", - "Obsidian", - "Coal", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-77.2801, -16.0996] - }, - "properties": { - "name": "Pospos", - "realm_idx": 640, - "order": "The Order of Rage", - "resources": ["Cold Iron", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.5529, 2.88] - }, - "properties": { - "name": "Nitpol", - "realm_idx": 641, - "order": "The Order of Power", - "resources": ["Coal", "Copper", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.7529, 14.08] - }, - "properties": { - "name": "Konokis", - "realm_idx": 642, - "order": "The Order of Vitriol", - "resources": [ - "Ironwood", - "Stone", - "Copper", - "Ignium", - "Cold Iron", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.98, 0.3003] - }, - "properties": { - "name": "Slemmop", - "realm_idx": 643, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal", "Sapphire", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.1471, -25.12] - }, - "properties": { - "name": "Kuzhzh\u00e4l", - "realm_idx": 644, - "order": "The Order of Perfection", - "resources": ["Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.9352, 10.0087] - }, - "properties": { - "name": "Spizhzhod", - "realm_idx": 645, - "order": "The Order of Protection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.5529, 51.98] - }, - "properties": { - "name": "nron Ukog", - "realm_idx": 646, - "order": "The Order of Fury", - "resources": ["Ironwood", "Obsidian", "Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.754, 48.7735] - }, - "properties": { - "name": "Tengskitso", - "realm_idx": 647, - "order": "The Order of Fury", - "resources": ["Gold", "Obsidian", "Wood", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.72, -50.4011] - }, - "properties": { - "name": "Kronsomken", - "realm_idx": 648, - "order": "The Order of the Fox", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.7471, 12.58] - }, - "properties": { - "name": "Lihh\u00e1nkak", - "realm_idx": 649, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.6801, -3.7996] - }, - "properties": { - "name": "Yekwekyih", - "realm_idx": 650, - "order": "The Order of Rage", - "resources": ["Coal", "Hartwood", "Ironwood", "Ignium", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.6202, -25.8108] - }, - "properties": { - "name": "Ararimoqig", - "realm_idx": 651, - "order": "The Order of Protection", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.7471, 16.08] - }, - "properties": { - "name": "Odot Dodon", - "realm_idx": 652, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Ironwood", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.9801, -37.9996] - }, - "properties": { - "name": "Saelpielkei", - "realm_idx": 653, - "order": "The Order of the Twins", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.5471, 46.18] - }, - "properties": { - "name": "Pilmpilmin", - "realm_idx": 654, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.68, -48.8997] - }, - "properties": { - "name": "Selek", - "realm_idx": 655, - "order": "The Order of the Fox", - "resources": ["Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [11.0471, -13.42] - }, - "properties": { - "name": "Wjawzug", - "realm_idx": 656, - "order": "The Order of Power", - "resources": ["Obsidian", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.4801, 40.2004] - }, - "properties": { - "name": "Muamuis", - "realm_idx": 657, - "order": "The Order of Anger", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.78, 34.5003] - }, - "properties": { - "name": "Mimmu Huhi", - "realm_idx": 658, - "order": "The Order of Reflection", - "resources": ["Silver", "Coal", "Copper", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-27.9529, -1.42] - }, - "properties": { - "name": "Muzkii", - "realm_idx": 659, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Copper", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.6471, -26.32] - }, - "properties": { - "name": "Sdolschmon", - "realm_idx": 660, - "order": "The Order of Perfection", - "resources": ["Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.7529, 40.38] - }, - "properties": { - "name": "Chuagbian", - "realm_idx": 661, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.6471, 16.68] - }, - "properties": { - "name": "Polpol", - "realm_idx": 662, - "order": "The Order of Skill", - "resources": ["Obsidian", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-126.58, -3.4997] - }, - "properties": { - "name": "Tup uk Et", - "realm_idx": 663, - "order": "The Order of Detection", - "resources": ["Stone", "Ironwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.4801, 22.9004] - }, - "properties": { - "name": "Kesk\u00fak", - "realm_idx": 664, - "order": "The Order of Rage", - "resources": ["Coal", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.3471, 48.48] - }, - "properties": { - "name": "Guenne\u0161mun", - "realm_idx": 665, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Obsidian", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.881, 21.6852] - }, - "properties": { - "name": "Heng\u2018unonglu", - "realm_idx": 666, - "order": "The Order of Brilliance", - "resources": ["Wood", "Obsidian", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.3529, -19.02] - }, - "properties": { - "name": "Neulul", - "realm_idx": 667, - "order": "The Order of Power", - "resources": ["Wood", "Deep Crystal", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.4529, 28.68] - }, - "properties": { - "name": "Klonklon", - "realm_idx": 668, - "order": "The Order of Vitriol", - "resources": ["Coal", "Diamonds", "Obsidian", "Wood", "Stone", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.0801, 47.2004] - }, - "properties": { - "name": "Plenlim", - "realm_idx": 669, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.0471, 6.18] - }, - "properties": { - "name": "Ischmustag", - "realm_idx": 670, - "order": "The Order of Brilliance", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.68, 38.2003] - }, - "properties": { - "name": "\u00c9tom\u00edm", - "realm_idx": 671, - "order": "The Order of Reflection", - "resources": ["Coal", "Deep Crystal", "Ignium", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.0471, 21.38] - }, - "properties": { - "name": "Shmonskip", - "realm_idx": 672, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.9801, -6.4996] - }, - "properties": { - "name": "Kinipni-Mi", - "realm_idx": 673, - "order": "The Order of Rage", - "resources": ["Wood", "Silver", "Ruby", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.78, -53.1996] - }, - "properties": { - "name": "Nw\u017ete\u017e", - "realm_idx": 674, - "order": "The Order of the Fox", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.4801, -22.3996] - }, - "properties": { - "name": "Bedesa", - "realm_idx": 675, - "order": "The Order of the Twins", - "resources": ["Wood", "Copper", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.5471, 11.78] - }, - "properties": { - "name": "Kikkik", - "realm_idx": 676, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.1471, -0.52] - }, - "properties": { - "name": "Ururk\u00edrpur", - "realm_idx": 677, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.8175, -16.8093] - }, - "properties": { - "name": "Kelelu", - "realm_idx": 678, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.2471, -20.92] - }, - "properties": { - "name": "Ut\u00e1lulup", - "realm_idx": 679, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Cold Iron", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.4471, 26.78] - }, - "properties": { - "name": "ha-Namunam\u00f3k", - "realm_idx": 680, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.6801, 28.0004] - }, - "properties": { - "name": "Womhul", - "realm_idx": 681, - "order": "The Order of Rage", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.0471, -7.92] - }, - "properties": { - "name": "nin Kuv", - "realm_idx": 682, - "order": "The Order of Perfection", - "resources": ["Coal", "Cold Iron", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.18, 17.3003] - }, - "properties": { - "name": "Gixstussgik", - "realm_idx": 683, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.7471, 49.48] - }, - "properties": { - "name": "Hinhum", - "realm_idx": 684, - "order": "The Order of Skill", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.2471, 16.18] - }, - "properties": { - "name": "Tomopo", - "realm_idx": 685, - "order": "The Order of Titans", - "resources": ["True Ice", "Gold", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.9527, 4.4204] - }, - "properties": { - "name": "Neswei\u2018\u00ebk", - "realm_idx": 686, - "order": "The Order of Protection", - "resources": ["Diamonds", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.0471, 48.68] - }, - "properties": { - "name": "Sqoghkho", - "realm_idx": 687, - "order": "The Order of Titans", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.1529, 25.48] - }, - "properties": { - "name": "I Iam", - "realm_idx": 688, - "order": "The Order of Vitriol", - "resources": ["Wood", "Ironwood", "Alchemical Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.9471, 42.78] - }, - "properties": { - "name": "Slonlunlun", - "realm_idx": 689, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.1033, -19.9831] - }, - "properties": { - "name": "Krujkujmrich", - "realm_idx": 690, - "order": "The Order of Perfection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.1471, 20.58] - }, - "properties": { - "name": "Nuks\u017euksnoos", - "realm_idx": 691, - "order": "The Order of Enlightenment", - "resources": ["Ironwood", "Wood", "Copper", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.6471, -19.02] - }, - "properties": { - "name": "ghuk Mishka", - "realm_idx": 692, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Silver", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.6471, 27.88] - }, - "properties": { - "name": "Ak\u00edkqak", - "realm_idx": 693, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.7529, -12.52] - }, - "properties": { - "name": "Stis kik Lik", - "realm_idx": 694, - "order": "The Order of Power", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.5995, -47.7177] - }, - "properties": { - "name": "Akit\u00edkut", - "realm_idx": 695, - "order": "The Order of the Fox", - "resources": ["Copper", "Wood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.1471, 12.48] - }, - "properties": { - "name": "Tomulsol", - "realm_idx": 696, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [130.8548, 8.0991] - }, - "properties": { - "name": "Silsutup", - "realm_idx": 697, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.9208, -48.7205] - }, - "properties": { - "name": "Prochtr\u00e1m", - "realm_idx": 698, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Silver", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.7529, 23.08] - }, - "properties": { - "name": "Miimgrud", - "realm_idx": 699, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.4801, -34.0996] - }, - "properties": { - "name": "Nilinmum", - "realm_idx": 700, - "order": "The Order of the Twins", - "resources": ["True Ice", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.5681, -17.8633] - }, - "properties": { - "name": "Shetaltdel", - "realm_idx": 701, - "order": "The Order of Reflection", - "resources": ["Adamantine", "Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-42.2529, 10.68] - }, - "properties": { - "name": "Uhmimummup", - "realm_idx": 702, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.04, -23.695] - }, - "properties": { - "name": "Memteh Tek\u00f6", - "realm_idx": 703, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.9529, 27.58] - }, - "properties": { - "name": "Himanhumkan", - "realm_idx": 704, - "order": "The Order of Vitriol", - "resources": [ - "Obsidian", - "Hartwood", - "Sapphire", - "Coal", - "Silver", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.7728, 50.6401] - }, - "properties": { - "name": "Lulukikmil", - "realm_idx": 705, - "order": "The Order of Fury", - "resources": ["Copper", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.5471, -26.12] - }, - "properties": { - "name": "Puppupkat", - "realm_idx": 706, - "order": "The Order of Giants", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.1471, 11.28] - }, - "properties": { - "name": "Yomun", - "realm_idx": 707, - "order": "The Order of Titans", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.2471, 47.68] - }, - "properties": { - "name": "Uchubuyuch", - "realm_idx": 708, - "order": "The Order of Titans", - "resources": ["Wood", "Adamantine", "Ironwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.3649, -21.0926] - }, - "properties": { - "name": "Uwlalal", - "realm_idx": 709, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.0471, 10.58] - }, - "properties": { - "name": "mal Am", - "realm_idx": 710, - "order": "The Order of Titans", - "resources": ["Copper", "Obsidian", "Wood", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.3801, -32.5996] - }, - "properties": { - "name": "Ket ek \u00cbtl\u00e4l", - "realm_idx": 711, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.0471, -34.52] - }, - "properties": { - "name": "Mongqomon", - "realm_idx": 712, - "order": "The Order of Giants", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.641, -48.8645] - }, - "properties": { - "name": "Hunummumnumu", - "realm_idx": 713, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.8471, -14.72] - }, - "properties": { - "name": "\u00cdinnuqa", - "realm_idx": 714, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.9529, 9.98] - }, - "properties": { - "name": "Tumsom", - "realm_idx": 715, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Silver", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.0471, 17.08] - }, - "properties": { - "name": "Polmlus", - "realm_idx": 716, - "order": "The Order of Skill", - "resources": ["Cold Iron", "Coal", "Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.0916, 37.9887] - }, - "properties": { - "name": "Un rip Sul", - "realm_idx": 717, - "order": "The Order of Fury", - "resources": ["Wood", "Silver", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.3529, 41.88] - }, - "properties": { - "name": "Ininin", - "realm_idx": 718, - "order": "The Order of Vitriol", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.2596, -0.164] - }, - "properties": { - "name": "ol Eketoset", - "realm_idx": 719, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.7737, -9.8528] - }, - "properties": { - "name": "Tenlilten", - "realm_idx": 720, - "order": "The Order of Perfection", - "resources": ["Stone", "Obsidian", "Gold", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.2471, -31.42] - }, - "properties": { - "name": "Titiw", - "realm_idx": 721, - "order": "The Order of Giants", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.2471, 43.58] - }, - "properties": { - "name": "Sm\u00e4kt\u00e4k", - "realm_idx": 722, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.1471, -35.12] - }, - "properties": { - "name": "Hakka\u2018lu\u2018\u2018ih", - "realm_idx": 723, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.3221, -13.3388] - }, - "properties": { - "name": "Surp\u010daah", - "realm_idx": 724, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Silver", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.4471, -22.32] - }, - "properties": { - "name": "Ars \u00far Or", - "realm_idx": 725, - "order": "The Order of Power", - "resources": ["Coal", "Ruby", "Gold", "Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.5801, 19.0004] - }, - "properties": { - "name": "\u00dc im Kam", - "realm_idx": 726, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Cold Iron", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.7729, 8.1811] - }, - "properties": { - "name": "Mumsensensu", - "realm_idx": 727, - "order": "The Order of Rage", - "resources": ["Obsidian", "Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.1471, 55.38] - }, - "properties": { - "name": "Yiwyepziik", - "realm_idx": 728, - "order": "The Order of Skill", - "resources": ["Stone", "Copper", "Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.0801, -24.5996] - }, - "properties": { - "name": "Lukesmosnuk", - "realm_idx": 729, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.0801, 23.3004] - }, - "properties": { - "name": "W\u00f3ngk\u00fang\u00f3ng", - "realm_idx": 730, - "order": "The Order of Rage", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.3471, -13.82] - }, - "properties": { - "name": "Umimsan", - "realm_idx": 731, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.68, -8.9449] - }, - "properties": { - "name": "Darielk", - "realm_idx": 732, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.1801, -47.6996] - }, - "properties": { - "name": "Kluteheh-Rok", - "realm_idx": 733, - "order": "The Order of the Twins", - "resources": ["Ruby", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.5471, -28.92] - }, - "properties": { - "name": "Asipusulik", - "realm_idx": 734, - "order": "The Order of Power", - "resources": ["Obsidian", "Gold", "Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.8471, -15.32] - }, - "properties": { - "name": "Sh\u00fcakmek", - "realm_idx": 735, - "order": "The Order of Perfection", - "resources": ["Hartwood", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.2471, -11.62] - }, - "properties": { - "name": "Uot ol Lukep", - "realm_idx": 736, - "order": "The Order of Power", - "resources": ["Coal", "Gold", "Sapphire", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.2471, 37.88] - }, - "properties": { - "name": "Toghnakd\u00fcw", - "realm_idx": 737, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Obsidian", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.98, 38.3003] - }, - "properties": { - "name": "ser Smulszu", - "realm_idx": 738, - "order": "The Order of Reflection", - "resources": ["Wood", "Silver", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.9801, 5.0004] - }, - "properties": { - "name": "op Ekekuhek", - "realm_idx": 739, - "order": "The Order of Rage", - "resources": ["Stone", "Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.7471, -47.82] - }, - "properties": { - "name": "Ulnop Ulnmes", - "realm_idx": 740, - "order": "The Order of Giants", - "resources": ["Ironwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.8529, 11.28] - }, - "properties": { - "name": "Deisgitdien", - "realm_idx": 741, - "order": "The Order of Vitriol", - "resources": ["Stone", "Ironwood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.5485, 37.4307] - }, - "properties": { - "name": "Soettaot", - "realm_idx": 742, - "order": "The Order of Fury", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.1527, 51.1801] - }, - "properties": { - "name": "Shyan-Nyum", - "realm_idx": 743, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.28, -49.7997] - }, - "properties": { - "name": "Tikset", - "realm_idx": 744, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.6471, 43.88] - }, - "properties": { - "name": "Sbogska", - "realm_idx": 745, - "order": "The Order of Enlightenment", - "resources": ["Ethereal Silica", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.6261, -6.0913] - }, - "properties": { - "name": "Usipamulam", - "realm_idx": 746, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-126.08, -11.6997] - }, - "properties": { - "name": "us Iulasikla", - "realm_idx": 747, - "order": "The Order of Detection", - "resources": ["Copper", "Stone", "Obsidian", "Gold", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.4471, -28.02] - }, - "properties": { - "name": "Walwin", - "realm_idx": 748, - "order": "The Order of Giants", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.7801, 34.7004] - }, - "properties": { - "name": "Klonmon", - "realm_idx": 749, - "order": "The Order of Anger", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.9801, 41.5004] - }, - "properties": { - "name": "P\u00edpk\u00edn", - "realm_idx": 750, - "order": "The Order of Anger", - "resources": ["Obsidian", "Coal", "Wood", "Copper", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.2199, 42.2727] - }, - "properties": { - "name": "Niaspaus", - "realm_idx": 751, - "order": "The Order of Anger", - "resources": ["Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.1615, -27.4142] - }, - "properties": { - "name": "Liuklup", - "realm_idx": 752, - "order": "The Order of Protection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.6471, -13.62] - }, - "properties": { - "name": "Naan Iniu", - "realm_idx": 753, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.9801, 39.0004] - }, - "properties": { - "name": "Idichir", - "realm_idx": 754, - "order": "The Order of Anger", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.08, 26.1003] - }, - "properties": { - "name": "Tuput", - "realm_idx": 755, - "order": "The Order of Fury", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.2471, 2.08] - }, - "properties": { - "name": "Elowuke\u2018oh", - "realm_idx": 756, - "order": "The Order of Titans", - "resources": ["Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.3297, 28.3318] - }, - "properties": { - "name": "\u00c4p\u00e4wazh", - "realm_idx": 757, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.4801, 4.3004] - }, - "properties": { - "name": "Pomnen", - "realm_idx": 758, - "order": "The Order of Rage", - "resources": ["Wood", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.5801, 46.7004] - }, - "properties": { - "name": "Kinonony", - "realm_idx": 759, - "order": "The Order of Anger", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [27.0471, -38.72] - }, - "properties": { - "name": "Ngulflung", - "realm_idx": 760, - "order": "The Order of Giants", - "resources": ["Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.0529, -36.72] - }, - "properties": { - "name": "Salnsintiln", - "realm_idx": 761, - "order": "The Order of Power", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.98, -1.2997] - }, - "properties": { - "name": "Kw\u00e1dsyesh", - "realm_idx": 762, - "order": "The Order of Detection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.8471, 4.98] - }, - "properties": { - "name": "S\u00ebtek", - "realm_idx": 763, - "order": "The Order of Brilliance", - "resources": ["Sapphire", "Ironwood", "Twilight Quartz", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.0254, 43.2363] - }, - "properties": { - "name": "Udununudes", - "realm_idx": 764, - "order": "The Order of Anger", - "resources": [ - "Stone", - "Coal", - "Ironwood", - "Copper", - "Silver", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.0801, 20.7004] - }, - "properties": { - "name": "Inkaminehkim", - "realm_idx": 765, - "order": "The Order of Rage", - "resources": ["Copper", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.0527, 50.2801] - }, - "properties": { - "name": "Eusengaqog", - "realm_idx": 766, - "order": "The Order of the Twins", - "resources": ["Coal", "Adamantine", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.7801, 38.7004] - }, - "properties": { - "name": "paurg \u010cur\u010dur", - "realm_idx": 767, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "Ignium", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.5801, 49.8004] - }, - "properties": { - "name": "nger Lor", - "realm_idx": 768, - "order": "The Order of Anger", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.8529, 41.78] - }, - "properties": { - "name": "Nipslom", - "realm_idx": 769, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.98, -6.7997] - }, - "properties": { - "name": "Aqulwngul", - "realm_idx": 770, - "order": "The Order of Detection", - "resources": ["Wood", "Coal", "Copper", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.6471, 18.08] - }, - "properties": { - "name": "S\u00faskos", - "realm_idx": 771, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Stone", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.5471, 17.08] - }, - "properties": { - "name": "Gjenmwud", - "realm_idx": 772, - "order": "The Order of Skill", - "resources": ["Cold Iron", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.8529, 27.88] - }, - "properties": { - "name": "Onmomoton", - "realm_idx": 773, - "order": "The Order of Vitriol", - "resources": [ - "Ironwood", - "Sapphire", - "Silver", - "Coal", - "Obsidian", - "Hartwood", - "Gold" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-132.98, 0.5003] - }, - "properties": { - "name": "Viqsing", - "realm_idx": 774, - "order": "The Order of Detection", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.8471, 9.38] - }, - "properties": { - "name": "Susmompip", - "realm_idx": 775, - "order": "The Order of Brilliance", - "resources": ["Coal", "Copper", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.2471, 12.28] - }, - "properties": { - "name": "N\u00e4nkun Kom", - "realm_idx": 776, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.7471, -12.12] - }, - "properties": { - "name": "Hronhron", - "realm_idx": 777, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.1801, 21.6004] - }, - "properties": { - "name": "Stumtintin", - "realm_idx": 778, - "order": "The Order of Rage", - "resources": ["Ironwood", "Silver", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.08, 27.3003] - }, - "properties": { - "name": "Op-Keopluviy", - "realm_idx": 779, - "order": "The Order of Fury", - "resources": ["Wood", "Copper", "Coal", "Diamonds", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.7471, 43.28] - }, - "properties": { - "name": "Dazhsustuch", - "realm_idx": 780, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.6471, 12.58] - }, - "properties": { - "name": "Shkel", - "realm_idx": 781, - "order": "The Order of Titans", - "resources": ["Coal", "Copper", "Sapphire", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.8471, 0.58] - }, - "properties": { - "name": "Chokuychogo", - "realm_idx": 782, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Stone", "Obsidian", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.2801, -27.5996] - }, - "properties": { - "name": "Ujkkojkkim", - "realm_idx": 783, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone", "Diamonds", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.1471, 50.68] - }, - "properties": { - "name": "Teltelolulm", - "realm_idx": 784, - "order": "The Order of Skill", - "resources": ["Obsidian", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-43.7529, 7.78] - }, - "properties": { - "name": "Patma", - "realm_idx": 785, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.1529, 30.08] - }, - "properties": { - "name": "Smilnulnul", - "realm_idx": 786, - "order": "The Order of Vitriol", - "resources": ["Stone", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.2471, -17.12] - }, - "properties": { - "name": "Xtonopmel", - "realm_idx": 787, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.9801, 5.1004] - }, - "properties": { - "name": "Nontil", - "realm_idx": 788, - "order": "The Order of Rage", - "resources": ["Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.6471, -41.92] - }, - "properties": { - "name": "Nuilsouk Kap", - "realm_idx": 789, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.7801, -5.6996] - }, - "properties": { - "name": "\u0160\u017eomkons\u010dan", - "realm_idx": 790, - "order": "The Order of Rage", - "resources": ["True Ice", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.5471, 47.28] - }, - "properties": { - "name": "Smototsnilso", - "realm_idx": 791, - "order": "The Order of Titans", - "resources": ["Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.2917, -22.6945] - }, - "properties": { - "name": "O\u010do\u010ddo\u0161", - "realm_idx": 792, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.3471, 17.38] - }, - "properties": { - "name": "Y\u00f3y W\u00e1", - "realm_idx": 793, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.1471, -25.72] - }, - "properties": { - "name": "Shluplon", - "realm_idx": 794, - "order": "The Order of Perfection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.0504, 10.0569] - }, - "properties": { - "name": "S\u00e9gredzhach", - "realm_idx": 795, - "order": "The Order of Protection", - "resources": ["Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.7529, 42.78] - }, - "properties": { - "name": "N\u00ebpmam", - "realm_idx": 796, - "order": "The Order of Vitriol", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.4436, -27.8537] - }, - "properties": { - "name": "Ghieyalb", - "realm_idx": 797, - "order": "The Order of Protection", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.98, -10.6997] - }, - "properties": { - "name": "key Maykmayk", - "realm_idx": 798, - "order": "The Order of Reflection", - "resources": [ - "True Ice", - "Obsidian", - "Gold", - "Wood", - "Copper", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.7136, -50.0411] - }, - "properties": { - "name": "Sasapun", - "realm_idx": 799, - "order": "The Order of the Fox", - "resources": ["Cold Iron", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.68, 30.3003] - }, - "properties": { - "name": "L\u00e4xm\u00efxgixgix", - "realm_idx": 800, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.1471, 47.48] - }, - "properties": { - "name": "Petlash", - "realm_idx": 801, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.2471, -21.32] - }, - "properties": { - "name": "Nesnessop", - "realm_idx": 802, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.9471, 51.18] - }, - "properties": { - "name": "Hekihhek", - "realm_idx": 803, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.4801, 28.0004] - }, - "properties": { - "name": "Kihnewow", - "realm_idx": 804, - "order": "The Order of Rage", - "resources": ["Copper", "Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.0471, -13.32] - }, - "properties": { - "name": "nez Gabned", - "realm_idx": 805, - "order": "The Order of Perfection", - "resources": ["True Ice", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.6801, -30.8996] - }, - "properties": { - "name": "pum Skum", - "realm_idx": 806, - "order": "The Order of the Twins", - "resources": ["Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.2077, 25.9987] - }, - "properties": { - "name": "R\u00e1kzh\u00e1\u00e1zo", - "realm_idx": 807, - "order": "The Order of Fury", - "resources": ["Wood", "Copper", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.2801, -33.6996] - }, - "properties": { - "name": "Idenen", - "realm_idx": 808, - "order": "The Order of the Twins", - "resources": ["Coal", "Alchemical Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.3348, 17.6985] - }, - "properties": { - "name": "\u00c4nk\u00efn\u00efntan", - "realm_idx": 809, - "order": "The Order of Protection", - "resources": ["Obsidian", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.0471, 44.08] - }, - "properties": { - "name": "Pawpippik", - "realm_idx": 810, - "order": "The Order of Enlightenment", - "resources": ["Ruby", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.28, -42.2996] - }, - "properties": { - "name": "\u2018aspikmuk", - "realm_idx": 811, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.2529, 1.38] - }, - "properties": { - "name": "Inlikrul", - "realm_idx": 812, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.2471, -15.12] - }, - "properties": { - "name": "\u00cfmumonen", - "realm_idx": 813, - "order": "The Order of Perfection", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.9529, 38.58] - }, - "properties": { - "name": "Chutch", - "realm_idx": 814, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.8678, 54.98] - }, - "properties": { - "name": "Simnin", - "realm_idx": 815, - "order": "The Order of Fury", - "resources": ["Stone", "Obsidian", "Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.8529, 42.48] - }, - "properties": { - "name": "Hluhah", - "realm_idx": 816, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Stone", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.2471, 36.28] - }, - "properties": { - "name": "Minminla Pu", - "realm_idx": 817, - "order": "The Order of Skill", - "resources": ["Coal", "Copper", "Wood", "Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.5105, -29.2829] - }, - "properties": { - "name": "Pioheimoe", - "realm_idx": 818, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.9801, 13.1004] - }, - "properties": { - "name": "Lelile", - "realm_idx": 819, - "order": "The Order of Rage", - "resources": ["Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.0471, -11.02] - }, - "properties": { - "name": "Srengpasrep", - "realm_idx": 820, - "order": "The Order of Power", - "resources": ["Obsidian", "Wood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.2471, -36.42] - }, - "properties": { - "name": "Yongonbunyon", - "realm_idx": 821, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.2999, 13.0419] - }, - "properties": { - "name": "Pis Lisnuz", - "realm_idx": 822, - "order": "The Order of Fury", - "resources": ["Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.7529, 25.38] - }, - "properties": { - "name": "Hunuuhnu", - "realm_idx": 823, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.1471, 37.78] - }, - "properties": { - "name": "sag Sevog", - "realm_idx": 824, - "order": "The Order of Enlightenment", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.8471, -17.92] - }, - "properties": { - "name": "Sunggelgoip", - "realm_idx": 825, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.2529, 30.68] - }, - "properties": { - "name": "Ly\u00famnyum", - "realm_idx": 826, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.6801, -16.9996] - }, - "properties": { - "name": "Geyil", - "realm_idx": 827, - "order": "The Order of Rage", - "resources": ["Gold", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.5527, 53.1801] - }, - "properties": { - "name": "Kamkippil", - "realm_idx": 828, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.18, 28.9003] - }, - "properties": { - "name": "Penkesnopsok", - "realm_idx": 829, - "order": "The Order of Fury", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.1471, 54.08] - }, - "properties": { - "name": "Xduzh", - "realm_idx": 830, - "order": "The Order of Enlightenment", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.3918, 13.537] - }, - "properties": { - "name": "Omawa\u2018", - "realm_idx": 831, - "order": "The Order of Protection", - "resources": ["Coal", "Gold", "Hartwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.18, -56.4996] - }, - "properties": { - "name": "Vaenvaenraos", - "realm_idx": 832, - "order": "The Order of the Fox", - "resources": ["Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.5529, 51.68] - }, - "properties": { - "name": "Anman ko Aan", - "realm_idx": 833, - "order": "The Order of Fury", - "resources": ["Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.6471, 14.18] - }, - "properties": { - "name": "Wuppol", - "realm_idx": 834, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.78, -58.7996] - }, - "properties": { - "name": "Guysed", - "realm_idx": 835, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.5471, 52.88] - }, - "properties": { - "name": "Mumlo", - "realm_idx": 836, - "order": "The Order of Titans", - "resources": ["Wood", "Obsidian", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.8471, -40.02] - }, - "properties": { - "name": "Mipmek", - "realm_idx": 837, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.4801, 5.2004] - }, - "properties": { - "name": "Tiplonneis", - "realm_idx": 838, - "order": "The Order of Rage", - "resources": ["Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.6471, -32.62] - }, - "properties": { - "name": "Mokuo", - "realm_idx": 839, - "order": "The Order of Giants", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.4801, 5.9004] - }, - "properties": { - "name": "Yubwigzim", - "realm_idx": 840, - "order": "The Order of Rage", - "resources": [ - "Twilight Quartz", - "Obsidian", - "Stone", - "Coal", - "Wood", - "Diamonds" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.6471, 14.08] - }, - "properties": { - "name": "Se\u00e4sw\u00ebsh\u00e4s", - "realm_idx": 841, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.8025, 31.9697] - }, - "properties": { - "name": "sek Smisses", - "realm_idx": 842, - "order": "The Order of Anger", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.6484, -21.5394] - }, - "properties": { - "name": "Konlu", - "realm_idx": 843, - "order": "The Order of Protection", - "resources": ["Ironwood", "Deep Crystal", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.1453, -19.2947] - }, - "properties": { - "name": "Biguzhixinu", - "realm_idx": 844, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.18, -28.6997] - }, - "properties": { - "name": "Ortlermurn", - "realm_idx": 845, - "order": "The Order of Reflection", - "resources": ["Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.28, -5.5997] - }, - "properties": { - "name": "Slonsninnin", - "realm_idx": 846, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.5471, 28.48] - }, - "properties": { - "name": "Ivvipiv", - "realm_idx": 847, - "order": "The Order of Titans", - "resources": ["Obsidian", "Wood", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.58, 9.6003] - }, - "properties": { - "name": "Susuko", - "realm_idx": 848, - "order": "The Order of Detection", - "resources": ["Ironwood", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.4471, 52.88] - }, - "properties": { - "name": "Elmajelm", - "realm_idx": 849, - "order": "The Order of Skill", - "resources": ["Obsidian", "Diamonds", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.0471, 16.08] - }, - "properties": { - "name": "Num\u2018ol", - "realm_idx": 850, - "order": "The Order of Titans", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [108.2471, 41.88] - }, - "properties": { - "name": "Nazhtash", - "realm_idx": 851, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Stone", "Wood", "Twilight Quartz", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.8471, 12.68] - }, - "properties": { - "name": "Zeb Smaz\u010diz", - "realm_idx": 852, - "order": "The Order of Protection", - "resources": ["Obsidian", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.4801, 28.0004] - }, - "properties": { - "name": "Ozhro", - "realm_idx": 853, - "order": "The Order of Rage", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.68, 1.1003] - }, - "properties": { - "name": "Uchukuguch", - "realm_idx": 854, - "order": "The Order of Detection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.8168, 38.6203] - }, - "properties": { - "name": "Plip\u00fapl\u00famruk", - "realm_idx": 855, - "order": "The Order of Anger", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.3529, 6.58] - }, - "properties": { - "name": "Quaqua", - "realm_idx": 856, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.1471, 9.78] - }, - "properties": { - "name": "Smuns\u2018umsmin", - "realm_idx": 857, - "order": "The Order of Protection", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-77.9801, -15.8996] - }, - "properties": { - "name": "Muho-nal-Shu", - "realm_idx": 858, - "order": "The Order of Rage", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.68, -17.3997] - }, - "properties": { - "name": "Kikiki Chiki", - "realm_idx": 859, - "order": "The Order of Detection", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.8471, 22.38] - }, - "properties": { - "name": "Itoogi\u010d", - "realm_idx": 860, - "order": "The Order of Skill", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.0471, 46.78] - }, - "properties": { - "name": "Badrorobosko", - "realm_idx": 861, - "order": "The Order of Titans", - "resources": ["Stone", "Cold Iron", "Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.5471, 16.88] - }, - "properties": { - "name": "Chassa", - "realm_idx": 862, - "order": "The Order of Protection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.2471, 27.18] - }, - "properties": { - "name": "Teilkok", - "realm_idx": 863, - "order": "The Order of Titans", - "resources": ["Obsidian", "Coal", "Stone", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.7471, 31.28] - }, - "properties": { - "name": "\u2018ummwapmam", - "realm_idx": 864, - "order": "The Order of Skill", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.5529, 55.28] - }, - "properties": { - "name": "N\u00e4\u00efzmadm\u00efz", - "realm_idx": 865, - "order": "The Order of Fury", - "resources": ["Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.9471, -35.42] - }, - "properties": { - "name": "Neysizizibib", - "realm_idx": 866, - "order": "The Order of Power", - "resources": ["Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.8471, 18.88] - }, - "properties": { - "name": "Ukghilaigh", - "realm_idx": 867, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Stone", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.5801, 26.9004] - }, - "properties": { - "name": "Lal\u00e9m \u00cdlsem", - "realm_idx": 868, - "order": "The Order of Rage", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.5471, -38.72] - }, - "properties": { - "name": "Zhak\u00e1kikuk", - "realm_idx": 869, - "order": "The Order of Giants", - "resources": ["Wood", "Hartwood", "Coal", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.8471, 14.08] - }, - "properties": { - "name": "an Grig Run", - "realm_idx": 870, - "order": "The Order of Titans", - "resources": ["Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.9529, -24.62] - }, - "properties": { - "name": "Lonnrih", - "realm_idx": 871, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.5801, -47.9996] - }, - "properties": { - "name": "H\u00e9l\u010dolje", - "realm_idx": 872, - "order": "The Order of the Twins", - "resources": ["Wood", "Hartwood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.6919, 32.6922] - }, - "properties": { - "name": "Trisnrut", - "realm_idx": 873, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Copper", "Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.68, 12.3003] - }, - "properties": { - "name": "Kemnonyo", - "realm_idx": 874, - "order": "The Order of Detection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.48, -45.8996] - }, - "properties": { - "name": "Pultpupu", - "realm_idx": 875, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.5934, -24.7641] - }, - "properties": { - "name": "Kolskolsselp", - "realm_idx": 876, - "order": "The Order of Protection", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.8471, 4.08] - }, - "properties": { - "name": "Lellelnel", - "realm_idx": 877, - "order": "The Order of Brilliance", - "resources": ["Stone", "Ironwood", "Ruby", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.7471, 9.48] - }, - "properties": { - "name": "Osipateng", - "realm_idx": 878, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.3471, 12.48] - }, - "properties": { - "name": "Enkinsomsom", - "realm_idx": 879, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [130.771, 9.1615] - }, - "properties": { - "name": "Legchi\u00e2kbe\u00ean", - "realm_idx": 880, - "order": "The Order of Protection", - "resources": [ - "Stone", - "Cold Iron", - "Obsidian", - "Wood", - "Coal", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.2471, 43.78] - }, - "properties": { - "name": "L\u00e1km\u00e1k", - "realm_idx": 881, - "order": "The Order of Titans", - "resources": ["Silver", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.68, -7.9997] - }, - "properties": { - "name": "Kuklup", - "realm_idx": 882, - "order": "The Order of Reflection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.2701, 39.5863] - }, - "properties": { - "name": "Mlenkluntlen", - "realm_idx": 883, - "order": "The Order of Anger", - "resources": ["Hartwood", "Silver", "Coal", "Gold", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.7529, -10.12] - }, - "properties": { - "name": "In Hung", - "realm_idx": 884, - "order": "The Order of the Fox", - "resources": ["Ignium", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.48, -5.1997] - }, - "properties": { - "name": "\u2018uwwu\u2018", - "realm_idx": 885, - "order": "The Order of Reflection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.1471, -14.52] - }, - "properties": { - "name": "Nessilsil", - "realm_idx": 886, - "order": "The Order of Perfection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [130.6827, 8.3174] - }, - "properties": { - "name": "Zhash\u00edzha", - "realm_idx": 887, - "order": "The Order of Protection", - "resources": ["Coal", "Obsidian", "Cold Iron", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.2529, 9.88] - }, - "properties": { - "name": "Gilluzh", - "realm_idx": 888, - "order": "The Order of Vitriol", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.08, -42.9997] - }, - "properties": { - "name": "slun Klunlus", - "realm_idx": 889, - "order": "The Order of the Fox", - "resources": ["Coal", "Deep Crystal", "Ironwood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.1471, 6.98] - }, - "properties": { - "name": "Lur-\u010col\u010dol", - "realm_idx": 890, - "order": "The Order of Protection", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.3471, 43.08] - }, - "properties": { - "name": "Manipole", - "realm_idx": 891, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.8471, -34.02] - }, - "properties": { - "name": "Muokuosetes", - "realm_idx": 892, - "order": "The Order of Giants", - "resources": ["Coal", "Wood", "True Ice", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.08, 11.3003] - }, - "properties": { - "name": "Opunk\u00fck", - "realm_idx": 893, - "order": "The Order of Fury", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.0801, 6.6004] - }, - "properties": { - "name": "Ly\u00edshet", - "realm_idx": 894, - "order": "The Order of Rage", - "resources": ["Ignium", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.6664, -56.6412] - }, - "properties": { - "name": "Q\u00f3p\u00e1t", - "realm_idx": 895, - "order": "The Order of the Twins", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.3801, -36.0996] - }, - "properties": { - "name": "Nungnong", - "realm_idx": 896, - "order": "The Order of the Twins", - "resources": ["Wood", "Copper", "True Ice", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.4529, -34.92] - }, - "properties": { - "name": "Fmumm\u00edpfmum", - "realm_idx": 897, - "order": "The Order of Power", - "resources": ["Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.7471, 34.48] - }, - "properties": { - "name": "Nenkum", - "realm_idx": 898, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-28.9529, 1.08] - }, - "properties": { - "name": "Usosum", - "realm_idx": 899, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.3593, 9.9276] - }, - "properties": { - "name": "Wekeh", - "realm_idx": 900, - "order": "The Order of Protection", - "resources": ["Copper", "Obsidian", "Silver", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.5346, -13.4263] - }, - "properties": { - "name": "Ratderzab", - "realm_idx": 901, - "order": "The Order of Perfection", - "resources": ["Wood", "Obsidian", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.0471, 27.28] - }, - "properties": { - "name": "Kine Nepehen", - "realm_idx": 902, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.28, -9.6997] - }, - "properties": { - "name": "Muawia", - "realm_idx": 903, - "order": "The Order of Detection", - "resources": ["Diamonds", "Coal", "Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.1529, -40.42] - }, - "properties": { - "name": "Unopoposokek", - "realm_idx": 904, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.3852, 0.9909] - }, - "properties": { - "name": "S\u2018onhumpim", - "realm_idx": 905, - "order": "The Order of Reflection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.9471, 42.18] - }, - "properties": { - "name": "Gishmi Diki", - "realm_idx": 906, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.2371, -41.8099] - }, - "properties": { - "name": "I\u0161\u2018isu\u0161", - "realm_idx": 907, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Obsidian", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.0921, 26.6785] - }, - "properties": { - "name": "ne-Om", - "realm_idx": 908, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian", "Cold Iron", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.9471, -29.92] - }, - "properties": { - "name": "L\u00e1mpesm\u00e9mpes", - "realm_idx": 909, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.98, -42.2996] - }, - "properties": { - "name": "Suknum", - "realm_idx": 910, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.1801, 28.0004] - }, - "properties": { - "name": "Yu ge Zho", - "realm_idx": 911, - "order": "The Order of Rage", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.6529, 9.68] - }, - "properties": { - "name": "Einietlaul", - "realm_idx": 912, - "order": "The Order of Vitriol", - "resources": ["Wood", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.3527, 48.3801] - }, - "properties": { - "name": "Tidupiruzu", - "realm_idx": 913, - "order": "The Order of the Twins", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.08, 21.1003] - }, - "properties": { - "name": "Ingdan", - "realm_idx": 914, - "order": "The Order of Fury", - "resources": ["Wood", "Copper", "Silver", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.08, -5.1997] - }, - "properties": { - "name": "Pidipitschi", - "realm_idx": 915, - "order": "The Order of Reflection", - "resources": ["Dragonhide", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.7471, -10.72] - }, - "properties": { - "name": "\u0161m\u00e1m \u0160na", - "realm_idx": 916, - "order": "The Order of Power", - "resources": ["Coal", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.5801, 44.1004] - }, - "properties": { - "name": "Pudguz", - "realm_idx": 917, - "order": "The Order of Anger", - "resources": ["Gold", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.78, 33.7003] - }, - "properties": { - "name": "Utmempiksem", - "realm_idx": 918, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-113.18, -5.1997] - }, - "properties": { - "name": "um Wun", - "realm_idx": 919, - "order": "The Order of Detection", - "resources": ["Coal", "Hartwood", "Copper", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.0471, -33.82] - }, - "properties": { - "name": "Rin Gumlun", - "realm_idx": 920, - "order": "The Order of Giants", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.98, 35.5003] - }, - "properties": { - "name": "P\u00fa\u00f3lk\u00faulna\u00faw", - "realm_idx": 921, - "order": "The Order of Reflection", - "resources": ["Silver", "Coal", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.68, -30.2997] - }, - "properties": { - "name": "Tultultul", - "realm_idx": 922, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Coal", "Stone", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.5471, -43.62] - }, - "properties": { - "name": "Satstutsnit", - "realm_idx": 923, - "order": "The Order of Giants", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.1471, -49.32] - }, - "properties": { - "name": "Rongeknge", - "realm_idx": 924, - "order": "The Order of Giants", - "resources": ["Wood", "Silver", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.4002, -10.0247] - }, - "properties": { - "name": "Wupy\u00fakom", - "realm_idx": 925, - "order": "The Order of Perfection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.1801, -22.5996] - }, - "properties": { - "name": "N\u00ednk\u00e1m", - "realm_idx": 926, - "order": "The Order of the Twins", - "resources": ["Copper", "Wood", "Coal", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.6801, -54.0996] - }, - "properties": { - "name": "Pyasnyakpyit", - "realm_idx": 927, - "order": "The Order of the Twins", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.5471, 1.18] - }, - "properties": { - "name": "Tamman", - "realm_idx": 928, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.216, 54.6276] - }, - "properties": { - "name": "Nimnimsase", - "realm_idx": 929, - "order": "The Order of Fury", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.28, 8.0003] - }, - "properties": { - "name": "Raghi", - "realm_idx": 930, - "order": "The Order of Detection", - "resources": ["Copper", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.5471, 6.68] - }, - "properties": { - "name": "P\u00e2\u0161p\u00e2\u0161", - "realm_idx": 931, - "order": "The Order of Titans", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.9471, 34.28] - }, - "properties": { - "name": "Na ap \u2018ani", - "realm_idx": 932, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Hartwood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.9801, 3.9004] - }, - "properties": { - "name": "Mussus", - "realm_idx": 933, - "order": "The Order of Rage", - "resources": ["Stone", "Copper", "Coal", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.0801, 35.4004] - }, - "properties": { - "name": "Kunkunem", - "realm_idx": 934, - "order": "The Order of Anger", - "resources": ["Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.8801, 50.0004] - }, - "properties": { - "name": "Tschokkat", - "realm_idx": 935, - "order": "The Order of Anger", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.1471, 19.88] - }, - "properties": { - "name": "Lulielie", - "realm_idx": 936, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.6471, 25.98] - }, - "properties": { - "name": "nai Muijua", - "realm_idx": 937, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Silver", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.799, 45.8166] - }, - "properties": { - "name": "Liehlaplieh", - "realm_idx": 938, - "order": "The Order of Anger", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.8471, -4.92] - }, - "properties": { - "name": "Schuzschuz", - "realm_idx": 939, - "order": "The Order of Brilliance", - "resources": ["Ignium", "Coal", "Obsidian", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.0471, -14.72] - }, - "properties": { - "name": "R\u00edlt\u00e1lsh\u00eds\u00edm", - "realm_idx": 940, - "order": "The Order of Giants", - "resources": ["Coal", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.2471, 17.58] - }, - "properties": { - "name": "Mewete", - "realm_idx": 941, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.8471, -42.52] - }, - "properties": { - "name": "Swemsqew", - "realm_idx": 942, - "order": "The Order of Giants", - "resources": ["Obsidian", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.0471, -41.42] - }, - "properties": { - "name": "Tr\u00fap-Prek", - "realm_idx": 943, - "order": "The Order of Giants", - "resources": ["Wood", "Silver", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.2471, 28.48] - }, - "properties": { - "name": "Penkununo", - "realm_idx": 944, - "order": "The Order of Skill", - "resources": ["Ironwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.6724, 13.1465] - }, - "properties": { - "name": "Chauchau", - "realm_idx": 945, - "order": "The Order of Fury", - "resources": ["Copper", "Stone", "Wood", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.8471, 2.38] - }, - "properties": { - "name": "Kung\u2018ungkim", - "realm_idx": 946, - "order": "The Order of Power", - "resources": ["Copper", "Silver", "Cold Iron", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.1529, 22.48] - }, - "properties": { - "name": "Selklom", - "realm_idx": 947, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.9848, -17.035] - }, - "properties": { - "name": "Momupo\u2018", - "realm_idx": 948, - "order": "The Order of Perfection", - "resources": ["Coal", "Ironwood", "Wood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.0529, 4.98] - }, - "properties": { - "name": "Zuez\u00e2el", - "realm_idx": 949, - "order": "The Order of Titans", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.3801, 25.5004] - }, - "properties": { - "name": "Siyzhzhiyb", - "realm_idx": 950, - "order": "The Order of Anger", - "resources": ["Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.4471, 32.48] - }, - "properties": { - "name": "Pepomimi", - "realm_idx": 951, - "order": "The Order of Titans", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.08, -50.2997] - }, - "properties": { - "name": "Lumnumko", - "realm_idx": 952, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Copper", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-28.8529, 25.48] - }, - "properties": { - "name": "Sqesqoq R\u00e1r", - "realm_idx": 953, - "order": "The Order of Vitriol", - "resources": ["Coal", "Twilight Quartz", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.5801, 5.6004] - }, - "properties": { - "name": "Gonsnun", - "realm_idx": 954, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.3471, -11.92] - }, - "properties": { - "name": "Schuighei", - "realm_idx": 955, - "order": "The Order of Power", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.8753, 28.5004] - }, - "properties": { - "name": "S\u00f3as\u00f3a", - "realm_idx": 956, - "order": "The Order of Fury", - "resources": ["Copper", "Gold", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.9471, 3.68] - }, - "properties": { - "name": "Navnav", - "realm_idx": 957, - "order": "The Order of Titans", - "resources": ["Copper", "Wood", "Cold Iron", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.38, 33.0003] - }, - "properties": { - "name": "Stinpinmum", - "realm_idx": 958, - "order": "The Order of Fury", - "resources": ["Wood", "Cold Iron", "Coal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.9471, -5.22] - }, - "properties": { - "name": "P\u00fcp\u00fckekakah\u00fc", - "realm_idx": 959, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.9801, 27.9004] - }, - "properties": { - "name": "M\u00e1nnon", - "realm_idx": 960, - "order": "The Order of Rage", - "resources": ["Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.7471, -17.02] - }, - "properties": { - "name": "Mitlik", - "realm_idx": 961, - "order": "The Order of Giants", - "resources": ["Ruby", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.0529, 11.08] - }, - "properties": { - "name": "Tu\u0161toz", - "realm_idx": 962, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.6471, 18.18] - }, - "properties": { - "name": "Nitog", - "realm_idx": 963, - "order": "The Order of Brilliance", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.7961, -18.1819] - }, - "properties": { - "name": "Sk\u00e1tp\u00e1ttut", - "realm_idx": 964, - "order": "The Order of Perfection", - "resources": ["Sapphire", "Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.9529, 2.28] - }, - "properties": { - "name": "Tiqkawliw", - "realm_idx": 965, - "order": "The Order of Power", - "resources": ["Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.6801, 7.7004] - }, - "properties": { - "name": "Ralralargsil", - "realm_idx": 966, - "order": "The Order of Rage", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.3801, -28.3996] - }, - "properties": { - "name": "Wumpum", - "realm_idx": 967, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Obsidian", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.6529, -24.52] - }, - "properties": { - "name": "Guksgir", - "realm_idx": 968, - "order": "The Order of Power", - "resources": ["Copper", "Cold Iron", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.4471, -42.82] - }, - "properties": { - "name": "Haupkik", - "realm_idx": 969, - "order": "The Order of Giants", - "resources": ["Ironwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.4471, 37.58] - }, - "properties": { - "name": "Saursuez", - "realm_idx": 970, - "order": "The Order of Skill", - "resources": ["Stone", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.0538, 32.4926] - }, - "properties": { - "name": "Dezni", - "realm_idx": 971, - "order": "The Order of Reflection", - "resources": ["Coal", "Gold", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.3529, -23.82] - }, - "properties": { - "name": "Shesh-Sk\u00fcsh", - "realm_idx": 972, - "order": "The Order of Power", - "resources": ["Copper", "Silver", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.08, 26.4003] - }, - "properties": { - "name": "Hattit", - "realm_idx": 973, - "order": "The Order of Fury", - "resources": ["Cold Iron", "Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.88, 15.7003] - }, - "properties": { - "name": "Mallin", - "realm_idx": 974, - "order": "The Order of Detection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.0471, 1.58] - }, - "properties": { - "name": "Minbun\u010don", - "realm_idx": 975, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.08, 29.1003] - }, - "properties": { - "name": "Luastuitlui", - "realm_idx": 976, - "order": "The Order of Fury", - "resources": ["Obsidian", "Stone", "Wood", "Cold Iron", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [107.254, -6.8231] - }, - "properties": { - "name": "Tunusala", - "realm_idx": 977, - "order": "The Order of Perfection", - "resources": ["Alchemical Silver", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.8529, -11.72] - }, - "properties": { - "name": "Malatkinimpi", - "realm_idx": 978, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.3801, -23.6996] - }, - "properties": { - "name": "Gukuk\u00fachmom", - "realm_idx": 979, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.5471, 33.58] - }, - "properties": { - "name": "L\u00fall\u00fa\u2018", - "realm_idx": 980, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Deep Crystal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.9471, 7.88] - }, - "properties": { - "name": "Swewsduwszip", - "realm_idx": 981, - "order": "The Order of Brilliance", - "resources": ["Coal", "Obsidian", "Copper", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.9077, 32.7123] - }, - "properties": { - "name": "Ovtjumwurjeg", - "realm_idx": 982, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.5471, -37.72] - }, - "properties": { - "name": "Nokkoukkeok", - "realm_idx": 983, - "order": "The Order of Giants", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.1471, 50.48] - }, - "properties": { - "name": "Kaunkun", - "realm_idx": 984, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Ignium", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.28, 0.6003] - }, - "properties": { - "name": "Letulapemi", - "realm_idx": 985, - "order": "The Order of Detection", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.8471, 21.38] - }, - "properties": { - "name": "Ungungol", - "realm_idx": 986, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.2232, -17.8132] - }, - "properties": { - "name": "Utolilamas", - "realm_idx": 987, - "order": "The Order of Protection", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.8471, -13.445] - }, - "properties": { - "name": "Naunmin Paum", - "realm_idx": 988, - "order": "The Order of Perfection", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.8471, 17.48] - }, - "properties": { - "name": "Sybtybak", - "realm_idx": 989, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Copper", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.2471, 29.78] - }, - "properties": { - "name": "Yyutyy", - "realm_idx": 990, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.2471, 20.28] - }, - "properties": { - "name": "Biktod Ay", - "realm_idx": 991, - "order": "The Order of Brilliance", - "resources": ["Cold Iron", "Ruby", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.4801, 7.9004] - }, - "properties": { - "name": "Ibulg", - "realm_idx": 992, - "order": "The Order of Rage", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.1471, -10.82] - }, - "properties": { - "name": "\u00c1mpiima", - "realm_idx": 993, - "order": "The Order of Giants", - "resources": ["Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.5368, 28.2989] - }, - "properties": { - "name": "Titin\u00f3pik", - "realm_idx": 994, - "order": "The Order of Fury", - "resources": ["Copper", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.6529, 11.68] - }, - "properties": { - "name": "Ortilol", - "realm_idx": 995, - "order": "The Order of Vitriol", - "resources": ["Copper", "Wood", "Obsidian", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.655, -6.3153] - }, - "properties": { - "name": "Lossoissuot", - "realm_idx": 996, - "order": "The Order of Reflection", - "resources": ["Copper", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.2801, 46.8004] - }, - "properties": { - "name": "lulp-Wl\u2018il", - "realm_idx": 997, - "order": "The Order of Anger", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.0471, 12.08] - }, - "properties": { - "name": "Ha Hakiki\u2018eu", - "realm_idx": 998, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.1529, 41.08] - }, - "properties": { - "name": "Koxbibko", - "realm_idx": 999, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Deep Crystal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.5471, -9.32] - }, - "properties": { - "name": "Kumkum", - "realm_idx": 1000, - "order": "The Order of Giants", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.3529, 5.98] - }, - "properties": { - "name": "Mengu", - "realm_idx": 1001, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.8529, 28.28] - }, - "properties": { - "name": "Ni he O", - "realm_idx": 1002, - "order": "The Order of Vitriol", - "resources": ["Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.18, 15.1003] - }, - "properties": { - "name": "Limnil", - "realm_idx": 1003, - "order": "The Order of Detection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.7343, 30.0737] - }, - "properties": { - "name": "Uultup", - "realm_idx": 1004, - "order": "The Order of Reflection", - "resources": ["Copper", "Coal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.7553, 30.2372] - }, - "properties": { - "name": "Onen-dem-Men", - "realm_idx": 1005, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.48, 8.8003] - }, - "properties": { - "name": "Kamli", - "realm_idx": 1006, - "order": "The Order of Detection", - "resources": ["Silver", "Cold Iron", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.18, -13.2997] - }, - "properties": { - "name": "Mamfkippam", - "realm_idx": 1007, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.6471, 10.68] - }, - "properties": { - "name": "Neunnueneum", - "realm_idx": 1008, - "order": "The Order of Titans", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.1471, 18.08] - }, - "properties": { - "name": "Zunmlin", - "realm_idx": 1009, - "order": "The Order of Skill", - "resources": ["Ironwood", "Gold", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.2801, 7.4004] - }, - "properties": { - "name": "Ulipis", - "realm_idx": 1010, - "order": "The Order of Rage", - "resources": ["Stone", "Coal", "Mithral", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.7471, 25.28] - }, - "properties": { - "name": "Wusluka", - "realm_idx": 1011, - "order": "The Order of Titans", - "resources": ["Silver", "Gold", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.7262, 33.3237] - }, - "properties": { - "name": "Ta ji Rudjir", - "realm_idx": 1012, - "order": "The Order of Reflection", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.78, 24.8003] - }, - "properties": { - "name": "ma Shurmurm", - "realm_idx": 1013, - "order": "The Order of Fury", - "resources": ["Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.38, 32.9003] - }, - "properties": { - "name": "Tromnlenplen", - "realm_idx": 1014, - "order": "The Order of Fury", - "resources": ["Stone", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.1801, 5.6004] - }, - "properties": { - "name": "Siwttu", - "realm_idx": 1015, - "order": "The Order of Rage", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.2877, 31.2834] - }, - "properties": { - "name": "Egudid", - "realm_idx": 1016, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.6471, 20.08] - }, - "properties": { - "name": "Usu\u0161wu", - "realm_idx": 1017, - "order": "The Order of Skill", - "resources": ["Deep Crystal", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.2471, 19.58] - }, - "properties": { - "name": "Ghonghughin", - "realm_idx": 1018, - "order": "The Order of Enlightenment", - "resources": [ - "Deep Crystal", - "Coal", - "Wood", - "Ironwood", - "Diamonds", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.9474, -31.7822] - }, - "properties": { - "name": "Nr\u00e4krem", - "realm_idx": 1019, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.7471, -11.72] - }, - "properties": { - "name": "h\u00fcn-Nun", - "realm_idx": 1020, - "order": "The Order of Power", - "resources": ["Silver", "Hartwood", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.1813, 14.3802] - }, - "properties": { - "name": "Kheewtaamwee", - "realm_idx": 1021, - "order": "The Order of Fury", - "resources": [ - "Wood", - "Coal", - "Stone", - "Cold Iron", - "Copper", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-131.28, -5.8997] - }, - "properties": { - "name": "uk Shisshis", - "realm_idx": 1022, - "order": "The Order of Detection", - "resources": ["Wood", "Alchemical Silver", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.38, -44.2997] - }, - "properties": { - "name": "Jl\u00e9kk\u00edk", - "realm_idx": 1023, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [108.3848, -4.6716] - }, - "properties": { - "name": "Kosqrekmuk", - "realm_idx": 1024, - "order": "The Order of Perfection", - "resources": ["Stone", "Gold", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.1471, 20.88] - }, - "properties": { - "name": "Mejptojkujt", - "realm_idx": 1025, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.1317, 36.1049] - }, - "properties": { - "name": "Dautzhuzhbug", - "realm_idx": 1026, - "order": "The Order of Anger", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-127.98, -1.1997] - }, - "properties": { - "name": "Sinlimsuntin", - "realm_idx": 1027, - "order": "The Order of Detection", - "resources": [ - "Ruby", - "Stone", - "Copper", - "Ethereal Silica", - "Wood", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.9471, 16.78] - }, - "properties": { - "name": "Musmusnarruv", - "realm_idx": 1028, - "order": "The Order of Skill", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.2471, 12.28] - }, - "properties": { - "name": "Onon-Wonru", - "realm_idx": 1029, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.8471, 27.68] - }, - "properties": { - "name": "Odkeyt", - "realm_idx": 1030, - "order": "The Order of Titans", - "resources": ["Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.6801, 20.9004] - }, - "properties": { - "name": "Guoque", - "realm_idx": 1031, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.5555, -57.0056] - }, - "properties": { - "name": "Sqen nun San", - "realm_idx": 1032, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.48, -22.9997] - }, - "properties": { - "name": "Onesekules", - "realm_idx": 1033, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [69.5471, 17.98] - }, - "properties": { - "name": "Utametut", - "realm_idx": 1034, - "order": "The Order of Skill", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.38, 23.1003] - }, - "properties": { - "name": "Nwlswls", - "realm_idx": 1035, - "order": "The Order of Detection", - "resources": ["Gold", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.1471, -38.12] - }, - "properties": { - "name": "Nruptlottlom", - "realm_idx": 1036, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.0471, 26.88] - }, - "properties": { - "name": "Pun\u2018emhoup", - "realm_idx": 1037, - "order": "The Order of Skill", - "resources": ["Copper", "Ruby", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.38, 12.5003] - }, - "properties": { - "name": "Molslommol", - "realm_idx": 1038, - "order": "The Order of Detection", - "resources": ["Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.3471, -34.72] - }, - "properties": { - "name": "Ewiwiw", - "realm_idx": 1039, - "order": "The Order of Giants", - "resources": ["Obsidian", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.3625, 49.2281] - }, - "properties": { - "name": "Kasnazni\u017emi\u017e", - "realm_idx": 1040, - "order": "The Order of Anger", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.5801, 47.7004] - }, - "properties": { - "name": "L\u00e9wsorssay\u00edw", - "realm_idx": 1041, - "order": "The Order of Anger", - "resources": ["Cold Iron", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.1979, 10.88] - }, - "properties": { - "name": "Ongnemen", - "realm_idx": 1042, - "order": "The Order of Protection", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.9596, -27.0151] - }, - "properties": { - "name": "Wawanunu", - "realm_idx": 1043, - "order": "The Order of Protection", - "resources": ["Stone", "Gold", "Copper", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.4471, -12.52] - }, - "properties": { - "name": "Kope Pekek", - "realm_idx": 1044, - "order": "The Order of Giants", - "resources": ["Stone", "Adamantine", "Gold", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.08, -50.5996] - }, - "properties": { - "name": "\u017dia\u017ehustot", - "realm_idx": 1045, - "order": "The Order of the Fox", - "resources": ["Cold Iron", "Obsidian", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.7529, 39.68] - }, - "properties": { - "name": "Duldor", - "realm_idx": 1046, - "order": "The Order of Titans", - "resources": ["Copper", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.5471, 5.78] - }, - "properties": { - "name": "Khenmum", - "realm_idx": 1047, - "order": "The Order of Brilliance", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.7801, -27.7996] - }, - "properties": { - "name": "Fmonkin-Fmom", - "realm_idx": 1048, - "order": "The Order of the Twins", - "resources": ["Gold", "Silver", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.0471, 17.78] - }, - "properties": { - "name": "Solsi", - "realm_idx": 1049, - "order": "The Order of Skill", - "resources": ["Sapphire", "Obsidian", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.7516, -22.739] - }, - "properties": { - "name": "Nininin", - "realm_idx": 1050, - "order": "The Order of Protection", - "resources": ["Copper", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.78, -26.4997] - }, - "properties": { - "name": "Nepene Zimdo", - "realm_idx": 1051, - "order": "The Order of Reflection", - "resources": ["Copper", "Stone", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.8801, -54.1996] - }, - "properties": { - "name": "Sm\u00fad\u0161u", - "realm_idx": 1052, - "order": "The Order of the Twins", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.5471, -16.32] - }, - "properties": { - "name": "Ishii", - "realm_idx": 1053, - "order": "The Order of Power", - "resources": ["Obsidian", "Coal", "Ironwood", "Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.38, -6.1997] - }, - "properties": { - "name": "\u2018\u00e1ma\u2018w\u00e1", - "realm_idx": 1054, - "order": "The Order of Reflection", - "resources": ["Wood", "Ironwood", "Copper", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [13.9471, 23.88] - }, - "properties": { - "name": "Ghash", - "realm_idx": 1055, - "order": "The Order of Titans", - "resources": ["Ethereal Silica", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.4527, 50.6801] - }, - "properties": { - "name": "Kaptah", - "realm_idx": 1056, - "order": "The Order of the Twins", - "resources": ["Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.0471, 41.28] - }, - "properties": { - "name": "Krimsismrap", - "realm_idx": 1057, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.58, -34.8997] - }, - "properties": { - "name": "Nlimsonnon", - "realm_idx": 1058, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.0471, 42.48] - }, - "properties": { - "name": "Rihruth\u00e4t", - "realm_idx": 1059, - "order": "The Order of Titans", - "resources": ["Ironwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.9529, 22.88] - }, - "properties": { - "name": "Uknrup-Isap", - "realm_idx": 1060, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Wood", "Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.1471, 51.08] - }, - "properties": { - "name": "Kejna", - "realm_idx": 1061, - "order": "The Order of Enlightenment", - "resources": [ - "Obsidian", - "Silver", - "Twilight Quartz", - "Wood", - "Cold Iron", - "Diamonds", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [45.1471, -15.32] - }, - "properties": { - "name": "\u00c4lkolmk\u00eblk", - "realm_idx": 1062, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.18, 34.3003] - }, - "properties": { - "name": "Punnop", - "realm_idx": 1063, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.18, -1.3997] - }, - "properties": { - "name": "Nakkum", - "realm_idx": 1064, - "order": "The Order of Detection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-78.8, -35.7904] - }, - "properties": { - "name": "Engemtingem", - "realm_idx": 1065, - "order": "The Order of the Twins", - "resources": ["Wood", "Ignium", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.2801, 8.9004] - }, - "properties": { - "name": "hum-Kuhnunam", - "realm_idx": 1066, - "order": "The Order of Rage", - "resources": ["Wood", "Diamonds", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.9471, -43.72] - }, - "properties": { - "name": "T\u00eblteln\u00ebt", - "realm_idx": 1067, - "order": "The Order of Giants", - "resources": ["Obsidian", "Copper", "Silver", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.88, -27.8997] - }, - "properties": { - "name": "Urnhum", - "realm_idx": 1068, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.88, -3.1997] - }, - "properties": { - "name": "kut Nimam", - "realm_idx": 1069, - "order": "The Order of Detection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.2801, 40.5004] - }, - "properties": { - "name": "poa Moatkaon", - "realm_idx": 1070, - "order": "The Order of Anger", - "resources": ["Copper", "Coal", "Wood", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.1471, 10.28] - }, - "properties": { - "name": "Uzuzchaz", - "realm_idx": 1071, - "order": "The Order of Titans", - "resources": ["Coal", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.8471, 54.98] - }, - "properties": { - "name": "Tetsnonsgom", - "realm_idx": 1072, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.0631, -51.8705] - }, - "properties": { - "name": "Moehtuk", - "realm_idx": 1073, - "order": "The Order of the Twins", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.2471, -4.42] - }, - "properties": { - "name": "ik Okapkunuh", - "realm_idx": 1074, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.2801, -14.6996] - }, - "properties": { - "name": "Shichab", - "realm_idx": 1075, - "order": "The Order of Rage", - "resources": ["Ironwood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.58, 1.4003] - }, - "properties": { - "name": "Da\u0161 kluz De\u0161", - "realm_idx": 1076, - "order": "The Order of Detection", - "resources": ["Silver", "Stone", "Coal", "Copper", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.8471, 12.08] - }, - "properties": { - "name": "Mukardunwu", - "realm_idx": 1077, - "order": "The Order of Brilliance", - "resources": ["Hartwood", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-113.78, 27.8003] - }, - "properties": { - "name": "Titkuku", - "realm_idx": 1078, - "order": "The Order of Reflection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.7471, 43.28] - }, - "properties": { - "name": "\u00c1y\u00e1ylut\u00e1yuyu", - "realm_idx": 1079, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.0861, -18.0736] - }, - "properties": { - "name": "\u00c2wna\u2018\u00e2w\u00eal\u00e2w", - "realm_idx": 1080, - "order": "The Order of Protection", - "resources": ["Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.78, -2.8997] - }, - "properties": { - "name": "Slomlun", - "realm_idx": 1081, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Ignium", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.3529, 15.48] - }, - "properties": { - "name": "Tutumuzmo", - "realm_idx": 1082, - "order": "The Order of Vitriol", - "resources": ["Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.8641, 3.6292] - }, - "properties": { - "name": "Asukunis", - "realm_idx": 1083, - "order": "The Order of Protection", - "resources": ["Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.9471, -26.92] - }, - "properties": { - "name": "Usekus", - "realm_idx": 1084, - "order": "The Order of Giants", - "resources": ["Stone", "Silver", "Dragonhide"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.7471, -44.72] - }, - "properties": { - "name": "Mrulsaat Sus", - "realm_idx": 1085, - "order": "The Order of Giants", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [129.5996, 4.7294] - }, - "properties": { - "name": "Epetereruk", - "realm_idx": 1086, - "order": "The Order of Protection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.3801, 27.3004] - }, - "properties": { - "name": "N\u00f3n\u00e1u D\u00f3go", - "realm_idx": 1087, - "order": "The Order of Rage", - "resources": ["Cold Iron", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.5471, -49.72] - }, - "properties": { - "name": "Lasukuk", - "realm_idx": 1088, - "order": "The Order of Giants", - "resources": ["Wood", "Ironwood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.8471, 38.38] - }, - "properties": { - "name": "Ouwtuwnouw", - "realm_idx": 1089, - "order": "The Order of Skill", - "resources": ["Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.88, -8.3997] - }, - "properties": { - "name": "Nudpu", - "realm_idx": 1090, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.5161, 41.8175] - }, - "properties": { - "name": "Nultupmut", - "realm_idx": 1091, - "order": "The Order of Fury", - "resources": ["Coal", "Obsidian", "Hartwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.68, 31.9003] - }, - "properties": { - "name": "Hoppok-I", - "realm_idx": 1092, - "order": "The Order of Fury", - "resources": ["Copper", "Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.18, 9.1003] - }, - "properties": { - "name": "Oktisek", - "realm_idx": 1093, - "order": "The Order of Detection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.4956, -49.1348] - }, - "properties": { - "name": "Kuamiusaus", - "realm_idx": 1094, - "order": "The Order of the Fox", - "resources": ["Stone", "Coal", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.4262, 41.1082] - }, - "properties": { - "name": "Rirrirmiykud", - "realm_idx": 1095, - "order": "The Order of Anger", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.7471, -19.32] - }, - "properties": { - "name": "Pokneon", - "realm_idx": 1096, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.3801, 9.5004] - }, - "properties": { - "name": "Kip Ak", - "realm_idx": 1097, - "order": "The Order of Rage", - "resources": ["Obsidian", "Wood", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.3529, 9.98] - }, - "properties": { - "name": "Lunsulnlum", - "realm_idx": 1098, - "order": "The Order of Vitriol", - "resources": ["Stone", "Obsidian", "Wood", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.1529, 25.88] - }, - "properties": { - "name": "Ljingnjung", - "realm_idx": 1099, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.3529, 40.38] - }, - "properties": { - "name": "Urunut", - "realm_idx": 1100, - "order": "The Order of Titans", - "resources": ["Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.9471, 11.28] - }, - "properties": { - "name": "Riilinrik", - "realm_idx": 1101, - "order": "The Order of Titans", - "resources": ["Gold", "Coal", "Copper", "Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [128.6787, 4.5694] - }, - "properties": { - "name": "mom Pin", - "realm_idx": 1102, - "order": "The Order of Protection", - "resources": ["Wood", "Obsidian", "Copper", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.4471, 4.98] - }, - "properties": { - "name": "Esas\u00eds\u00e1sapok", - "realm_idx": 1103, - "order": "The Order of Titans", - "resources": [ - "Wood", - "Sapphire", - "Ironwood", - "Deep Crystal", - "Obsidian", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.5471, -3.12] - }, - "properties": { - "name": "Tighudequ", - "realm_idx": 1104, - "order": "The Order of Power", - "resources": ["Ironwood", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.48, -45.5996] - }, - "properties": { - "name": "Nalmik", - "realm_idx": 1105, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-41.0529, -8.12] - }, - "properties": { - "name": "Mapeku", - "realm_idx": 1106, - "order": "The Order of the Fox", - "resources": ["Copper", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.8801, 39.0004] - }, - "properties": { - "name": "Uhik\u00fak", - "realm_idx": 1107, - "order": "The Order of Anger", - "resources": ["Obsidian", "Wood", "Diamonds", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.2529, 14.68] - }, - "properties": { - "name": "M\u00ebomm\u00ebeso\u00e4", - "realm_idx": 1108, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.1471, 42.68] - }, - "properties": { - "name": "Ashb\u00e1s", - "realm_idx": 1109, - "order": "The Order of Skill", - "resources": ["Copper", "Stone", "Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.5516, 44.7391] - }, - "properties": { - "name": "Mikpiyk", - "realm_idx": 1110, - "order": "The Order of Anger", - "resources": ["Cold Iron", "Coal", "Hartwood", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.8529, 1.88] - }, - "properties": { - "name": "Selulz\u00e9lsch", - "realm_idx": 1111, - "order": "The Order of Vitriol", - "resources": ["Copper", "Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.6529, 16.18] - }, - "properties": { - "name": "Mlent\u00f3ntlim", - "realm_idx": 1112, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.0529, 6.38] - }, - "properties": { - "name": "Ani\u00e1iz In\u00edd", - "realm_idx": 1113, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.6471, -21.92] - }, - "properties": { - "name": "Smompeng", - "realm_idx": 1114, - "order": "The Order of Giants", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.2471, 11.38] - }, - "properties": { - "name": "Dioktuodzuel", - "realm_idx": 1115, - "order": "The Order of Titans", - "resources": ["Stone", "Hartwood", "Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.6801, 47.0004] - }, - "properties": { - "name": "Usl\u00eakoklesek", - "realm_idx": 1116, - "order": "The Order of Anger", - "resources": ["Stone", "Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.1813, -23.194] - }, - "properties": { - "name": "Lulon", - "realm_idx": 1117, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.18, -3.8997] - }, - "properties": { - "name": "Utomomunos", - "realm_idx": 1118, - "order": "The Order of Reflection", - "resources": ["Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.601, -17.2978] - }, - "properties": { - "name": "Bug Wizhdut", - "realm_idx": 1119, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.4471, -26.72] - }, - "properties": { - "name": "Rimlilrimtil", - "realm_idx": 1120, - "order": "The Order of Perfection", - "resources": ["Coal", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.3471, -12.92] - }, - "properties": { - "name": "Scheschghiol", - "realm_idx": 1121, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.7529, 11.78] - }, - "properties": { - "name": "L\u00e4l\u00efn", - "realm_idx": 1122, - "order": "The Order of Vitriol", - "resources": ["Copper", "Silver", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.08, -30.4997] - }, - "properties": { - "name": "Koujmop", - "realm_idx": 1123, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Ironwood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.6801, -35.2996] - }, - "properties": { - "name": "ni Rermidoo", - "realm_idx": 1124, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Coal", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.0471, 11.48] - }, - "properties": { - "name": "Etupet", - "realm_idx": 1125, - "order": "The Order of Brilliance", - "resources": ["Wood", "Obsidian", "Ignium", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.28, -34.7997] - }, - "properties": { - "name": "Nomsnom", - "realm_idx": 1126, - "order": "The Order of Detection", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.08, -36.0997] - }, - "properties": { - "name": "Ninrun", - "realm_idx": 1127, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.9484, 39.7689] - }, - "properties": { - "name": "Tjemtjemtwun", - "realm_idx": 1128, - "order": "The Order of Anger", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.7529, 44.78] - }, - "properties": { - "name": "Lwill\u00edl", - "realm_idx": 1129, - "order": "The Order of Fury", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.6529, 46.68] - }, - "properties": { - "name": "Tinti-Kekit", - "realm_idx": 1130, - "order": "The Order of Titans", - "resources": ["Stone", "Copper", "Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.3529, 27.68] - }, - "properties": { - "name": "Meme Mepoto", - "realm_idx": 1131, - "order": "The Order of Vitriol", - "resources": ["Wood", "Silver", "Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.8471, -8.02] - }, - "properties": { - "name": "Qingningiki", - "realm_idx": 1132, - "order": "The Order of Power", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [27.1471, -8.12] - }, - "properties": { - "name": "Oyuzozhan", - "realm_idx": 1133, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [128.8807, 4.7267] - }, - "properties": { - "name": "As\u00efkuk", - "realm_idx": 1134, - "order": "The Order of Protection", - "resources": ["Copper", "Wood", "Stone", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.9471, 31.58] - }, - "properties": { - "name": "Qwaamwjaam", - "realm_idx": 1135, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Ethereal Silica", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.8077, 32.4123] - }, - "properties": { - "name": "Kakkas", - "realm_idx": 1136, - "order": "The Order of Reflection", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.7471, 12.68] - }, - "properties": { - "name": "\u00c1 N\u00e1y", - "realm_idx": 1137, - "order": "The Order of Protection", - "resources": ["Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.4471, 54.08] - }, - "properties": { - "name": "nook Anun", - "realm_idx": 1138, - "order": "The Order of Enlightenment", - "resources": ["Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.68, -31.1997] - }, - "properties": { - "name": "Mulkunemul", - "realm_idx": 1139, - "order": "The Order of the Fox", - "resources": ["Coal", "Hartwood", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.4471, 28.38] - }, - "properties": { - "name": "Ilenunanilok", - "realm_idx": 1140, - "order": "The Order of Skill", - "resources": ["Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.5471, 19.68] - }, - "properties": { - "name": "Schbunsbum", - "realm_idx": 1141, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.3471, 25.78] - }, - "properties": { - "name": "Epgoklukklem", - "realm_idx": 1142, - "order": "The Order of Vitriol", - "resources": ["Wood", "Diamonds", "Silver", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.0801, -56.0996] - }, - "properties": { - "name": "\u0160rosju\u0161nusju", - "realm_idx": 1143, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.5471, 26.48] - }, - "properties": { - "name": "Umootukom Up", - "realm_idx": 1144, - "order": "The Order of Skill", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.2471, 41.68] - }, - "properties": { - "name": "Nernpwrn Orn", - "realm_idx": 1145, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.18, -33.0997] - }, - "properties": { - "name": "Oomin", - "realm_idx": 1146, - "order": "The Order of Reflection", - "resources": ["Adamantine", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.4471, 9.48] - }, - "properties": { - "name": "Giezhgauzh", - "realm_idx": 1147, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.0801, -43.6996] - }, - "properties": { - "name": "Tidig-Sgid", - "realm_idx": 1148, - "order": "The Order of the Twins", - "resources": ["Copper", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.1471, 42.88] - }, - "properties": { - "name": "Nimsaang", - "realm_idx": 1149, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.0801, 43.7004] - }, - "properties": { - "name": "Uznazh", - "realm_idx": 1150, - "order": "The Order of Anger", - "resources": ["Stone", "Obsidian", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.4529, 29.28] - }, - "properties": { - "name": "T\u00edpnim-H\u00e1mat", - "realm_idx": 1151, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.8471, -26.92] - }, - "properties": { - "name": "Ogosimod", - "realm_idx": 1152, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.0471, 56.88] - }, - "properties": { - "name": "Pempikum", - "realm_idx": 1153, - "order": "The Order of Titans", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.1471, 57.38] - }, - "properties": { - "name": "bet Zoyyaus", - "realm_idx": 1154, - "order": "The Order of Enlightenment", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.2471, 6.48] - }, - "properties": { - "name": "Sn\u00edspanspaki", - "realm_idx": 1155, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Gold", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.58, -15.9997] - }, - "properties": { - "name": "Apnutun", - "realm_idx": 1156, - "order": "The Order of Detection", - "resources": ["Gold", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.9529, -35.92] - }, - "properties": { - "name": "Laongaevkoi", - "realm_idx": 1157, - "order": "The Order of Power", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.5801, 7.7004] - }, - "properties": { - "name": "\u2018ulkol", - "realm_idx": 1158, - "order": "The Order of Rage", - "resources": ["Coal", "Obsidian", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.38, -4.6997] - }, - "properties": { - "name": "kuz Au\u00eda\u00e1", - "realm_idx": 1159, - "order": "The Order of Detection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.2801, -19.2996] - }, - "properties": { - "name": "Tuetaek", - "realm_idx": 1160, - "order": "The Order of the Twins", - "resources": ["Wood", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.1801, -15.3996] - }, - "properties": { - "name": "rus Zrum", - "realm_idx": 1161, - "order": "The Order of Rage", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.1801, -48.3996] - }, - "properties": { - "name": "Sgozsgozsg\u00ebz", - "realm_idx": 1162, - "order": "The Order of the Twins", - "resources": ["Sapphire", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.3707, 41.5487] - }, - "properties": { - "name": "Erngerq", - "realm_idx": 1163, - "order": "The Order of Fury", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.4801, 47.4004] - }, - "properties": { - "name": "Uqubaquq", - "realm_idx": 1164, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.2471, -13.42] - }, - "properties": { - "name": "K\u00e9slum", - "realm_idx": 1165, - "order": "The Order of Giants", - "resources": ["Diamonds", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.18, 29.0003] - }, - "properties": { - "name": "Gansonten", - "realm_idx": 1166, - "order": "The Order of Fury", - "resources": ["Wood", "Hartwood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.7529, 10.28] - }, - "properties": { - "name": "Ulakot", - "realm_idx": 1167, - "order": "The Order of Vitriol", - "resources": ["Stone", "Obsidian", "Adamantine", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.3097, 46.0135] - }, - "properties": { - "name": "Usilupus", - "realm_idx": 1168, - "order": "The Order of the Twins", - "resources": ["Coal", "Alchemical Silver", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.9471, 12.18] - }, - "properties": { - "name": "Ulbulbrus", - "realm_idx": 1169, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.7126, -22.94] - }, - "properties": { - "name": "Onekout", - "realm_idx": 1170, - "order": "The Order of Protection", - "resources": ["Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.5529, 28.18] - }, - "properties": { - "name": "Upumilas", - "realm_idx": 1171, - "order": "The Order of Vitriol", - "resources": ["Silver", "Coal", "Hartwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.0801, 45.3004] - }, - "properties": { - "name": "Mekukmuk", - "realm_idx": 1172, - "order": "The Order of Anger", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.18, 0.0003] - }, - "properties": { - "name": "Uz\u00e2ruzh", - "realm_idx": 1173, - "order": "The Order of Detection", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.9529, 32.08] - }, - "properties": { - "name": "Spamtun", - "realm_idx": 1174, - "order": "The Order of Vitriol", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.9471, -26.52] - }, - "properties": { - "name": "Mokmosuk", - "realm_idx": 1175, - "order": "The Order of Giants", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.0529, 41.58] - }, - "properties": { - "name": "Plaunchrien", - "realm_idx": 1176, - "order": "The Order of Titans", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.2371, 27.2422] - }, - "properties": { - "name": "Mipuk", - "realm_idx": 1177, - "order": "The Order of Reflection", - "resources": ["Hartwood", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.4801, 7.6004] - }, - "properties": { - "name": "Tlesmwotp\u00fap", - "realm_idx": 1178, - "order": "The Order of Rage", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.2801, -31.1996] - }, - "properties": { - "name": "Qangbwang", - "realm_idx": 1179, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Stone", "Ironwood", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.9801, 46.7004] - }, - "properties": { - "name": "Bulgal", - "realm_idx": 1180, - "order": "The Order of Anger", - "resources": ["Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.2772, -22.5107] - }, - "properties": { - "name": "Wum\u2018an\u2018in\u2018in", - "realm_idx": 1181, - "order": "The Order of Protection", - "resources": ["Stone", "Ruby", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [129.8974, 8.7048] - }, - "properties": { - "name": "Usnum", - "realm_idx": 1182, - "order": "The Order of Protection", - "resources": ["True Ice", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.18, -46.6996] - }, - "properties": { - "name": "Niz Ha\u017e", - "realm_idx": 1183, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Cold Iron", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.1471, 39.68] - }, - "properties": { - "name": "Slinim", - "realm_idx": 1184, - "order": "The Order of Skill", - "resources": ["Stone", "Wood", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.6471, -20.82] - }, - "properties": { - "name": "Skususskik", - "realm_idx": 1185, - "order": "The Order of Giants", - "resources": ["Copper", "Gold", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.1471, 34.08] - }, - "properties": { - "name": "Qibilubima", - "realm_idx": 1186, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Silver", "Copper", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.9471, 30.68] - }, - "properties": { - "name": "Trumnlun", - "realm_idx": 1187, - "order": "The Order of Skill", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.88, 38.4003] - }, - "properties": { - "name": "Tohhlaheh", - "realm_idx": 1188, - "order": "The Order of Reflection", - "resources": ["Silver", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.2342, -34.3115] - }, - "properties": { - "name": "Dihdi", - "realm_idx": 1189, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.6529, 2.08] - }, - "properties": { - "name": "Bamronbamron", - "realm_idx": 1190, - "order": "The Order of Power", - "resources": ["Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [14.4471, -13.02] - }, - "properties": { - "name": "mup Puotmoh", - "realm_idx": 1191, - "order": "The Order of Power", - "resources": ["Coal", "Cold Iron", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.8426, 3.7671] - }, - "properties": { - "name": "Gigisisi", - "realm_idx": 1192, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.3471, 47.28] - }, - "properties": { - "name": "Snekskepslok", - "realm_idx": 1193, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Coal", "Copper", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.2121, -17.0898] - }, - "properties": { - "name": "Jliwdliqmij", - "realm_idx": 1194, - "order": "The Order of Protection", - "resources": ["Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.78, 34.0003] - }, - "properties": { - "name": "M\u00fcningam", - "realm_idx": 1195, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.98, 24.1003] - }, - "properties": { - "name": "Zuninuni\u010da\u010du", - "realm_idx": 1196, - "order": "The Order of Detection", - "resources": ["Copper", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.0801, 11.8004] - }, - "properties": { - "name": "teh Muk", - "realm_idx": 1197, - "order": "The Order of Rage", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.2801, -38.3996] - }, - "properties": { - "name": "Hokiwow", - "realm_idx": 1198, - "order": "The Order of the Twins", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.8471, -16.82] - }, - "properties": { - "name": "Qomghen", - "realm_idx": 1199, - "order": "The Order of Power", - "resources": [ - "Ironwood", - "Wood", - "Silver", - "Obsidian", - "Coal", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.3397, -17.0648] - }, - "properties": { - "name": "Ponpon", - "realm_idx": 1200, - "order": "The Order of Perfection", - "resources": ["Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.08, -1.4997] - }, - "properties": { - "name": "Iimoin-ka-In", - "realm_idx": 1201, - "order": "The Order of Detection", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.0471, 43.68] - }, - "properties": { - "name": "Snwtstetstip", - "realm_idx": 1202, - "order": "The Order of Enlightenment", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.48, 32.1003] - }, - "properties": { - "name": "Kalsilm", - "realm_idx": 1203, - "order": "The Order of Fury", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.5471, 26.08] - }, - "properties": { - "name": "Krotsis", - "realm_idx": 1204, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.3139, 26.1542] - }, - "properties": { - "name": "Nuchnuch", - "realm_idx": 1205, - "order": "The Order of Fury", - "resources": ["Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.4152, -33.7664] - }, - "properties": { - "name": "Ir\u2018hirwn\u00fcr", - "realm_idx": 1206, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.9078, 4.9685] - }, - "properties": { - "name": "Otesonok", - "realm_idx": 1207, - "order": "The Order of Protection", - "resources": ["Diamonds", "Stone", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.9947, -21.3425] - }, - "properties": { - "name": "Chnifkil", - "realm_idx": 1208, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.2471, 2.98] - }, - "properties": { - "name": "Manykn\u00e2p", - "realm_idx": 1209, - "order": "The Order of Power", - "resources": [ - "Twilight Quartz", - "Wood", - "Obsidian", - "True Ice", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [10.0471, 14.28] - }, - "properties": { - "name": "Loiloi", - "realm_idx": 1210, - "order": "The Order of Titans", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.1284, 4.1994] - }, - "properties": { - "name": "Milmil", - "realm_idx": 1211, - "order": "The Order of Protection", - "resources": ["Wood", "Copper", "Coal", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.3471, 13.68] - }, - "properties": { - "name": "Opletet", - "realm_idx": 1212, - "order": "The Order of Skill", - "resources": ["Gold", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.2801, -26.4996] - }, - "properties": { - "name": "Suskuptus", - "realm_idx": 1213, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "Obsidian", "True Ice", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.6801, 34.9004] - }, - "properties": { - "name": "Pahkehpuh", - "realm_idx": 1214, - "order": "The Order of Anger", - "resources": ["Wood", "Diamonds", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.6801, 32.5004] - }, - "properties": { - "name": "Mlinmitmlus", - "realm_idx": 1215, - "order": "The Order of Anger", - "resources": ["Wood", "True Ice", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.5471, 48.28] - }, - "properties": { - "name": "Lelel\u00e9p-Ul", - "realm_idx": 1216, - "order": "The Order of Skill", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.9833, 36.7873] - }, - "properties": { - "name": "Elsullollol", - "realm_idx": 1217, - "order": "The Order of Fury", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.28, -12.0997] - }, - "properties": { - "name": "Snikpitnip", - "realm_idx": 1218, - "order": "The Order of Detection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [45.5471, -15.22] - }, - "properties": { - "name": "Tununutu", - "realm_idx": 1219, - "order": "The Order of Giants", - "resources": ["Wood", "Obsidian", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.2801, 6.7004] - }, - "properties": { - "name": "Kendlo\u010d", - "realm_idx": 1220, - "order": "The Order of Rage", - "resources": ["Silver", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.3471, 54.38] - }, - "properties": { - "name": "Duq\u00e1solbb\u00f3q", - "realm_idx": 1221, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Silver", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.28, 15.4003] - }, - "properties": { - "name": "Emangingiv", - "realm_idx": 1222, - "order": "The Order of Detection", - "resources": ["Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.2529, 22.58] - }, - "properties": { - "name": "Suleldolg", - "realm_idx": 1223, - "order": "The Order of Vitriol", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.2471, 5.28] - }, - "properties": { - "name": "Soupsou", - "realm_idx": 1224, - "order": "The Order of Protection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.7801, -28.0996] - }, - "properties": { - "name": "Haunklun", - "realm_idx": 1225, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Wood", "Stone", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.1471, 11.38] - }, - "properties": { - "name": "Ku\u2018upehu", - "realm_idx": 1226, - "order": "The Order of Brilliance", - "resources": ["Twilight Quartz", "Stone", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.9724, 13.2465] - }, - "properties": { - "name": "Konkimes", - "realm_idx": 1227, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Ironwood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.6627, 40.5775] - }, - "properties": { - "name": "Nomnom", - "realm_idx": 1228, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Hartwood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.58, -28.6997] - }, - "properties": { - "name": "D\u00e4d\u00e4gh\u00e4m", - "realm_idx": 1229, - "order": "The Order of Detection", - "resources": ["Ignium", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.8058, -1.2885] - }, - "properties": { - "name": "Zhozhnu", - "realm_idx": 1230, - "order": "The Order of Perfection", - "resources": ["Silver", "Cold Iron", "Coal", "Ruby", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.1802, -13.1404] - }, - "properties": { - "name": "Niehieyn", - "realm_idx": 1231, - "order": "The Order of Perfection", - "resources": ["Stone", "Coal", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.2016, -5.8992] - }, - "properties": { - "name": "Saninuk", - "realm_idx": 1232, - "order": "The Order of Rage", - "resources": ["Obsidian", "Coal", "Silver", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.7529, 30.58] - }, - "properties": { - "name": "Ululelbor", - "realm_idx": 1233, - "order": "The Order of Vitriol", - "resources": ["Coal", "Dragonhide"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.6179, -19.8709] - }, - "properties": { - "name": "Kon\u017eom", - "realm_idx": 1234, - "order": "The Order of Protection", - "resources": ["Deep Crystal", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.8986, 49.9002] - }, - "properties": { - "name": "Arpert", - "realm_idx": 1235, - "order": "The Order of Anger", - "resources": ["Coal", "Stone", "Silver", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.7471, 21.28] - }, - "properties": { - "name": "Momoshmosdu", - "realm_idx": 1236, - "order": "The Order of Enlightenment", - "resources": ["Ethereal Silica", "Wood", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.38, -7.3997] - }, - "properties": { - "name": "Kihek\u00fa", - "realm_idx": 1237, - "order": "The Order of Detection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.6801, 45.6004] - }, - "properties": { - "name": "Tilsok", - "realm_idx": 1238, - "order": "The Order of Anger", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.2529, 19.58] - }, - "properties": { - "name": "M\u00famengm\u00fang", - "realm_idx": 1239, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Coal", "Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.98, -1.0997] - }, - "properties": { - "name": "Teztuztez", - "realm_idx": 1240, - "order": "The Order of Detection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.5471, -27.22] - }, - "properties": { - "name": "Opsok", - "realm_idx": 1241, - "order": "The Order of Giants", - "resources": ["Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.28, -26.7997] - }, - "properties": { - "name": "Yaymagyay", - "realm_idx": 1242, - "order": "The Order of Reflection", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.3529, 8.58] - }, - "properties": { - "name": "Poknuktek", - "realm_idx": 1243, - "order": "The Order of Vitriol", - "resources": ["Alchemical Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.7801, -53.4996] - }, - "properties": { - "name": "Pa\u00e1on", - "realm_idx": 1244, - "order": "The Order of the Twins", - "resources": [ - "Deep Crystal", - "Stone", - "Coal", - "Obsidian", - "Ironwood", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.6801, 5.1004] - }, - "properties": { - "name": "Bankin mu Qu", - "realm_idx": 1245, - "order": "The Order of Rage", - "resources": ["Stone", "Coal", "Wood", "Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.9731, 10.2356] - }, - "properties": { - "name": "Oomnalm Ik", - "realm_idx": 1246, - "order": "The Order of Protection", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.4471, 9.38] - }, - "properties": { - "name": "Wehwew", - "realm_idx": 1247, - "order": "The Order of Brilliance", - "resources": ["Gold", "Wood", "Stone", "Obsidian", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.08, -45.0997] - }, - "properties": { - "name": "sgan-Syuzh", - "realm_idx": 1248, - "order": "The Order of the Fox", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.2941, -21.5333] - }, - "properties": { - "name": "Gigar", - "realm_idx": 1249, - "order": "The Order of Perfection", - "resources": ["Gold", "Coal", "Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.4471, -13.72] - }, - "properties": { - "name": "Gomzun", - "realm_idx": 1250, - "order": "The Order of Power", - "resources": ["Silver", "Wood", "Ethereal Silica", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.1529, -22.22] - }, - "properties": { - "name": "Karssir", - "realm_idx": 1251, - "order": "The Order of Power", - "resources": ["Stone", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.2529, 25.28] - }, - "properties": { - "name": "Pil\u00faltnil", - "realm_idx": 1252, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.7471, 5.28] - }, - "properties": { - "name": "Ilirsirn", - "realm_idx": 1253, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.2471, 40.98] - }, - "properties": { - "name": "Pinis", - "realm_idx": 1254, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.6471, -20.52] - }, - "properties": { - "name": "\u00c9obwe us \u00cd\u00e9", - "realm_idx": 1255, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-42.9927, 52.6557] - }, - "properties": { - "name": "Sosla", - "realm_idx": 1256, - "order": "The Order of Fury", - "resources": [ - "Diamonds", - "Obsidian", - "Wood", - "Cold Iron", - "Silver", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.8471, -34.72] - }, - "properties": { - "name": "N\u00e1p\u00e1tu", - "realm_idx": 1257, - "order": "The Order of Giants", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-77.1801, -34.6996] - }, - "properties": { - "name": "Esdek", - "realm_idx": 1258, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.8801, 5.1004] - }, - "properties": { - "name": "Stangspum", - "realm_idx": 1259, - "order": "The Order of Rage", - "resources": ["Ethereal Silica", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.4471, 31.98] - }, - "properties": { - "name": "Rauirieit", - "realm_idx": 1260, - "order": "The Order of Skill", - "resources": ["Stone", "Coal", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.5529, 49.08] - }, - "properties": { - "name": "\u00ebn Um\u00ebl", - "realm_idx": 1261, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.8801, -37.6996] - }, - "properties": { - "name": "Ketuk\u00edkkek\u00edk", - "realm_idx": 1262, - "order": "The Order of the Twins", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-126.48, -11.7997] - }, - "properties": { - "name": "Temid", - "realm_idx": 1263, - "order": "The Order of Detection", - "resources": ["Wood", "Coal", "Hartwood", "Cold Iron", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.7471, 14.98] - }, - "properties": { - "name": "ang Kungkang", - "realm_idx": 1264, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.3471, 30.68] - }, - "properties": { - "name": "Unumanumum", - "realm_idx": 1265, - "order": "The Order of Titans", - "resources": ["Ruby", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.2471, 7.18] - }, - "properties": { - "name": "Iydaqa", - "realm_idx": 1266, - "order": "The Order of Protection", - "resources": ["Hartwood", "Sapphire", "Silver", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.7471, 39.48] - }, - "properties": { - "name": "Shl\u00e2rkh\u00e2s", - "realm_idx": 1267, - "order": "The Order of Skill", - "resources": ["Wood", "Obsidian", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.6471, 32.48] - }, - "properties": { - "name": "kun-Nun", - "realm_idx": 1268, - "order": "The Order of Skill", - "resources": ["Copper", "Obsidian", "Wood", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.58, -48.4996] - }, - "properties": { - "name": "Glong\u0161rong", - "realm_idx": 1269, - "order": "The Order of the Fox", - "resources": ["Silver", "Coal", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.8471, 51.88] - }, - "properties": { - "name": "Quzhsezh", - "realm_idx": 1270, - "order": "The Order of Skill", - "resources": ["Copper", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.0801, 27.1004] - }, - "properties": { - "name": "Mesnes", - "realm_idx": 1271, - "order": "The Order of Rage", - "resources": ["Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.28, 8.4003] - }, - "properties": { - "name": "Ughud", - "realm_idx": 1272, - "order": "The Order of Detection", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.5801, -22.2996] - }, - "properties": { - "name": "ke Dosututu", - "realm_idx": 1273, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.0471, -44.32] - }, - "properties": { - "name": "Uak Lik", - "realm_idx": 1274, - "order": "The Order of Giants", - "resources": ["Wood", "Copper", "Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.08, -31.1997] - }, - "properties": { - "name": "R\u00e1sl\u00fas", - "realm_idx": 1275, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.1801, -40.9996] - }, - "properties": { - "name": "Kimkimkoong", - "realm_idx": 1276, - "order": "The Order of the Twins", - "resources": ["Copper", "Wood", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.5801, -8.4996] - }, - "properties": { - "name": "Ghrongghrem", - "realm_idx": 1277, - "order": "The Order of Rage", - "resources": ["Wood", "Obsidian", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.2471, 50.88] - }, - "properties": { - "name": "Ininol", - "realm_idx": 1278, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.6632, -24.8608] - }, - "properties": { - "name": "Kul\u2018i", - "realm_idx": 1279, - "order": "The Order of Perfection", - "resources": ["Coal", "Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.1471, -14.72] - }, - "properties": { - "name": "Sghilkikh", - "realm_idx": 1280, - "order": "The Order of Perfection", - "resources": ["Gold", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.3471, 4.48] - }, - "properties": { - "name": "Puktik", - "realm_idx": 1281, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.98, -5.5997] - }, - "properties": { - "name": "Mamnunkram", - "realm_idx": 1282, - "order": "The Order of Detection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.6153, 11.5653] - }, - "properties": { - "name": "Nlupnlonran", - "realm_idx": 1283, - "order": "The Order of Protection", - "resources": ["Gold", "Stone", "Sapphire", "Wood", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.615, -19.6233] - }, - "properties": { - "name": "Nemkr\u00fcm", - "realm_idx": 1284, - "order": "The Order of Perfection", - "resources": ["Copper", "Wood", "Ruby", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.1529, 19.68] - }, - "properties": { - "name": "Wlukglig", - "realm_idx": 1285, - "order": "The Order of Vitriol", - "resources": [ - "Obsidian", - "Wood", - "Copper", - "Cold Iron", - "Deep Crystal", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.6529, 25.18] - }, - "properties": { - "name": "O Onlomzheam", - "realm_idx": 1286, - "order": "The Order of Vitriol", - "resources": ["Copper", "Silver", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.3471, 38.98] - }, - "properties": { - "name": "Ngaavi", - "realm_idx": 1287, - "order": "The Order of Skill", - "resources": ["Wood", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.2471, 33.28] - }, - "properties": { - "name": "Mlitn\u00famit", - "realm_idx": 1288, - "order": "The Order of Skill", - "resources": ["Obsidian", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.6801, 39.8004] - }, - "properties": { - "name": "Krynkon", - "realm_idx": 1289, - "order": "The Order of Anger", - "resources": ["Stone", "Diamonds", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.5547, 44.4303] - }, - "properties": { - "name": "Tospaiknel", - "realm_idx": 1290, - "order": "The Order of Anger", - "resources": ["Ironwood", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.58, -57.4996] - }, - "properties": { - "name": "Numkennunnum", - "realm_idx": 1291, - "order": "The Order of the Fox", - "resources": ["Twilight Quartz", "Hartwood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.2471, 2.28] - }, - "properties": { - "name": "Nulktanul", - "realm_idx": 1292, - "order": "The Order of Brilliance", - "resources": ["Twilight Quartz", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.2801, -24.3996] - }, - "properties": { - "name": "Mutumonolu", - "realm_idx": 1293, - "order": "The Order of the Twins", - "resources": [ - "Wood", - "Copper", - "Obsidian", - "Sapphire", - "Silver", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-47.4529, 54.68] - }, - "properties": { - "name": "Ngesge", - "realm_idx": 1294, - "order": "The Order of Fury", - "resources": ["Silver", "Cold Iron", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.1471, -27.12] - }, - "properties": { - "name": "i So o Chush", - "realm_idx": 1295, - "order": "The Order of Giants", - "resources": ["Copper", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [13.2471, 35.58] - }, - "properties": { - "name": "Yikik", - "realm_idx": 1296, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.5232, 30.3572] - }, - "properties": { - "name": "Ieminchim", - "realm_idx": 1297, - "order": "The Order of Fury", - "resources": [ - "True Ice", - "Obsidian", - "Stone", - "Deep Crystal", - "Silver", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.4901, -38.4571] - }, - "properties": { - "name": "nlal Osen", - "realm_idx": 1298, - "order": "The Order of Reflection", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.7079, 12.1288] - }, - "properties": { - "name": "Lisnesnukmak", - "realm_idx": 1299, - "order": "The Order of Fury", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.2471, 1.88] - }, - "properties": { - "name": "Kl\u00edng", - "realm_idx": 1300, - "order": "The Order of Power", - "resources": ["Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.9529, 49.58] - }, - "properties": { - "name": "Mungking", - "realm_idx": 1301, - "order": "The Order of Vitriol", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.6854, -50.8036] - }, - "properties": { - "name": "Peut\u00faumloe", - "realm_idx": 1302, - "order": "The Order of the Fox", - "resources": ["Gold", "Wood", "Copper", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.8471, -1.32] - }, - "properties": { - "name": "Myt\u00e2nul", - "realm_idx": 1303, - "order": "The Order of Giants", - "resources": ["Obsidian", "Copper", "Ironwood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.9471, 15.98] - }, - "properties": { - "name": "Tininnimti", - "realm_idx": 1304, - "order": "The Order of Protection", - "resources": ["Copper", "Stone", "Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.9228, -22.655] - }, - "properties": { - "name": "Li Litos", - "realm_idx": 1305, - "order": "The Order of Protection", - "resources": ["Silver", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.2471, -12.12] - }, - "properties": { - "name": "Jiimkagi", - "realm_idx": 1306, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.4529, 37.98] - }, - "properties": { - "name": "Imsam", - "realm_idx": 1307, - "order": "The Order of Vitriol", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.1471, 3.88] - }, - "properties": { - "name": "Aboq-o-Akh", - "realm_idx": 1308, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.6529, 41.28] - }, - "properties": { - "name": "Sunsintusung", - "realm_idx": 1309, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.7529, 45.28] - }, - "properties": { - "name": "\u0160\u017eul\u0161rup", - "realm_idx": 1310, - "order": "The Order of Titans", - "resources": ["Ironwood", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.0471, 41.78] - }, - "properties": { - "name": "Goppe U", - "realm_idx": 1311, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Stone", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.0529, 10.28] - }, - "properties": { - "name": "Lumsums\u00e4m", - "realm_idx": 1312, - "order": "The Order of Vitriol", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.7801, 5.3004] - }, - "properties": { - "name": "Piniti Lutu", - "realm_idx": 1313, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.2801, 46.4004] - }, - "properties": { - "name": "Ed Oy", - "realm_idx": 1314, - "order": "The Order of Anger", - "resources": ["Cold Iron", "Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.3529, 5.88] - }, - "properties": { - "name": "Pom em Sen", - "realm_idx": 1315, - "order": "The Order of Vitriol", - "resources": ["Ruby", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.68, -61.1996] - }, - "properties": { - "name": "Abnus", - "realm_idx": 1316, - "order": "The Order of the Fox", - "resources": ["Alchemical Silver", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.8504, 31.9461] - }, - "properties": { - "name": "Linnusum", - "realm_idx": 1317, - "order": "The Order of Reflection", - "resources": ["Copper", "Silver", "Ironwood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.38, 34.5003] - }, - "properties": { - "name": "L\u00e4m\u00efnl\u00e4", - "realm_idx": 1318, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.4471, -26.52] - }, - "properties": { - "name": "Tumkushun", - "realm_idx": 1319, - "order": "The Order of Giants", - "resources": ["Silver", "Copper", "Coal", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-43.2529, 52.48] - }, - "properties": { - "name": "Luymi", - "realm_idx": 1320, - "order": "The Order of Fury", - "resources": ["True Ice", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.4471, 41.28] - }, - "properties": { - "name": "Kreknrak", - "realm_idx": 1321, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Silver", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.4801, 26.2004] - }, - "properties": { - "name": "Luksis", - "realm_idx": 1322, - "order": "The Order of Rage", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-127.78, -11.5997] - }, - "properties": { - "name": "Kulkepkep", - "realm_idx": 1323, - "order": "The Order of Detection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.3529, -18.52] - }, - "properties": { - "name": "Is\u00edt\u00e1ng", - "realm_idx": 1324, - "order": "The Order of Power", - "resources": ["Gold", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.3471, -0.12] - }, - "properties": { - "name": "Gushlikbek", - "realm_idx": 1325, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Copper", "Ironwood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.4801, -19.3996] - }, - "properties": { - "name": "Salonpitun", - "realm_idx": 1326, - "order": "The Order of the Twins", - "resources": ["Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.4471, 45.78] - }, - "properties": { - "name": "Naunmit", - "realm_idx": 1327, - "order": "The Order of Titans", - "resources": ["Coal", "Silver", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [101.4471, 49.68] - }, - "properties": { - "name": "Luu-a-Ukuuk", - "realm_idx": 1328, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.2471, 15.38] - }, - "properties": { - "name": "Dashu", - "realm_idx": 1329, - "order": "The Order of Protection", - "resources": ["Wood", "Copper", "Cold Iron", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.8094, 11.4064] - }, - "properties": { - "name": "Slumpaan", - "realm_idx": 1330, - "order": "The Order of Protection", - "resources": ["Copper", "Obsidian", "Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.4471, 2.08] - }, - "properties": { - "name": "Nitlitslil", - "realm_idx": 1331, - "order": "The Order of Brilliance", - "resources": ["Copper", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.38, -1.2997] - }, - "properties": { - "name": "Konningk\u00f4m", - "realm_idx": 1332, - "order": "The Order of Detection", - "resources": ["Stone", "Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.0474, 28.3118] - }, - "properties": { - "name": "Izhiziz", - "realm_idx": 1333, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.6031, 43.0758] - }, - "properties": { - "name": "Polilalilone", - "realm_idx": 1334, - "order": "The Order of Anger", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.2711, 42.2738] - }, - "properties": { - "name": "Muklaksus", - "realm_idx": 1335, - "order": "The Order of Anger", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.4471, 5.28] - }, - "properties": { - "name": "Hougpowh", - "realm_idx": 1336, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.3471, 19.28] - }, - "properties": { - "name": "Orsselkelm", - "realm_idx": 1337, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.68, -22.9997] - }, - "properties": { - "name": "Siq\u00fan\u00fari", - "realm_idx": 1338, - "order": "The Order of Detection", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.0471, 23.58] - }, - "properties": { - "name": "Sucha", - "realm_idx": 1339, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.3514, 10.1339] - }, - "properties": { - "name": "Unupug", - "realm_idx": 1340, - "order": "The Order of Protection", - "resources": ["Coal", "Gold", "Silver", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.2801, 7.5004] - }, - "properties": { - "name": "Suzhesaba", - "realm_idx": 1341, - "order": "The Order of Rage", - "resources": ["Coal", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.1801, -55.3996] - }, - "properties": { - "name": "Ulmnel", - "realm_idx": 1342, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.8471, 43.98] - }, - "properties": { - "name": "Saegeiggia", - "realm_idx": 1343, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.9801, 28.4004] - }, - "properties": { - "name": "Nu Lak", - "realm_idx": 1344, - "order": "The Order of Rage", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.3369, 4.403] - }, - "properties": { - "name": "Qeib et \u00c9q", - "realm_idx": 1345, - "order": "The Order of Protection", - "resources": ["Obsidian", "Wood", "Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.0471, -12.42] - }, - "properties": { - "name": "Ub\u00e9nzhizpa", - "realm_idx": 1346, - "order": "The Order of Power", - "resources": ["Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.9801, 37.7004] - }, - "properties": { - "name": "Umasupup", - "realm_idx": 1347, - "order": "The Order of Anger", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.8471, -16.62] - }, - "properties": { - "name": "Nukusok", - "realm_idx": 1348, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.7471, 10.48] - }, - "properties": { - "name": "Kan Nrinten", - "realm_idx": 1349, - "order": "The Order of Brilliance", - "resources": ["Stone", "Obsidian", "Ruby", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.9801, 49.3004] - }, - "properties": { - "name": "Po\u2018upi\u2018\u2018\u00e9h", - "realm_idx": 1350, - "order": "The Order of Anger", - "resources": ["Ruby", "Silver", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.6471, -12.72] - }, - "properties": { - "name": "\u00d3ngang", - "realm_idx": 1351, - "order": "The Order of Perfection", - "resources": ["Copper", "Wood", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.7529, 38.68] - }, - "properties": { - "name": "Lusisipa", - "realm_idx": 1352, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.38, -5.4997] - }, - "properties": { - "name": "Tuvngoverv", - "realm_idx": 1353, - "order": "The Order of Detection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.5471, -22.02] - }, - "properties": { - "name": "Q\u00f4obrorqwogh", - "realm_idx": 1354, - "order": "The Order of Giants", - "resources": ["Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.0801, 22.8004] - }, - "properties": { - "name": "Enenplenut", - "realm_idx": 1355, - "order": "The Order of Rage", - "resources": ["Wood", "Obsidian", "Copper", "Adamantine", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.8529, 21.88] - }, - "properties": { - "name": "Shnim", - "realm_idx": 1356, - "order": "The Order of Vitriol", - "resources": ["Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.48, 15.0003] - }, - "properties": { - "name": "L\u00fawwi\u2018wri\u2018", - "realm_idx": 1357, - "order": "The Order of Detection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.2112, -9.8388] - }, - "properties": { - "name": "Obobelokak", - "realm_idx": 1358, - "order": "The Order of Perfection", - "resources": ["Wood", "Silver", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-44.1529, 11.38] - }, - "properties": { - "name": "L\u00fassissis", - "realm_idx": 1359, - "order": "The Order of Vitriol", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.8471, -18.32] - }, - "properties": { - "name": "Honkonhin", - "realm_idx": 1360, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.8831, 2.6066] - }, - "properties": { - "name": "Limimlunin", - "realm_idx": 1361, - "order": "The Order of Reflection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.8471, 13.28] - }, - "properties": { - "name": "Miln\u00efpnok", - "realm_idx": 1362, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.6471, 31.68] - }, - "properties": { - "name": "Qimurizqatas", - "realm_idx": 1363, - "order": "The Order of Skill", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.3471, 14.88] - }, - "properties": { - "name": "Nob Oryun", - "realm_idx": 1364, - "order": "The Order of Brilliance", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.98, 2.4003] - }, - "properties": { - "name": "Simlik", - "realm_idx": 1365, - "order": "The Order of Detection", - "resources": ["Copper", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.68, 10.6003] - }, - "properties": { - "name": "Toltelkte", - "realm_idx": 1366, - "order": "The Order of Detection", - "resources": ["Wood", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.7801, 46.1004] - }, - "properties": { - "name": "Tukwub", - "realm_idx": 1367, - "order": "The Order of Anger", - "resources": ["Wood", "Silver", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.78, -7.6997] - }, - "properties": { - "name": "Gewr Gow", - "realm_idx": 1368, - "order": "The Order of Detection", - "resources": ["Sapphire", "Ignium", "Obsidian", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-28.4529, -1.62] - }, - "properties": { - "name": "Unusungnum", - "realm_idx": 1369, - "order": "The Order of Vitriol", - "resources": ["Copper", "Coal", "Hartwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.4529, -7.32] - }, - "properties": { - "name": "Chikmras", - "realm_idx": 1370, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Hartwood", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.38, -49.4997] - }, - "properties": { - "name": "\u00c4shw\u00efbg\u00ebdyod", - "realm_idx": 1371, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.4471, 34.88] - }, - "properties": { - "name": "\u00c9rm\u00e9r", - "realm_idx": 1372, - "order": "The Order of Skill", - "resources": ["Stone", "Copper", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.0161, -49.866] - }, - "properties": { - "name": "Kakkem", - "realm_idx": 1373, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.4529, 56.88] - }, - "properties": { - "name": "Kokkidkash", - "realm_idx": 1374, - "order": "The Order of Fury", - "resources": ["Ironwood", "Wood", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.7887, 28.8484] - }, - "properties": { - "name": "kok Sokshtok", - "realm_idx": 1375, - "order": "The Order of Anger", - "resources": ["Stone", "Obsidian", "Gold", "Deep Crystal", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.6529, 26.88] - }, - "properties": { - "name": "Eseezki", - "realm_idx": 1376, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.3471, 6.08] - }, - "properties": { - "name": "Resluplellel", - "realm_idx": 1377, - "order": "The Order of Brilliance", - "resources": ["Coal", "Stone", "Obsidian", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.7517, 14.4999] - }, - "properties": { - "name": "Ngusingiquru", - "realm_idx": 1378, - "order": "The Order of Protection", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.1529, 37.38] - }, - "properties": { - "name": "Noilkoa", - "realm_idx": 1379, - "order": "The Order of Titans", - "resources": ["Stone", "Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.3529, -10.62] - }, - "properties": { - "name": "Omtenpen", - "realm_idx": 1380, - "order": "The Order of the Fox", - "resources": ["Wood", "Ironwood", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.6471, 16.78] - }, - "properties": { - "name": "Kekspostos", - "realm_idx": 1381, - "order": "The Order of Skill", - "resources": ["Stone", "Ethereal Silica", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.3471, 48.28] - }, - "properties": { - "name": "Reghnebu", - "realm_idx": 1382, - "order": "The Order of Skill", - "resources": ["Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.7386, -22.8756] - }, - "properties": { - "name": "il Epep", - "realm_idx": 1383, - "order": "The Order of Protection", - "resources": ["Coal", "Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.0529, 23.18] - }, - "properties": { - "name": "Ekamo", - "realm_idx": 1384, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.48, -6.7997] - }, - "properties": { - "name": "Itetmul Mot", - "realm_idx": 1385, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.4471, 51.48] - }, - "properties": { - "name": "Liulaunai", - "realm_idx": 1386, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.7801, 35.3004] - }, - "properties": { - "name": "S\u00eds\u00e9-Kokun", - "realm_idx": 1387, - "order": "The Order of Anger", - "resources": ["Wood", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.5471, 50.88] - }, - "properties": { - "name": "K\u00e4mhow", - "realm_idx": 1388, - "order": "The Order of Titans", - "resources": ["Obsidian", "Ironwood", "Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.3471, -10.12] - }, - "properties": { - "name": "Ul\u00e2qosusul", - "realm_idx": 1389, - "order": "The Order of Giants", - "resources": ["Diamonds", "Stone", "Wood", "Copper", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.7801, 46.6004] - }, - "properties": { - "name": "Ivatus", - "realm_idx": 1390, - "order": "The Order of Anger", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.7471, 38.48] - }, - "properties": { - "name": "Dazhtschuz", - "realm_idx": 1391, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Stone", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.0471, 43.58] - }, - "properties": { - "name": "Skatkit", - "realm_idx": 1392, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Obsidian", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.8801, 40.3004] - }, - "properties": { - "name": "\u00d6ng\u00e4k\u00f6k\u00e4ng", - "realm_idx": 1393, - "order": "The Order of Anger", - "resources": ["True Ice", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.5539, 26.4672] - }, - "properties": { - "name": "Mosmos", - "realm_idx": 1394, - "order": "The Order of Reflection", - "resources": ["Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.8471, -14.02] - }, - "properties": { - "name": "Quremlogngov", - "realm_idx": 1395, - "order": "The Order of Power", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.0529, 14.48] - }, - "properties": { - "name": "Komeho", - "realm_idx": 1396, - "order": "The Order of Vitriol", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.0471, -35.92] - }, - "properties": { - "name": "Sinzhismou", - "realm_idx": 1397, - "order": "The Order of Giants", - "resources": ["Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [128.2969, 9.3324] - }, - "properties": { - "name": "Sedechime", - "realm_idx": 1398, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.0344, 28.2199] - }, - "properties": { - "name": "Hiwwik", - "realm_idx": 1399, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Ignium", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.0293, 41.7488] - }, - "properties": { - "name": "Shk\u00fcmshk\u00fcm", - "realm_idx": 1400, - "order": "The Order of Anger", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.9471, 5.98] - }, - "properties": { - "name": "dool Urn", - "realm_idx": 1401, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Copper", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.3471, 33.88] - }, - "properties": { - "name": "Zowuzu", - "realm_idx": 1402, - "order": "The Order of Skill", - "resources": ["Hartwood", "Wood", "Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.8471, 22.78] - }, - "properties": { - "name": "Sronrinchen", - "realm_idx": 1403, - "order": "The Order of Skill", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [128.2632, 9.562] - }, - "properties": { - "name": "Slisnlik", - "realm_idx": 1404, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.6471, 52.08] - }, - "properties": { - "name": "Saynuyska", - "realm_idx": 1405, - "order": "The Order of Enlightenment", - "resources": ["Hartwood", "Stone", "Cold Iron", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.1685, 40.759] - }, - "properties": { - "name": "ku Kubtur", - "realm_idx": 1406, - "order": "The Order of Fury", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.2956, -49.4348] - }, - "properties": { - "name": "Oullow", - "realm_idx": 1407, - "order": "The Order of the Fox", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.2471, -16.32] - }, - "properties": { - "name": "I\u2018ewi\u2018ew", - "realm_idx": 1408, - "order": "The Order of Power", - "resources": ["Obsidian", "Stone", "Cold Iron", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.6529, -18.02] - }, - "properties": { - "name": "\u00c1lm\u00edjlpuwmul", - "realm_idx": 1409, - "order": "The Order of Power", - "resources": ["Obsidian", "Coal", "Stone", "Diamonds", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.58, 28.6003] - }, - "properties": { - "name": "Sn\u00e4lskusn\u00e4", - "realm_idx": 1410, - "order": "The Order of Reflection", - "resources": ["Stone", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.7471, 31.68] - }, - "properties": { - "name": "M\u00f4epmuim", - "realm_idx": 1411, - "order": "The Order of Enlightenment", - "resources": ["Sapphire", "Copper", "Wood", "Obsidian", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.8516, 44.5391] - }, - "properties": { - "name": "Ukuyahuy", - "realm_idx": 1412, - "order": "The Order of Anger", - "resources": ["Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.1471, 3.78] - }, - "properties": { - "name": "Ulngvul", - "realm_idx": 1413, - "order": "The Order of Titans", - "resources": ["Copper", "Wood", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.48, 9.4003] - }, - "properties": { - "name": "Enan-Open\u00efp", - "realm_idx": 1414, - "order": "The Order of Detection", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.6007, 52.5811] - }, - "properties": { - "name": "Uyey muw Luw", - "realm_idx": 1415, - "order": "The Order of Fury", - "resources": ["Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.08, -47.9997] - }, - "properties": { - "name": "Kautstatlaum", - "realm_idx": 1416, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood", "Coal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.9356, -54.1816] - }, - "properties": { - "name": "ul-Utuk", - "realm_idx": 1417, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.6471, -15.22] - }, - "properties": { - "name": "\u00edj Akusak\u00e1n", - "realm_idx": 1418, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.1471, 37.68] - }, - "properties": { - "name": "Iguubezun", - "realm_idx": 1419, - "order": "The Order of Skill", - "resources": ["Wood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.7529, 9.98] - }, - "properties": { - "name": "Spektusne", - "realm_idx": 1420, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.98, -30.5997] - }, - "properties": { - "name": "Mutek", - "realm_idx": 1421, - "order": "The Order of Detection", - "resources": ["Hartwood", "Wood", "Stone", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.1317, 36.3049] - }, - "properties": { - "name": "Tuttutk\u00fat", - "realm_idx": 1422, - "order": "The Order of Anger", - "resources": ["Silver", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.9471, 28.68] - }, - "properties": { - "name": "Nunuma", - "realm_idx": 1423, - "order": "The Order of Skill", - "resources": [ - "Diamonds", - "Wood", - "Ironwood", - "Coal", - "Stone", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.3471, 46.38] - }, - "properties": { - "name": "Lism\u00e1ksist\u00e9", - "realm_idx": 1424, - "order": "The Order of Titans", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.28, -59.9996] - }, - "properties": { - "name": "Ch\u00famch\u00fam", - "realm_idx": 1425, - "order": "The Order of the Fox", - "resources": ["Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.7471, -36.52] - }, - "properties": { - "name": "Nelkupspop", - "realm_idx": 1426, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Ironwood", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.2869, -25.5337] - }, - "properties": { - "name": "Bazbe Yesh", - "realm_idx": 1427, - "order": "The Order of Protection", - "resources": ["Wood", "Silver", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.8471, -23.22] - }, - "properties": { - "name": "Mamm\u00edkkupkup", - "realm_idx": 1428, - "order": "The Order of Giants", - "resources": ["Coal", "Copper", "Ruby", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.7229, -47.6904] - }, - "properties": { - "name": "Orilusil", - "realm_idx": 1429, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.5801, -14.6996] - }, - "properties": { - "name": "Upatit", - "realm_idx": 1430, - "order": "The Order of Rage", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.08, 32.6003] - }, - "properties": { - "name": "Kostiktikkik", - "realm_idx": 1431, - "order": "The Order of Fury", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.9471, 12.08] - }, - "properties": { - "name": "Listit Pit", - "realm_idx": 1432, - "order": "The Order of Protection", - "resources": [ - "Obsidian", - "Cold Iron", - "Coal", - "Hartwood", - "Wood", - "Ignium" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.2471, -8.42] - }, - "properties": { - "name": "Hlu\u2018nri\u2018\u2018ro\u2018", - "realm_idx": 1433, - "order": "The Order of Perfection", - "resources": ["Stone", "Silver", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.8471, -33.52] - }, - "properties": { - "name": "kep-Nithim", - "realm_idx": 1434, - "order": "The Order of Giants", - "resources": ["Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.98, -8.0997] - }, - "properties": { - "name": "Kusskuskup", - "realm_idx": 1435, - "order": "The Order of Detection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.0691, 4.1003] - }, - "properties": { - "name": "Soalpaiklal", - "realm_idx": 1436, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.6191, -18.4504] - }, - "properties": { - "name": "Sunsaj", - "realm_idx": 1437, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.0801, 7.5004] - }, - "properties": { - "name": "Nurkamtij", - "realm_idx": 1438, - "order": "The Order of Rage", - "resources": ["Stone", "Obsidian", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.8801, 26.8004] - }, - "properties": { - "name": "Saitiuw-Muar", - "realm_idx": 1439, - "order": "The Order of Rage", - "resources": [ - "Obsidian", - "Ironwood", - "Copper", - "Ethereal Silica", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.5681, -6.0278] - }, - "properties": { - "name": "M\u00fapasima", - "realm_idx": 1440, - "order": "The Order of Reflection", - "resources": ["Coal", "Obsidian", "Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.0471, 10.48] - }, - "properties": { - "name": "K\u00e4wnch\u00efl", - "realm_idx": 1441, - "order": "The Order of Titans", - "resources": ["Stone", "Ironwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.6471, 0.38] - }, - "properties": { - "name": "Sonsi", - "realm_idx": 1442, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.1527, 48.6801] - }, - "properties": { - "name": "Dahdah", - "realm_idx": 1443, - "order": "The Order of the Twins", - "resources": ["Gold", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.0801, -5.1996] - }, - "properties": { - "name": "nek Nuknuk", - "realm_idx": 1444, - "order": "The Order of Rage", - "resources": ["Gold", "Wood", "Stone", "Coal", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.3801, 3.0004] - }, - "properties": { - "name": "Si-mok-Mi", - "realm_idx": 1445, - "order": "The Order of Rage", - "resources": ["Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.6999, 35.6003] - }, - "properties": { - "name": "Rintom", - "realm_idx": 1446, - "order": "The Order of Fury", - "resources": ["Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.0471, 1.48] - }, - "properties": { - "name": "Ulhkin", - "realm_idx": 1447, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.5471, -19.12] - }, - "properties": { - "name": "\u0160aiq\u0161auw", - "realm_idx": 1448, - "order": "The Order of Giants", - "resources": [ - "Coal", - "Obsidian", - "Wood", - "Sapphire", - "Copper", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.9529, -11.12] - }, - "properties": { - "name": "Malnsilsa", - "realm_idx": 1449, - "order": "The Order of Power", - "resources": ["Obsidian", "Wood", "Coal", "Dragonhide"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.8471, -35.52] - }, - "properties": { - "name": "si Nininu", - "realm_idx": 1450, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.9605, -51.9036] - }, - "properties": { - "name": "Peptokenil", - "realm_idx": 1451, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.8971, -22.5223] - }, - "properties": { - "name": "Zhuimiaptou", - "realm_idx": 1452, - "order": "The Order of Protection", - "resources": ["Coal", "Wood", "Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.0471, 35.88] - }, - "properties": { - "name": "Luznusmiz", - "realm_idx": 1453, - "order": "The Order of Titans", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.3801, -52.9996] - }, - "properties": { - "name": "Nuhuna", - "realm_idx": 1454, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Coal", "Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.9529, -30.12] - }, - "properties": { - "name": "Zu\u00faso\u00f3teo", - "realm_idx": 1455, - "order": "The Order of Power", - "resources": ["Wood", "Copper", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.48, 0.2003] - }, - "properties": { - "name": "Mospulsli", - "realm_idx": 1456, - "order": "The Order of Detection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.519, -11.8263] - }, - "properties": { - "name": "Ewari\u0161", - "realm_idx": 1457, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Coal", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.6471, 46.68] - }, - "properties": { - "name": "Luspos", - "realm_idx": 1458, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.8205, -12.532] - }, - "properties": { - "name": "Tatpuinkieh", - "realm_idx": 1459, - "order": "The Order of Rage", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.7471, -34.52] - }, - "properties": { - "name": "Kauluk", - "realm_idx": 1460, - "order": "The Order of Power", - "resources": ["Silver", "Ignium", "Wood", "Sapphire", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.2471, -39.32] - }, - "properties": { - "name": "T\u00e1h\u00e9tt\u00e9to", - "realm_idx": 1461, - "order": "The Order of Giants", - "resources": ["Wood", "Obsidian", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.78, 16.0003] - }, - "properties": { - "name": "Sgenswon", - "realm_idx": 1462, - "order": "The Order of Detection", - "resources": ["Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.3471, 10.58] - }, - "properties": { - "name": "Penpistimpis", - "realm_idx": 1463, - "order": "The Order of Titans", - "resources": ["Copper", "Ironwood", "Wood", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.6471, -11.52] - }, - "properties": { - "name": "Tolnoltut", - "realm_idx": 1464, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.6529, -25.52] - }, - "properties": { - "name": "Nrenmrenbrun", - "realm_idx": 1465, - "order": "The Order of Power", - "resources": ["Copper", "Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.8471, 8.88] - }, - "properties": { - "name": "Irlon", - "realm_idx": 1466, - "order": "The Order of Protection", - "resources": ["Diamonds", "Silver", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.5471, -46.02] - }, - "properties": { - "name": "Tajt-Ur", - "realm_idx": 1467, - "order": "The Order of Giants", - "resources": ["Wood", "Twilight Quartz", "Copper", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [69.9471, 17.88] - }, - "properties": { - "name": "Puunla", - "realm_idx": 1468, - "order": "The Order of Skill", - "resources": ["Gold", "Coal", "Wood", "Obsidian", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.9424, -10.8825] - }, - "properties": { - "name": "Ekihitimon", - "realm_idx": 1469, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.2471, -35.82] - }, - "properties": { - "name": "lu Zhurulasu", - "realm_idx": 1470, - "order": "The Order of Giants", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.2471, 27.78] - }, - "properties": { - "name": "Uupaloil", - "realm_idx": 1471, - "order": "The Order of Skill", - "resources": ["Wood", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.08, 27.3003] - }, - "properties": { - "name": "Kuosaupmao", - "realm_idx": 1472, - "order": "The Order of Fury", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.7833, 26.8183] - }, - "properties": { - "name": "Godash\u00e4da", - "realm_idx": 1473, - "order": "The Order of Reflection", - "resources": ["Stone", "Cold Iron", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.8564, -17.696] - }, - "properties": { - "name": "Tunpem", - "realm_idx": 1474, - "order": "The Order of Protection", - "resources": ["Copper", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.7246, 42.3281] - }, - "properties": { - "name": "Huahuapiup", - "realm_idx": 1475, - "order": "The Order of Anger", - "resources": ["Coal", "Obsidian", "Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.9801, 45.2004] - }, - "properties": { - "name": "Tabbeabsur", - "realm_idx": 1476, - "order": "The Order of Anger", - "resources": ["Wood", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.6801, 29.0004] - }, - "properties": { - "name": "Siozheim", - "realm_idx": 1477, - "order": "The Order of Rage", - "resources": ["True Ice", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.8801, 10.2004] - }, - "properties": { - "name": "Soroq", - "realm_idx": 1478, - "order": "The Order of Rage", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.38, 38.6003] - }, - "properties": { - "name": "Ilhil", - "realm_idx": 1479, - "order": "The Order of Reflection", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.5527, 51.3801] - }, - "properties": { - "name": "Lak\u00eas\u00eas", - "realm_idx": 1480, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.7801, -56.9996] - }, - "properties": { - "name": "Nga Je", - "realm_idx": 1481, - "order": "The Order of the Twins", - "resources": ["Stone", "Copper", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.9529, 42.58] - }, - "properties": { - "name": "Olpoknun", - "realm_idx": 1482, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.3621, 9.625] - }, - "properties": { - "name": "Aise-\u00fas-Ii", - "realm_idx": 1483, - "order": "The Order of Protection", - "resources": ["Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.8723, 43.3703] - }, - "properties": { - "name": "Gikgikzazh", - "realm_idx": 1484, - "order": "The Order of Anger", - "resources": [ - "Deep Crystal", - "Hartwood", - "Obsidian", - "Stone", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.1031, 48.5383] - }, - "properties": { - "name": "Ninun\u0161in", - "realm_idx": 1485, - "order": "The Order of Anger", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.7471, 21.48] - }, - "properties": { - "name": "Nahnwat", - "realm_idx": 1486, - "order": "The Order of Brilliance", - "resources": ["Copper", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.0529, -28.92] - }, - "properties": { - "name": "liz-Axaxax", - "realm_idx": 1487, - "order": "The Order of Power", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.0471, 10.38] - }, - "properties": { - "name": "Shanshan", - "realm_idx": 1488, - "order": "The Order of Protection", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.2471, 17.78] - }, - "properties": { - "name": "Yaukyriey", - "realm_idx": 1489, - "order": "The Order of Skill", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.58, 26.8003] - }, - "properties": { - "name": "Eimemielemah", - "realm_idx": 1490, - "order": "The Order of Fury", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [130.3211, 8.9117] - }, - "properties": { - "name": "Mimpon", - "realm_idx": 1491, - "order": "The Order of Protection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.18, -51.0996] - }, - "properties": { - "name": "Aza\u010dubej", - "realm_idx": 1492, - "order": "The Order of the Fox", - "resources": ["Silver", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.0471, 20.08] - }, - "properties": { - "name": "U e Uun\u00fc", - "realm_idx": 1493, - "order": "The Order of Enlightenment", - "resources": ["Alchemical Silver", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.6801, 43.7004] - }, - "properties": { - "name": "K\u00edn \u00cd\u00ed", - "realm_idx": 1494, - "order": "The Order of Anger", - "resources": ["Silver", "Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.38, -49.6996] - }, - "properties": { - "name": "Li\u2018ali", - "realm_idx": 1495, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [23.5471, 44.88] - }, - "properties": { - "name": "Timmugmi", - "realm_idx": 1496, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.5801, 42.8004] - }, - "properties": { - "name": "Slushluz", - "realm_idx": 1497, - "order": "The Order of Anger", - "resources": ["Obsidian", "Coal", "Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.0801, 23.0004] - }, - "properties": { - "name": "Kuko U", - "realm_idx": 1498, - "order": "The Order of Rage", - "resources": ["Gold", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.1529, 13.18] - }, - "properties": { - "name": "Kanlunhun", - "realm_idx": 1499, - "order": "The Order of Vitriol", - "resources": ["Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.3471, -6.52] - }, - "properties": { - "name": "Apk\u00e4l Ap\u00f6l", - "realm_idx": 1500, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.6471, -35.52] - }, - "properties": { - "name": "Bikbris", - "realm_idx": 1501, - "order": "The Order of Power", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.0471, 38.78] - }, - "properties": { - "name": "lan Yanqun", - "realm_idx": 1502, - "order": "The Order of Skill", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.0471, 10.68] - }, - "properties": { - "name": "Usuusnasmu", - "realm_idx": 1503, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.0471, -21.92] - }, - "properties": { - "name": "Trihplat", - "realm_idx": 1504, - "order": "The Order of Giants", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.7471, 18.68] - }, - "properties": { - "name": "Sekputlukkol", - "realm_idx": 1505, - "order": "The Order of Skill", - "resources": ["Cold Iron", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.2801, 40.6004] - }, - "properties": { - "name": "Kispin", - "realm_idx": 1506, - "order": "The Order of Anger", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.8529, -20.32] - }, - "properties": { - "name": "Maimeommaet", - "realm_idx": 1507, - "order": "The Order of Power", - "resources": ["Silver", "Cold Iron", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.7471, 18.58] - }, - "properties": { - "name": "Omosolot", - "realm_idx": 1508, - "order": "The Order of Brilliance", - "resources": ["Hartwood", "Stone", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.3471, 4.78] - }, - "properties": { - "name": "La\u00edmt\u00e9apt\u00e9ap", - "realm_idx": 1509, - "order": "The Order of Brilliance", - "resources": ["Hartwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.1471, 21.18] - }, - "properties": { - "name": "Nampin", - "realm_idx": 1510, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Sapphire", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.28, 8.5003] - }, - "properties": { - "name": "Ni\u00e1\u0161oi\u0161", - "realm_idx": 1511, - "order": "The Order of Detection", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.2801, 20.7004] - }, - "properties": { - "name": "Ikeskukik", - "realm_idx": 1512, - "order": "The Order of Rage", - "resources": ["Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.7529, -21.52] - }, - "properties": { - "name": "Nykmasmasme", - "realm_idx": 1513, - "order": "The Order of Power", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.4801, 40.6004] - }, - "properties": { - "name": "\u0160undundemkam", - "realm_idx": 1514, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.0471, 31.88] - }, - "properties": { - "name": "Lannlanlon", - "realm_idx": 1515, - "order": "The Order of Skill", - "resources": ["Coal", "Hartwood", "Sapphire", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.2471, 50.68] - }, - "properties": { - "name": "Ghlukklik", - "realm_idx": 1516, - "order": "The Order of Titans", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [14.9471, 20.98] - }, - "properties": { - "name": "Enton o Enko", - "realm_idx": 1517, - "order": "The Order of Titans", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.78, -0.2997] - }, - "properties": { - "name": "\u2018ros\u2018\u00fak", - "realm_idx": 1518, - "order": "The Order of Detection", - "resources": [ - "Obsidian", - "Stone", - "Ironwood", - "Silver", - "Wood", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.1471, 28.28] - }, - "properties": { - "name": "Totatu", - "realm_idx": 1519, - "order": "The Order of Skill", - "resources": ["Stone", "Silver", "Ironwood", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.5471, -5.62] - }, - "properties": { - "name": "Eimamaulaut", - "realm_idx": 1520, - "order": "The Order of Giants", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-131.28, -0.0997] - }, - "properties": { - "name": "is-Atukol", - "realm_idx": 1521, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.2801, 7.7004] - }, - "properties": { - "name": "Nomo ma Loqe", - "realm_idx": 1522, - "order": "The Order of Rage", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.5304, 4.1046] - }, - "properties": { - "name": "Uwalawoh", - "realm_idx": 1523, - "order": "The Order of Protection", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.9471, -27.62] - }, - "properties": { - "name": "Ungavuq", - "realm_idx": 1524, - "order": "The Order of Giants", - "resources": ["Stone", "Cold Iron", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.1801, -30.5996] - }, - "properties": { - "name": "Kunnuwlin", - "realm_idx": 1525, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.48, -4.4997] - }, - "properties": { - "name": "Simkinkin", - "realm_idx": 1526, - "order": "The Order of Detection", - "resources": ["Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.4801, 49.5004] - }, - "properties": { - "name": "Smon Nismimi", - "realm_idx": 1527, - "order": "The Order of Anger", - "resources": ["Diamonds", "Ethereal Silica", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.4471, 23.88] - }, - "properties": { - "name": "Kiwmil", - "realm_idx": 1528, - "order": "The Order of Skill", - "resources": ["Coal", "Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.0471, 38.18] - }, - "properties": { - "name": "Mimimee", - "realm_idx": 1529, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.6471, 38.48] - }, - "properties": { - "name": "Plamklam", - "realm_idx": 1530, - "order": "The Order of Skill", - "resources": ["Coal", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.3471, -14.42] - }, - "properties": { - "name": "Ir Pirbirs", - "realm_idx": 1531, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Obsidian", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.5471, -49.12] - }, - "properties": { - "name": "la Tu", - "realm_idx": 1532, - "order": "The Order of Giants", - "resources": ["Copper", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.8471, 3.38] - }, - "properties": { - "name": "Kiwo Rari", - "realm_idx": 1533, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.58, -46.9997] - }, - "properties": { - "name": "Ch\u00e2nm\u00f4ncham", - "realm_idx": 1534, - "order": "The Order of the Fox", - "resources": ["Silver", "Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.5471, 28.98] - }, - "properties": { - "name": "Nrizhnish", - "realm_idx": 1535, - "order": "The Order of Titans", - "resources": ["Gold", "Copper", "Ironwood", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.28, -35.3997] - }, - "properties": { - "name": "Teurros", - "realm_idx": 1536, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.9801, 42.9004] - }, - "properties": { - "name": "Nukmu", - "realm_idx": 1537, - "order": "The Order of Anger", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.3471, 25.08] - }, - "properties": { - "name": "Gemute", - "realm_idx": 1538, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.7471, 42.08] - }, - "properties": { - "name": "Srumtlinplon", - "realm_idx": 1539, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Copper", "Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.58, -30.6997] - }, - "properties": { - "name": "Kuskors", - "realm_idx": 1540, - "order": "The Order of the Fox", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.68, 3.2003] - }, - "properties": { - "name": "Zhlim", - "realm_idx": 1541, - "order": "The Order of Detection", - "resources": ["Diamonds", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.3527, 52.3801] - }, - "properties": { - "name": "Sikiksikik", - "realm_idx": 1542, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.48, -46.3996] - }, - "properties": { - "name": "Ditditez", - "realm_idx": 1543, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.2801, -37.9996] - }, - "properties": { - "name": "Srezhsros", - "realm_idx": 1544, - "order": "The Order of the Twins", - "resources": ["Deep Crystal", "Coal", "True Ice", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.9471, 18.68] - }, - "properties": { - "name": "Maqamunbas", - "realm_idx": 1545, - "order": "The Order of Brilliance", - "resources": ["Copper", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.3801, 8.4004] - }, - "properties": { - "name": "Urchelzilmil", - "realm_idx": 1546, - "order": "The Order of Rage", - "resources": ["Copper", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [128.9832, 8.9597] - }, - "properties": { - "name": "em Tophen", - "realm_idx": 1547, - "order": "The Order of Protection", - "resources": ["Coal", "True Ice", "Copper", "Ruby", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.1571, 3.7171] - }, - "properties": { - "name": "Tomnung", - "realm_idx": 1548, - "order": "The Order of Perfection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.7064, 42.0907] - }, - "properties": { - "name": "Mimislineste", - "realm_idx": 1549, - "order": "The Order of Fury", - "resources": ["Copper", "Cold Iron", "Wood", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.28, -24.1997] - }, - "properties": { - "name": "Pokikakkiw", - "realm_idx": 1550, - "order": "The Order of Reflection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.0471, -35.82] - }, - "properties": { - "name": "Ururnormnar", - "realm_idx": 1551, - "order": "The Order of Power", - "resources": ["Stone", "Obsidian", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.7471, 42.68] - }, - "properties": { - "name": "Isbit", - "realm_idx": 1552, - "order": "The Order of Enlightenment", - "resources": ["Ironwood", "Wood", "Coal", "Copper", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.4708, -18.3964] - }, - "properties": { - "name": "Mloxsos", - "realm_idx": 1553, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.28, -58.9996] - }, - "properties": { - "name": "Skenosno", - "realm_idx": 1554, - "order": "The Order of the Fox", - "resources": ["Dragonhide", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.3471, -35.82] - }, - "properties": { - "name": "Agh\u0161umgherk", - "realm_idx": 1555, - "order": "The Order of Power", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.78, 17.2003] - }, - "properties": { - "name": "Moqoaaitmo", - "realm_idx": 1556, - "order": "The Order of Detection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.1471, -42.22] - }, - "properties": { - "name": "\u00cfbekum", - "realm_idx": 1557, - "order": "The Order of Giants", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.8471, 19.28] - }, - "properties": { - "name": "Ululamam", - "realm_idx": 1558, - "order": "The Order of Titans", - "resources": ["Silver", "Wood", "Ironwood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.638, -17.3194] - }, - "properties": { - "name": "Nul mon Tos", - "realm_idx": 1559, - "order": "The Order of Perfection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.1471, 58.18] - }, - "properties": { - "name": "Toattik", - "realm_idx": 1560, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.149, 27.6504] - }, - "properties": { - "name": "Unomi\u2018i\u2018ul", - "realm_idx": 1561, - "order": "The Order of Reflection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.3471, 34.68] - }, - "properties": { - "name": "Hlethehkluh", - "realm_idx": 1562, - "order": "The Order of Skill", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.4471, -35.72] - }, - "properties": { - "name": "Akohunu\u2018", - "realm_idx": 1563, - "order": "The Order of Giants", - "resources": [ - "Coal", - "Hartwood", - "Ironwood", - "Obsidian", - "Stone", - "Silver", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.8471, 14.18] - }, - "properties": { - "name": "Pan\u2018ien", - "realm_idx": 1564, - "order": "The Order of Protection", - "resources": ["Wood", "Twilight Quartz", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.2471, 18.18] - }, - "properties": { - "name": "Argarghub", - "realm_idx": 1565, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [14.5471, 26.88] - }, - "properties": { - "name": "Kyypkwih", - "realm_idx": 1566, - "order": "The Order of Titans", - "resources": [ - "Alchemical Silver", - "Hartwood", - "Cold Iron", - "Stone", - "Coal", - "Wood", - "Diamonds" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.0471, 53.88] - }, - "properties": { - "name": "Usut\u00e1r", - "realm_idx": 1567, - "order": "The Order of Skill", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.1596, -20.8575] - }, - "properties": { - "name": "jud Glankag", - "realm_idx": 1568, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.7529, 55.18] - }, - "properties": { - "name": "Nup kud \u0160ug", - "realm_idx": 1569, - "order": "The Order of Fury", - "resources": ["Silver", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.849, -17.677] - }, - "properties": { - "name": "Plansunlulus", - "realm_idx": 1570, - "order": "The Order of Perfection", - "resources": ["Gold", "Copper", "Stone", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.0471, 0.98] - }, - "properties": { - "name": "Annanpaman", - "realm_idx": 1571, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Coal", "Cold Iron", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.1471, -12.42] - }, - "properties": { - "name": "\u00c4mminin", - "realm_idx": 1572, - "order": "The Order of Perfection", - "resources": ["Copper", "Silver", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.6471, 16.78] - }, - "properties": { - "name": "Lwaunshwon", - "realm_idx": 1573, - "order": "The Order of Skill", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.6471, -21.52] - }, - "properties": { - "name": "Plom\u00fam", - "realm_idx": 1574, - "order": "The Order of Giants", - "resources": ["Ignium", "Copper", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.7471, -37.82] - }, - "properties": { - "name": "Popos\u00fapo", - "realm_idx": 1575, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.5471, 31.08] - }, - "properties": { - "name": "Singmikasing", - "realm_idx": 1576, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.28, -5.4997] - }, - "properties": { - "name": "Nlipmlus", - "realm_idx": 1577, - "order": "The Order of Detection", - "resources": ["Ironwood", "Wood", "Hartwood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.261, -24.555] - }, - "properties": { - "name": "Konor", - "realm_idx": 1578, - "order": "The Order of Perfection", - "resources": [ - "Cold Iron", - "Deep Crystal", - "Ironwood", - "Ignium", - "Obsidian", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.6471, -35.32] - }, - "properties": { - "name": "Vimmenponpon", - "realm_idx": 1579, - "order": "The Order of Giants", - "resources": ["Stone", "Obsidian", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.6801, 46.8004] - }, - "properties": { - "name": "Qakljujgom", - "realm_idx": 1580, - "order": "The Order of Anger", - "resources": ["Coal", "Hartwood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.9529, 5.88] - }, - "properties": { - "name": "Miipkat", - "realm_idx": 1581, - "order": "The Order of Vitriol", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.5471, 49.88] - }, - "properties": { - "name": "Mumput", - "realm_idx": 1582, - "order": "The Order of Skill", - "resources": ["Coal", "Stone", "Diamonds", "Ironwood", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.1471, 21.38] - }, - "properties": { - "name": "Hakhakilkkat", - "realm_idx": 1583, - "order": "The Order of Skill", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.7801, 18.4004] - }, - "properties": { - "name": "Shqan", - "realm_idx": 1584, - "order": "The Order of Rage", - "resources": ["Coal", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.9471, 9.78] - }, - "properties": { - "name": "Uyukhey", - "realm_idx": 1585, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.8471, -14.22] - }, - "properties": { - "name": "Chirnwuzmliz", - "realm_idx": 1586, - "order": "The Order of Perfection", - "resources": ["Stone", "Obsidian", "Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.8471, 50.48] - }, - "properties": { - "name": "Akaliwumaluw", - "realm_idx": 1587, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.5529, 9.58] - }, - "properties": { - "name": "wud-Dot", - "realm_idx": 1588, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.1421, 4.3399] - }, - "properties": { - "name": "\u2018eewi", - "realm_idx": 1589, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.3801, 6.1004] - }, - "properties": { - "name": "Grichgiem", - "realm_idx": 1590, - "order": "The Order of Rage", - "resources": ["Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.8791, 56.0062] - }, - "properties": { - "name": "Gazegazezepa", - "realm_idx": 1591, - "order": "The Order of Fury", - "resources": ["Obsidian", "Coal", "Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.7471, 38.38] - }, - "properties": { - "name": "\u017dakmosnok", - "realm_idx": 1592, - "order": "The Order of Skill", - "resources": ["Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.416, 54.2276] - }, - "properties": { - "name": "Zekb\u00eak", - "realm_idx": 1593, - "order": "The Order of Fury", - "resources": ["Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.8801, 49.3004] - }, - "properties": { - "name": "Lemmolmol", - "realm_idx": 1594, - "order": "The Order of Anger", - "resources": ["Silver", "Obsidian", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.0529, 12.08] - }, - "properties": { - "name": "Kokako", - "realm_idx": 1595, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.3529, 10.28] - }, - "properties": { - "name": "Hrihhepom", - "realm_idx": 1596, - "order": "The Order of Vitriol", - "resources": ["Copper", "Coal", "Diamonds", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.9801, -38.8996] - }, - "properties": { - "name": "Teshgos", - "realm_idx": 1597, - "order": "The Order of the Twins", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.1471, 18.18] - }, - "properties": { - "name": "Nunata", - "realm_idx": 1598, - "order": "The Order of Skill", - "resources": ["Cold Iron", "Wood", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.8471, 33.08] - }, - "properties": { - "name": "Mepkak", - "realm_idx": 1599, - "order": "The Order of Titans", - "resources": ["Silver", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.58, -5.2997] - }, - "properties": { - "name": "Jurngels", - "realm_idx": 1600, - "order": "The Order of Detection", - "resources": ["Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.9881, -21.6598] - }, - "properties": { - "name": "Ehemum", - "realm_idx": 1601, - "order": "The Order of Perfection", - "resources": ["Gold", "Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.0471, 2.28] - }, - "properties": { - "name": "Komimuij", - "realm_idx": 1602, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.9471, 57.28] - }, - "properties": { - "name": "Minsnungmin", - "realm_idx": 1603, - "order": "The Order of Titans", - "resources": ["Diamonds", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.0272, -24.6337] - }, - "properties": { - "name": "Gutschkrul", - "realm_idx": 1604, - "order": "The Order of Reflection", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.9801, 2.8004] - }, - "properties": { - "name": "Malilpal", - "realm_idx": 1605, - "order": "The Order of Rage", - "resources": ["Ironwood", "Obsidian", "Gold", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.5529, 41.68] - }, - "properties": { - "name": "Ebelklejm", - "realm_idx": 1606, - "order": "The Order of Titans", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.7471, 41.88] - }, - "properties": { - "name": "Meskrukxus", - "realm_idx": 1607, - "order": "The Order of Skill", - "resources": ["Silver", "Ironwood", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.9301, -22.9518] - }, - "properties": { - "name": "K\u00ednem\u00e1n\u00e9hik\u00e9", - "realm_idx": 1608, - "order": "The Order of Protection", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.38, -31.8997] - }, - "properties": { - "name": "S\u00edltil", - "realm_idx": 1609, - "order": "The Order of Detection", - "resources": ["Silver", "Coal", "Wood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.2471, 41.98] - }, - "properties": { - "name": "Sm\u00efngm\u00efm", - "realm_idx": 1610, - "order": "The Order of Skill", - "resources": ["Copper", "Obsidian", "Ironwood", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.3801, -52.6996] - }, - "properties": { - "name": "Riok Raot", - "realm_idx": 1611, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.2801, 4.8004] - }, - "properties": { - "name": "\u00dcn\u00fcnim\u00e4r", - "realm_idx": 1612, - "order": "The Order of Rage", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.4517, 14.5077] - }, - "properties": { - "name": "Pas\u00efsl\u00efl\u00ef", - "realm_idx": 1613, - "order": "The Order of Protection", - "resources": ["Wood", "Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.1529, 44.88] - }, - "properties": { - "name": "Eenkimlom", - "realm_idx": 1614, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.48, -5.0997] - }, - "properties": { - "name": "Tilmalsurs", - "realm_idx": 1615, - "order": "The Order of Detection", - "resources": ["Ironwood", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.9895, -16.5605] - }, - "properties": { - "name": "dal-Dirrun", - "realm_idx": 1616, - "order": "The Order of Protection", - "resources": ["Obsidian", "Ironwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.18, 13.9003] - }, - "properties": { - "name": "Choorpmolsh", - "realm_idx": 1617, - "order": "The Order of Detection", - "resources": ["Stone", "Obsidian", "Wood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.7471, 8.78] - }, - "properties": { - "name": "Shmotshtoke", - "realm_idx": 1618, - "order": "The Order of Protection", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.7471, 55.58] - }, - "properties": { - "name": "Ungulem", - "realm_idx": 1619, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Gold", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.5529, 28.58] - }, - "properties": { - "name": "Gyobbwuqbwop", - "realm_idx": 1620, - "order": "The Order of Vitriol", - "resources": ["Copper", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.3801, 12.3004] - }, - "properties": { - "name": "Muttem Mut", - "realm_idx": 1621, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.98, -60.8996] - }, - "properties": { - "name": "Ismelsneyn", - "realm_idx": 1622, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.623, 37.5064] - }, - "properties": { - "name": "Ojkulsmirojk", - "realm_idx": 1623, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.4801, 8.1004] - }, - "properties": { - "name": "Lu\u2018lu\u2018likiw", - "realm_idx": 1624, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.78, 14.9003] - }, - "properties": { - "name": "Domzhishem", - "realm_idx": 1625, - "order": "The Order of Detection", - "resources": ["Diamonds", "Coal", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.6471, -27.92] - }, - "properties": { - "name": "T\u00e1ksrok", - "realm_idx": 1626, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.3801, 27.3004] - }, - "properties": { - "name": "K\u00edb\u00e1s\u00e1", - "realm_idx": 1627, - "order": "The Order of Rage", - "resources": ["Wood", "Coal", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.9801, -34.6996] - }, - "properties": { - "name": "Mumkammumpon", - "realm_idx": 1628, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Copper", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.8702, -28.6942] - }, - "properties": { - "name": "stam-Sosslel", - "realm_idx": 1629, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.9471, -0.22] - }, - "properties": { - "name": "Temenigu", - "realm_idx": 1630, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.58, 14.6003] - }, - "properties": { - "name": "Usmwk", - "realm_idx": 1631, - "order": "The Order of Detection", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-126.58, 5.9003] - }, - "properties": { - "name": "Aaemtaame", - "realm_idx": 1632, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.0529, 28.08] - }, - "properties": { - "name": "Slenkin", - "realm_idx": 1633, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.8471, -14.12] - }, - "properties": { - "name": "Urshulgim", - "realm_idx": 1634, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.3471, -26.92] - }, - "properties": { - "name": "mo-Mongling", - "realm_idx": 1635, - "order": "The Order of Power", - "resources": ["Hartwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.6471, -32.92] - }, - "properties": { - "name": "B\u00e4wh\u00e4h", - "realm_idx": 1636, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.4471, -8.12] - }, - "properties": { - "name": "Nlinnimnlun", - "realm_idx": 1637, - "order": "The Order of Perfection", - "resources": ["Wood", "Ruby", "Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.6529, 23.98] - }, - "properties": { - "name": "Sralgemvel", - "realm_idx": 1638, - "order": "The Order of Vitriol", - "resources": [ - "Obsidian", - "Cold Iron", - "Copper", - "Silver", - "Wood", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.4471, 6.48] - }, - "properties": { - "name": "Sepet", - "realm_idx": 1639, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.78, -1.0997] - }, - "properties": { - "name": "Sogshisjuj", - "realm_idx": 1640, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.5529, 5.98] - }, - "properties": { - "name": "Nummakhum", - "realm_idx": 1641, - "order": "The Order of Titans", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.5471, 19.68] - }, - "properties": { - "name": "Iw\u00e1r\u00edw", - "realm_idx": 1642, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.9801, -32.3996] - }, - "properties": { - "name": "Humom", - "realm_idx": 1643, - "order": "The Order of the Twins", - "resources": [ - "Ironwood", - "Wood", - "Silver", - "Stone", - "Cold Iron", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.1306, 35.9498] - }, - "properties": { - "name": "Sukmik", - "realm_idx": 1644, - "order": "The Order of Reflection", - "resources": [ - "Twilight Quartz", - "Stone", - "Wood", - "Coal", - "Hartwood", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.6283, 33.9226] - }, - "properties": { - "name": "Shnusshkut", - "realm_idx": 1645, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.6471, -17.42] - }, - "properties": { - "name": "Okenanunet", - "realm_idx": 1646, - "order": "The Order of Power", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.9529, 14.38] - }, - "properties": { - "name": "Flosft\u00fctflos", - "realm_idx": 1647, - "order": "The Order of Vitriol", - "resources": ["Ethereal Silica", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.4471, -30.02] - }, - "properties": { - "name": "Ogog\u00edsog", - "realm_idx": 1648, - "order": "The Order of Giants", - "resources": ["Coal", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.0431, 39.0527] - }, - "properties": { - "name": "Lalam\u00e1mm\u00e1m", - "realm_idx": 1649, - "order": "The Order of Fury", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.0801, -39.6996] - }, - "properties": { - "name": "Uyiyuyl", - "realm_idx": 1650, - "order": "The Order of the Twins", - "resources": ["Wood", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.2801, 12.5004] - }, - "properties": { - "name": "Q\u00e1jesilu", - "realm_idx": 1651, - "order": "The Order of Rage", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.4527, 44.5801] - }, - "properties": { - "name": "Eptronngig", - "realm_idx": 1652, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.9757, 29.7139] - }, - "properties": { - "name": "Et\u00e4me\u00e4", - "realm_idx": 1653, - "order": "The Order of Reflection", - "resources": ["Coal", "Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.9471, -44.02] - }, - "properties": { - "name": "Lopsol", - "realm_idx": 1654, - "order": "The Order of Giants", - "resources": ["Ironwood", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.8471, -17.02] - }, - "properties": { - "name": "\u00c1rdch\u00edrd", - "realm_idx": 1655, - "order": "The Order of Giants", - "resources": ["Ironwood", "Coal", "Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.8471, 54.18] - }, - "properties": { - "name": "Kon in On", - "realm_idx": 1656, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.98, -11.0997] - }, - "properties": { - "name": "Wuswusyis", - "realm_idx": 1657, - "order": "The Order of Detection", - "resources": ["Gold", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.08, -9.7997] - }, - "properties": { - "name": "Veungping", - "realm_idx": 1658, - "order": "The Order of Detection", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.88, -0.2997] - }, - "properties": { - "name": "S\u00f3ng\u00e1n", - "realm_idx": 1659, - "order": "The Order of Detection", - "resources": ["Diamonds", "Cold Iron", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.4801, 15.1004] - }, - "properties": { - "name": "Miekunauni", - "realm_idx": 1660, - "order": "The Order of Rage", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.1527, 46.8801] - }, - "properties": { - "name": "\u017dullol", - "realm_idx": 1661, - "order": "The Order of the Twins", - "resources": ["Gold", "Silver", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.9043, -10.9349] - }, - "properties": { - "name": "Gramkum", - "realm_idx": 1662, - "order": "The Order of the Fox", - "resources": ["Stone", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.8919, 23.2505] - }, - "properties": { - "name": "Mratsunplep", - "realm_idx": 1663, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian", "Sapphire", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.08, 18.9003] - }, - "properties": { - "name": "Unum Pumun", - "realm_idx": 1664, - "order": "The Order of Detection", - "resources": ["Copper", "Stone", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.48, -6.2997] - }, - "properties": { - "name": "Hinmupfmum", - "realm_idx": 1665, - "order": "The Order of Detection", - "resources": ["Gold", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.1471, 44.78] - }, - "properties": { - "name": "Ginklasch", - "realm_idx": 1666, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.0471, 8.78] - }, - "properties": { - "name": "W\u00e1k-L\u00f3k", - "realm_idx": 1667, - "order": "The Order of Titans", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.4529, -22.62] - }, - "properties": { - "name": "Utak-ox-Isek", - "realm_idx": 1668, - "order": "The Order of Power", - "resources": ["Sapphire", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.3801, -11.4996] - }, - "properties": { - "name": "Nuninitymuk\u00e2", - "realm_idx": 1669, - "order": "The Order of Rage", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.6471, 29.18] - }, - "properties": { - "name": "Nennlon", - "realm_idx": 1670, - "order": "The Order of Titans", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.5801, 31.0308] - }, - "properties": { - "name": "et-Iyp\u00fcq", - "realm_idx": 1671, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.4529, -33.72] - }, - "properties": { - "name": "\u00c1ch\u00e1ch\u00edb", - "realm_idx": 1672, - "order": "The Order of Power", - "resources": ["Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.7527, 51.9801] - }, - "properties": { - "name": "Tuskirs", - "realm_idx": 1673, - "order": "The Order of the Twins", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.9428, -34.9929] - }, - "properties": { - "name": "Qonumsun", - "realm_idx": 1674, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.68, -1.4997] - }, - "properties": { - "name": "Sleppot", - "realm_idx": 1675, - "order": "The Order of Detection", - "resources": ["True Ice", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.0529, 0.58] - }, - "properties": { - "name": "\u00dak\u00fakih", - "realm_idx": 1676, - "order": "The Order of Vitriol", - "resources": ["Coal", "Silver", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.0471, 37.48] - }, - "properties": { - "name": "Eptet om Uk", - "realm_idx": 1677, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.6801, 14.7004] - }, - "properties": { - "name": "K\u00e4ns\u00e4n", - "realm_idx": 1678, - "order": "The Order of Rage", - "resources": ["Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.0471, 21.08] - }, - "properties": { - "name": "Wi\u2018schmip", - "realm_idx": 1679, - "order": "The Order of Brilliance", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.5529, 18.88] - }, - "properties": { - "name": "Lepuukewp", - "realm_idx": 1680, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Copper", "Cold Iron", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.48, -28.4997] - }, - "properties": { - "name": "Smuqnoqsgung", - "realm_idx": 1681, - "order": "The Order of Reflection", - "resources": ["Ruby", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.4801, -15.2996] - }, - "properties": { - "name": "L\u00efmlensam", - "realm_idx": 1682, - "order": "The Order of Rage", - "resources": ["Cold Iron", "Diamonds", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.0471, -44.32] - }, - "properties": { - "name": "Urajaj", - "realm_idx": 1683, - "order": "The Order of Giants", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.8641, 3.3292] - }, - "properties": { - "name": "Dukenqirm", - "realm_idx": 1684, - "order": "The Order of Protection", - "resources": ["Wood", "Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.8471, 45.08] - }, - "properties": { - "name": "Kipmilh", - "realm_idx": 1685, - "order": "The Order of Skill", - "resources": ["Ruby", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.3471, 17.28] - }, - "properties": { - "name": "Mlinn\u00e9nhin", - "realm_idx": 1686, - "order": "The Order of Titans", - "resources": ["Ironwood", "Wood", "Sapphire", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.5471, -13.12] - }, - "properties": { - "name": "Monshonskun", - "realm_idx": 1687, - "order": "The Order of Power", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.58, -60.6996] - }, - "properties": { - "name": "gai-Zoi", - "realm_idx": 1688, - "order": "The Order of the Fox", - "resources": ["Cold Iron", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.9544, 53.9077] - }, - "properties": { - "name": "Timtat", - "realm_idx": 1689, - "order": "The Order of Fury", - "resources": ["Silver", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.9471, 48.38] - }, - "properties": { - "name": "Miumium", - "realm_idx": 1690, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.2801, 46.0004] - }, - "properties": { - "name": "Prunprun", - "realm_idx": 1691, - "order": "The Order of Anger", - "resources": ["Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.8471, -27.62] - }, - "properties": { - "name": "Killat", - "realm_idx": 1692, - "order": "The Order of Perfection", - "resources": ["Coal", "Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.3471, 0.68] - }, - "properties": { - "name": "Motschtomnit", - "realm_idx": 1693, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.3529, 2.08] - }, - "properties": { - "name": "Hinpomtontun", - "realm_idx": 1694, - "order": "The Order of Power", - "resources": ["Gold", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.3801, 47.1004] - }, - "properties": { - "name": "Hilntilppilt", - "realm_idx": 1695, - "order": "The Order of Anger", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.2115, 31.184] - }, - "properties": { - "name": "Ri-Risatrat", - "realm_idx": 1696, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.4529, -37.32] - }, - "properties": { - "name": "Ihemkun", - "realm_idx": 1697, - "order": "The Order of Power", - "resources": ["Wood", "Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.1529, -11.62] - }, - "properties": { - "name": "Ma\u00edpt\u00e1nna\u00e1h", - "realm_idx": 1698, - "order": "The Order of the Fox", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [24.9471, 40.28] - }, - "properties": { - "name": "\u00f6m Irsch\u00fcgh", - "realm_idx": 1699, - "order": "The Order of Titans", - "resources": ["Wood", "Silver", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.6783, 50.7977] - }, - "properties": { - "name": "\u2018l\u00e4nn\u00efmk\u00e4n", - "realm_idx": 1700, - "order": "The Order of Fury", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.5376, 27.3764] - }, - "properties": { - "name": "Tininsi", - "realm_idx": 1701, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.9471, -39.72] - }, - "properties": { - "name": "Ilmaltnulk", - "realm_idx": 1702, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.18, 22.1003] - }, - "properties": { - "name": "Okeladupel", - "realm_idx": 1703, - "order": "The Order of Detection", - "resources": ["Wood", "Copper", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.9471, 2.28] - }, - "properties": { - "name": "Sumokola", - "realm_idx": 1704, - "order": "The Order of Power", - "resources": ["Coal", "Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.3801, 31.7004] - }, - "properties": { - "name": "Ololok", - "realm_idx": 1705, - "order": "The Order of Anger", - "resources": ["Wood", "Ignium", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.8471, 33.48] - }, - "properties": { - "name": "Ho\u0161i\u0161", - "realm_idx": 1706, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.3471, 20.88] - }, - "properties": { - "name": "Gitbwuch", - "realm_idx": 1707, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.4471, -8.72] - }, - "properties": { - "name": "Gh\u00faghubgh\u00fa", - "realm_idx": 1708, - "order": "The Order of Giants", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.2544, 29.6936] - }, - "properties": { - "name": "Tumi-Muvuqe", - "realm_idx": 1709, - "order": "The Order of Rage", - "resources": ["Wood", "Ignium", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.6285, 41.54] - }, - "properties": { - "name": "wam Nwinnwin", - "realm_idx": 1710, - "order": "The Order of Fury", - "resources": ["Silver", "Obsidian", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.0118, 10.1227] - }, - "properties": { - "name": "Bollukdeb", - "realm_idx": 1711, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.9801, -1.6996] - }, - "properties": { - "name": "nus Usnuz", - "realm_idx": 1712, - "order": "The Order of Rage", - "resources": ["Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.6801, 47.4004] - }, - "properties": { - "name": "Nupflus Slis", - "realm_idx": 1713, - "order": "The Order of Anger", - "resources": ["Silver", "Coal", "Ironwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.8471, 15.08] - }, - "properties": { - "name": "Laamtaatil", - "realm_idx": 1714, - "order": "The Order of Skill", - "resources": ["Ironwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.6014, 41.0807] - }, - "properties": { - "name": "Ililharp", - "realm_idx": 1715, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.2471, 21.68] - }, - "properties": { - "name": "N\u00f4s\u00e2w", - "realm_idx": 1716, - "order": "The Order of Skill", - "resources": ["Coal", "Copper", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [13.8471, 22.38] - }, - "properties": { - "name": "gich Migpag", - "realm_idx": 1717, - "order": "The Order of Titans", - "resources": ["Stone", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.28, 32.4003] - }, - "properties": { - "name": "Ar Erig", - "realm_idx": 1718, - "order": "The Order of Fury", - "resources": ["Coal", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.0471, -9.22] - }, - "properties": { - "name": "Imitem", - "realm_idx": 1719, - "order": "The Order of Perfection", - "resources": ["Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.1801, 20.3004] - }, - "properties": { - "name": "Sunkung", - "realm_idx": 1720, - "order": "The Order of Rage", - "resources": [ - "Coal", - "Copper", - "Gold", - "Wood", - "Dragonhide", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.78, 37.7003] - }, - "properties": { - "name": "\u00dclok\u00fcs", - "realm_idx": 1721, - "order": "The Order of Fury", - "resources": ["Copper", "Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.5529, 6.58] - }, - "properties": { - "name": "\u010cisidalu", - "realm_idx": 1722, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.9824, 44.515] - }, - "properties": { - "name": "Tonmot", - "realm_idx": 1723, - "order": "The Order of Anger", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.28, 8.6003] - }, - "properties": { - "name": "Eekaatteel", - "realm_idx": 1724, - "order": "The Order of Detection", - "resources": ["Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.88, 32.0003] - }, - "properties": { - "name": "Skomwon", - "realm_idx": 1725, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood", "Deep Crystal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.6175, -52.2528] - }, - "properties": { - "name": "Ekgas\u00fasukek", - "realm_idx": 1726, - "order": "The Order of the Fox", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.28, -5.7997] - }, - "properties": { - "name": "Nichnur", - "realm_idx": 1727, - "order": "The Order of Detection", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.3529, 13.88] - }, - "properties": { - "name": "Ozhulup\u00fach", - "realm_idx": 1728, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.0529, 52.28] - }, - "properties": { - "name": "Kin Pe", - "realm_idx": 1729, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian", "Gold", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.9471, 29.88] - }, - "properties": { - "name": "ij-Najnuj", - "realm_idx": 1730, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Ethereal Silica", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.4471, 9.08] - }, - "properties": { - "name": "Go\u0161gistuot", - "realm_idx": 1731, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.5471, 16.88] - }, - "properties": { - "name": "Puamailiul", - "realm_idx": 1732, - "order": "The Order of Skill", - "resources": ["Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.5471, 5.48] - }, - "properties": { - "name": "Kekyukkuspuk", - "realm_idx": 1733, - "order": "The Order of Brilliance", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.88, 27.0003] - }, - "properties": { - "name": "Irkuk", - "realm_idx": 1734, - "order": "The Order of Reflection", - "resources": ["True Ice", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.7773, 27.761] - }, - "properties": { - "name": "Linlurmlip", - "realm_idx": 1735, - "order": "The Order of Fury", - "resources": ["Deep Crystal", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.0529, 5.78] - }, - "properties": { - "name": "slom Kong", - "realm_idx": 1736, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.1801, -4.7996] - }, - "properties": { - "name": "Lep\u00e9\u2018eppup", - "realm_idx": 1737, - "order": "The Order of Rage", - "resources": ["Obsidian", "Cold Iron", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.3529, -35.22] - }, - "properties": { - "name": "Suyeg", - "realm_idx": 1738, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.7529, 2.68] - }, - "properties": { - "name": "Sliw\u2018i-Shihi", - "realm_idx": 1739, - "order": "The Order of Power", - "resources": ["Diamonds", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.8801, -38.4996] - }, - "properties": { - "name": "Njuuphjaa\u2018", - "realm_idx": 1740, - "order": "The Order of the Twins", - "resources": [ - "Obsidian", - "Ruby", - "Ironwood", - "Coal", - "Cold Iron", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.1471, 6.88] - }, - "properties": { - "name": "Ninennat", - "realm_idx": 1741, - "order": "The Order of Brilliance", - "resources": ["Diamonds", "Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.08, 5.6003] - }, - "properties": { - "name": "Qorxdoxdonug", - "realm_idx": 1742, - "order": "The Order of Detection", - "resources": ["Coal", "Wood", "Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.3471, -27.32] - }, - "properties": { - "name": "Lospit", - "realm_idx": 1743, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-47.116, 53.5553] - }, - "properties": { - "name": "Zhuzh", - "realm_idx": 1744, - "order": "The Order of Fury", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.0471, -5.72] - }, - "properties": { - "name": "Nittil", - "realm_idx": 1745, - "order": "The Order of Power", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.5471, -44.82] - }, - "properties": { - "name": "Munkankankim", - "realm_idx": 1746, - "order": "The Order of Giants", - "resources": ["Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.7553, -26.1161] - }, - "properties": { - "name": "Shikshik", - "realm_idx": 1747, - "order": "The Order of Protection", - "resources": ["Wood", "Silver", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.7471, 5.68] - }, - "properties": { - "name": "Kenukeke", - "realm_idx": 1748, - "order": "The Order of Titans", - "resources": ["Wood", "Ironwood", "Coal", "Hartwood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.38, -6.0997] - }, - "properties": { - "name": "Purlososko", - "realm_idx": 1749, - "order": "The Order of Detection", - "resources": ["Stone", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-77.4801, -34.5996] - }, - "properties": { - "name": "Lekelm", - "realm_idx": 1750, - "order": "The Order of the Twins", - "resources": ["Wood", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.4529, 54.18] - }, - "properties": { - "name": "til Non\u00fck", - "realm_idx": 1751, - "order": "The Order of Fury", - "resources": ["Coal", "Gold", "Ethereal Silica", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.547, -4.02] - }, - "properties": { - "name": "Ikikitinak", - "realm_idx": 1752, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.0529, -6.12] - }, - "properties": { - "name": "Kusumutausu", - "realm_idx": 1753, - "order": "The Order of the Fox", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.9019, 1.3753] - }, - "properties": { - "name": "Nunumoymnuk", - "realm_idx": 1754, - "order": "The Order of Reflection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.08, -50.0996] - }, - "properties": { - "name": "Lolo Lusnu", - "realm_idx": 1755, - "order": "The Order of the Fox", - "resources": ["Stone", "Coal", "Silver", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.4471, 1.48] - }, - "properties": { - "name": "Jughbit", - "realm_idx": 1756, - "order": "The Order of Titans", - "resources": ["Stone", "Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.2471, 48.38] - }, - "properties": { - "name": "Miiptantaak", - "realm_idx": 1757, - "order": "The Order of Skill", - "resources": ["Copper", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.6529, 28.58] - }, - "properties": { - "name": "Ugugupup", - "realm_idx": 1758, - "order": "The Order of Vitriol", - "resources": [ - "Copper", - "Ironwood", - "Coal", - "Cold Iron", - "Gold", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.1471, 27.98] - }, - "properties": { - "name": "Akekak", - "realm_idx": 1759, - "order": "The Order of Skill", - "resources": ["Silver", "Stone", "Obsidian", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.4471, 49.48] - }, - "properties": { - "name": "Shahsh\u00fah", - "realm_idx": 1760, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Adamantine", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.8566, -39.7309] - }, - "properties": { - "name": "Murintche", - "realm_idx": 1761, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [11.8471, 44.08] - }, - "properties": { - "name": "Ginsun", - "realm_idx": 1762, - "order": "The Order of Titans", - "resources": ["Copper", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.08, -56.9996] - }, - "properties": { - "name": "Nimnon", - "realm_idx": 1763, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.4471, 10.48] - }, - "properties": { - "name": "Smik-kum-Nak", - "realm_idx": 1764, - "order": "The Order of Titans", - "resources": ["Copper", "Wood", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.98, -38.3997] - }, - "properties": { - "name": "Kimuda", - "realm_idx": 1765, - "order": "The Order of the Fox", - "resources": ["Diamonds", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.1529, -19.22] - }, - "properties": { - "name": "Osaskok", - "realm_idx": 1766, - "order": "The Order of Power", - "resources": ["Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.1471, 29.68] - }, - "properties": { - "name": "Urpsarz", - "realm_idx": 1767, - "order": "The Order of Titans", - "resources": ["Wood", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.9529, 18.88] - }, - "properties": { - "name": "Kilkulju", - "realm_idx": 1768, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.6471, -12.72] - }, - "properties": { - "name": "Mizharw\u00fcn", - "realm_idx": 1769, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.0123, -25.583] - }, - "properties": { - "name": "Noml\u00efnmolnom", - "realm_idx": 1770, - "order": "The Order of Perfection", - "resources": ["Copper", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.8529, 43.38] - }, - "properties": { - "name": "Momtulh", - "realm_idx": 1771, - "order": "The Order of Vitriol", - "resources": ["Wood", "Hartwood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.08, -22.5997] - }, - "properties": { - "name": "Sqoqoroyqo", - "realm_idx": 1772, - "order": "The Order of Reflection", - "resources": ["Ruby", "Wood", "Coal", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.347, -1.42] - }, - "properties": { - "name": "Dursubar", - "realm_idx": 1773, - "order": "The Order of Perfection", - "resources": ["Stone", "Copper", "Wood", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.2471, 2.48] - }, - "properties": { - "name": "Soupsuam", - "realm_idx": 1774, - "order": "The Order of Titans", - "resources": ["Hartwood", "Ironwood", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.38, 14.1003] - }, - "properties": { - "name": "Jitlaghwiw", - "realm_idx": 1775, - "order": "The Order of Detection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.2529, -21.32] - }, - "properties": { - "name": "Nenlolkakoka", - "realm_idx": 1776, - "order": "The Order of Power", - "resources": ["Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.5471, 40.38] - }, - "properties": { - "name": "Leslillillom", - "realm_idx": 1777, - "order": "The Order of Titans", - "resources": ["Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.88, -59.0996] - }, - "properties": { - "name": "Ngekngek", - "realm_idx": 1778, - "order": "The Order of the Fox", - "resources": ["Silver", "Copper", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.5529, 27.78] - }, - "properties": { - "name": "Ne\u00fapt\u00faont\u00faon", - "realm_idx": 1779, - "order": "The Order of Vitriol", - "resources": ["Copper", "Silver", "Wood", "Coal", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.7471, 0.58] - }, - "properties": { - "name": "Warpahur", - "realm_idx": 1780, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.6471, 53.18] - }, - "properties": { - "name": "Nweleaqtuev", - "realm_idx": 1781, - "order": "The Order of Titans", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.5471, 1.38] - }, - "properties": { - "name": "Ulmon", - "realm_idx": 1782, - "order": "The Order of Brilliance", - "resources": ["Silver", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.98, -5.0997] - }, - "properties": { - "name": "Isusizisip", - "realm_idx": 1783, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Obsidian", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.3471, -12.22] - }, - "properties": { - "name": "Kuzkuz", - "realm_idx": 1784, - "order": "The Order of Perfection", - "resources": ["Stone", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.58, 1.1003] - }, - "properties": { - "name": "Leqojesopje", - "realm_idx": 1785, - "order": "The Order of Detection", - "resources": ["Wood", "Alchemical Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.2529, 15.88] - }, - "properties": { - "name": "Ngonguvotaj", - "realm_idx": 1786, - "order": "The Order of Vitriol", - "resources": ["Ignium", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.48, -32.6997] - }, - "properties": { - "name": "Kinmjim", - "realm_idx": 1787, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.9471, -23.52] - }, - "properties": { - "name": "Imkon Nune", - "realm_idx": 1788, - "order": "The Order of Giants", - "resources": ["Silver", "Wood", "Diamonds", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.3529, -23.72] - }, - "properties": { - "name": "\u00dahz\u00fargulm", - "realm_idx": 1789, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.38, 30.1003] - }, - "properties": { - "name": "Pumon", - "realm_idx": 1790, - "order": "The Order of Reflection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.3529, 21.28] - }, - "properties": { - "name": "Mengmeng", - "realm_idx": 1791, - "order": "The Order of Vitriol", - "resources": ["Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.78, -58.0996] - }, - "properties": { - "name": "lot Yoytok", - "realm_idx": 1792, - "order": "The Order of the Fox", - "resources": ["Coal", "Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.1471, 40.48] - }, - "properties": { - "name": "Inmunking", - "realm_idx": 1793, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Obsidian", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.1529, 11.38] - }, - "properties": { - "name": "Musmiz", - "realm_idx": 1794, - "order": "The Order of Vitriol", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.4121, 9.349] - }, - "properties": { - "name": "P\u00falp\u00falti", - "realm_idx": 1795, - "order": "The Order of Protection", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.0668, -54.0114] - }, - "properties": { - "name": "Stuslos", - "realm_idx": 1796, - "order": "The Order of the Fox", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.18, -51.1996] - }, - "properties": { - "name": "Olsim", - "realm_idx": 1797, - "order": "The Order of the Fox", - "resources": ["Silver", "Stone", "Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.0876, 29.0411] - }, - "properties": { - "name": "Wir\u2018muw\u2018ewuy", - "realm_idx": 1798, - "order": "The Order of Reflection", - "resources": ["Silver", "Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.2801, 45.5004] - }, - "properties": { - "name": "\u00cfslukkus", - "realm_idx": 1799, - "order": "The Order of Anger", - "resources": ["Copper", "Wood", "Coal", "Gold", "Hartwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.5529, -37.52] - }, - "properties": { - "name": "Awemug", - "realm_idx": 1800, - "order": "The Order of Power", - "resources": ["Ruby", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.8529, -4.32] - }, - "properties": { - "name": "Pattl\u00e2p", - "realm_idx": 1801, - "order": "The Order of the Fox", - "resources": ["Wood", "Copper", "Obsidian", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.1471, 42.08] - }, - "properties": { - "name": "M\u00edngshungk\u00e1n", - "realm_idx": 1802, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.2471, 13.48] - }, - "properties": { - "name": "Imuman", - "realm_idx": 1803, - "order": "The Order of Brilliance", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.1471, 0.58] - }, - "properties": { - "name": "\u00cdb\u00e1dim\u00e1p\u00e1g", - "realm_idx": 1804, - "order": "The Order of Brilliance", - "resources": ["Stone", "Ironwood", "Gold", "Ethereal Silica", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.8471, -34.82] - }, - "properties": { - "name": "luls Pe", - "realm_idx": 1805, - "order": "The Order of Giants", - "resources": ["Wood", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.48, -19.1997] - }, - "properties": { - "name": "Kurm\u00ef Kur", - "realm_idx": 1806, - "order": "The Order of Detection", - "resources": ["Coal", "Dragonhide"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.6471, -33.82] - }, - "properties": { - "name": "Ubu nu Enun", - "realm_idx": 1807, - "order": "The Order of Giants", - "resources": ["Wood", "Cold Iron", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.4801, -27.2996] - }, - "properties": { - "name": "Ukukutup", - "realm_idx": 1808, - "order": "The Order of the Twins", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.4471, -44.42] - }, - "properties": { - "name": "Kospod", - "realm_idx": 1809, - "order": "The Order of Giants", - "resources": ["Gold", "Obsidian", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.8801, 28.2004] - }, - "properties": { - "name": "Didili", - "realm_idx": 1810, - "order": "The Order of Anger", - "resources": ["Coal", "Obsidian", "Ironwood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.6471, -10.72] - }, - "properties": { - "name": "Lu\u00fclainlain", - "realm_idx": 1811, - "order": "The Order of Perfection", - "resources": ["Stone", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.6529, 26.18] - }, - "properties": { - "name": "Zhobkazh", - "realm_idx": 1812, - "order": "The Order of Vitriol", - "resources": ["Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.4018, 46.4942] - }, - "properties": { - "name": "Tututi", - "realm_idx": 1813, - "order": "The Order of Fury", - "resources": ["Ironwood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.0471, 28.98] - }, - "properties": { - "name": "Scht\u00fasses", - "realm_idx": 1814, - "order": "The Order of Vitriol", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.8801, -38.3996] - }, - "properties": { - "name": "Numspe", - "realm_idx": 1815, - "order": "The Order of the Twins", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.8471, -23.92] - }, - "properties": { - "name": "K\u00eanpyn", - "realm_idx": 1816, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.8801, 22.9004] - }, - "properties": { - "name": "Zo\u00e9n\u00e9", - "realm_idx": 1817, - "order": "The Order of Rage", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.0471, 1.38] - }, - "properties": { - "name": "I mab Agbaa", - "realm_idx": 1818, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood", "Alchemical Silver", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.6801, 45.3004] - }, - "properties": { - "name": "Lupzii", - "realm_idx": 1819, - "order": "The Order of Anger", - "resources": ["Sapphire", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.58, -55.0996] - }, - "properties": { - "name": "Keymmaymniw", - "realm_idx": 1820, - "order": "The Order of the Fox", - "resources": ["Copper", "Cold Iron", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.88, -57.8996] - }, - "properties": { - "name": "Chlonshankom", - "realm_idx": 1821, - "order": "The Order of the Fox", - "resources": ["Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.8471, 46.38] - }, - "properties": { - "name": "Tumsmattatmi", - "realm_idx": 1822, - "order": "The Order of Titans", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.8529, 45.48] - }, - "properties": { - "name": "Mintuttaut", - "realm_idx": 1823, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.2529, -13.72] - }, - "properties": { - "name": "Hom\u00fch\u00fcl", - "realm_idx": 1824, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.5471, 40.18] - }, - "properties": { - "name": "\u00c9p \u00cdlnitt\u00e9l", - "realm_idx": 1825, - "order": "The Order of Skill", - "resources": ["Silver", "Wood", "Obsidian", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.4471, 32.28] - }, - "properties": { - "name": "Skustus", - "realm_idx": 1826, - "order": "The Order of Skill", - "resources": ["Coal", "Silver", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.2527, 53.0801] - }, - "properties": { - "name": "Ayvoyyew", - "realm_idx": 1827, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.9471, 23.28] - }, - "properties": { - "name": "tum-Karnol", - "realm_idx": 1828, - "order": "The Order of Skill", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.1801, 38.1004] - }, - "properties": { - "name": "Umumim", - "realm_idx": 1829, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.08, 23.9003] - }, - "properties": { - "name": "Kuakuinkuat", - "realm_idx": 1830, - "order": "The Order of Detection", - "resources": [ - "Stone", - "True Ice", - "Coal", - "Hartwood", - "Wood", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.1471, -31.92] - }, - "properties": { - "name": "Kexkiad", - "realm_idx": 1831, - "order": "The Order of Giants", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-43.1529, 52.18] - }, - "properties": { - "name": "Ulot-Opip", - "realm_idx": 1832, - "order": "The Order of Fury", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.6471, -36.12] - }, - "properties": { - "name": "Zhlugnalzlug", - "realm_idx": 1833, - "order": "The Order of Giants", - "resources": ["Coal", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [130.7585, 7.9371] - }, - "properties": { - "name": "pe Mup", - "realm_idx": 1834, - "order": "The Order of Protection", - "resources": ["Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.3471, 12.78] - }, - "properties": { - "name": "Skukstenuk", - "realm_idx": 1835, - "order": "The Order of Protection", - "resources": ["Wood", "Ironwood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.98, -59.7996] - }, - "properties": { - "name": "Tunot Tuus", - "realm_idx": 1836, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.6471, -7.12] - }, - "properties": { - "name": "Mischnasch", - "realm_idx": 1837, - "order": "The Order of Brilliance", - "resources": ["Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.38, -6.4997] - }, - "properties": { - "name": "Snenmamtet", - "realm_idx": 1838, - "order": "The Order of Detection", - "resources": ["Coal", "Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.78, -57.2996] - }, - "properties": { - "name": "Blaashshluud", - "realm_idx": 1839, - "order": "The Order of the Fox", - "resources": ["Stone", "Silver", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.2381, 28.9596] - }, - "properties": { - "name": "Qumkamgun", - "realm_idx": 1840, - "order": "The Order of Reflection", - "resources": ["Coal", "Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.6801, -52.6996] - }, - "properties": { - "name": "Pamimupasu", - "realm_idx": 1841, - "order": "The Order of the Twins", - "resources": [ - "Obsidian", - "Stone", - "Wood", - "Gold", - "Coal", - "Copper", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.3123, -51.6752] - }, - "properties": { - "name": "Ag\u00edrg", - "realm_idx": 1842, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.7471, 34.88] - }, - "properties": { - "name": "Bwuntrunmun", - "realm_idx": 1843, - "order": "The Order of Skill", - "resources": [ - "Coal", - "Wood", - "Copper", - "Hartwood", - "Obsidian", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.2471, 8.68] - }, - "properties": { - "name": "Mumkammum", - "realm_idx": 1844, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.0471, -11.22] - }, - "properties": { - "name": "Yilwuqleqlat", - "realm_idx": 1845, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.28, 32.2003] - }, - "properties": { - "name": "Aumnie", - "realm_idx": 1846, - "order": "The Order of Fury", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.28, -0.9997] - }, - "properties": { - "name": "Titm\u00fa", - "realm_idx": 1847, - "order": "The Order of Detection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.8471, 5.58] - }, - "properties": { - "name": "\u00daq\u00faq g\u00faz Ik", - "realm_idx": 1848, - "order": "The Order of Protection", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.38, 37.6003] - }, - "properties": { - "name": "Pongmung", - "realm_idx": 1849, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Ironwood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.0471, 11.48] - }, - "properties": { - "name": "Sbubsnig", - "realm_idx": 1850, - "order": "The Order of Brilliance", - "resources": ["Wood", "Obsidian", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.3471, 25.18] - }, - "properties": { - "name": "\u00e1n Kimg\u00e1nq\u00edm", - "realm_idx": 1851, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Wood", "Coal", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.0471, -40.22] - }, - "properties": { - "name": "Mummuhtuh", - "realm_idx": 1852, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.58, 16.3003] - }, - "properties": { - "name": "Elhelilt-Ilt", - "realm_idx": 1853, - "order": "The Order of Detection", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.5471, -21.52] - }, - "properties": { - "name": "stom Kanfpak", - "realm_idx": 1854, - "order": "The Order of Giants", - "resources": ["Obsidian", "Stone", "Ruby", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.28, -55.3996] - }, - "properties": { - "name": "U Luu\u2018pipiuk", - "realm_idx": 1855, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.5801, -28.0996] - }, - "properties": { - "name": "Sokauk-Moum", - "realm_idx": 1856, - "order": "The Order of the Twins", - "resources": ["Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.9471, 10.68] - }, - "properties": { - "name": "Mukkikk\u00e2s", - "realm_idx": 1857, - "order": "The Order of Brilliance", - "resources": ["Wood", "Sapphire", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.3471, -49.32] - }, - "properties": { - "name": "Kunikimimuku", - "realm_idx": 1858, - "order": "The Order of Giants", - "resources": ["Silver", "Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.4103, -22.171] - }, - "properties": { - "name": "Emmenkhin", - "realm_idx": 1859, - "order": "The Order of Perfection", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.78, -7.9997] - }, - "properties": { - "name": "D\u00fcnan", - "realm_idx": 1860, - "order": "The Order of Detection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.7471, 30.48] - }, - "properties": { - "name": "Mwsp\u00f4kfmim", - "realm_idx": 1861, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.8471, -29.32] - }, - "properties": { - "name": "P\u00e4nkunpomk\u00e4m", - "realm_idx": 1862, - "order": "The Order of Giants", - "resources": ["Stone", "Ironwood", "Wood", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.7471, 39.88] - }, - "properties": { - "name": "Nw\u00e1nn\u00e1l", - "realm_idx": 1863, - "order": "The Order of Enlightenment", - "resources": ["Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.88, 40.4003] - }, - "properties": { - "name": "Keemkaazh", - "realm_idx": 1864, - "order": "The Order of Reflection", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.2471, 18.58] - }, - "properties": { - "name": "Kakn\u00edt", - "realm_idx": 1865, - "order": "The Order of Brilliance", - "resources": ["Stone", "Ironwood", "Coal", "Copper", "Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.6801, 46.4004] - }, - "properties": { - "name": "Neklesmus", - "realm_idx": 1866, - "order": "The Order of Anger", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.8529, -3.02] - }, - "properties": { - "name": "Tschitkiw", - "realm_idx": 1867, - "order": "The Order of Power", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.0471, -50.22] - }, - "properties": { - "name": "Kekkekem", - "realm_idx": 1868, - "order": "The Order of Giants", - "resources": ["Coal", "Stone", "Gold", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [71.0471, -27.52] - }, - "properties": { - "name": "Kismis", - "realm_idx": 1869, - "order": "The Order of Perfection", - "resources": ["Diamonds", "Stone", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.3471, 23.48] - }, - "properties": { - "name": "Wonki", - "realm_idx": 1870, - "order": "The Order of Skill", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.2078, -21.952] - }, - "properties": { - "name": "Lolnme", - "realm_idx": 1871, - "order": "The Order of Protection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.3471, -16.02] - }, - "properties": { - "name": "Tihen \u00e1n Oni", - "realm_idx": 1872, - "order": "The Order of Power", - "resources": ["Gold", "Wood", "Coal", "Copper", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.7471, 20.38] - }, - "properties": { - "name": "Lonpampam", - "realm_idx": 1873, - "order": "The Order of Skill", - "resources": ["Coal", "Ruby", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.6471, 28.18] - }, - "properties": { - "name": "\u2018yu\u2018 Myuhmum", - "realm_idx": 1874, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Copper", "Wood", "Hartwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.5471, 40.18] - }, - "properties": { - "name": "Sujsujuwow", - "realm_idx": 1875, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.88, -46.9997] - }, - "properties": { - "name": "Pitmasmas", - "realm_idx": 1876, - "order": "The Order of the Fox", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.2529, 22.68] - }, - "properties": { - "name": "Yluyylis", - "realm_idx": 1877, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.0471, -21.12] - }, - "properties": { - "name": "Hw\u00e2p\u00eamhuph\u00eak", - "realm_idx": 1878, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.1471, 37.88] - }, - "properties": { - "name": "Um lat Imom", - "realm_idx": 1879, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.1585, 8.6553] - }, - "properties": { - "name": "Uzuzono\u017e", - "realm_idx": 1880, - "order": "The Order of Protection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.0471, 7.38] - }, - "properties": { - "name": "Nen\u2018r\u00e1nnlen", - "realm_idx": 1881, - "order": "The Order of Brilliance", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.9471, 10.88] - }, - "properties": { - "name": "Tem\u00f4mwnrumri", - "realm_idx": 1882, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.3471, -24.82] - }, - "properties": { - "name": "N\u00ed\u017e\u2018\u00e9s\u2018ez", - "realm_idx": 1883, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.0801, -0.1996] - }, - "properties": { - "name": "\u2018ukennikekun", - "realm_idx": 1884, - "order": "The Order of Rage", - "resources": ["Wood", "Ironwood", "Silver", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.5882, 56.2198] - }, - "properties": { - "name": "g\u00f3n Murjeq", - "realm_idx": 1885, - "order": "The Order of Fury", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.48, -43.8996] - }, - "properties": { - "name": "Luptupek", - "realm_idx": 1886, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Gold", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.5801, -26.5996] - }, - "properties": { - "name": "Quspulpuoy", - "realm_idx": 1887, - "order": "The Order of the Twins", - "resources": ["Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.28, 11.6003] - }, - "properties": { - "name": "Tutlite", - "realm_idx": 1888, - "order": "The Order of Fury", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.78, 16.1003] - }, - "properties": { - "name": "Tleplatkek", - "realm_idx": 1889, - "order": "The Order of Detection", - "resources": ["Stone", "Cold Iron", "Silver", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.48, -35.4997] - }, - "properties": { - "name": "Sosisisiso", - "realm_idx": 1890, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.4564, -23.1933] - }, - "properties": { - "name": "Kererh", - "realm_idx": 1891, - "order": "The Order of Protection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.2856, 4.3964] - }, - "properties": { - "name": "Omuk Enuk", - "realm_idx": 1892, - "order": "The Order of Protection", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.9912, -12.507] - }, - "properties": { - "name": "Nlimpus", - "realm_idx": 1893, - "order": "The Order of Perfection", - "resources": [ - "Wood", - "Stone", - "Obsidian", - "Sapphire", - "Cold Iron", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.1844, 29.0744] - }, - "properties": { - "name": "son-Lul-Glob", - "realm_idx": 1894, - "order": "The Order of Anger", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.0294, 30.0264] - }, - "properties": { - "name": "Tuiuzhizh", - "realm_idx": 1895, - "order": "The Order of Reflection", - "resources": [ - "Diamonds", - "Stone", - "Ruby", - "Ironwood", - "Obsidian", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.5801, -10.0996] - }, - "properties": { - "name": "Ashnr\u00f4knr\u00f4k", - "realm_idx": 1896, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.2471, 47.48] - }, - "properties": { - "name": "Ukum S\u00e4l", - "realm_idx": 1897, - "order": "The Order of Skill", - "resources": ["Ignium", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.2471, 40.98] - }, - "properties": { - "name": "Tunekasu", - "realm_idx": 1898, - "order": "The Order of Skill", - "resources": ["Wood", "Ethereal Silica", "Copper", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.0529, -41.02] - }, - "properties": { - "name": "wew Khud", - "realm_idx": 1899, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.7471, 29.78] - }, - "properties": { - "name": "Nulchnalk", - "realm_idx": 1900, - "order": "The Order of Skill", - "resources": ["Cold Iron", "Gold", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.5471, -11.92] - }, - "properties": { - "name": "Nguii Saaii", - "realm_idx": 1901, - "order": "The Order of Perfection", - "resources": ["Copper", "Ironwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.7455, 11.8031] - }, - "properties": { - "name": "Noeseinoe", - "realm_idx": 1902, - "order": "The Order of Protection", - "resources": ["Stone", "Copper", "Gold", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.2471, -36.42] - }, - "properties": { - "name": "Un\u00e1ketik", - "realm_idx": 1903, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.0154, 45.4965] - }, - "properties": { - "name": "Monmuh", - "realm_idx": 1904, - "order": "The Order of Anger", - "resources": ["Ironwood", "Copper", "Hartwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.4346, 37.7948] - }, - "properties": { - "name": "Tunan", - "realm_idx": 1905, - "order": "The Order of Fury", - "resources": ["Wood", "Copper", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.78, -56.0996] - }, - "properties": { - "name": "Maunsponnong", - "realm_idx": 1906, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.6471, 6.18] - }, - "properties": { - "name": "naut Nun", - "realm_idx": 1907, - "order": "The Order of Brilliance", - "resources": ["Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.88, -60.0996] - }, - "properties": { - "name": "Suo oy Zeto", - "realm_idx": 1908, - "order": "The Order of the Fox", - "resources": ["Cold Iron", "Copper", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.8471, 3.48] - }, - "properties": { - "name": "Imak Awepil", - "realm_idx": 1909, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-42.4529, 53.18] - }, - "properties": { - "name": "Rilidi", - "realm_idx": 1910, - "order": "The Order of Fury", - "resources": ["Stone", "Obsidian", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.4471, 11.08] - }, - "properties": { - "name": "Nirlermaal", - "realm_idx": 1911, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Ironwood", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.9461, 21.4834] - }, - "properties": { - "name": "Iz\u00edkim\u00edk", - "realm_idx": 1912, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.6529, -26.22] - }, - "properties": { - "name": "Tudpaknukir", - "realm_idx": 1913, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [71.5471, 47.68] - }, - "properties": { - "name": "Salsalimuk", - "realm_idx": 1914, - "order": "The Order of Skill", - "resources": [ - "Alchemical Silver", - "Ruby", - "Stone", - "Wood", - "Obsidian", - "Deep Crystal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.0527, 52.2801] - }, - "properties": { - "name": "Pasarn", - "realm_idx": 1915, - "order": "The Order of the Twins", - "resources": ["Wood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.78, -61.8996] - }, - "properties": { - "name": "Nonpoung", - "realm_idx": 1916, - "order": "The Order of the Fox", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.5471, 14.48] - }, - "properties": { - "name": "Mrimmamkrum", - "realm_idx": 1917, - "order": "The Order of Protection", - "resources": ["Obsidian", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.8527, 50.9801] - }, - "properties": { - "name": "Stepsnon", - "realm_idx": 1918, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.4529, 25.48] - }, - "properties": { - "name": "K\u00e1pkap", - "realm_idx": 1919, - "order": "The Order of Vitriol", - "resources": ["Coal", "Gold", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.0529, 3.18] - }, - "properties": { - "name": "S\u00ebmboms\u00efm", - "realm_idx": 1920, - "order": "The Order of Vitriol", - "resources": ["Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.5529, 21.88] - }, - "properties": { - "name": "Popempo", - "realm_idx": 1921, - "order": "The Order of Vitriol", - "resources": ["Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.4471, 3.28] - }, - "properties": { - "name": "Qilkqo\u0161", - "realm_idx": 1922, - "order": "The Order of Brilliance", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.88, -57.0996] - }, - "properties": { - "name": "Pahukipu", - "realm_idx": 1923, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.7746, 44.8746] - }, - "properties": { - "name": "Puslusus", - "realm_idx": 1924, - "order": "The Order of Fury", - "resources": ["Ethereal Silica", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.9471, 14.98] - }, - "properties": { - "name": "lin-S\u2018in", - "realm_idx": 1925, - "order": "The Order of Brilliance", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.68, 33.9003] - }, - "properties": { - "name": "s\u00e1 G\u00f3ng\u00f3n", - "realm_idx": 1926, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.7085, 4.3125] - }, - "properties": { - "name": "Liseno", - "realm_idx": 1927, - "order": "The Order of Protection", - "resources": ["Coal", "Silver", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.9524, 36.9495] - }, - "properties": { - "name": "Tastas", - "realm_idx": 1928, - "order": "The Order of Fury", - "resources": ["Silver", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.1471, -9.02] - }, - "properties": { - "name": "Naip\u2018o\u00e9pi\u00ed", - "realm_idx": 1929, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.5889, 29.7826] - }, - "properties": { - "name": "W\u00e1nj\u00e1njamw\u00e1n", - "realm_idx": 1930, - "order": "The Order of Rage", - "resources": ["Wood", "Ironwood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.0471, -4.02] - }, - "properties": { - "name": "Hahhukhin", - "realm_idx": 1931, - "order": "The Order of Power", - "resources": ["True Ice", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.6529, 52.18] - }, - "properties": { - "name": "Nungtwamkjum", - "realm_idx": 1932, - "order": "The Order of Fury", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.7801, -45.2996] - }, - "properties": { - "name": "d\u00e9-Razat", - "realm_idx": 1933, - "order": "The Order of the Twins", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.3627, -25.492] - }, - "properties": { - "name": "Chalwol", - "realm_idx": 1934, - "order": "The Order of Perfection", - "resources": ["Stone", "Ruby", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.1061, 37.5351] - }, - "properties": { - "name": "Dodsmod", - "realm_idx": 1935, - "order": "The Order of Fury", - "resources": ["Silver", "Gold", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.8471, 11.78] - }, - "properties": { - "name": "Taaitaai", - "realm_idx": 1936, - "order": "The Order of Brilliance", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.4471, 42.38] - }, - "properties": { - "name": "wis-Nis-Is", - "realm_idx": 1937, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Obsidian", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.1801, 10.5004] - }, - "properties": { - "name": "Rorli", - "realm_idx": 1938, - "order": "The Order of Rage", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.3471, -42.52] - }, - "properties": { - "name": "Geg Gejs", - "realm_idx": 1939, - "order": "The Order of Giants", - "resources": ["Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.58, 21.2003] - }, - "properties": { - "name": "O\u2018\u2018lon", - "realm_idx": 1940, - "order": "The Order of Detection", - "resources": [ - "Stone", - "Obsidian", - "Cold Iron", - "Coal", - "Wood", - "Sapphire" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.5471, 42.58] - }, - "properties": { - "name": "Paksas", - "realm_idx": 1941, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Stone", "Sapphire", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.8471, 11.98] - }, - "properties": { - "name": "Ebebeb", - "realm_idx": 1942, - "order": "The Order of Skill", - "resources": ["Coal", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.6471, 50.68] - }, - "properties": { - "name": "Melmmel", - "realm_idx": 1943, - "order": "The Order of Skill", - "resources": ["Coal", "Stone", "Ironwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.6529, 47.88] - }, - "properties": { - "name": "H\u00edh Hih", - "realm_idx": 1944, - "order": "The Order of Titans", - "resources": ["Stone", "Copper", "Obsidian", "Ignium", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.2529, -24.92] - }, - "properties": { - "name": "Siesiosiemui", - "realm_idx": 1945, - "order": "The Order of Power", - "resources": ["Diamonds", "Hartwood", "Wood", "Sapphire", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.6471, 2.18] - }, - "properties": { - "name": "\u00da\u00fatot", - "realm_idx": 1946, - "order": "The Order of Power", - "resources": ["Wood", "Copper", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.18, -54.0996] - }, - "properties": { - "name": "Toiwbuoy", - "realm_idx": 1947, - "order": "The Order of the Fox", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.1471, 40.18] - }, - "properties": { - "name": "Hiphikhah", - "realm_idx": 1948, - "order": "The Order of Skill", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.1471, 39.18] - }, - "properties": { - "name": "Sraqqlong", - "realm_idx": 1949, - "order": "The Order of Skill", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.4801, 30.4004] - }, - "properties": { - "name": "Ushom Otonot", - "realm_idx": 1950, - "order": "The Order of Anger", - "resources": ["Wood", "Copper", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.5471, 40.88] - }, - "properties": { - "name": "Hish\u00f3zh", - "realm_idx": 1951, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Coal", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.9116, 49.2572] - }, - "properties": { - "name": "Emruh-Kih", - "realm_idx": 1952, - "order": "The Order of Fury", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.994, -34.2179] - }, - "properties": { - "name": "Elnkelnuk", - "realm_idx": 1953, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.2801, 28.0004] - }, - "properties": { - "name": "Sansnun", - "realm_idx": 1954, - "order": "The Order of Rage", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.4607, -22.8298] - }, - "properties": { - "name": "Guy\u00f6lnabalmu", - "realm_idx": 1955, - "order": "The Order of Perfection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.8471, 8.68] - }, - "properties": { - "name": "ku Lama", - "realm_idx": 1956, - "order": "The Order of Protection", - "resources": [ - "Coal", - "Twilight Quartz", - "Ironwood", - "Stone", - "Adamantine", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.7878, -45.0904] - }, - "properties": { - "name": "Paumiu", - "realm_idx": 1957, - "order": "The Order of the Fox", - "resources": ["Coal", "Stone", "Adamantine", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.1731, 37.5253] - }, - "properties": { - "name": "Pigsdytskap", - "realm_idx": 1958, - "order": "The Order of Fury", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.6471, 44.18] - }, - "properties": { - "name": "Nonson", - "realm_idx": 1959, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.0909, -9.8309] - }, - "properties": { - "name": "Wekwuk", - "realm_idx": 1960, - "order": "The Order of Perfection", - "resources": ["Wood", "Ironwood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.9968, 27.1036] - }, - "properties": { - "name": "Gelpserzes", - "realm_idx": 1961, - "order": "The Order of Reflection", - "resources": ["Stone", "Deep Crystal", "Cold Iron", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.28, 26.6003] - }, - "properties": { - "name": "Nomtomsoun", - "realm_idx": 1962, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.68, -52.8996] - }, - "properties": { - "name": "Yinzun", - "realm_idx": 1963, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.08, -45.5997] - }, - "properties": { - "name": "Ken kom Mlun", - "realm_idx": 1964, - "order": "The Order of the Fox", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.1471, -5.42] - }, - "properties": { - "name": "Washuswas", - "realm_idx": 1965, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.9471, 2.78] - }, - "properties": { - "name": "Lonslong\u00ebn", - "realm_idx": 1966, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.8801, -52.4996] - }, - "properties": { - "name": "Fbongshdong", - "realm_idx": 1967, - "order": "The Order of the Twins", - "resources": ["Deep Crystal", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.9877, 29.3203] - }, - "properties": { - "name": "Nelusne", - "realm_idx": 1968, - "order": "The Order of Anger", - "resources": ["Copper", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.7936, 3.4423] - }, - "properties": { - "name": "Tolnteral", - "realm_idx": 1969, - "order": "The Order of Reflection", - "resources": ["Wood", "Copper", "Ethereal Silica", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.1471, 8.98] - }, - "properties": { - "name": "Motme-Tom", - "realm_idx": 1970, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.6471, -44.12] - }, - "properties": { - "name": "Sulsul", - "realm_idx": 1971, - "order": "The Order of Giants", - "resources": ["Ruby", "Coal", "Copper", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.1471, -11.22] - }, - "properties": { - "name": "Yuiryitasas", - "realm_idx": 1972, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Gold", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.5471, 23.28] - }, - "properties": { - "name": "Pemhwennwam", - "realm_idx": 1973, - "order": "The Order of Vitriol", - "resources": ["Copper", "Coal", "Wood", "Stone", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.2471, -38.62] - }, - "properties": { - "name": "Munan", - "realm_idx": 1974, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Copper", "Sapphire", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.3527, 51.2801] - }, - "properties": { - "name": "Notkonun", - "realm_idx": 1975, - "order": "The Order of the Twins", - "resources": ["Wood", "Copper", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.0471, 26.18] - }, - "properties": { - "name": "Samgutmam", - "realm_idx": 1976, - "order": "The Order of Enlightenment", - "resources": ["True Ice", "Silver", "Ignium", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.9471, 18.08] - }, - "properties": { - "name": "Syuknwuksyuk", - "realm_idx": 1977, - "order": "The Order of Brilliance", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.48, -31.1997] - }, - "properties": { - "name": "Kitonen", - "realm_idx": 1978, - "order": "The Order of Detection", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.88, -44.4997] - }, - "properties": { - "name": "Bisbyirtwim", - "realm_idx": 1979, - "order": "The Order of the Fox", - "resources": ["Wood", "True Ice", "Cold Iron", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.819, -12.0263] - }, - "properties": { - "name": "Lozhnus", - "realm_idx": 1980, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.0471, -39.52] - }, - "properties": { - "name": "Piltim", - "realm_idx": 1981, - "order": "The Order of Giants", - "resources": [ - "Ironwood", - "True Ice", - "Coal", - "Stone", - "Cold Iron", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.6471, 30.68] - }, - "properties": { - "name": "\u00cdpgizh", - "realm_idx": 1982, - "order": "The Order of Skill", - "resources": ["Obsidian", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.0568, -53.2182] - }, - "properties": { - "name": "Din Ren", - "realm_idx": 1983, - "order": "The Order of the Twins", - "resources": ["Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.5529, -14.02] - }, - "properties": { - "name": "Ahu\u00edn", - "realm_idx": 1984, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Coal", "Copper", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.7471, 54.68] - }, - "properties": { - "name": "Nomsussgosh", - "realm_idx": 1985, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.6529, -35.22] - }, - "properties": { - "name": "Umnul", - "realm_idx": 1986, - "order": "The Order of Power", - "resources": ["Ethereal Silica", "Wood", "Ironwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.3471, -11.12] - }, - "properties": { - "name": "Muoko Teet", - "realm_idx": 1987, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood", "Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.6471, -15.32] - }, - "properties": { - "name": "Mukkok", - "realm_idx": 1988, - "order": "The Order of Giants", - "resources": ["Copper", "Silver", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.9471, 10.88] - }, - "properties": { - "name": "Plahkup", - "realm_idx": 1989, - "order": "The Order of Protection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.9801, 51.8004] - }, - "properties": { - "name": "Umanun", - "realm_idx": 1990, - "order": "The Order of Anger", - "resources": ["Copper", "Cold Iron", "Deep Crystal", "Ironwood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.6471, 18.48] - }, - "properties": { - "name": "Ad\u00e9mit", - "realm_idx": 1991, - "order": "The Order of Skill", - "resources": ["Coal", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.18, 27.1003] - }, - "properties": { - "name": "Karkolurkar", - "realm_idx": 1992, - "order": "The Order of Reflection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.4471, 39.78] - }, - "properties": { - "name": "P\u00e4\u00efp\u00ebop\u00e4\u00efm", - "realm_idx": 1993, - "order": "The Order of Skill", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.9471, 7.38] - }, - "properties": { - "name": "U em Neni", - "realm_idx": 1994, - "order": "The Order of Brilliance", - "resources": ["Silver", "Wood", "Copper", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.286, 39.6313] - }, - "properties": { - "name": "Imput", - "realm_idx": 1995, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.6471, 7.68] - }, - "properties": { - "name": "Annon Natmom", - "realm_idx": 1996, - "order": "The Order of Brilliance", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.784, -23.4082] - }, - "properties": { - "name": "Tusnukmek", - "realm_idx": 1997, - "order": "The Order of Protection", - "resources": ["Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.9529, 49.58] - }, - "properties": { - "name": "Tiotloi", - "realm_idx": 1998, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.2471, 45.48] - }, - "properties": { - "name": "Suniku", - "realm_idx": 1999, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.2801, 5.6004] - }, - "properties": { - "name": "Yulimwulim", - "realm_idx": 2000, - "order": "The Order of Rage", - "resources": ["Wood", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.6289, 29.6927] - }, - "properties": { - "name": "Ek Srotpip", - "realm_idx": 2001, - "order": "The Order of Fury", - "resources": ["Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-78.0801, -15.2996] - }, - "properties": { - "name": "Wohehezhi", - "realm_idx": 2002, - "order": "The Order of Rage", - "resources": ["Hartwood", "Obsidian", "Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.1471, 23.18] - }, - "properties": { - "name": "Luktisluk\u00e2k", - "realm_idx": 2003, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.4529, 6.38] - }, - "properties": { - "name": "Zoszos", - "realm_idx": 2004, - "order": "The Order of Vitriol", - "resources": [ - "Stone", - "Ethereal Silica", - "Coal", - "Ironwood", - "Obsidian", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.0471, -20.82] - }, - "properties": { - "name": "Nasnosnos", - "realm_idx": 2005, - "order": "The Order of Power", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.1471, 21.48] - }, - "properties": { - "name": "Uzlesh Leshe", - "realm_idx": 2006, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.2252, 44.4689] - }, - "properties": { - "name": "Fnimfnim", - "realm_idx": 2007, - "order": "The Order of Anger", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.4471, 37.08] - }, - "properties": { - "name": "Shoshosrosh", - "realm_idx": 2008, - "order": "The Order of Skill", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.6529, 28.48] - }, - "properties": { - "name": "Dusnu", - "realm_idx": 2009, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone", "Diamonds", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.6471, -16.22] - }, - "properties": { - "name": "Ngantutulo", - "realm_idx": 2010, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.8471, 20.38] - }, - "properties": { - "name": "Lornot", - "realm_idx": 2011, - "order": "The Order of Brilliance", - "resources": ["Hartwood", "Obsidian", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.7471, 29.08] - }, - "properties": { - "name": "Ml\u00faybaz", - "realm_idx": 2012, - "order": "The Order of Titans", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.2169, 29.662] - }, - "properties": { - "name": "Eshusakhakh", - "realm_idx": 2013, - "order": "The Order of Fury", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.1851, 41.3865] - }, - "properties": { - "name": "Tit\u00e2ltit", - "realm_idx": 2014, - "order": "The Order of Fury", - "resources": ["Ironwood", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.9471, -14.42] - }, - "properties": { - "name": "\u00c4lgtomtult", - "realm_idx": 2015, - "order": "The Order of Perfection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.2658, -24.293] - }, - "properties": { - "name": "Lokluot", - "realm_idx": 2016, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Copper", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.8471, -13.82] - }, - "properties": { - "name": "paup-Leslop", - "realm_idx": 2017, - "order": "The Order of Perfection", - "resources": ["Wood", "Gold", "Coal", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.4801, -35.3996] - }, - "properties": { - "name": "lwel Sutnwet", - "realm_idx": 2018, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.88, -35.7997] - }, - "properties": { - "name": "Aghagh", - "realm_idx": 2019, - "order": "The Order of Reflection", - "resources": ["Deep Crystal", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.0124, -19.6876] - }, - "properties": { - "name": "nikh-Milniy", - "realm_idx": 2020, - "order": "The Order of Protection", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.1529, 5.88] - }, - "properties": { - "name": "tos Nittup", - "realm_idx": 2021, - "order": "The Order of Vitriol", - "resources": ["Ruby", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.4471, 16.88] - }, - "properties": { - "name": "Tiatmaimmai", - "realm_idx": 2022, - "order": "The Order of Skill", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.08, 31.9003] - }, - "properties": { - "name": "S\u00edn\u00edln", - "realm_idx": 2023, - "order": "The Order of Reflection", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.6471, -24.02] - }, - "properties": { - "name": "Pinskehnan", - "realm_idx": 2024, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.1471, 32.88] - }, - "properties": { - "name": "Ozurgud", - "realm_idx": 2025, - "order": "The Order of Skill", - "resources": ["Wood", "Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.0471, 27.48] - }, - "properties": { - "name": "Chkhul", - "realm_idx": 2026, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.0471, 41.48] - }, - "properties": { - "name": "Nuaschao", - "realm_idx": 2027, - "order": "The Order of Skill", - "resources": ["Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.0529, 26.88] - }, - "properties": { - "name": "Kek Tiyokh", - "realm_idx": 2028, - "order": "The Order of Vitriol", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.9471, 16.58] - }, - "properties": { - "name": "Ryazros", - "realm_idx": 2029, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Silver", "Coal", "Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.3471, 38.38] - }, - "properties": { - "name": "Yenum", - "realm_idx": 2030, - "order": "The Order of Skill", - "resources": ["Copper", "Gold", "Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.0471, 15.08] - }, - "properties": { - "name": "Kulemo", - "realm_idx": 2031, - "order": "The Order of Titans", - "resources": ["Wood", "Diamonds", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.18, -58.2996] - }, - "properties": { - "name": "kiun Kainhui", - "realm_idx": 2032, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.9471, 3.78] - }, - "properties": { - "name": "t\u00ed-P\u00edk\u00e1zhg\u00e1t", - "realm_idx": 2033, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Silver", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.4471, 30.88] - }, - "properties": { - "name": "\u2018u\u2018u Emo", - "realm_idx": 2034, - "order": "The Order of Titans", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.2471, 52.58] - }, - "properties": { - "name": "Kopkakson", - "realm_idx": 2035, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.9471, -13.52] - }, - "properties": { - "name": "Ruksk\u00e1ktas", - "realm_idx": 2036, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Hartwood", "Cold Iron", "Ruby", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.5529, 28.28] - }, - "properties": { - "name": "Shmunnet", - "realm_idx": 2037, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.3529, 39.38] - }, - "properties": { - "name": "Mepilnme", - "realm_idx": 2038, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.8737, -14.1787] - }, - "properties": { - "name": "puk Nepu", - "realm_idx": 2039, - "order": "The Order of Perfection", - "resources": ["Copper", "Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.6471, -16.42] - }, - "properties": { - "name": "Lostorkpis", - "realm_idx": 2040, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.7471, -14.02] - }, - "properties": { - "name": "Nenmonnum", - "realm_idx": 2041, - "order": "The Order of Perfection", - "resources": ["Silver", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.0471, 29.98] - }, - "properties": { - "name": "N\u00e1nzit", - "realm_idx": 2042, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.6527, 53.0801] - }, - "properties": { - "name": "Almulpalnul", - "realm_idx": 2043, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Wood", "Ironwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.38, 7.0003] - }, - "properties": { - "name": "Ch\u00e9rchul\u00edl", - "realm_idx": 2044, - "order": "The Order of Detection", - "resources": ["Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [108.847, -4.32] - }, - "properties": { - "name": "Enulinenon", - "realm_idx": 2045, - "order": "The Order of Perfection", - "resources": ["Sapphire", "Wood", "Hartwood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.2471, -28.42] - }, - "properties": { - "name": "Yd\u00e2sh\u00e2sh\u00e2t", - "realm_idx": 2046, - "order": "The Order of Giants", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.1471, 7.68] - }, - "properties": { - "name": "rep Libliz", - "realm_idx": 2047, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Silver", "Copper", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.2471, 34.38] - }, - "properties": { - "name": "Cha Ki", - "realm_idx": 2048, - "order": "The Order of Enlightenment", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.5529, -6.32] - }, - "properties": { - "name": "Mu\u2018nuw", - "realm_idx": 2049, - "order": "The Order of the Fox", - "resources": ["Coal", "Cold Iron", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.98, 12.6003] - }, - "properties": { - "name": "Ne\u00f6nuamm\u00f6\u00e4", - "realm_idx": 2050, - "order": "The Order of Detection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.1471, 12.18] - }, - "properties": { - "name": "Unnas Tuklum", - "realm_idx": 2051, - "order": "The Order of Titans", - "resources": ["Deep Crystal", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.6801, -42.6996] - }, - "properties": { - "name": "Belge", - "realm_idx": 2052, - "order": "The Order of the Twins", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.6471, 54.08] - }, - "properties": { - "name": "Lingen", - "realm_idx": 2053, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Coal", "Obsidian", "Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.8062, 25.9882] - }, - "properties": { - "name": "Talp-\u00edt-K\u00edp", - "realm_idx": 2054, - "order": "The Order of Fury", - "resources": ["Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.2539, 51.3496] - }, - "properties": { - "name": "Slultunsnan", - "realm_idx": 2055, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.5529, -15.42] - }, - "properties": { - "name": "Kiplel", - "realm_idx": 2056, - "order": "The Order of Power", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.4267, 56.6601] - }, - "properties": { - "name": "Ninnupnupni", - "realm_idx": 2057, - "order": "The Order of Fury", - "resources": [ - "Obsidian", - "Wood", - "Silver", - "Deep Crystal", - "Cold Iron", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.3722, -52.5396] - }, - "properties": { - "name": "R\u00e1mr\u00edn", - "realm_idx": 2058, - "order": "The Order of the Fox", - "resources": ["Wood", "Obsidian", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.88, 31.1003] - }, - "properties": { - "name": "Paste", - "realm_idx": 2059, - "order": "The Order of Reflection", - "resources": ["Copper", "Stone", "Wood", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.7471, 15.08] - }, - "properties": { - "name": "Pukimulini", - "realm_idx": 2060, - "order": "The Order of Skill", - "resources": ["Coal", "Stone", "Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.18, -5.8997] - }, - "properties": { - "name": "Zungdididi", - "realm_idx": 2061, - "order": "The Order of Reflection", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.8081, -24.3215] - }, - "properties": { - "name": "Lemel", - "realm_idx": 2062, - "order": "The Order of Reflection", - "resources": ["Copper", "Wood", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.9471, -19.72] - }, - "properties": { - "name": "Nurilerelmul", - "realm_idx": 2063, - "order": "The Order of Perfection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.3172, -20.7906] - }, - "properties": { - "name": "Qouauqquab", - "realm_idx": 2064, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-27.5529, -1.52] - }, - "properties": { - "name": "ing-Jijseja", - "realm_idx": 2065, - "order": "The Order of Vitriol", - "resources": ["Silver", "Coal", "Stone", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.58, 38.3003] - }, - "properties": { - "name": "Mummuk", - "realm_idx": 2066, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.4471, 8.68] - }, - "properties": { - "name": "Miunkiepmap", - "realm_idx": 2067, - "order": "The Order of Brilliance", - "resources": ["Silver", "Wood", "Stone", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.8471, 14.48] - }, - "properties": { - "name": "li-Muiatiin", - "realm_idx": 2068, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.8801, -21.0886] - }, - "properties": { - "name": "Fnelshil", - "realm_idx": 2069, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.3471, 26.78] - }, - "properties": { - "name": "kieauh-Hua", - "realm_idx": 2070, - "order": "The Order of Skill", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.4471, -37.12] - }, - "properties": { - "name": "Men-Sunnin", - "realm_idx": 2071, - "order": "The Order of Giants", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.9537, -23.7288] - }, - "properties": { - "name": "Takhghiughi", - "realm_idx": 2072, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.7529, 6.18] - }, - "properties": { - "name": "Tipkolnlut", - "realm_idx": 2073, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.653, -23.0155] - }, - "properties": { - "name": "sewp Sioslis", - "realm_idx": 2074, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.4801, -42.1996] - }, - "properties": { - "name": "Xoxo Wumugh", - "realm_idx": 2075, - "order": "The Order of the Twins", - "resources": ["Copper", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.6471, 24.88] - }, - "properties": { - "name": "kum Puaplaul", - "realm_idx": 2076, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Copper", "Ironwood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.8471, 3.78] - }, - "properties": { - "name": "num Moimmoim", - "realm_idx": 2077, - "order": "The Order of Brilliance", - "resources": ["Ruby", "Coal", "Gold", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.9471, 3.78] - }, - "properties": { - "name": "T\u00edknek", - "realm_idx": 2078, - "order": "The Order of Brilliance", - "resources": ["Wood", "Silver", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.6471, 32.18] - }, - "properties": { - "name": "\u00c1lbul", - "realm_idx": 2079, - "order": "The Order of Skill", - "resources": ["Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.2471, 32.68] - }, - "properties": { - "name": "Elaysliyl", - "realm_idx": 2080, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Stone", "Silver", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.98, -31.2997] - }, - "properties": { - "name": "L\u00e2yklykgog", - "realm_idx": 2081, - "order": "The Order of Reflection", - "resources": ["Hartwood", "Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.7801, -54.3996] - }, - "properties": { - "name": "Kakpeknuk", - "realm_idx": 2082, - "order": "The Order of the Twins", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.8471, -40.92] - }, - "properties": { - "name": "chu Chawdsa", - "realm_idx": 2083, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.88, 28.7003] - }, - "properties": { - "name": "Amalukalus", - "realm_idx": 2084, - "order": "The Order of Reflection", - "resources": ["Deep Crystal", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.0227, -14.5522] - }, - "properties": { - "name": "Tarnnak", - "realm_idx": 2085, - "order": "The Order of Rage", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.8471, 24.18] - }, - "properties": { - "name": "Ponmelhowp", - "realm_idx": 2086, - "order": "The Order of Skill", - "resources": ["Stone", "Ironwood", "Wood", "Coal", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.88, 3.0003] - }, - "properties": { - "name": "Uun mo Unap", - "realm_idx": 2087, - "order": "The Order of Reflection", - "resources": ["Copper", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.5333, 3.4503] - }, - "properties": { - "name": "\u00c1gah\u00e1q\u00e1g", - "realm_idx": 2088, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.68, -54.0996] - }, - "properties": { - "name": "\u00caketut-Uket", - "realm_idx": 2089, - "order": "The Order of the Fox", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.71, -29.182] - }, - "properties": { - "name": "Pusomolalu", - "realm_idx": 2090, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.4527, 45.9801] - }, - "properties": { - "name": "Mepoykniti", - "realm_idx": 2091, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.9471, 17.98] - }, - "properties": { - "name": "Lespokulnal", - "realm_idx": 2092, - "order": "The Order of Protection", - "resources": ["Ironwood", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.08, 29.5003] - }, - "properties": { - "name": "Likmilsirkam", - "realm_idx": 2093, - "order": "The Order of Fury", - "resources": [ - "Silver", - "Wood", - "Coal", - "Cold Iron", - "Obsidian", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.5801, 22.0004] - }, - "properties": { - "name": "Koumkuos", - "realm_idx": 2094, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.7529, 41.88] - }, - "properties": { - "name": "Tipmumteh", - "realm_idx": 2095, - "order": "The Order of Vitriol", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.7471, -12.32] - }, - "properties": { - "name": "wuzh Kuzh", - "realm_idx": 2096, - "order": "The Order of Power", - "resources": ["Copper", "Stone", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.1801, 24.4004] - }, - "properties": { - "name": "Ngaznizh", - "realm_idx": 2097, - "order": "The Order of Rage", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.28, 17.9003] - }, - "properties": { - "name": "Tukrilpuzh", - "realm_idx": 2098, - "order": "The Order of Fury", - "resources": ["Ironwood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.6471, 39.88] - }, - "properties": { - "name": "Ruk l\u00e4k Yok", - "realm_idx": 2099, - "order": "The Order of Skill", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.4471, 16.98] - }, - "properties": { - "name": "\u00cftal \u00cfk", - "realm_idx": 2100, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood", "Stone", "Sapphire", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-132.48, -0.2997] - }, - "properties": { - "name": "Itoeto mi Uu", - "realm_idx": 2101, - "order": "The Order of Detection", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.1471, 21.58] - }, - "properties": { - "name": "Wailnul", - "realm_idx": 2102, - "order": "The Order of Brilliance", - "resources": ["Coal", "Hartwood", "Obsidian", "Ethereal Silica", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.28, -59.0996] - }, - "properties": { - "name": "Gobetsche", - "realm_idx": 2103, - "order": "The Order of the Fox", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.2471, 58.48] - }, - "properties": { - "name": "Luitvium", - "realm_idx": 2104, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-113.4572, 27.7215] - }, - "properties": { - "name": "Amputik", - "realm_idx": 2105, - "order": "The Order of Reflection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.78, -26.0997] - }, - "properties": { - "name": "Liknakpiklik", - "realm_idx": 2106, - "order": "The Order of Detection", - "resources": ["Coal", "Obsidian", "Ruby", "Hartwood", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.4471, 17.28] - }, - "properties": { - "name": "Tutpekkontuk", - "realm_idx": 2107, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.2471, 13.18] - }, - "properties": { - "name": "Elzelz", - "realm_idx": 2108, - "order": "The Order of Protection", - "resources": ["Cold Iron", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.9471, 11.38] - }, - "properties": { - "name": "nu Schades", - "realm_idx": 2109, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.7024, 10.3277] - }, - "properties": { - "name": "Suleln", - "realm_idx": 2110, - "order": "The Order of Protection", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.0801, 27.0004] - }, - "properties": { - "name": "Ulamulun", - "realm_idx": 2111, - "order": "The Order of Rage", - "resources": ["Wood", "Ironwood", "Stone", "Copper", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.0471, -26.82] - }, - "properties": { - "name": "Tiintaapi", - "realm_idx": 2112, - "order": "The Order of Giants", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.3471, 6.78] - }, - "properties": { - "name": "Nomom", - "realm_idx": 2113, - "order": "The Order of Titans", - "resources": ["Coal", "Gold", "Wood", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.3751, 29.953] - }, - "properties": { - "name": "gun Fron", - "realm_idx": 2114, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.5471, 7.78] - }, - "properties": { - "name": "Mem\u00f6n\u00fc", - "realm_idx": 2115, - "order": "The Order of Brilliance", - "resources": ["Deep Crystal", "Wood", "Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.9471, 42.08] - }, - "properties": { - "name": "un In\u00edn\u00edn", - "realm_idx": 2116, - "order": "The Order of Titans", - "resources": ["Obsidian", "Stone", "Gold", "Copper", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.3471, 20.38] - }, - "properties": { - "name": "Jeksomki\u010d", - "realm_idx": 2117, - "order": "The Order of Skill", - "resources": ["Wood", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.7529, 3.58] - }, - "properties": { - "name": "Bekdok", - "realm_idx": 2118, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.2471, 8.28] - }, - "properties": { - "name": "Smum Mitlum", - "realm_idx": 2119, - "order": "The Order of Protection", - "resources": ["Stone", "Coal", "Obsidian", "Silver", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.7471, -51.32] - }, - "properties": { - "name": "et Olelem", - "realm_idx": 2120, - "order": "The Order of Giants", - "resources": ["Hartwood", "Copper", "Coal", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [45.3471, 5.58] - }, - "properties": { - "name": "Utlenklon", - "realm_idx": 2121, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.5529, 27.98] - }, - "properties": { - "name": "Hru\u2018mru\u2018lik", - "realm_idx": 2122, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.6801, 41.5004] - }, - "properties": { - "name": "Kinkamelik", - "realm_idx": 2123, - "order": "The Order of Anger", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.2471, 45.28] - }, - "properties": { - "name": "Ngru\u017egus", - "realm_idx": 2124, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.9529, 6.78] - }, - "properties": { - "name": "Sdimsdidi", - "realm_idx": 2125, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Ironwood", "Silver", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.4801, 13.8004] - }, - "properties": { - "name": "Nrutdrutmut", - "realm_idx": 2126, - "order": "The Order of Rage", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [11.7471, -12.82] - }, - "properties": { - "name": "Alh Niy\u00fcr\u00fcln", - "realm_idx": 2127, - "order": "The Order of Power", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.7406, -49.7624] - }, - "properties": { - "name": "Niksistus", - "realm_idx": 2128, - "order": "The Order of the Fox", - "resources": ["Hartwood", "Cold Iron", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.48, 27.1003] - }, - "properties": { - "name": "Potlos", - "realm_idx": 2129, - "order": "The Order of Reflection", - "resources": ["True Ice", "Coal", "Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.2471, 40.38] - }, - "properties": { - "name": "Axugug", - "realm_idx": 2130, - "order": "The Order of Skill", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.3471, 39.88] - }, - "properties": { - "name": "H\u00efitiu", - "realm_idx": 2131, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.88, -57.6996] - }, - "properties": { - "name": "Lulruchshul", - "realm_idx": 2132, - "order": "The Order of the Fox", - "resources": ["Copper", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.8471, 28.58] - }, - "properties": { - "name": "Lilol Ol", - "realm_idx": 2133, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.3471, -19.92] - }, - "properties": { - "name": "Mjansek", - "realm_idx": 2134, - "order": "The Order of Power", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.3471, 4.78] - }, - "properties": { - "name": "Trimhrikpip", - "realm_idx": 2135, - "order": "The Order of Protection", - "resources": ["Wood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.3471, 9.28] - }, - "properties": { - "name": "Mumibmikha", - "realm_idx": 2136, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.38, 30.6003] - }, - "properties": { - "name": "Kj\u00ed\u017ezw\u00ed\u017ekj\u00ed\u017e", - "realm_idx": 2137, - "order": "The Order of Fury", - "resources": ["Silver", "Gold", "Copper", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.8471, 43.48] - }, - "properties": { - "name": "Mopanat", - "realm_idx": 2138, - "order": "The Order of Skill", - "resources": ["Ironwood", "Stone", "Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.4471, 18.88] - }, - "properties": { - "name": "Emgun", - "realm_idx": 2139, - "order": "The Order of Skill", - "resources": ["Gold", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.08, 10.0003] - }, - "properties": { - "name": "Tenchem", - "realm_idx": 2140, - "order": "The Order of Detection", - "resources": ["Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.9529, 26.98] - }, - "properties": { - "name": "\u2018uk\u2018iknis", - "realm_idx": 2141, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.1529, -9.62] - }, - "properties": { - "name": "Khobwughdikh", - "realm_idx": 2142, - "order": "The Order of the Fox", - "resources": ["Copper", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.5471, 22.68] - }, - "properties": { - "name": "Inkon\u00fa Ini", - "realm_idx": 2143, - "order": "The Order of Skill", - "resources": ["Coal", "Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.3471, 11.28] - }, - "properties": { - "name": "\u00c2nwilp", - "realm_idx": 2144, - "order": "The Order of Brilliance", - "resources": ["True Ice", "Copper", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.38, -44.8996] - }, - "properties": { - "name": "El Owel", - "realm_idx": 2145, - "order": "The Order of the Fox", - "resources": ["Sapphire", "Ruby", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.7471, 22.38] - }, - "properties": { - "name": "Imietietit", - "realm_idx": 2146, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.6529, -26.22] - }, - "properties": { - "name": "Tilutuma", - "realm_idx": 2147, - "order": "The Order of Power", - "resources": ["Ironwood", "Wood", "Hartwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.9471, 5.18] - }, - "properties": { - "name": "Yoly\u00edlyy\u00e1l", - "realm_idx": 2148, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Copper", "Coal", "Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.3844, 33.571] - }, - "properties": { - "name": "Igimvingim", - "realm_idx": 2149, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Silver", "Hartwood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.1471, 57.38] - }, - "properties": { - "name": "Obiwob", - "realm_idx": 2150, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.3529, -6.22] - }, - "properties": { - "name": "Nuydp\u00e1b", - "realm_idx": 2151, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.3471, -11.72] - }, - "properties": { - "name": "Lolkirtter", - "realm_idx": 2152, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.1801, 11.4004] - }, - "properties": { - "name": "Omonmot", - "realm_idx": 2153, - "order": "The Order of Rage", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.9529, 23.58] - }, - "properties": { - "name": "Menihem", - "realm_idx": 2154, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.88, -1.0997] - }, - "properties": { - "name": "Yupkwukum", - "realm_idx": 2155, - "order": "The Order of Detection", - "resources": ["Coal", "Ironwood", "Obsidian", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.247, -3.12] - }, - "properties": { - "name": "Xnezh-Xkuzh", - "realm_idx": 2156, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.7331, 11.2167] - }, - "properties": { - "name": "Uneen", - "realm_idx": 2157, - "order": "The Order of Protection", - "resources": ["Copper", "Cold Iron", "Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.3529, 17.08] - }, - "properties": { - "name": "Uzhekos", - "realm_idx": 2158, - "order": "The Order of Vitriol", - "resources": ["Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.2471, -14.12] - }, - "properties": { - "name": "Ipaapaapaam", - "realm_idx": 2159, - "order": "The Order of Power", - "resources": ["Silver", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.7471, -51.12] - }, - "properties": { - "name": "Zoezh", - "realm_idx": 2160, - "order": "The Order of Giants", - "resources": ["Copper", "Gold", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.1471, 24.48] - }, - "properties": { - "name": "Obuchushekun", - "realm_idx": 2161, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.9471, 14.08] - }, - "properties": { - "name": "Tlausniknik", - "realm_idx": 2162, - "order": "The Order of Brilliance", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.2471, 49.88] - }, - "properties": { - "name": "Lomkulmet", - "realm_idx": 2163, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.6092, -29.8058] - }, - "properties": { - "name": "Raasaal", - "realm_idx": 2164, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.08, -1.5997] - }, - "properties": { - "name": "Tlontlonren", - "realm_idx": 2165, - "order": "The Order of Detection", - "resources": ["Stone", "Coal", "Hartwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.0471, 12.08] - }, - "properties": { - "name": "Kiwhnupput", - "realm_idx": 2166, - "order": "The Order of Brilliance", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.3801, 41.4004] - }, - "properties": { - "name": "Gozgazkuz", - "realm_idx": 2167, - "order": "The Order of Anger", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.1769, -6.2028] - }, - "properties": { - "name": "Sh\u00e1ni", - "realm_idx": 2168, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.3801, -53.0996] - }, - "properties": { - "name": "Serdwlseqrek", - "realm_idx": 2169, - "order": "The Order of the Twins", - "resources": [ - "Wood", - "Silver", - "Ironwood", - "Stone", - "Obsidian", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.3296, -22.5798] - }, - "properties": { - "name": "Ohukukopom", - "realm_idx": 2170, - "order": "The Order of Perfection", - "resources": ["Stone", "Coal", "Gold", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.3703, -20.0291] - }, - "properties": { - "name": "Pilske\u010d", - "realm_idx": 2171, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.6442, -39.049] - }, - "properties": { - "name": "Dikdashpeboz", - "realm_idx": 2172, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Copper", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.3471, 43.78] - }, - "properties": { - "name": "Pinmungnun", - "realm_idx": 2173, - "order": "The Order of Skill", - "resources": ["Copper", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.2471, -44.72] - }, - "properties": { - "name": "Schdem", - "realm_idx": 2174, - "order": "The Order of Giants", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.6529, 23.98] - }, - "properties": { - "name": "Arhhesird", - "realm_idx": 2175, - "order": "The Order of Vitriol", - "resources": ["Wood", "Deep Crystal", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.4471, -33.32] - }, - "properties": { - "name": "Mumtitmal", - "realm_idx": 2176, - "order": "The Order of Giants", - "resources": ["Coal", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.1801, 43.5004] - }, - "properties": { - "name": "Ma Mi", - "realm_idx": 2177, - "order": "The Order of Anger", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.8801, -40.5996] - }, - "properties": { - "name": "Qang Vulqiy", - "realm_idx": 2178, - "order": "The Order of the Twins", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.3091, 3.7339] - }, - "properties": { - "name": "Sir-tet-Se", - "realm_idx": 2179, - "order": "The Order of Perfection", - "resources": ["Coal", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.9801, 26.6004] - }, - "properties": { - "name": "Tuktukslak", - "realm_idx": 2180, - "order": "The Order of Rage", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.6471, -21.12] - }, - "properties": { - "name": "Sngegg\u00efs", - "realm_idx": 2181, - "order": "The Order of Giants", - "resources": ["Ruby", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.9471, 54.08] - }, - "properties": { - "name": "liav Riogjoe", - "realm_idx": 2182, - "order": "The Order of Skill", - "resources": ["Obsidian", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.5471, -21.72] - }, - "properties": { - "name": "Kulpolrol", - "realm_idx": 2183, - "order": "The Order of Giants", - "resources": ["Copper", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.0471, 52.18] - }, - "properties": { - "name": "Kilsu", - "realm_idx": 2184, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.2739, -34.9741] - }, - "properties": { - "name": "\u00d3s\u00f3sch", - "realm_idx": 2185, - "order": "The Order of Reflection", - "resources": ["Deep Crystal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.7529, -38.42] - }, - "properties": { - "name": "L\u00fangs\u00e1n", - "realm_idx": 2186, - "order": "The Order of Power", - "resources": ["Wood", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.8801, 46.6004] - }, - "properties": { - "name": "Takitah", - "realm_idx": 2187, - "order": "The Order of Anger", - "resources": ["Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.6471, -11.32] - }, - "properties": { - "name": "Emimmintunin", - "realm_idx": 2188, - "order": "The Order of Power", - "resources": ["Stone", "Diamonds", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.8471, 14.38] - }, - "properties": { - "name": "Tiattiatmuat", - "realm_idx": 2189, - "order": "The Order of Titans", - "resources": ["Stone", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.3471, 20.08] - }, - "properties": { - "name": "Te\u017eor\u017ekur\u010de\u017e", - "realm_idx": 2190, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.8471, 20.58] - }, - "properties": { - "name": "\u00c2l\u00eap\u00eapyn", - "realm_idx": 2191, - "order": "The Order of Skill", - "resources": ["Coal", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.4801, -45.6996] - }, - "properties": { - "name": "Duoschdiog", - "realm_idx": 2192, - "order": "The Order of the Twins", - "resources": ["Silver", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.5529, 12.98] - }, - "properties": { - "name": "Hoankannaum", - "realm_idx": 2193, - "order": "The Order of Vitriol", - "resources": ["Copper", "Silver", "Stone", "True Ice", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.5348, -35.8096] - }, - "properties": { - "name": "Kie\u2018aewae", - "realm_idx": 2194, - "order": "The Order of Reflection", - "resources": ["Wood", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.3471, -21.42] - }, - "properties": { - "name": "Snassansnus", - "realm_idx": 2195, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.2471, -44.22] - }, - "properties": { - "name": "Nunnumomuk", - "realm_idx": 2196, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.2471, 11.88] - }, - "properties": { - "name": "Mininiz\u00e4z", - "realm_idx": 2197, - "order": "The Order of Protection", - "resources": ["Copper", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.5471, 33.78] - }, - "properties": { - "name": "Loeseolloe", - "realm_idx": 2198, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.8471, 19.08] - }, - "properties": { - "name": "Minmam", - "realm_idx": 2199, - "order": "The Order of Skill", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.4471, 25.48] - }, - "properties": { - "name": "Otokonok", - "realm_idx": 2200, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.2471, 16.78] - }, - "properties": { - "name": "Moa\u010dau", - "realm_idx": 2201, - "order": "The Order of Skill", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.686, -22.851] - }, - "properties": { - "name": "Kelul", - "realm_idx": 2202, - "order": "The Order of Protection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.7471, -11.12] - }, - "properties": { - "name": "Irpnerm", - "realm_idx": 2203, - "order": "The Order of Perfection", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.5191, -35.7632] - }, - "properties": { - "name": "Sanmu Ti", - "realm_idx": 2204, - "order": "The Order of Reflection", - "resources": ["Copper", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.2471, 30.88] - }, - "properties": { - "name": "Nenschkoom", - "realm_idx": 2205, - "order": "The Order of Skill", - "resources": ["Obsidian", "Coal", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.08, -43.4997] - }, - "properties": { - "name": "Dospassir", - "realm_idx": 2206, - "order": "The Order of the Fox", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.6471, 41.98] - }, - "properties": { - "name": "Tupang", - "realm_idx": 2207, - "order": "The Order of Skill", - "resources": ["Gold", "Copper", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.9455, 45.7465] - }, - "properties": { - "name": "Tlukxrakluk", - "realm_idx": 2208, - "order": "The Order of Anger", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-44.5051, 51.6833] - }, - "properties": { - "name": "Han\u00fcmhon Han", - "realm_idx": 2209, - "order": "The Order of Fury", - "resources": ["Wood", "Coal", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.68, -37.5997] - }, - "properties": { - "name": "Munmundu", - "realm_idx": 2210, - "order": "The Order of the Fox", - "resources": ["Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.68, -29.4997] - }, - "properties": { - "name": "Snaspakisnum", - "realm_idx": 2211, - "order": "The Order of Reflection", - "resources": ["Coal", "Cold Iron", "Ruby", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.28, -0.0997] - }, - "properties": { - "name": "Hlontruntin", - "realm_idx": 2212, - "order": "The Order of Detection", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.2471, 41.98] - }, - "properties": { - "name": "Sg\u00e1ms\u00ed\u0161\u00ed", - "realm_idx": 2213, - "order": "The Order of Enlightenment", - "resources": [ - "Wood", - "Copper", - "Stone", - "Obsidian", - "Cold Iron", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.0471, 8.68] - }, - "properties": { - "name": "Moksekneksak", - "realm_idx": 2214, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.7529, -23.32] - }, - "properties": { - "name": "nun Aminen", - "realm_idx": 2215, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.08, -44.8996] - }, - "properties": { - "name": "Daekoe", - "realm_idx": 2216, - "order": "The Order of the Fox", - "resources": ["Wood", "Diamonds", "Stone", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.2471, -7.02] - }, - "properties": { - "name": "P\u00e4rn\u00f6m", - "realm_idx": 2217, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Coal", "Hartwood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.6801, 46.7004] - }, - "properties": { - "name": "nek Lie\u2018pal", - "realm_idx": 2218, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.1471, 32.88] - }, - "properties": { - "name": "Emukeln", - "realm_idx": 2219, - "order": "The Order of Skill", - "resources": ["Obsidian", "Coal", "Stone", "Wood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.5529, -39.52] - }, - "properties": { - "name": "Dr\u00e4kbik", - "realm_idx": 2220, - "order": "The Order of Power", - "resources": ["Hartwood", "Diamonds", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.0832, -39.2684] - }, - "properties": { - "name": "Nezheztushez", - "realm_idx": 2221, - "order": "The Order of the Twins", - "resources": ["Hartwood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.2471, 28.88] - }, - "properties": { - "name": "Snonslunwon", - "realm_idx": 2222, - "order": "The Order of Skill", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.7801, -0.6996] - }, - "properties": { - "name": "Penpen", - "realm_idx": 2223, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.6801, 47.7004] - }, - "properties": { - "name": "Sijsn\u00fcln\u00fcl", - "realm_idx": 2224, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.8801, 27.1004] - }, - "properties": { - "name": "Waakhghekh", - "realm_idx": 2225, - "order": "The Order of Rage", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.5471, 3.58] - }, - "properties": { - "name": "\u00dak\u00fat\u00fal", - "realm_idx": 2226, - "order": "The Order of Titans", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.48, 34.8003] - }, - "properties": { - "name": "\u00c2ntunumin", - "realm_idx": 2227, - "order": "The Order of Fury", - "resources": ["Coal", "Stone", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.6471, 37.68] - }, - "properties": { - "name": "kut Apasap", - "realm_idx": 2228, - "order": "The Order of Skill", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.8471, 19.38] - }, - "properties": { - "name": "Lompunlumnun", - "realm_idx": 2229, - "order": "The Order of Skill", - "resources": [ - "Obsidian", - "Wood", - "Silver", - "Ironwood", - "Ethereal Silica" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.9801, -13.2996] - }, - "properties": { - "name": "Kutisa", - "realm_idx": 2230, - "order": "The Order of Rage", - "resources": ["Hartwood", "Silver", "Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.78, 37.2003] - }, - "properties": { - "name": "L\u00e1ltenl\u00e1l", - "realm_idx": 2231, - "order": "The Order of Fury", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.38, -47.8996] - }, - "properties": { - "name": "Lupkiup", - "realm_idx": 2232, - "order": "The Order of the Fox", - "resources": [ - "Coal", - "Copper", - "Ironwood", - "Sapphire", - "Silver", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.68, 14.5003] - }, - "properties": { - "name": "Putput", - "realm_idx": 2233, - "order": "The Order of Detection", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.9471, 14.88] - }, - "properties": { - "name": "Skin\u00e1sho", - "realm_idx": 2234, - "order": "The Order of Skill", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.8471, -14.32] - }, - "properties": { - "name": "\u2018u\u2018piwirpirp", - "realm_idx": 2235, - "order": "The Order of Perfection", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.28, -1.0997] - }, - "properties": { - "name": "Asbis", - "realm_idx": 2236, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Wood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.8529, 24.08] - }, - "properties": { - "name": "Sizsish", - "realm_idx": 2237, - "order": "The Order of Vitriol", - "resources": ["Wood", "Gold", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.7307, -14.0707] - }, - "properties": { - "name": "Ukhlildomom", - "realm_idx": 2238, - "order": "The Order of Perfection", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.996, -17.907] - }, - "properties": { - "name": "Nankoon", - "realm_idx": 2239, - "order": "The Order of Perfection", - "resources": ["Gold", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.182, -12.3711] - }, - "properties": { - "name": "Oreshes", - "realm_idx": 2240, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.0529, -4.62] - }, - "properties": { - "name": "Skuznez", - "realm_idx": 2241, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.58, -52.5996] - }, - "properties": { - "name": "Spimnip", - "realm_idx": 2242, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.7529, 17.98] - }, - "properties": { - "name": "Kimepmepmep", - "realm_idx": 2243, - "order": "The Order of Vitriol", - "resources": ["Diamonds", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.3999, 32.5234] - }, - "properties": { - "name": "Tenten", - "realm_idx": 2244, - "order": "The Order of Reflection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.5529, 16.98] - }, - "properties": { - "name": "Umanum", - "realm_idx": 2245, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.7235, -23.879] - }, - "properties": { - "name": "men Gon", - "realm_idx": 2246, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.7801, 43.1004] - }, - "properties": { - "name": "Noyllooynnom", - "realm_idx": 2247, - "order": "The Order of Anger", - "resources": ["Stone", "Ruby", "Ethereal Silica", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.2099, -11.0041] - }, - "properties": { - "name": "Jiuzjiuz", - "realm_idx": 2248, - "order": "The Order of Reflection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.4095, -20.4364] - }, - "properties": { - "name": "Noznizh", - "realm_idx": 2249, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.8898, -28.367] - }, - "properties": { - "name": "Lellel", - "realm_idx": 2250, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.5471, -24.02] - }, - "properties": { - "name": "Tam Kumkum", - "realm_idx": 2251, - "order": "The Order of Perfection", - "resources": [ - "Wood", - "Coal", - "Ethereal Silica", - "Copper", - "Stone", - "Gold" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.8471, 44.18] - }, - "properties": { - "name": "Ghrolnix", - "realm_idx": 2252, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Wood", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.5471, 9.78] - }, - "properties": { - "name": "Onsan", - "realm_idx": 2253, - "order": "The Order of Brilliance", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.9801, -34.6996] - }, - "properties": { - "name": "Quqngavlik", - "realm_idx": 2254, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.1801, 3.7004] - }, - "properties": { - "name": "Nule Lonle", - "realm_idx": 2255, - "order": "The Order of Rage", - "resources": ["Obsidian", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.3529, 3.98] - }, - "properties": { - "name": "Ikrakel", - "realm_idx": 2256, - "order": "The Order of Power", - "resources": ["Wood", "Sapphire", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.6801, -48.1996] - }, - "properties": { - "name": "Okapokuh", - "realm_idx": 2257, - "order": "The Order of the Twins", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.9471, 26.48] - }, - "properties": { - "name": "Ultilsol", - "realm_idx": 2258, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.88, -54.5996] - }, - "properties": { - "name": "Lim\u00edn", - "realm_idx": 2259, - "order": "The Order of the Fox", - "resources": ["Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.8471, -4.62] - }, - "properties": { - "name": "kus Kekteke", - "realm_idx": 2260, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal", "Obsidian", "Ironwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.4471, 4.98] - }, - "properties": { - "name": "Owukow", - "realm_idx": 2261, - "order": "The Order of Brilliance", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.1529, 19.28] - }, - "properties": { - "name": "Sessit", - "realm_idx": 2262, - "order": "The Order of Vitriol", - "resources": ["Silver", "Wood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.6471, 8.78] - }, - "properties": { - "name": "Ika\u0161wm", - "realm_idx": 2263, - "order": "The Order of Brilliance", - "resources": ["Ignium", "Obsidian", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.8471, -12.82] - }, - "properties": { - "name": "m\u00fa Mes", - "realm_idx": 2264, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.4471, 51.88] - }, - "properties": { - "name": "Muqkul", - "realm_idx": 2265, - "order": "The Order of Skill", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.4471, 42.88] - }, - "properties": { - "name": "R\u00e9pr\u00e1k", - "realm_idx": 2266, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Ironwood", "Silver", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.4801, 17.6004] - }, - "properties": { - "name": "yd Yzukadyl", - "realm_idx": 2267, - "order": "The Order of Rage", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.4801, 18.0004] - }, - "properties": { - "name": "Lieaukminau", - "realm_idx": 2268, - "order": "The Order of Rage", - "resources": ["Coal", "Ignium", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.1471, 45.38] - }, - "properties": { - "name": "Elilem", - "realm_idx": 2269, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.4529, 12.78] - }, - "properties": { - "name": "Shunh\u00ean", - "realm_idx": 2270, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Cold Iron", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.7471, 51.28] - }, - "properties": { - "name": "Mig kos R\u00e2b", - "realm_idx": 2271, - "order": "The Order of Skill", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.9701, -17.9468] - }, - "properties": { - "name": "don Simmem", - "realm_idx": 2272, - "order": "The Order of Protection", - "resources": ["Wood", "Copper", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.0436, 35.3612] - }, - "properties": { - "name": "Pullirersir", - "realm_idx": 2273, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal", "Stone", "Copper", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.0471, 9.28] - }, - "properties": { - "name": "Umnim", - "realm_idx": 2274, - "order": "The Order of Brilliance", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-47.9529, 49.98] - }, - "properties": { - "name": "hun Lukk\u00e9k", - "realm_idx": 2275, - "order": "The Order of Fury", - "resources": ["Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.5529, 6.78] - }, - "properties": { - "name": "\u00e2 Uwuw", - "realm_idx": 2276, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.4471, 10.98] - }, - "properties": { - "name": "Mettrittet", - "realm_idx": 2277, - "order": "The Order of Titans", - "resources": [ - "Wood", - "Coal", - "Silver", - "Copper", - "Obsidian", - "True Ice" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.4471, 25.28] - }, - "properties": { - "name": "Dododgak", - "realm_idx": 2278, - "order": "The Order of Titans", - "resources": ["Copper", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.6529, 27.58] - }, - "properties": { - "name": "Nunose", - "realm_idx": 2279, - "order": "The Order of Vitriol", - "resources": ["Silver", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.0801, 38.6004] - }, - "properties": { - "name": "Wossemwot", - "realm_idx": 2280, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.78, 12.1003] - }, - "properties": { - "name": "Huh nit Oki", - "realm_idx": 2281, - "order": "The Order of Fury", - "resources": ["Stone", "Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.9832, 33.5203] - }, - "properties": { - "name": "t\u00e1 L\u00edsu Tup\u00e9", - "realm_idx": 2282, - "order": "The Order of Anger", - "resources": ["Stone", "Wood", "Gold", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.1471, 0.68] - }, - "properties": { - "name": "Sorsmilssors", - "realm_idx": 2283, - "order": "The Order of Brilliance", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.8007, 52.4811] - }, - "properties": { - "name": "Pugurumu", - "realm_idx": 2284, - "order": "The Order of Fury", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.7527, 51.8801] - }, - "properties": { - "name": "Rultilrultil", - "realm_idx": 2285, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.0471, -26.92] - }, - "properties": { - "name": "k\u00e9-S\u00e1pap\u00eds\u00e1", - "realm_idx": 2286, - "order": "The Order of Giants", - "resources": ["Obsidian", "Copper", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.4471, -22.82] - }, - "properties": { - "name": "Lumlumla", - "realm_idx": 2287, - "order": "The Order of Giants", - "resources": ["Coal", "Wood", "Obsidian", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.5471, 0.78] - }, - "properties": { - "name": "Munimmun", - "realm_idx": 2288, - "order": "The Order of Power", - "resources": ["Wood", "Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.7471, -19.32] - }, - "properties": { - "name": "Waln\u00eblho\u2018ir", - "realm_idx": 2289, - "order": "The Order of Giants", - "resources": ["Ignium", "Coal", "Wood", "Hartwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.2471, 40.28] - }, - "properties": { - "name": "Isyrisisay", - "realm_idx": 2290, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Silver", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.6471, -14.32] - }, - "properties": { - "name": "da Mogl\u00f3", - "realm_idx": 2291, - "order": "The Order of Perfection", - "resources": ["Sapphire", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.88, 7.5003] - }, - "properties": { - "name": "Emnap Olon", - "realm_idx": 2292, - "order": "The Order of Detection", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.9201, 42.898] - }, - "properties": { - "name": "Reqving", - "realm_idx": 2293, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.9471, 19.98] - }, - "properties": { - "name": "Lutbrubkuz", - "realm_idx": 2294, - "order": "The Order of Brilliance", - "resources": ["Stone", "Deep Crystal", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.3471, -20.52] - }, - "properties": { - "name": "Tirnke", - "realm_idx": 2295, - "order": "The Order of Power", - "resources": ["Ignium", "Gold", "Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.38, -44.3996] - }, - "properties": { - "name": "Ehpankonlun", - "realm_idx": 2296, - "order": "The Order of the Fox", - "resources": ["Gold", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.4471, 13.88] - }, - "properties": { - "name": "Teotuonoel", - "realm_idx": 2297, - "order": "The Order of Brilliance", - "resources": ["Coal", "Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.9471, 22.28] - }, - "properties": { - "name": "Tlasklut", - "realm_idx": 2298, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.3955, 40.9779] - }, - "properties": { - "name": "Uskispusis", - "realm_idx": 2299, - "order": "The Order of Anger", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.1529, 45.28] - }, - "properties": { - "name": "Eyuyosoqung", - "realm_idx": 2300, - "order": "The Order of Fury", - "resources": ["Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.48, -16.4997] - }, - "properties": { - "name": "Nuspukzusnus", - "realm_idx": 2301, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.1275, 47.2979] - }, - "properties": { - "name": "Shmuss\u00e9l", - "realm_idx": 2302, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Gold", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.6471, 30.98] - }, - "properties": { - "name": "Zons\u00ed", - "realm_idx": 2303, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.0471, 39.08] - }, - "properties": { - "name": "Natsamsap", - "realm_idx": 2304, - "order": "The Order of Enlightenment", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.7529, 17.68] - }, - "properties": { - "name": "Dyykdush", - "realm_idx": 2305, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.68, -6.5997] - }, - "properties": { - "name": "Apluplol", - "realm_idx": 2306, - "order": "The Order of Detection", - "resources": ["Wood", "Ironwood", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.8225, 42.5188] - }, - "properties": { - "name": "Sminsminship", - "realm_idx": 2307, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.4481, 28.4906] - }, - "properties": { - "name": "Nunschlon", - "realm_idx": 2308, - "order": "The Order of Fury", - "resources": ["Stone", "Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.8801, 9.7004] - }, - "properties": { - "name": "Liklek", - "realm_idx": 2309, - "order": "The Order of Rage", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.5529, 31.98] - }, - "properties": { - "name": "L\u00e2ll\u00e2vngulk", - "realm_idx": 2310, - "order": "The Order of Vitriol", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.7801, -35.7996] - }, - "properties": { - "name": "Susuchnup", - "realm_idx": 2311, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.58, -51.4996] - }, - "properties": { - "name": "Shbekshnuk", - "realm_idx": 2312, - "order": "The Order of the Fox", - "resources": ["Copper", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.1529, 11.18] - }, - "properties": { - "name": "let Oj", - "realm_idx": 2313, - "order": "The Order of Vitriol", - "resources": ["Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.4471, 25.58] - }, - "properties": { - "name": "Ot Ekek", - "realm_idx": 2314, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.08, 0.2003] - }, - "properties": { - "name": "Isuzezuz", - "realm_idx": 2315, - "order": "The Order of Detection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.4665, -37.2746] - }, - "properties": { - "name": "Ungyi Imam", - "realm_idx": 2316, - "order": "The Order of Reflection", - "resources": ["Coal", "Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.0801, 7.1004] - }, - "properties": { - "name": "Kikett\u00fan", - "realm_idx": 2317, - "order": "The Order of Rage", - "resources": ["Copper", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.1471, 40.28] - }, - "properties": { - "name": "Umnennen", - "realm_idx": 2318, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.1801, 37.5004] - }, - "properties": { - "name": "Kananinqen", - "realm_idx": 2319, - "order": "The Order of Anger", - "resources": ["Copper", "Coal", "Ironwood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [126.4471, 14.28] - }, - "properties": { - "name": "G\u00faum\u00fa\u00e1sch", - "realm_idx": 2320, - "order": "The Order of Protection", - "resources": ["Diamonds", "Coal", "Stone", "Deep Crystal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.4685, -17.9107] - }, - "properties": { - "name": "Ohauhip-O\u2018o\u2018", - "realm_idx": 2321, - "order": "The Order of Protection", - "resources": ["Copper", "Coal", "Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [23.8471, 54.98] - }, - "properties": { - "name": "\u00dcr\u00fcr-\u00dcmoqar", - "realm_idx": 2322, - "order": "The Order of Titans", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.6368, 27.9989] - }, - "properties": { - "name": "Nenmas", - "realm_idx": 2323, - "order": "The Order of Fury", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.9527, 46.3801] - }, - "properties": { - "name": "Omomrunrun", - "realm_idx": 2324, - "order": "The Order of the Twins", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.6801, -14.6996] - }, - "properties": { - "name": "Ayliyk", - "realm_idx": 2325, - "order": "The Order of Rage", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.4471, 2.38] - }, - "properties": { - "name": "Imupipim", - "realm_idx": 2326, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.58, 30.8003] - }, - "properties": { - "name": "Komulkip", - "realm_idx": 2327, - "order": "The Order of Reflection", - "resources": ["Stone", "Silver", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.6814, 37.9364] - }, - "properties": { - "name": "Tirghiytir", - "realm_idx": 2328, - "order": "The Order of Reflection", - "resources": ["Wood", "Copper", "Stone", "Cold Iron", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.811, 35.0949] - }, - "properties": { - "name": "H\u00e4pkumsp\u00fct", - "realm_idx": 2329, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Stone", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.7471, -15.62] - }, - "properties": { - "name": "N\u00e9iyi\u00e9gz\u00edep", - "realm_idx": 2330, - "order": "The Order of Giants", - "resources": ["Wood", "Obsidian", "Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.8682, -28.7964] - }, - "properties": { - "name": "Pliesmies", - "realm_idx": 2331, - "order": "The Order of Protection", - "resources": ["Wood", "Cold Iron", "Copper", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.88, -24.6997] - }, - "properties": { - "name": "M\u00falulusa", - "realm_idx": 2332, - "order": "The Order of Detection", - "resources": ["Wood", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.9471, -10.52] - }, - "properties": { - "name": "Syuskelmav", - "realm_idx": 2333, - "order": "The Order of Perfection", - "resources": ["Copper", "Wood", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.7224, 20.0645] - }, - "properties": { - "name": "Naktab", - "realm_idx": 2334, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.2718, -31.4706] - }, - "properties": { - "name": "Perkkak", - "realm_idx": 2335, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.6102, 3.9162] - }, - "properties": { - "name": "Emmulkilt", - "realm_idx": 2336, - "order": "The Order of Protection", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.9471, 18.88] - }, - "properties": { - "name": "Bunki u A", - "realm_idx": 2337, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Stone", "Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.6255, -19.8783] - }, - "properties": { - "name": "Pap\u2018oki\u2018o", - "realm_idx": 2338, - "order": "The Order of Protection", - "resources": ["Hartwood", "Coal", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.6471, 49.18] - }, - "properties": { - "name": "Hunmud", - "realm_idx": 2339, - "order": "The Order of Titans", - "resources": ["Wood", "Diamonds", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.6112, -40.5348] - }, - "properties": { - "name": "Mlon Nunsen", - "realm_idx": 2340, - "order": "The Order of the Fox", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.9464, -6.8955] - }, - "properties": { - "name": "Lie ni\u00fa Loin", - "realm_idx": 2341, - "order": "The Order of Perfection", - "resources": ["Twilight Quartz", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.6471, -43.22] - }, - "properties": { - "name": "Topol", - "realm_idx": 2342, - "order": "The Order of Giants", - "resources": ["Twilight Quartz", "Stone", "Coal", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.0801, -48.4996] - }, - "properties": { - "name": "Shung", - "realm_idx": 2343, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone", "Wood", "Sapphire", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.7471, -21.82] - }, - "properties": { - "name": "Makpik Sis", - "realm_idx": 2344, - "order": "The Order of Power", - "resources": ["Coal", "Silver", "Diamonds", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.7801, 39.4004] - }, - "properties": { - "name": "Salsunletnek", - "realm_idx": 2345, - "order": "The Order of Anger", - "resources": ["Obsidian", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.0801, -55.6996] - }, - "properties": { - "name": "Det Nlel", - "realm_idx": 2346, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.3801, 12.8004] - }, - "properties": { - "name": "Muvegkeng", - "realm_idx": 2347, - "order": "The Order of Rage", - "resources": ["Coal", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.6529, -5.02] - }, - "properties": { - "name": "Bizbizb\u00fasch", - "realm_idx": 2348, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.8183, 10.206] - }, - "properties": { - "name": "Zoze Kalkal", - "realm_idx": 2349, - "order": "The Order of Protection", - "resources": ["Stone", "Cold Iron", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.4471, -40.72] - }, - "properties": { - "name": "Enot un Emen", - "realm_idx": 2350, - "order": "The Order of Giants", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.5801, 27.7004] - }, - "properties": { - "name": "\u00dan Kensem", - "realm_idx": 2351, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.0471, 7.58] - }, - "properties": { - "name": "Xerog", - "realm_idx": 2352, - "order": "The Order of Brilliance", - "resources": ["Coal", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.8471, -44.02] - }, - "properties": { - "name": "Ondon", - "realm_idx": 2353, - "order": "The Order of Giants", - "resources": ["Hartwood", "Cold Iron", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.9184, -19.0661] - }, - "properties": { - "name": "od Eteqiz", - "realm_idx": 2354, - "order": "The Order of Protection", - "resources": ["Stone", "Ironwood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.98, -51.0996] - }, - "properties": { - "name": "Chius", - "realm_idx": 2355, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.18, 38.3003] - }, - "properties": { - "name": "Shunsigonton", - "realm_idx": 2356, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal", "Obsidian", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.7471, 28.88] - }, - "properties": { - "name": "Manm\u00e4kkumm\u00e4k", - "realm_idx": 2357, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.0801, -14.3996] - }, - "properties": { - "name": "Lollel", - "realm_idx": 2358, - "order": "The Order of Rage", - "resources": ["Silver", "Copper", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.5529, 27.48] - }, - "properties": { - "name": "Poj\u2018ejol", - "realm_idx": 2359, - "order": "The Order of Vitriol", - "resources": ["Stone", "Ironwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.08, -48.1997] - }, - "properties": { - "name": "Limsk\u00famp\u00fal", - "realm_idx": 2360, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.2529, -27.82] - }, - "properties": { - "name": "Giygmul", - "realm_idx": 2361, - "order": "The Order of Power", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.7801, 11.5004] - }, - "properties": { - "name": "Ngungranpaq", - "realm_idx": 2362, - "order": "The Order of Rage", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.18, -4.7997] - }, - "properties": { - "name": "u-Enoma", - "realm_idx": 2363, - "order": "The Order of Detection", - "resources": ["Wood", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.1801, 4.7004] - }, - "properties": { - "name": "Nal-ult-Nil", - "realm_idx": 2364, - "order": "The Order of Rage", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.1471, 25.68] - }, - "properties": { - "name": "Eisedit", - "realm_idx": 2365, - "order": "The Order of Skill", - "resources": ["Wood", "Hartwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-48.6776, 54.9708] - }, - "properties": { - "name": "Ton Sem", - "realm_idx": 2366, - "order": "The Order of Fury", - "resources": ["Coal", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.8471, -46.92] - }, - "properties": { - "name": "ka\u017e-Gu\u017e", - "realm_idx": 2367, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.2244, 50.6374] - }, - "properties": { - "name": "Relkh\u0161obmaam", - "realm_idx": 2368, - "order": "The Order of the Twins", - "resources": ["Gold", "Wood", "Silver", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.6529, 19.48] - }, - "properties": { - "name": "\u2018unponmen", - "realm_idx": 2369, - "order": "The Order of Vitriol", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.1471, 3.68] - }, - "properties": { - "name": "Shnim", - "realm_idx": 2370, - "order": "The Order of Brilliance", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.4471, 50.08] - }, - "properties": { - "name": "So\u0161\u010dul", - "realm_idx": 2371, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.78, 0.7003] - }, - "properties": { - "name": "Sqe\u0161ne\u0161n\u00fc\u0161", - "realm_idx": 2372, - "order": "The Order of Detection", - "resources": ["Wood", "Copper", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.6471, -36.22] - }, - "properties": { - "name": "Mabuwno", - "realm_idx": 2373, - "order": "The Order of Giants", - "resources": ["Copper", "Obsidian", "Ironwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.3529, 6.18] - }, - "properties": { - "name": "Riggirgir", - "realm_idx": 2374, - "order": "The Order of Vitriol", - "resources": ["Stone", "Ignium", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.4471, 43.98] - }, - "properties": { - "name": "Lilol", - "realm_idx": 2375, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.8471, 1.28] - }, - "properties": { - "name": "run Sen", - "realm_idx": 2376, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.8209, 5.0523] - }, - "properties": { - "name": "Simtingning", - "realm_idx": 2377, - "order": "The Order of Protection", - "resources": ["Coal", "Ironwood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.1754, -12.9678] - }, - "properties": { - "name": "P\u00edugch\u00ed\u00e1", - "realm_idx": 2378, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.7471, -33.92] - }, - "properties": { - "name": "Honman Ken", - "realm_idx": 2379, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.88, -45.1996] - }, - "properties": { - "name": "N\u00fandon", - "realm_idx": 2380, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.48, -5.0997] - }, - "properties": { - "name": "Mipir", - "realm_idx": 2381, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.1529, -7.22] - }, - "properties": { - "name": "Nanun\u00e4hn\u00e4h", - "realm_idx": 2382, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone", "Silver", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.3471, 1.58] - }, - "properties": { - "name": "Oktukikr\u00fak", - "realm_idx": 2383, - "order": "The Order of Brilliance", - "resources": ["Coal", "Obsidian", "Wood", "Gold", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.2801, 5.4004] - }, - "properties": { - "name": "Girkjurm", - "realm_idx": 2384, - "order": "The Order of Rage", - "resources": ["Copper", "Wood", "Silver", "Coal", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.3471, 32.28] - }, - "properties": { - "name": "Snyksnyn", - "realm_idx": 2385, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Ethereal Silica", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.7471, 19.48] - }, - "properties": { - "name": "Sun Sunzun", - "realm_idx": 2386, - "order": "The Order of Skill", - "resources": ["Gold", "Wood", "Copper", "Silver", "Stone", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.88, -6.3997] - }, - "properties": { - "name": "\u00d3ngem", - "realm_idx": 2387, - "order": "The Order of Detection", - "resources": [ - "Silver", - "Coal", - "Cold Iron", - "Copper", - "Obsidian", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.48, -28.4997] - }, - "properties": { - "name": "Daunienakie", - "realm_idx": 2388, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.0471, 51.58] - }, - "properties": { - "name": "Smughswib", - "realm_idx": 2389, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.0352, -19.3137] - }, - "properties": { - "name": "Giktiktikgik", - "realm_idx": 2390, - "order": "The Order of Protection", - "resources": ["Wood", "Copper", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.7471, 14.18] - }, - "properties": { - "name": "Gutsgutgush", - "realm_idx": 2391, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.6471, 41.48] - }, - "properties": { - "name": "ran Okoknel", - "realm_idx": 2392, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.3471, 42.18] - }, - "properties": { - "name": "Utigru", - "realm_idx": 2393, - "order": "The Order of Skill", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.1471, 44.98] - }, - "properties": { - "name": "Rutrutguris", - "realm_idx": 2394, - "order": "The Order of Titans", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.88, -54.1996] - }, - "properties": { - "name": "Teugeottuoch", - "realm_idx": 2395, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.88, -31.4997] - }, - "properties": { - "name": "Yukzukyuk", - "realm_idx": 2396, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.1529, -11.42] - }, - "properties": { - "name": "Smungom", - "realm_idx": 2397, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.3385, -53.2642] - }, - "properties": { - "name": "P\u00eawp\u00eawp\u00eaw", - "realm_idx": 2398, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Silver", "Gold", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.1611, -24.2302] - }, - "properties": { - "name": "Chayuz", - "realm_idx": 2399, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.88, -2.0997] - }, - "properties": { - "name": "ot Imomamug", - "realm_idx": 2400, - "order": "The Order of Detection", - "resources": ["Hartwood", "Cold Iron", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.6801, 17.9004] - }, - "properties": { - "name": "Hukormenul", - "realm_idx": 2401, - "order": "The Order of Rage", - "resources": ["Coal", "Stone", "Copper", "Hartwood", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.0529, -20.42] - }, - "properties": { - "name": "Ti\u0161adin", - "realm_idx": 2402, - "order": "The Order of Power", - "resources": ["Copper", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.1471, 43.48] - }, - "properties": { - "name": "Luektao", - "realm_idx": 2403, - "order": "The Order of Titans", - "resources": ["Wood", "Obsidian", "Diamonds", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.9471, 7.28] - }, - "properties": { - "name": "Wokakis", - "realm_idx": 2404, - "order": "The Order of Brilliance", - "resources": ["Copper", "Stone", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.8471, 40.78] - }, - "properties": { - "name": "se Osuoos", - "realm_idx": 2405, - "order": "The Order of Titans", - "resources": ["Copper", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.3529, 45.58] - }, - "properties": { - "name": "Sikl\u00eakgok", - "realm_idx": 2406, - "order": "The Order of Fury", - "resources": ["Cold Iron", "Silver", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.411, 31.4797] - }, - "properties": { - "name": "Nanbunmam", - "realm_idx": 2407, - "order": "The Order of Reflection", - "resources": ["Hartwood", "Wood", "Ethereal Silica", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-27.2529, 28.08] - }, - "properties": { - "name": "Guluvuru", - "realm_idx": 2408, - "order": "The Order of Vitriol", - "resources": ["Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.5471, 47.48] - }, - "properties": { - "name": "Ini zhu Pin", - "realm_idx": 2409, - "order": "The Order of Titans", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.2471, -4.82] - }, - "properties": { - "name": "\u00d4kpas", - "realm_idx": 2410, - "order": "The Order of Giants", - "resources": ["Stone", "Silver", "Ironwood", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.0801, 27.5004] - }, - "properties": { - "name": "Akepruzhnen", - "realm_idx": 2411, - "order": "The Order of Rage", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.6471, 50.98] - }, - "properties": { - "name": "L\u00efsm\u00efpsi\u00eft\u00ef", - "realm_idx": 2412, - "order": "The Order of Skill", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.1614, 14.0271] - }, - "properties": { - "name": "Ka\u2018wunwok", - "realm_idx": 2413, - "order": "The Order of Fury", - "resources": ["Cold Iron", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.0471, 31.08] - }, - "properties": { - "name": "Nombun", - "realm_idx": 2414, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.9801, 18.1004] - }, - "properties": { - "name": "Chadpet", - "realm_idx": 2415, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Coal", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.6801, -33.9996] - }, - "properties": { - "name": "Anam-hin-An", - "realm_idx": 2416, - "order": "The Order of the Twins", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.6471, 52.38] - }, - "properties": { - "name": "tut Trusetuk", - "realm_idx": 2417, - "order": "The Order of Skill", - "resources": ["Obsidian", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.5471, 46.58] - }, - "properties": { - "name": "Ngausuil", - "realm_idx": 2418, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.88, 28.0003] - }, - "properties": { - "name": "M\u00e1ns\u00e1m", - "realm_idx": 2419, - "order": "The Order of Fury", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.1471, 32.58] - }, - "properties": { - "name": "Osokixix", - "realm_idx": 2420, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.6801, 45.6004] - }, - "properties": { - "name": "Yungyonker", - "realm_idx": 2421, - "order": "The Order of Anger", - "resources": ["Wood", "Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.0471, 12.08] - }, - "properties": { - "name": "Tappi T\u00edh\u00edh", - "realm_idx": 2422, - "order": "The Order of Titans", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.5801, -5.7996] - }, - "properties": { - "name": "Lolyngilyilg", - "realm_idx": 2423, - "order": "The Order of Rage", - "resources": ["Obsidian", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.3154, 45.6965] - }, - "properties": { - "name": "Supipali", - "realm_idx": 2424, - "order": "The Order of Anger", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.5471, -21.12] - }, - "properties": { - "name": "Stunsauk Sam", - "realm_idx": 2425, - "order": "The Order of Perfection", - "resources": ["Copper", "Obsidian", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.2471, 47.88] - }, - "properties": { - "name": "Genin", - "realm_idx": 2426, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.8969, 39.9611] - }, - "properties": { - "name": "\u00d6n\u00fcs\u00fct", - "realm_idx": 2427, - "order": "The Order of Anger", - "resources": ["Sapphire", "Stone", "Ruby", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.58, -6.9997] - }, - "properties": { - "name": "Rizhros", - "realm_idx": 2428, - "order": "The Order of Detection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-47.1529, 52.78] - }, - "properties": { - "name": "Se\u0161khunneb", - "realm_idx": 2429, - "order": "The Order of Fury", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.3957, -21.0431] - }, - "properties": { - "name": "Umunat", - "realm_idx": 2430, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.3801, -8.7996] - }, - "properties": { - "name": "Smonkemkun", - "realm_idx": 2431, - "order": "The Order of Rage", - "resources": ["Wood", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.2471, 16.98] - }, - "properties": { - "name": "Mungk\u00e1n", - "realm_idx": 2432, - "order": "The Order of Skill", - "resources": ["Coal", "Obsidian", "Copper", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.257, 39.2082] - }, - "properties": { - "name": "Chitluzhlig", - "realm_idx": 2433, - "order": "The Order of Anger", - "resources": ["Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.0471, 27.38] - }, - "properties": { - "name": "Tensammansun", - "realm_idx": 2434, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-47.0726, 50.3584] - }, - "properties": { - "name": "Asaskis", - "realm_idx": 2435, - "order": "The Order of Fury", - "resources": ["Coal", "Ironwood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.8471, -38.52] - }, - "properties": { - "name": "Duysiyduyky\u00e2", - "realm_idx": 2436, - "order": "The Order of Giants", - "resources": ["Twilight Quartz", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.5092, -29.5058] - }, - "properties": { - "name": "Ngoqutuqu", - "realm_idx": 2437, - "order": "The Order of Reflection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.0801, 26.8004] - }, - "properties": { - "name": "hlih Nlip", - "realm_idx": 2438, - "order": "The Order of Rage", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.4529, 41.68] - }, - "properties": { - "name": "Sismus", - "realm_idx": 2439, - "order": "The Order of Titans", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.8471, 5.48] - }, - "properties": { - "name": "Humo Puhu", - "realm_idx": 2440, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.3471, 41.08] - }, - "properties": { - "name": "Natnathen", - "realm_idx": 2441, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Obsidian", "Coal", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.2078, 47.991] - }, - "properties": { - "name": "Tr\u00edzh", - "realm_idx": 2442, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.6529, 11.78] - }, - "properties": { - "name": "Tenpoto", - "realm_idx": 2443, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.0471, 53.58] - }, - "properties": { - "name": "kik-Ki\u2018hal", - "realm_idx": 2444, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.7529, 43.08] - }, - "properties": { - "name": "Spezlaas", - "realm_idx": 2445, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.58, 1.8003] - }, - "properties": { - "name": "S\u00efj\u00efsl\u00e4zpoz", - "realm_idx": 2446, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.3801, -40.4996] - }, - "properties": { - "name": "\u00c1m\u00edsisok\u00eds", - "realm_idx": 2447, - "order": "The Order of the Twins", - "resources": ["Copper", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.4801, -5.2996] - }, - "properties": { - "name": "Lim Istalkus", - "realm_idx": 2448, - "order": "The Order of Rage", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.4471, 37.68] - }, - "properties": { - "name": "ka Miriqi", - "realm_idx": 2449, - "order": "The Order of Enlightenment", - "resources": ["Ironwood", "Obsidian", "Copper", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.4529, -21.12] - }, - "properties": { - "name": "Yaysuwl", - "realm_idx": 2450, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.8471, -28.92] - }, - "properties": { - "name": "Lekpehweh", - "realm_idx": 2451, - "order": "The Order of Giants", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.9529, -17.32] - }, - "properties": { - "name": "Rumkhuk", - "realm_idx": 2452, - "order": "The Order of Power", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.18, -60.5996] - }, - "properties": { - "name": "Atemumos", - "realm_idx": 2453, - "order": "The Order of the Fox", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.8471, -21.52] - }, - "properties": { - "name": "Sm\u00fazfpesmozh", - "realm_idx": 2454, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.6529, 20.88] - }, - "properties": { - "name": "Kozp\u00fa", - "realm_idx": 2455, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.3471, 39.48] - }, - "properties": { - "name": "Nonnot Krom", - "realm_idx": 2456, - "order": "The Order of Titans", - "resources": ["Copper", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.7471, 4.38] - }, - "properties": { - "name": "Susumata", - "realm_idx": 2457, - "order": "The Order of Brilliance", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.3529, -41.22] - }, - "properties": { - "name": "Zhazgimped", - "realm_idx": 2458, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Deep Crystal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.18, 29.7003] - }, - "properties": { - "name": "Ropres", - "realm_idx": 2459, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.8471, -12.02] - }, - "properties": { - "name": "Sikkuk", - "realm_idx": 2460, - "order": "The Order of Perfection", - "resources": [ - "Ironwood", - "Silver", - "Gold", - "Copper", - "Coal", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.7471, 3.88] - }, - "properties": { - "name": "Uasbuk-Akzak", - "realm_idx": 2461, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Ironwood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.9471, 27.28] - }, - "properties": { - "name": "Omelazh-Ilit", - "realm_idx": 2462, - "order": "The Order of Vitriol", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.58, -30.6997] - }, - "properties": { - "name": "\u00cdwpih pip \u00cd", - "realm_idx": 2463, - "order": "The Order of Reflection", - "resources": ["Coal", "Obsidian", "Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.9433, -26.491] - }, - "properties": { - "name": "Kangpun", - "realm_idx": 2464, - "order": "The Order of Protection", - "resources": ["Ironwood", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.0471, 12.08] - }, - "properties": { - "name": "Nilpelspesi", - "realm_idx": 2465, - "order": "The Order of Protection", - "resources": ["Silver", "Coal", "Dragonhide", "Copper", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.7471, 22.58] - }, - "properties": { - "name": "Zil\u010dd\u00edltt\u00ed\u017e", - "realm_idx": 2466, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-21.1529, 42.88] - }, - "properties": { - "name": "Olsdilord", - "realm_idx": 2467, - "order": "The Order of Vitriol", - "resources": ["Wood", "Ethereal Silica", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.5437, 52.3339] - }, - "properties": { - "name": "eq-Eslinqlep", - "realm_idx": 2468, - "order": "The Order of Fury", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.2662, 35.3596] - }, - "properties": { - "name": "Nom-Lonken", - "realm_idx": 2469, - "order": "The Order of Anger", - "resources": [ - "Silver", - "Wood", - "Copper", - "Stone", - "Alchemical Silver", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.9801, -26.8996] - }, - "properties": { - "name": "Spituch Sr\u00e4", - "realm_idx": 2470, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Obsidian", "Cold Iron", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.4801, 48.0004] - }, - "properties": { - "name": "K\u00e1zh\u00ed", - "realm_idx": 2471, - "order": "The Order of Anger", - "resources": ["Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.3801, -3.3996] - }, - "properties": { - "name": "Tevig", - "realm_idx": 2472, - "order": "The Order of Rage", - "resources": ["Sapphire", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.1471, -8.12] - }, - "properties": { - "name": "Lomno\u2018m\u00fcl", - "realm_idx": 2473, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.8471, -5.62] - }, - "properties": { - "name": "I\u00f4l \u00e2p Koi", - "realm_idx": 2474, - "order": "The Order of Power", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.1153, -17.5973] - }, - "properties": { - "name": "Spapspon", - "realm_idx": 2475, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood", "Twilight Quartz", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.7276, -14.7439] - }, - "properties": { - "name": "Gesgrig", - "realm_idx": 2476, - "order": "The Order of Perfection", - "resources": ["Wood", "Gold", "Ignium", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.2471, 21.88] - }, - "properties": { - "name": "Syapsyapsrel", - "realm_idx": 2477, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.0471, 53.08] - }, - "properties": { - "name": "Inun-Opon", - "realm_idx": 2478, - "order": "The Order of Titans", - "resources": [ - "Obsidian", - "Cold Iron", - "Coal", - "Silver", - "Copper", - "Ruby" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.7529, 22.18] - }, - "properties": { - "name": "Josuk", - "realm_idx": 2479, - "order": "The Order of Vitriol", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.0801, 43.4004] - }, - "properties": { - "name": "Zokweb\u00f3m", - "realm_idx": 2480, - "order": "The Order of Anger", - "resources": ["Coal", "Copper", "Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.911, -25.1606] - }, - "properties": { - "name": "Yiqim", - "realm_idx": 2481, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.6043, 10.2384] - }, - "properties": { - "name": "Kuttisk\u00fcsk\u00fck", - "realm_idx": 2482, - "order": "The Order of Protection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.38, 31.1003] - }, - "properties": { - "name": "Munalumkum", - "realm_idx": 2483, - "order": "The Order of Detection", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.3529, -23.72] - }, - "properties": { - "name": "S\u00edss\u00edssik", - "realm_idx": 2484, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.2471, 5.78] - }, - "properties": { - "name": "Sukkusadusa", - "realm_idx": 2485, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.1471, 15.08] - }, - "properties": { - "name": "za Rinbimaun", - "realm_idx": 2486, - "order": "The Order of Protection", - "resources": ["Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.7801, 11.8004] - }, - "properties": { - "name": "Ogumum", - "realm_idx": 2487, - "order": "The Order of Rage", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.0529, -25.42] - }, - "properties": { - "name": "Di\u0161anipa", - "realm_idx": 2488, - "order": "The Order of Power", - "resources": ["Copper", "Stone", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.9471, -2.72] - }, - "properties": { - "name": "qun-Uubiuqui", - "realm_idx": 2489, - "order": "The Order of Giants", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.48, -46.0996] - }, - "properties": { - "name": "K\u00ed-r\u00edq-Kukk\u00ed", - "realm_idx": 2490, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.6523, 39.2926] - }, - "properties": { - "name": "Kiirpiil Aal", - "realm_idx": 2491, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.1471, -16.62] - }, - "properties": { - "name": "Eschesch", - "realm_idx": 2492, - "order": "The Order of Giants", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.9471, 51.68] - }, - "properties": { - "name": "Lillat", - "realm_idx": 2493, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.4471, 27.28] - }, - "properties": { - "name": "M\u00fat-t\u00f3ip-Sol", - "realm_idx": 2494, - "order": "The Order of Skill", - "resources": ["Obsidian", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.8471, 42.98] - }, - "properties": { - "name": "Tumlan", - "realm_idx": 2495, - "order": "The Order of Enlightenment", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.9471, 7.68] - }, - "properties": { - "name": "ur Uguv", - "realm_idx": 2496, - "order": "The Order of Brilliance", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.88, -16.8997] - }, - "properties": { - "name": "Tiuuliav", - "realm_idx": 2497, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.5471, 46.08] - }, - "properties": { - "name": "Spunsk\u00e1msk\u00e1m", - "realm_idx": 2498, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.4988, 3.0566] - }, - "properties": { - "name": "Ukenumotut", - "realm_idx": 2499, - "order": "The Order of Reflection", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.1529, 47.28] - }, - "properties": { - "name": "Mluut", - "realm_idx": 2500, - "order": "The Order of Fury", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.7471, 39.98] - }, - "properties": { - "name": "Utukupinum", - "realm_idx": 2501, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.3801, -15.6996] - }, - "properties": { - "name": "Sy\u00e9pg\u00ed", - "realm_idx": 2502, - "order": "The Order of Rage", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.38, 38.8003] - }, - "properties": { - "name": "Huthip", - "realm_idx": 2503, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian", "Ironwood", "Coal", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.1801, 30.9004] - }, - "properties": { - "name": "Tatchanichi", - "realm_idx": 2504, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.78, -10.4997] - }, - "properties": { - "name": "Rokylesghuk", - "realm_idx": 2505, - "order": "The Order of Detection", - "resources": ["Alchemical Silver", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.1471, 18.08] - }, - "properties": { - "name": "Oymmewd", - "realm_idx": 2506, - "order": "The Order of Brilliance", - "resources": ["Stone", "Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.724, 29.1125] - }, - "properties": { - "name": "Mupeptel", - "realm_idx": 2507, - "order": "The Order of Anger", - "resources": ["Ironwood", "Alchemical Silver", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [69.2471, 19.08] - }, - "properties": { - "name": "Mehe\u2018amo", - "realm_idx": 2508, - "order": "The Order of Skill", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.7801, -14.9996] - }, - "properties": { - "name": "Klelkrimtak", - "realm_idx": 2509, - "order": "The Order of Rage", - "resources": ["Obsidian", "Silver", "Ruby", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.3529, 4.18] - }, - "properties": { - "name": "Smenkunsk\u00e9ng", - "realm_idx": 2510, - "order": "The Order of Power", - "resources": ["Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.5529, 27.28] - }, - "properties": { - "name": "Kao Koa", - "realm_idx": 2511, - "order": "The Order of Vitriol", - "resources": ["Stone", "Ignium", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.0471, -24.02] - }, - "properties": { - "name": "Nasbrok", - "realm_idx": 2512, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Coal", "Obsidian", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.8529, 39.98] - }, - "properties": { - "name": "Atipuh", - "realm_idx": 2513, - "order": "The Order of Titans", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.0593, 28.9987] - }, - "properties": { - "name": "Kikotek", - "realm_idx": 2514, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.88, -4.7997] - }, - "properties": { - "name": "Urnpel", - "realm_idx": 2515, - "order": "The Order of Detection", - "resources": ["Copper", "Ironwood", "Stone", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.3471, -8.92] - }, - "properties": { - "name": "dlun Gin", - "realm_idx": 2516, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Gold", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.3529, 57.08] - }, - "properties": { - "name": "Uzudagak", - "realm_idx": 2517, - "order": "The Order of Fury", - "resources": ["Ironwood", "Obsidian", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.78, 3.8003] - }, - "properties": { - "name": "Sungteng", - "realm_idx": 2518, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Coal", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.48, -52.5996] - }, - "properties": { - "name": "M\u00e1apuapu\u00eds", - "realm_idx": 2519, - "order": "The Order of the Fox", - "resources": [ - "Wood", - "Cold Iron", - "Stone", - "Silver", - "Ignium", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.68, -44.9996] - }, - "properties": { - "name": "Lwtnanun", - "realm_idx": 2520, - "order": "The Order of the Fox", - "resources": ["Coal", "Ironwood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.8471, -11.72] - }, - "properties": { - "name": "nim-Senten", - "realm_idx": 2521, - "order": "The Order of Perfection", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.4529, 3.38] - }, - "properties": { - "name": "L\u00ebm Twuttwut", - "realm_idx": 2522, - "order": "The Order of Vitriol", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.78, 26.5003] - }, - "properties": { - "name": "q\u00fc Qaq\u00f6s\u00fcs\u00fc", - "realm_idx": 2523, - "order": "The Order of Fury", - "resources": ["Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.841, -48.6645] - }, - "properties": { - "name": "\u2018ennukno\u2018", - "realm_idx": 2524, - "order": "The Order of the Fox", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.1529, -5.02] - }, - "properties": { - "name": "Malih", - "realm_idx": 2525, - "order": "The Order of the Fox", - "resources": ["Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.5471, -37.62] - }, - "properties": { - "name": "Tomron", - "realm_idx": 2526, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.6471, 13.88] - }, - "properties": { - "name": "Nlannoksrok", - "realm_idx": 2527, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.1471, 43.48] - }, - "properties": { - "name": "Ka\u00fanlaok", - "realm_idx": 2528, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.3801, -32.0996] - }, - "properties": { - "name": "Tinnumnren", - "realm_idx": 2529, - "order": "The Order of the Twins", - "resources": ["Stone", "Hartwood", "Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.6112, -40.9348] - }, - "properties": { - "name": "Irnilt", - "realm_idx": 2530, - "order": "The Order of the Fox", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.98, -32.0997] - }, - "properties": { - "name": "Pan\u00e2pin\u00e2ki", - "realm_idx": 2531, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.4471, -17.92] - }, - "properties": { - "name": "Si Tissi", - "realm_idx": 2532, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.0471, 9.58] - }, - "properties": { - "name": "Ulis\u00edbid\u00edd", - "realm_idx": 2533, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.58, 7.0003] - }, - "properties": { - "name": "Trukput", - "realm_idx": 2534, - "order": "The Order of Detection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.0471, 16.18] - }, - "properties": { - "name": "Ulukuk", - "realm_idx": 2535, - "order": "The Order of Brilliance", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.4471, 33.08] - }, - "properties": { - "name": "Tschibfka", - "realm_idx": 2536, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.6801, 46.3004] - }, - "properties": { - "name": "Omul-Moosas", - "realm_idx": 2537, - "order": "The Order of Anger", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.9529, -19.82] - }, - "properties": { - "name": "Sidkalitiq", - "realm_idx": 2538, - "order": "The Order of Power", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.3139, 26.7844] - }, - "properties": { - "name": "Szhonton", - "realm_idx": 2539, - "order": "The Order of Fury", - "resources": ["Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.4471, 24.18] - }, - "properties": { - "name": "Nutnutnutnil", - "realm_idx": 2540, - "order": "The Order of Skill", - "resources": [ - "Ironwood", - "Stone", - "Obsidian", - "Silver", - "Coal", - "Diamonds" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.9529, 47.58] - }, - "properties": { - "name": "Yulghurw", - "realm_idx": 2541, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.4529, 24.38] - }, - "properties": { - "name": "P\u00fcpk\u00f6hm\u00e4\u2018", - "realm_idx": 2542, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.2004, 37.1173] - }, - "properties": { - "name": "Ewam\u00edl\u00e1\u2018", - "realm_idx": 2543, - "order": "The Order of Anger", - "resources": ["Ironwood", "Obsidian", "Diamonds", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.18, -30.0997] - }, - "properties": { - "name": "Nilimkunupa\u2018", - "realm_idx": 2544, - "order": "The Order of the Fox", - "resources": ["Copper", "Cold Iron", "Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [23.1471, 56.98] - }, - "properties": { - "name": "Tasensensu", - "realm_idx": 2545, - "order": "The Order of Titans", - "resources": ["Copper", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.0949, -17.29] - }, - "properties": { - "name": "Nelpnirt", - "realm_idx": 2546, - "order": "The Order of Perfection", - "resources": ["Gold", "Stone", "Coal", "Wood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.1825, 9.473] - }, - "properties": { - "name": "Muhepeme", - "realm_idx": 2547, - "order": "The Order of Protection", - "resources": ["Silver", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.0529, -21.22] - }, - "properties": { - "name": "Or moyk Um", - "realm_idx": 2548, - "order": "The Order of Power", - "resources": ["Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.38, -51.6996] - }, - "properties": { - "name": "Lul Utut", - "realm_idx": 2549, - "order": "The Order of the Fox", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.2801, 34.7004] - }, - "properties": { - "name": "Ukukom", - "realm_idx": 2550, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.7529, 3.18] - }, - "properties": { - "name": "iwp \u00day Kayiy", - "realm_idx": 2551, - "order": "The Order of Power", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.0144, -8.7028] - }, - "properties": { - "name": "Mos sus Kup", - "realm_idx": 2552, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.4471, 0.88] - }, - "properties": { - "name": "Kunspap", - "realm_idx": 2553, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.7529, 39.98] - }, - "properties": { - "name": "Nenhinpwnnen", - "realm_idx": 2554, - "order": "The Order of Titans", - "resources": ["Stone", "Copper", "Wood", "Cold Iron", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.0115, 31.584] - }, - "properties": { - "name": "Timmunsinsun", - "realm_idx": 2555, - "order": "The Order of Fury", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.4801, 19.3004] - }, - "properties": { - "name": "Etumunin", - "realm_idx": 2556, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "True Ice", "Coal", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.5471, 2.98] - }, - "properties": { - "name": "Byugch\u00e4zg\u00e4sh", - "realm_idx": 2557, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.8333, -13.2016] - }, - "properties": { - "name": "Oylm\u00f3ykay", - "realm_idx": 2558, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.2529, 10.98] - }, - "properties": { - "name": "Kretkekkrik", - "realm_idx": 2559, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.9529, 25.98] - }, - "properties": { - "name": "D\u00f3b nlas X\u00f3l", - "realm_idx": 2560, - "order": "The Order of Vitriol", - "resources": ["Coal", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.5801, -53.9996] - }, - "properties": { - "name": "Opiloot-Itep", - "realm_idx": 2561, - "order": "The Order of the Twins", - "resources": ["Stone", "Ethereal Silica", "Ironwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.4471, 9.18] - }, - "properties": { - "name": "Diszhuj", - "realm_idx": 2562, - "order": "The Order of Titans", - "resources": ["Coal", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [24.2471, 42.78] - }, - "properties": { - "name": "Dadinti", - "realm_idx": 2563, - "order": "The Order of Titans", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.3471, 26.08] - }, - "properties": { - "name": "su M\u00fazh", - "realm_idx": 2564, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Cold Iron", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.5382, 34.0411] - }, - "properties": { - "name": "T\u00e1nran", - "realm_idx": 2565, - "order": "The Order of Reflection", - "resources": ["Hartwood", "Wood", "Ironwood", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.9801, -6.1996] - }, - "properties": { - "name": "Spaksnip", - "realm_idx": 2566, - "order": "The Order of Rage", - "resources": ["Wood", "Stone", "Silver", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.4201, 45.1164] - }, - "properties": { - "name": "Uwchiwluwm", - "realm_idx": 2567, - "order": "The Order of Anger", - "resources": ["Alchemical Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.6682, -23.9704] - }, - "properties": { - "name": "u Jilunmimi", - "realm_idx": 2568, - "order": "The Order of Perfection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.38, 6.2003] - }, - "properties": { - "name": "Lilkteltal", - "realm_idx": 2569, - "order": "The Order of Detection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.1471, -3.72] - }, - "properties": { - "name": "Ilw\u2018ul", - "realm_idx": 2570, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.5471, 52.18] - }, - "properties": { - "name": "Iibiib", - "realm_idx": 2571, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.8471, 33.68] - }, - "properties": { - "name": "Hihih", - "realm_idx": 2572, - "order": "The Order of Skill", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.9471, 10.98] - }, - "properties": { - "name": "Arparpur\u2018", - "realm_idx": 2573, - "order": "The Order of Brilliance", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-48.3529, 49.58] - }, - "properties": { - "name": "Am\u2018ilm", - "realm_idx": 2574, - "order": "The Order of Fury", - "resources": ["Coal", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.5471, 18.78] - }, - "properties": { - "name": "Yruytuy", - "realm_idx": 2575, - "order": "The Order of Brilliance", - "resources": ["Copper", "Ironwood", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.38, 12.8003] - }, - "properties": { - "name": "Umpies", - "realm_idx": 2576, - "order": "The Order of Fury", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.6471, 41.28] - }, - "properties": { - "name": "Ivoti", - "realm_idx": 2577, - "order": "The Order of Enlightenment", - "resources": ["Sapphire", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.6471, 59.78] - }, - "properties": { - "name": "Muunsrenlin", - "realm_idx": 2578, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.2471, 47.98] - }, - "properties": { - "name": "Mlamtrin Kom", - "realm_idx": 2579, - "order": "The Order of Skill", - "resources": ["Coal", "Sapphire", "Wood", "Stone", "Ignium", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.3471, 25.08] - }, - "properties": { - "name": "\u017do\u017eoro\u017e\u017e\u00f4", - "realm_idx": 2580, - "order": "The Order of Titans", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.88, -55.3996] - }, - "properties": { - "name": "Kanslos", - "realm_idx": 2581, - "order": "The Order of the Fox", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.58, -31.1997] - }, - "properties": { - "name": "Asenokukom", - "realm_idx": 2582, - "order": "The Order of Detection", - "resources": ["Wood", "Stone", "Obsidian", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.6471, 38.28] - }, - "properties": { - "name": "Somoyex", - "realm_idx": 2583, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.8453, -22.5343] - }, - "properties": { - "name": "Son-Munan", - "realm_idx": 2584, - "order": "The Order of Perfection", - "resources": ["Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.5627, -21.4012] - }, - "properties": { - "name": "Puwha\u2018pih", - "realm_idx": 2585, - "order": "The Order of Perfection", - "resources": ["Copper", "Cold Iron", "Ironwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.18, 10.4003] - }, - "properties": { - "name": "Smumta", - "realm_idx": 2586, - "order": "The Order of Detection", - "resources": [ - "Coal", - "Cold Iron", - "Obsidian", - "Silver", - "Stone", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.28, -29.1997] - }, - "properties": { - "name": "Tui Toenpout", - "realm_idx": 2587, - "order": "The Order of Detection", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [24.4471, 42.98] - }, - "properties": { - "name": "Ismus", - "realm_idx": 2588, - "order": "The Order of Titans", - "resources": ["Coal", "Ironwood", "Obsidian", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.88, 32.3003] - }, - "properties": { - "name": "\u017eo U\u0161u\u0161", - "realm_idx": 2589, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.38, 11.5003] - }, - "properties": { - "name": "Mel Smikslim", - "realm_idx": 2590, - "order": "The Order of Detection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.7801, -31.4996] - }, - "properties": { - "name": "Tekpik", - "realm_idx": 2591, - "order": "The Order of the Twins", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.6471, -2.52] - }, - "properties": { - "name": "Tlutlit", - "realm_idx": 2592, - "order": "The Order of Power", - "resources": ["Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.38, -3.3997] - }, - "properties": { - "name": "Oribirib", - "realm_idx": 2593, - "order": "The Order of Detection", - "resources": ["Obsidian", "Wood", "Ignium", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.8232, 20.8295] - }, - "properties": { - "name": "Utosel", - "realm_idx": 2594, - "order": "The Order of Fury", - "resources": ["Cold Iron", "Coal", "Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.7529, 0.38] - }, - "properties": { - "name": "Dubbred", - "realm_idx": 2595, - "order": "The Order of Vitriol", - "resources": ["Wood", "Sapphire", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.7678, -20.3576] - }, - "properties": { - "name": "Itemtepekeng", - "realm_idx": 2596, - "order": "The Order of Protection", - "resources": ["Wood", "Gold", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.5596, -22.7172] - }, - "properties": { - "name": "Totomiha", - "realm_idx": 2597, - "order": "The Order of Protection", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.7801, -42.9996] - }, - "properties": { - "name": "Tipototem", - "realm_idx": 2598, - "order": "The Order of the Twins", - "resources": ["Stone", "Coal", "Adamantine", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.2801, 13.5004] - }, - "properties": { - "name": "Tutche", - "realm_idx": 2599, - "order": "The Order of Rage", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.3566, 2.9642] - }, - "properties": { - "name": "Mumes", - "realm_idx": 2600, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.5471, -22.82] - }, - "properties": { - "name": "Kilmsultsi", - "realm_idx": 2601, - "order": "The Order of Giants", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.98, 3.2003] - }, - "properties": { - "name": "K\u00e1k\u00e1mekmek", - "realm_idx": 2602, - "order": "The Order of Detection", - "resources": ["Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.1801, 37.7004] - }, - "properties": { - "name": "Momnas", - "realm_idx": 2603, - "order": "The Order of Anger", - "resources": ["Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.98, 34.0003] - }, - "properties": { - "name": "tok Some", - "realm_idx": 2604, - "order": "The Order of Reflection", - "resources": ["Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.8471, -40.52] - }, - "properties": { - "name": "Eselluk", - "realm_idx": 2605, - "order": "The Order of Giants", - "resources": ["Obsidian", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.7194, -22.3207] - }, - "properties": { - "name": "Ur Tolstols", - "realm_idx": 2606, - "order": "The Order of Protection", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.2276, 30.0465] - }, - "properties": { - "name": "Fmich", - "realm_idx": 2607, - "order": "The Order of Fury", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.6801, -56.1996] - }, - "properties": { - "name": "Vulngveylo", - "realm_idx": 2608, - "order": "The Order of the Twins", - "resources": ["Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.0596, -0.464] - }, - "properties": { - "name": "Ibtli\u0161", - "realm_idx": 2609, - "order": "The Order of Perfection", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.3471, -0.32] - }, - "properties": { - "name": "Sm\u00e1rpin", - "realm_idx": 2610, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Silver", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.2471, -11.12] - }, - "properties": { - "name": "Losh\u00e1w\u00e1q\u00fa", - "realm_idx": 2611, - "order": "The Order of Power", - "resources": ["Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.0801, 44.7004] - }, - "properties": { - "name": "Naseak", - "realm_idx": 2612, - "order": "The Order of Anger", - "resources": ["Silver", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.8529, 13.08] - }, - "properties": { - "name": "Mektolnurk", - "realm_idx": 2613, - "order": "The Order of Vitriol", - "resources": ["Hartwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.2471, 12.28] - }, - "properties": { - "name": "Lyisuepte\u00eat", - "realm_idx": 2614, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.235, 43.1754] - }, - "properties": { - "name": "Apamokin", - "realm_idx": 2615, - "order": "The Order of Anger", - "resources": ["Silver", "Stone", "Obsidian", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.7264, -20.0778] - }, - "properties": { - "name": "\u00cfy-\u00e4wn-Artiy", - "realm_idx": 2616, - "order": "The Order of Protection", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.5529, 12.68] - }, - "properties": { - "name": "Chnisunatul", - "realm_idx": 2617, - "order": "The Order of Vitriol", - "resources": ["Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.7471, 14.68] - }, - "properties": { - "name": "Ozash", - "realm_idx": 2618, - "order": "The Order of Titans", - "resources": ["Stone", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.1062, 3.1362] - }, - "properties": { - "name": "Hinhinhum", - "realm_idx": 2619, - "order": "The Order of Protection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.7471, -38.42] - }, - "properties": { - "name": "Nommukemuson", - "realm_idx": 2620, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.3529, 53.38] - }, - "properties": { - "name": "Tutilchird", - "realm_idx": 2621, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.3529, 12.38] - }, - "properties": { - "name": "Mong-am-Kin", - "realm_idx": 2622, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.6471, 5.88] - }, - "properties": { - "name": "Etnuk", - "realm_idx": 2623, - "order": "The Order of Brilliance", - "resources": ["Copper", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.8801, 49.5004] - }, - "properties": { - "name": "Kik mi Kuk", - "realm_idx": 2624, - "order": "The Order of Anger", - "resources": ["Coal", "Ruby", "Silver", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.047, -3.42] - }, - "properties": { - "name": "Memkox", - "realm_idx": 2625, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.1471, 18.58] - }, - "properties": { - "name": "Nom Sh\u00e4", - "realm_idx": 2626, - "order": "The Order of Skill", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.08, -8.6997] - }, - "properties": { - "name": "Lunkwep", - "realm_idx": 2627, - "order": "The Order of Detection", - "resources": ["Wood", "Hartwood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.3471, -34.72] - }, - "properties": { - "name": "Tonnunponkeh", - "realm_idx": 2628, - "order": "The Order of Giants", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.5471, 49.88] - }, - "properties": { - "name": "Piuwei", - "realm_idx": 2629, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.3529, -5.02] - }, - "properties": { - "name": "Timhlin", - "realm_idx": 2630, - "order": "The Order of the Fox", - "resources": ["Wood", "Ruby", "Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.1801, 8.8004] - }, - "properties": { - "name": "Olmmumolm", - "realm_idx": 2631, - "order": "The Order of Rage", - "resources": ["Obsidian", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.6471, 25.58] - }, - "properties": { - "name": "Nesnoel-K\u00e9on", - "realm_idx": 2632, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.9471, -13.02] - }, - "properties": { - "name": "Lakol", - "realm_idx": 2633, - "order": "The Order of Perfection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.0471, 9.18] - }, - "properties": { - "name": "Weugzua\u010d", - "realm_idx": 2634, - "order": "The Order of Brilliance", - "resources": ["Stone", "Gold", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.48, -13.7997] - }, - "properties": { - "name": "Punstusst\u00e1m", - "realm_idx": 2635, - "order": "The Order of Detection", - "resources": ["Wood", "Hartwood", "Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.6529, -26.82] - }, - "properties": { - "name": "Kaotmaut", - "realm_idx": 2636, - "order": "The Order of Power", - "resources": ["Stone", "Diamonds", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.8471, -26.72] - }, - "properties": { - "name": "Punhlan", - "realm_idx": 2637, - "order": "The Order of Giants", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.4471, 40.18] - }, - "properties": { - "name": "Kiskiswiz", - "realm_idx": 2638, - "order": "The Order of Skill", - "resources": ["Stone", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.7529, 25.28] - }, - "properties": { - "name": "Plokpil", - "realm_idx": 2639, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.38, -55.1996] - }, - "properties": { - "name": "Kaka-Ka", - "realm_idx": 2640, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.88, -57.6996] - }, - "properties": { - "name": "\u00dcnn\u00e4s\u00fcnga", - "realm_idx": 2641, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.9627, -10.8044] - }, - "properties": { - "name": "Kuloloslo", - "realm_idx": 2642, - "order": "The Order of Perfection", - "resources": ["Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.8147, -23.5402] - }, - "properties": { - "name": "Zhomdum u In", - "realm_idx": 2643, - "order": "The Order of Protection", - "resources": ["Wood", "Coal", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.3471, -41.72] - }, - "properties": { - "name": "Kronkot", - "realm_idx": 2644, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.78, 21.5003] - }, - "properties": { - "name": "Droqsisdligh", - "realm_idx": 2645, - "order": "The Order of Detection", - "resources": ["Hartwood", "Copper", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.7529, -24.72] - }, - "properties": { - "name": "Eng\u00edpu\u00e1n", - "realm_idx": 2646, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.6471, -11.22] - }, - "properties": { - "name": "Kipuknaknap", - "realm_idx": 2647, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.6053, -21.5339] - }, - "properties": { - "name": "Up-Ulmul", - "realm_idx": 2648, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.2529, 49.08] - }, - "properties": { - "name": "Num Len", - "realm_idx": 2649, - "order": "The Order of Fury", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.1471, -1.92] - }, - "properties": { - "name": "U\u0161ukem", - "realm_idx": 2650, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.8529, -8.62] - }, - "properties": { - "name": "Tintemtemtun", - "realm_idx": 2651, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.68, -7.6997] - }, - "properties": { - "name": "om Olukut", - "realm_idx": 2652, - "order": "The Order of Detection", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.8529, -7.72] - }, - "properties": { - "name": "Uruqumoch", - "realm_idx": 2653, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.4647, 13.4972] - }, - "properties": { - "name": "Mrismrok", - "realm_idx": 2654, - "order": "The Order of Fury", - "resources": ["Silver", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.0471, -33.82] - }, - "properties": { - "name": "Matilis\u00ed", - "realm_idx": 2655, - "order": "The Order of Power", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.78, -5.5997] - }, - "properties": { - "name": "Nimsenpopnim", - "realm_idx": 2656, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.6442, -38.749] - }, - "properties": { - "name": "Chirp\u00e1rk", - "realm_idx": 2657, - "order": "The Order of Reflection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.0801, -35.6996] - }, - "properties": { - "name": "Nahim \u2018i\u2018im", - "realm_idx": 2658, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.0529, -23.92] - }, - "properties": { - "name": "\u2018in K\u00edm", - "realm_idx": 2659, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.8801, -4.1996] - }, - "properties": { - "name": "Naklanlemtok", - "realm_idx": 2660, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.1801, -27.2996] - }, - "properties": { - "name": "Kunuz", - "realm_idx": 2661, - "order": "The Order of the Twins", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.4471, 42.48] - }, - "properties": { - "name": "L\u00edskakl\u00e1n", - "realm_idx": 2662, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.6471, 55.28] - }, - "properties": { - "name": "Sninskitspu", - "realm_idx": 2663, - "order": "The Order of Skill", - "resources": ["Copper", "Wood", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.8529, -9.62] - }, - "properties": { - "name": "Aslup", - "realm_idx": 2664, - "order": "The Order of the Fox", - "resources": ["Coal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.3471, -12.82] - }, - "properties": { - "name": "Ewu\u00fae", - "realm_idx": 2665, - "order": "The Order of Perfection", - "resources": ["Coal", "Obsidian", "Cold Iron", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.4471, 27.18] - }, - "properties": { - "name": "Sa\u00e4samk\u00ef\u00e4nun", - "realm_idx": 2666, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.8801, 26.2004] - }, - "properties": { - "name": "e-Leim-ma-O", - "realm_idx": 2667, - "order": "The Order of Rage", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.5801, -32.2996] - }, - "properties": { - "name": "Rimrim", - "realm_idx": 2668, - "order": "The Order of the Twins", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.98, -6.4997] - }, - "properties": { - "name": "Somrom", - "realm_idx": 2669, - "order": "The Order of Detection", - "resources": ["Ironwood", "Coal", "Silver", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.5471, 19.88] - }, - "properties": { - "name": "Minnissuses", - "realm_idx": 2670, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Copper", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.3529, -34.52] - }, - "properties": { - "name": "ger-Ils", - "realm_idx": 2671, - "order": "The Order of Power", - "resources": [ - "Copper", - "Wood", - "Ignium", - "True Ice", - "Cold Iron", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.3529, -37.72] - }, - "properties": { - "name": "D\u00e1ll\u00e1tchd\u00edl", - "realm_idx": 2672, - "order": "The Order of Power", - "resources": ["Stone", "Sapphire", "Gold", "Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.8471, 50.78] - }, - "properties": { - "name": "Kars\u00edlmkar", - "realm_idx": 2673, - "order": "The Order of Skill", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.8471, 33.08] - }, - "properties": { - "name": "Tomskansnug", - "realm_idx": 2674, - "order": "The Order of Titans", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.9801, 33.9004] - }, - "properties": { - "name": "Oytnerpewt", - "realm_idx": 2675, - "order": "The Order of Anger", - "resources": ["Stone", "Silver", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.4471, -49.12] - }, - "properties": { - "name": "Atolktit", - "realm_idx": 2676, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [10.4471, -12.62] - }, - "properties": { - "name": "Poltoln", - "realm_idx": 2677, - "order": "The Order of Power", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.8527, 53.1801] - }, - "properties": { - "name": "K\u00e1kus\u00e1ninu", - "realm_idx": 2678, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-27.6529, 43.38] - }, - "properties": { - "name": "Malwmalw", - "realm_idx": 2679, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.4801, 28.8004] - }, - "properties": { - "name": "Smundonsrin", - "realm_idx": 2680, - "order": "The Order of Rage", - "resources": ["Deep Crystal", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.1801, -9.0996] - }, - "properties": { - "name": "Tersautghout", - "realm_idx": 2681, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.58, -6.0997] - }, - "properties": { - "name": "Guzhnias", - "realm_idx": 2682, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.2709, -50.5613] - }, - "properties": { - "name": "Uzedozhasch", - "realm_idx": 2683, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.6471, -20.12] - }, - "properties": { - "name": "Ewonepil", - "realm_idx": 2684, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.8471, 8.28] - }, - "properties": { - "name": "Yunnun", - "realm_idx": 2685, - "order": "The Order of Brilliance", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.3801, 9.9004] - }, - "properties": { - "name": "Sun Sunsun", - "realm_idx": 2686, - "order": "The Order of Rage", - "resources": ["Obsidian", "Stone", "Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.3238, -24.5675] - }, - "properties": { - "name": "Sibar\u00e2b", - "realm_idx": 2687, - "order": "The Order of Protection", - "resources": ["Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.4801, 6.2004] - }, - "properties": { - "name": "\u00eds \u00c1kshakas", - "realm_idx": 2688, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.4529, -2.72] - }, - "properties": { - "name": "Ursharbpit", - "realm_idx": 2689, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.4801, 6.7004] - }, - "properties": { - "name": "Suskelsossos", - "realm_idx": 2690, - "order": "The Order of Rage", - "resources": ["Ironwood", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.58, 20.7003] - }, - "properties": { - "name": "Risdizluz", - "realm_idx": 2691, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.7362, 5.6139] - }, - "properties": { - "name": "tu S\u00fag\u00e1", - "realm_idx": 2692, - "order": "The Order of Protection", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.5401, 25.942] - }, - "properties": { - "name": "Miushsie", - "realm_idx": 2693, - "order": "The Order of Fury", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.5471, -4.52] - }, - "properties": { - "name": "Uuz A\u0161us", - "realm_idx": 2694, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.2471, 21.78] - }, - "properties": { - "name": "\u00c9 Me\u00e9ap", - "realm_idx": 2695, - "order": "The Order of Skill", - "resources": [ - "Twilight Quartz", - "True Ice", - "Silver", - "Coal", - "Wood", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.0471, -14.22] - }, - "properties": { - "name": "I\u2018len", - "realm_idx": 2696, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.8471, 3.18] - }, - "properties": { - "name": "hoh Mihnuh", - "realm_idx": 2697, - "order": "The Order of Brilliance", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.6992, -14.059] - }, - "properties": { - "name": "Momlun", - "realm_idx": 2698, - "order": "The Order of Rage", - "resources": ["Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.9471, 33.08] - }, - "properties": { - "name": "M\u00ebmfmin Kam", - "realm_idx": 2699, - "order": "The Order of Skill", - "resources": ["Gold", "Obsidian", "Stone", "Hartwood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [11.1471, -15.12] - }, - "properties": { - "name": "Nokmismrok", - "realm_idx": 2700, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.6801, -10.3996] - }, - "properties": { - "name": "Lonnunhoh", - "realm_idx": 2701, - "order": "The Order of Rage", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.7471, 42.28] - }, - "properties": { - "name": "Tosoz-Duza\u017e", - "realm_idx": 2702, - "order": "The Order of Skill", - "resources": ["Stone", "Wood", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [27.6471, -22.12] - }, - "properties": { - "name": "Mwityik", - "realm_idx": 2703, - "order": "The Order of Giants", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.7801, 26.4004] - }, - "properties": { - "name": "Mlemplup", - "realm_idx": 2704, - "order": "The Order of Rage", - "resources": ["Cold Iron", "Stone", "Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.8529, -17.42] - }, - "properties": { - "name": "Lun Nimlun", - "realm_idx": 2705, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.88, -26.7997] - }, - "properties": { - "name": "Sken\u00eat", - "realm_idx": 2706, - "order": "The Order of Reflection", - "resources": ["Cold Iron", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.1801, 30.9004] - }, - "properties": { - "name": "G\u00e9g\u00e9z tag Um", - "realm_idx": 2707, - "order": "The Order of Anger", - "resources": ["Coal", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.38, -30.7997] - }, - "properties": { - "name": "Omshangom", - "realm_idx": 2708, - "order": "The Order of Reflection", - "resources": ["Hartwood", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.7787, -17.6663] - }, - "properties": { - "name": "Meme \u2018o Mepo", - "realm_idx": 2709, - "order": "The Order of Perfection", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.6529, 12.08] - }, - "properties": { - "name": "Demwiqemmur", - "realm_idx": 2710, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.7801, -31.0996] - }, - "properties": { - "name": "ut Ielok", - "realm_idx": 2711, - "order": "The Order of the Twins", - "resources": ["Silver", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.8031, -17.3122] - }, - "properties": { - "name": "Wnmwowp", - "realm_idx": 2712, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.98, 3.6003] - }, - "properties": { - "name": "Timhiam", - "realm_idx": 2713, - "order": "The Order of Detection", - "resources": ["Coal", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.996, 7.4762] - }, - "properties": { - "name": "Kiskis", - "realm_idx": 2714, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Obsidian", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.7801, 34.8004] - }, - "properties": { - "name": "mus L\u00fap", - "realm_idx": 2715, - "order": "The Order of Anger", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.6471, 9.38] - }, - "properties": { - "name": "Lemnen-Nunko", - "realm_idx": 2716, - "order": "The Order of Brilliance", - "resources": ["Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.58, -61.5996] - }, - "properties": { - "name": "Puh-Mup", - "realm_idx": 2717, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.1801, 29.4004] - }, - "properties": { - "name": "Srekkeztuuk", - "realm_idx": 2718, - "order": "The Order of Anger", - "resources": ["Obsidian", "Cold Iron", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.2471, 22.28] - }, - "properties": { - "name": "Pahpahpup", - "realm_idx": 2719, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Silver", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.3471, -24.92] - }, - "properties": { - "name": "T\u00e1sjl\u00e1k", - "realm_idx": 2720, - "order": "The Order of Giants", - "resources": ["Wood", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.1471, 19.88] - }, - "properties": { - "name": "Keke me Kei", - "realm_idx": 2721, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.78, -7.9997] - }, - "properties": { - "name": "\u0160lintan", - "realm_idx": 2722, - "order": "The Order of Reflection", - "resources": [ - "Silver", - "Copper", - "Stone", - "Ironwood", - "Obsidian", - "Gold", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.5471, 39.48] - }, - "properties": { - "name": "Rom-Anyon", - "realm_idx": 2723, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.88, 4.5003] - }, - "properties": { - "name": "Nutlobleriz", - "realm_idx": 2724, - "order": "The Order of Detection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.7529, -41.72] - }, - "properties": { - "name": "Udosugugug", - "realm_idx": 2725, - "order": "The Order of Power", - "resources": ["Obsidian", "Ironwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.9801, 37.9004] - }, - "properties": { - "name": "Kinanin", - "realm_idx": 2726, - "order": "The Order of Anger", - "resources": ["Sapphire", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.8471, 47.48] - }, - "properties": { - "name": "Liilkalpaan", - "realm_idx": 2727, - "order": "The Order of Enlightenment", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.58, 33.3003] - }, - "properties": { - "name": "Y\u00e4nskumskum", - "realm_idx": 2728, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.5801, 3.9004] - }, - "properties": { - "name": "Radduir", - "realm_idx": 2729, - "order": "The Order of Rage", - "resources": ["Copper", "Gold", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.2471, -12.52] - }, - "properties": { - "name": "Isetisisulet", - "realm_idx": 2730, - "order": "The Order of Perfection", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.8471, 14.48] - }, - "properties": { - "name": "Kuzmiztaz", - "realm_idx": 2731, - "order": "The Order of Brilliance", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.8801, 25.5004] - }, - "properties": { - "name": "Kupnumpummom", - "realm_idx": 2732, - "order": "The Order of Anger", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.4829, -23.8585] - }, - "properties": { - "name": "Suateuksua", - "realm_idx": 2733, - "order": "The Order of Protection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.4529, 30.48] - }, - "properties": { - "name": "Mum Ml\u00edlpl\u00e1s", - "realm_idx": 2734, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.88, 31.8003] - }, - "properties": { - "name": "Dorbor", - "realm_idx": 2735, - "order": "The Order of Fury", - "resources": ["Coal", "Wood", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.0801, -20.3996] - }, - "properties": { - "name": "Shkun", - "realm_idx": 2736, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Copper", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.1527, 50.7801] - }, - "properties": { - "name": "Nijpijl", - "realm_idx": 2737, - "order": "The Order of the Twins", - "resources": ["Alchemical Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.1801, 26.3004] - }, - "properties": { - "name": "Omonum", - "realm_idx": 2738, - "order": "The Order of Rage", - "resources": ["Copper", "Cold Iron", "Ironwood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.2471, 12.68] - }, - "properties": { - "name": "Isesisotox", - "realm_idx": 2739, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.0082, -23.8568] - }, - "properties": { - "name": "Nin\u00fakp\u00fap", - "realm_idx": 2740, - "order": "The Order of Perfection", - "resources": ["Wood", "Ironwood", "Dragonhide"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.5471, -14.12] - }, - "properties": { - "name": "Ilper\u00e9ln\u00e1lal", - "realm_idx": 2741, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.8648, -49.2743] - }, - "properties": { - "name": "Tusutu", - "realm_idx": 2742, - "order": "The Order of the Fox", - "resources": ["Cold Iron", "Silver", "Ironwood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.5471, -12.02] - }, - "properties": { - "name": "T\u00e9shonezh\u00e9", - "realm_idx": 2743, - "order": "The Order of Perfection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.4471, -7.02] - }, - "properties": { - "name": "Nalnalel", - "realm_idx": 2744, - "order": "The Order of Power", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.7529, 19.88] - }, - "properties": { - "name": "\u00dapang\u00faruv", - "realm_idx": 2745, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.7471, 31.88] - }, - "properties": { - "name": "Jikwakkuzti", - "realm_idx": 2746, - "order": "The Order of Titans", - "resources": ["Coal", "Obsidian", "Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.9471, 9.08] - }, - "properties": { - "name": "Taatislimaa", - "realm_idx": 2747, - "order": "The Order of Protection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.9471, 19.28] - }, - "properties": { - "name": "Kumk\u00fannum", - "realm_idx": 2748, - "order": "The Order of Skill", - "resources": ["Wood", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.0395, -23.4182] - }, - "properties": { - "name": "Huk Mum", - "realm_idx": 2749, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Coal", "Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.4471, 19.28] - }, - "properties": { - "name": "Zotschon", - "realm_idx": 2750, - "order": "The Order of Skill", - "resources": ["Stone", "Wood", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.8471, 16.58] - }, - "properties": { - "name": "Srelsdekh", - "realm_idx": 2751, - "order": "The Order of Skill", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-78.1801, -14.9996] - }, - "properties": { - "name": "Keschog-Chog", - "realm_idx": 2752, - "order": "The Order of Rage", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.38, 24.3003] - }, - "properties": { - "name": "Ralyl", - "realm_idx": 2753, - "order": "The Order of Fury", - "resources": ["Copper", "Silver", "Stone", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.7471, -43.62] - }, - "properties": { - "name": "Ukukur", - "realm_idx": 2754, - "order": "The Order of Giants", - "resources": ["Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.1471, -20.82] - }, - "properties": { - "name": "Sopekk\u00e9p", - "realm_idx": 2755, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Coal", "Gold", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.1471, -2.92] - }, - "properties": { - "name": "Lyuplil", - "realm_idx": 2756, - "order": "The Order of Brilliance", - "resources": [ - "Alchemical Silver", - "Copper", - "Wood", - "Cold Iron", - "Obsidian", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.68, 37.7003] - }, - "properties": { - "name": "Sr\u00e2nskimnyn", - "realm_idx": 2757, - "order": "The Order of Reflection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.9498, 4.7702] - }, - "properties": { - "name": "Hukhem Myam", - "realm_idx": 2758, - "order": "The Order of Protection", - "resources": ["Wood", "Obsidian", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.0764, -18.2187] - }, - "properties": { - "name": "Gikzhik", - "realm_idx": 2759, - "order": "The Order of Reflection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.8471, 3.68] - }, - "properties": { - "name": "Taron", - "realm_idx": 2760, - "order": "The Order of Brilliance", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.7352, -10.6918] - }, - "properties": { - "name": "Leenin", - "realm_idx": 2761, - "order": "The Order of the Fox", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.7471, 12.98] - }, - "properties": { - "name": "N\u00e1tsm\u00f3sh", - "realm_idx": 2762, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.1801, -51.1996] - }, - "properties": { - "name": "Homhom", - "realm_idx": 2763, - "order": "The Order of the Twins", - "resources": ["Copper", "Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.2529, 22.68] - }, - "properties": { - "name": "Okhokh", - "realm_idx": 2764, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.7471, 19.48] - }, - "properties": { - "name": "Jiemjiem", - "realm_idx": 2765, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Sapphire", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.58, -50.3997] - }, - "properties": { - "name": "Lunnutkut", - "realm_idx": 2766, - "order": "The Order of the Fox", - "resources": ["Silver", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.3801, 26.3004] - }, - "properties": { - "name": "Venom", - "realm_idx": 2767, - "order": "The Order of Rage", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.3529, 25.58] - }, - "properties": { - "name": "Niklentet", - "realm_idx": 2768, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.98, -26.2997] - }, - "properties": { - "name": "Slushpazvuz", - "realm_idx": 2769, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.38, -37.8997] - }, - "properties": { - "name": "Dwemdyummun", - "realm_idx": 2770, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.1471, 14.48] - }, - "properties": { - "name": "Inpen", - "realm_idx": 2771, - "order": "The Order of Brilliance", - "resources": ["Wood", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.6543, -24.4017] - }, - "properties": { - "name": "Nissene", - "realm_idx": 2772, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.28, 15.5003] - }, - "properties": { - "name": "Khukh", - "realm_idx": 2773, - "order": "The Order of Detection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.9471, -18.12] - }, - "properties": { - "name": "Gom Kegtum", - "realm_idx": 2774, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.8801, -33.1996] - }, - "properties": { - "name": "Kaizxi\u00e1", - "realm_idx": 2775, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.3471, -48.82] - }, - "properties": { - "name": "Enunan", - "realm_idx": 2776, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.7169, -30.1051] - }, - "properties": { - "name": "\u00d3puwawi\u2018", - "realm_idx": 2777, - "order": "The Order of Reflection", - "resources": ["Silver", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.1588, -35.4973] - }, - "properties": { - "name": "Ukihut", - "realm_idx": 2778, - "order": "The Order of Reflection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.5801, 9.9004] - }, - "properties": { - "name": "\u00d4mumamon", - "realm_idx": 2779, - "order": "The Order of Rage", - "resources": ["Copper", "Silver", "Obsidian", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.78, -0.0997] - }, - "properties": { - "name": "L\u00fan Sitnil", - "realm_idx": 2780, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Obsidian", "Ironwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.1529, -22.02] - }, - "properties": { - "name": "Gyzkaz", - "realm_idx": 2781, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Copper", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.7529, 45.38] - }, - "properties": { - "name": "Ewepjullel", - "realm_idx": 2782, - "order": "The Order of Fury", - "resources": ["Coal", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.1529, 48.68] - }, - "properties": { - "name": "Muamkep", - "realm_idx": 2783, - "order": "The Order of Fury", - "resources": ["Stone", "Cold Iron", "Ironwood", "Wood", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.5471, -1.52] - }, - "properties": { - "name": "Sulisilanil", - "realm_idx": 2784, - "order": "The Order of Power", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.4471, -24.32] - }, - "properties": { - "name": "S\u2018impen", - "realm_idx": 2785, - "order": "The Order of Giants", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.8529, 23.78] - }, - "properties": { - "name": "Tusluz", - "realm_idx": 2786, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.8801, -22.6996] - }, - "properties": { - "name": "Wi\u2018il", - "realm_idx": 2787, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Gold", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.3529, 41.68] - }, - "properties": { - "name": "Tas sas Sud", - "realm_idx": 2788, - "order": "The Order of Vitriol", - "resources": ["Silver", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.4831, 12.3987] - }, - "properties": { - "name": "Nlunn\u00fam", - "realm_idx": 2789, - "order": "The Order of Fury", - "resources": ["Stone", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2844, 29.0744] - }, - "properties": { - "name": "Lamli", - "realm_idx": 2790, - "order": "The Order of Anger", - "resources": ["Wood", "Stone", "Silver", "Diamonds", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.7098, -24.6274] - }, - "properties": { - "name": "Nuitsuk", - "realm_idx": 2791, - "order": "The Order of Perfection", - "resources": ["Stone", "Sapphire", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.58, 35.7003] - }, - "properties": { - "name": "Nom wo Wune", - "realm_idx": 2792, - "order": "The Order of Reflection", - "resources": ["Gold", "Wood", "Sapphire", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.0527, 51.1801] - }, - "properties": { - "name": "Meknikhu", - "realm_idx": 2793, - "order": "The Order of the Twins", - "resources": ["Coal", "Obsidian", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.7801, -19.7996] - }, - "properties": { - "name": "Ungim", - "realm_idx": 2794, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Copper", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-27.4529, 26.28] - }, - "properties": { - "name": "Snomeha", - "realm_idx": 2795, - "order": "The Order of Vitriol", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.1901, 14.1569] - }, - "properties": { - "name": "Ikamikutut", - "realm_idx": 2796, - "order": "The Order of Protection", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.18, -34.5997] - }, - "properties": { - "name": "Sasspas", - "realm_idx": 2797, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.0471, 37.18] - }, - "properties": { - "name": "Isitinuk", - "realm_idx": 2798, - "order": "The Order of Skill", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.7471, 24.78] - }, - "properties": { - "name": "Ijhajt", - "realm_idx": 2799, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.7471, 32.08] - }, - "properties": { - "name": "Usu\u010duka\u010dug", - "realm_idx": 2800, - "order": "The Order of Skill", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.4529, 19.48] - }, - "properties": { - "name": "mup Suumnum", - "realm_idx": 2801, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.08, -55.1996] - }, - "properties": { - "name": "Lynekklyk", - "realm_idx": 2802, - "order": "The Order of the Fox", - "resources": [ - "Hartwood", - "Obsidian", - "Copper", - "Cold Iron", - "Wood", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.5471, 56.58] - }, - "properties": { - "name": "Pimama", - "realm_idx": 2803, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.08, -25.7997] - }, - "properties": { - "name": "Isnis", - "realm_idx": 2804, - "order": "The Order of Detection", - "resources": ["Gold", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.28, 4.0003] - }, - "properties": { - "name": "Uk\u00e2kyhyp", - "realm_idx": 2805, - "order": "The Order of Detection", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.1914, 45.7059] - }, - "properties": { - "name": "S\u00e9enp\u00ede", - "realm_idx": 2806, - "order": "The Order of Anger", - "resources": [ - "Coal", - "Ignium", - "Silver", - "Cold Iron", - "Gold", - "Stone", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.3529, 22.18] - }, - "properties": { - "name": "Hihkah", - "realm_idx": 2807, - "order": "The Order of Vitriol", - "resources": ["Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.6471, 48.88] - }, - "properties": { - "name": "Um\u00fc\u2018ilunan", - "realm_idx": 2808, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone", "Wood", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.28, -30.3997] - }, - "properties": { - "name": "Meyriyyoqgaq", - "realm_idx": 2809, - "order": "The Order of Detection", - "resources": ["Copper", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.5261, -36.9457] - }, - "properties": { - "name": "Nlojplepklod", - "realm_idx": 2810, - "order": "The Order of Reflection", - "resources": ["Gold", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.2801, -18.8996] - }, - "properties": { - "name": "Slinskan", - "realm_idx": 2811, - "order": "The Order of the Twins", - "resources": ["Diamonds", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.08, 34.9003] - }, - "properties": { - "name": "Lukesnennun", - "realm_idx": 2812, - "order": "The Order of Reflection", - "resources": ["Stone", "Hartwood", "Silver", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [126.8471, 11.78] - }, - "properties": { - "name": "Ma\u2018akkanak", - "realm_idx": 2813, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.4471, 19.18] - }, - "properties": { - "name": "Pulol", - "realm_idx": 2814, - "order": "The Order of Enlightenment", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-77.1801, 44.9004] - }, - "properties": { - "name": "stip Sneslo", - "realm_idx": 2815, - "order": "The Order of Anger", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.1844, -7.9789] - }, - "properties": { - "name": "alm Olchchol", - "realm_idx": 2816, - "order": "The Order of Reflection", - "resources": ["Wood", "Ethereal Silica", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.78, -52.4996] - }, - "properties": { - "name": "Snumshkun", - "realm_idx": 2817, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.9471, 45.58] - }, - "properties": { - "name": "Mili-Saynmi", - "realm_idx": 2818, - "order": "The Order of Skill", - "resources": ["Obsidian", "Wood", "Ironwood", "Copper", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.5529, 20.18] - }, - "properties": { - "name": "Mozpaxtix", - "realm_idx": 2819, - "order": "The Order of Vitriol", - "resources": ["Gold", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.7584, 44.7308] - }, - "properties": { - "name": "Pamtamtam", - "realm_idx": 2820, - "order": "The Order of Fury", - "resources": ["Hartwood", "Wood", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.3471, -38.52] - }, - "properties": { - "name": "Artlal Lalot", - "realm_idx": 2821, - "order": "The Order of Giants", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.9331, -36.0059] - }, - "properties": { - "name": "Mimmlonkis", - "realm_idx": 2822, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.8471, 14.38] - }, - "properties": { - "name": "Tismuposchmu", - "realm_idx": 2823, - "order": "The Order of Protection", - "resources": ["Diamonds", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.5471, 8.88] - }, - "properties": { - "name": "Hlustak", - "realm_idx": 2824, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.1801, 48.6004] - }, - "properties": { - "name": "Lirkkark", - "realm_idx": 2825, - "order": "The Order of Anger", - "resources": ["Wood", "Stone", "Deep Crystal", "Diamonds", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.3441, 45.3318] - }, - "properties": { - "name": "Maommui", - "realm_idx": 2826, - "order": "The Order of Anger", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.047, 1.28] - }, - "properties": { - "name": "Mimski", - "realm_idx": 2827, - "order": "The Order of Perfection", - "resources": ["Stone", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.8382, 34.2411] - }, - "properties": { - "name": "Soum Miul", - "realm_idx": 2828, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.8471, -6.92] - }, - "properties": { - "name": "S\u00e1npass\u00e1", - "realm_idx": 2829, - "order": "The Order of Brilliance", - "resources": ["Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.7471, 9.48] - }, - "properties": { - "name": "Rik\u00edy\u00e1ri", - "realm_idx": 2830, - "order": "The Order of Brilliance", - "resources": [ - "Wood", - "Stone", - "Coal", - "Ironwood", - "Silver", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.3471, 51.68] - }, - "properties": { - "name": "Esezelozek", - "realm_idx": 2831, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.2161, 4.962] - }, - "properties": { - "name": "Enenen", - "realm_idx": 2832, - "order": "The Order of Protection", - "resources": ["Obsidian", "Ironwood", "Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.0955, 45.4441] - }, - "properties": { - "name": "Sminursrusru", - "realm_idx": 2833, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "Deep Crystal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.2801, 30.7004] - }, - "properties": { - "name": "Zok\u017eeb", - "realm_idx": 2834, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.48, 9.5003] - }, - "properties": { - "name": "Pinnan Tam", - "realm_idx": 2835, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.6471, 28.98] - }, - "properties": { - "name": "T\u00fagalgarj", - "realm_idx": 2836, - "order": "The Order of Skill", - "resources": ["Gold", "Stone", "Coal", "Copper", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.0801, -52.2996] - }, - "properties": { - "name": "Wiswis Bok", - "realm_idx": 2837, - "order": "The Order of the Twins", - "resources": ["Stone", "Ironwood", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.4471, -18.92] - }, - "properties": { - "name": "rub Z\u00edum", - "realm_idx": 2838, - "order": "The Order of Power", - "resources": ["Coal", "Ruby", "Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.7134, -22.1052] - }, - "properties": { - "name": "\u00caldp\u00e2rn\u00ealk", - "realm_idx": 2839, - "order": "The Order of Perfection", - "resources": ["Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.0534, 9.8015] - }, - "properties": { - "name": "Xmumfd\u00f6n", - "realm_idx": 2840, - "order": "The Order of Protection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.7262, 33.5237] - }, - "properties": { - "name": "Owomunomah", - "realm_idx": 2841, - "order": "The Order of Reflection", - "resources": ["Copper", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.9801, -37.4996] - }, - "properties": { - "name": "Dai Duisi\u00e1g", - "realm_idx": 2842, - "order": "The Order of the Twins", - "resources": ["Coal", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.9471, 39.28] - }, - "properties": { - "name": "Qurrom", - "realm_idx": 2843, - "order": "The Order of Skill", - "resources": ["Wood", "Coal", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.2471, -37.02] - }, - "properties": { - "name": "Dlanslumdrin", - "realm_idx": 2844, - "order": "The Order of Giants", - "resources": [ - "Silver", - "Sapphire", - "Diamonds", - "Ironwood", - "Wood", - "Coal", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.9342, -34.2115] - }, - "properties": { - "name": "Punolgdas", - "realm_idx": 2845, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood", "Copper", "Hartwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.8471, 13.58] - }, - "properties": { - "name": "Kanpiu", - "realm_idx": 2846, - "order": "The Order of Protection", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.3801, -55.2996] - }, - "properties": { - "name": "Lulpem", - "realm_idx": 2847, - "order": "The Order of the Twins", - "resources": [ - "Ironwood", - "Coal", - "Obsidian", - "Hartwood", - "Cold Iron", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.38, -4.2997] - }, - "properties": { - "name": "Jingmlen", - "realm_idx": 2848, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Coal", "Ironwood", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.6529, 39.38] - }, - "properties": { - "name": "Skumkenken", - "realm_idx": 2849, - "order": "The Order of Titans", - "resources": ["Silver", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.8471, 54.18] - }, - "properties": { - "name": "Zh\u00farodondon", - "realm_idx": 2850, - "order": "The Order of Titans", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.2529, 47.78] - }, - "properties": { - "name": "Enenrom", - "realm_idx": 2851, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.6471, -12.42] - }, - "properties": { - "name": "Wlokwoswos", - "realm_idx": 2852, - "order": "The Order of Perfection", - "resources": ["Copper", "Coal", "Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.445, 5.1154] - }, - "properties": { - "name": "Usshish", - "realm_idx": 2853, - "order": "The Order of Protection", - "resources": ["Copper", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.6002, -22.4812] - }, - "properties": { - "name": "Ponpin", - "realm_idx": 2854, - "order": "The Order of Protection", - "resources": ["Wood", "Hartwood", "Coal", "Silver", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.1998, -10.8509] - }, - "properties": { - "name": "Sliqqip", - "realm_idx": 2855, - "order": "The Order of the Fox", - "resources": ["Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-47.5529, 50.28] - }, - "properties": { - "name": "Uchamod", - "realm_idx": 2856, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.0584, 15.1326] - }, - "properties": { - "name": "Nloon", - "realm_idx": 2857, - "order": "The Order of Fury", - "resources": ["Coal", "Obsidian", "Stone", "Twilight Quartz", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.4801, 14.9004] - }, - "properties": { - "name": "Chemedopeto", - "realm_idx": 2858, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.6529, -20.92] - }, - "properties": { - "name": "P\u00fcknesl\u00fcktak", - "realm_idx": 2859, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.2801, 19.5004] - }, - "properties": { - "name": "kin Niktut", - "realm_idx": 2860, - "order": "The Order of Rage", - "resources": ["Obsidian", "Sapphire", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.0993, 5.537] - }, - "properties": { - "name": "Hejgerhok", - "realm_idx": 2861, - "order": "The Order of Protection", - "resources": ["Ironwood", "Wood", "Coal", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.7471, -23.22] - }, - "properties": { - "name": "to Tuka", - "realm_idx": 2862, - "order": "The Order of Giants", - "resources": ["Stone", "Copper", "Coal", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.9471, -10.12] - }, - "properties": { - "name": "\u00c4ngq\u00ebly\u00e4ng", - "realm_idx": 2863, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.48, -34.6997] - }, - "properties": { - "name": "now Bwissod", - "realm_idx": 2864, - "order": "The Order of Reflection", - "resources": ["Wood", "Obsidian", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.68, 13.0003] - }, - "properties": { - "name": "Lunlounlop", - "realm_idx": 2865, - "order": "The Order of Detection", - "resources": ["Obsidian", "Gold", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-113.8994, -34.7511] - }, - "properties": { - "name": "Iqanan", - "realm_idx": 2866, - "order": "The Order of Reflection", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.5529, 50.78] - }, - "properties": { - "name": "\u00cdngl\u00edyl\u00edk", - "realm_idx": 2867, - "order": "The Order of Fury", - "resources": ["Ruby", "Coal", "Cold Iron", "Wood", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.5471, 51.68] - }, - "properties": { - "name": "il Osekemos", - "realm_idx": 2868, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Ironwood", "Silver", "Sapphire", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.3471, 1.88] - }, - "properties": { - "name": "Sepullo", - "realm_idx": 2869, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.5608, -18.6216] - }, - "properties": { - "name": "W\u00f3m-Jemkj\u00fam", - "realm_idx": 2870, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.6471, 50.38] - }, - "properties": { - "name": "Pimama", - "realm_idx": 2871, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.9471, -12.02] - }, - "properties": { - "name": "Kakkuk", - "realm_idx": 2872, - "order": "The Order of Giants", - "resources": ["Wood", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.88, 10.7003] - }, - "properties": { - "name": "Nun Wewe", - "realm_idx": 2873, - "order": "The Order of Detection", - "resources": ["Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.0147, 7.5693] - }, - "properties": { - "name": "kir Ilmulk", - "realm_idx": 2874, - "order": "The Order of Protection", - "resources": ["Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.0801, 28.8004] - }, - "properties": { - "name": "Mammanmammas", - "realm_idx": 2875, - "order": "The Order of Rage", - "resources": ["Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.38, -22.7997] - }, - "properties": { - "name": "Reunkolzib", - "realm_idx": 2876, - "order": "The Order of Reflection", - "resources": ["Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.0529, -13.62] - }, - "properties": { - "name": "Tiktisnak", - "realm_idx": 2877, - "order": "The Order of Power", - "resources": ["Wood", "Deep Crystal", "Ruby", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.6471, -14.02] - }, - "properties": { - "name": "Kit\u00e1peto", - "realm_idx": 2878, - "order": "The Order of Perfection", - "resources": ["Silver", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.6471, -8.92] - }, - "properties": { - "name": "Ownngewm", - "realm_idx": 2879, - "order": "The Order of Giants", - "resources": ["Gold", "Diamonds", "Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.7529, 27.88] - }, - "properties": { - "name": "Lisyosh", - "realm_idx": 2880, - "order": "The Order of Vitriol", - "resources": ["Silver", "Deep Crystal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.331, -13.175] - }, - "properties": { - "name": "\u010cuk\u010duk\u010dusbus", - "realm_idx": 2881, - "order": "The Order of Perfection", - "resources": ["Wood", "Ironwood", "Hartwood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.0471, -33.02] - }, - "properties": { - "name": "os Ulatenel", - "realm_idx": 2882, - "order": "The Order of Giants", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.18, -22.2997] - }, - "properties": { - "name": "Likali", - "realm_idx": 2883, - "order": "The Order of Reflection", - "resources": ["Coal", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.88, 25.6003] - }, - "properties": { - "name": "Gesgok", - "realm_idx": 2884, - "order": "The Order of Fury", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.28, -59.2996] - }, - "properties": { - "name": "Osuskokekmuk", - "realm_idx": 2885, - "order": "The Order of the Fox", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.9801, 45.7004] - }, - "properties": { - "name": "Leoneos", - "realm_idx": 2886, - "order": "The Order of Anger", - "resources": ["Obsidian", "Cold Iron", "Ruby", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.8801, 19.8004] - }, - "properties": { - "name": "H\u00e9tahtott\u00edh", - "realm_idx": 2887, - "order": "The Order of Rage", - "resources": [ - "Coal", - "Ironwood", - "Gold", - "Ethereal Silica", - "Wood", - "Stone", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.0471, 8.98] - }, - "properties": { - "name": "Otnat", - "realm_idx": 2888, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.7529, 43.38] - }, - "properties": { - "name": "Nuiknaauiena", - "realm_idx": 2889, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.18, -19.5997] - }, - "properties": { - "name": "Tschin", - "realm_idx": 2890, - "order": "The Order of Detection", - "resources": ["Silver", "Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.3801, 5.0004] - }, - "properties": { - "name": "Uuyuonben", - "realm_idx": 2891, - "order": "The Order of Rage", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.3471, 10.88] - }, - "properties": { - "name": "Minimmin", - "realm_idx": 2892, - "order": "The Order of Brilliance", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.78, -46.0996] - }, - "properties": { - "name": "Momprin", - "realm_idx": 2893, - "order": "The Order of the Fox", - "resources": ["Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.555, 3.0972] - }, - "properties": { - "name": "Chimas", - "realm_idx": 2894, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.0801, -5.2996] - }, - "properties": { - "name": "Duwewed", - "realm_idx": 2895, - "order": "The Order of Rage", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.9471, -18.32] - }, - "properties": { - "name": "Nendunz\u00e9mb\u00e1n", - "realm_idx": 2896, - "order": "The Order of Giants", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.9801, -14.6996] - }, - "properties": { - "name": "Wekekega", - "realm_idx": 2897, - "order": "The Order of Rage", - "resources": ["Cold Iron", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.6471, 37.88] - }, - "properties": { - "name": "Ma\u00e1pmuomeu", - "realm_idx": 2898, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.9368, 21.7479] - }, - "properties": { - "name": "Scho Toker", - "realm_idx": 2899, - "order": "The Order of Fury", - "resources": ["Sapphire", "Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.4471, 6.18] - }, - "properties": { - "name": "Lalluk", - "realm_idx": 2900, - "order": "The Order of Brilliance", - "resources": ["Twilight Quartz", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.4471, -13.22] - }, - "properties": { - "name": "Ukenun", - "realm_idx": 2901, - "order": "The Order of Perfection", - "resources": ["Deep Crystal", "Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.08, 6.8003] - }, - "properties": { - "name": "Kankaskanpu", - "realm_idx": 2902, - "order": "The Order of Detection", - "resources": ["Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.3471, 4.18] - }, - "properties": { - "name": "Chuwkonschur", - "realm_idx": 2903, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Silver", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.9801, -41.7996] - }, - "properties": { - "name": "S\u00e1t\u00e1t\u00e1potek", - "realm_idx": 2904, - "order": "The Order of the Twins", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.8471, 31.38] - }, - "properties": { - "name": "Bischaplidin", - "realm_idx": 2905, - "order": "The Order of Skill", - "resources": ["Gold", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.5471, -29.42] - }, - "properties": { - "name": "Smasmi", - "realm_idx": 2906, - "order": "The Order of Giants", - "resources": ["Wood", "Ironwood", "Stone", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.6801, 34.7004] - }, - "properties": { - "name": "I\u2018ili\u2018", - "realm_idx": 2907, - "order": "The Order of Anger", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.1801, 40.0004] - }, - "properties": { - "name": "R\u00eamrip\u00eap", - "realm_idx": 2908, - "order": "The Order of Anger", - "resources": ["Copper", "Obsidian", "Wood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.2471, -42.72] - }, - "properties": { - "name": "Momal Yes", - "realm_idx": 2909, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Ironwood", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.2471, -21.82] - }, - "properties": { - "name": "S\u00fanuns\u00fanten", - "realm_idx": 2910, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.08, 14.8003] - }, - "properties": { - "name": "Tluttlutluk", - "realm_idx": 2911, - "order": "The Order of Fury", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.7569, 32.1081] - }, - "properties": { - "name": "Amip al Okep", - "realm_idx": 2912, - "order": "The Order of Reflection", - "resources": ["Wood", "Obsidian", "Coal", "Gold", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.2471, 19.58] - }, - "properties": { - "name": "N\u00e9li\u00e9etem", - "realm_idx": 2913, - "order": "The Order of Skill", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.4801, 28.0004] - }, - "properties": { - "name": "Sukt\u00fat", - "realm_idx": 2914, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-127.38, 5.9003] - }, - "properties": { - "name": "Kazhliznoz", - "realm_idx": 2915, - "order": "The Order of Detection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.4529, -24.92] - }, - "properties": { - "name": "Tinuni", - "realm_idx": 2916, - "order": "The Order of Power", - "resources": ["Ironwood", "Stone", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.3471, -5.42] - }, - "properties": { - "name": "T\u00f6lch\u00e4j", - "realm_idx": 2917, - "order": "The Order of Power", - "resources": ["Stone", "Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.9801, -22.1996] - }, - "properties": { - "name": "T\u00f3n\u00fakt\u00f3", - "realm_idx": 2918, - "order": "The Order of the Twins", - "resources": ["Stone", "Ignium", "Cold Iron", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.4471, 12.98] - }, - "properties": { - "name": "Nikark", - "realm_idx": 2919, - "order": "The Order of Protection", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.88, -32.3997] - }, - "properties": { - "name": "Saossaos", - "realm_idx": 2920, - "order": "The Order of the Fox", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.8801, 27.3004] - }, - "properties": { - "name": "Sosmolm", - "realm_idx": 2921, - "order": "The Order of Rage", - "resources": ["Copper", "Ethereal Silica", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.2471, 7.98] - }, - "properties": { - "name": "I-u-Ung", - "realm_idx": 2922, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.5471, 38.48] - }, - "properties": { - "name": "Enwemwek", - "realm_idx": 2923, - "order": "The Order of Skill", - "resources": ["Wood", "Silver", "Hartwood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.0801, 19.9004] - }, - "properties": { - "name": "Kolkol", - "realm_idx": 2924, - "order": "The Order of Rage", - "resources": ["Cold Iron", "Coal", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.2559, 4.7449] - }, - "properties": { - "name": "Petiketu", - "realm_idx": 2925, - "order": "The Order of Protection", - "resources": ["Stone", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.88, 20.3003] - }, - "properties": { - "name": "Smummum", - "realm_idx": 2926, - "order": "The Order of Detection", - "resources": ["Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.48, 14.5003] - }, - "properties": { - "name": "Sosonale", - "realm_idx": 2927, - "order": "The Order of Detection", - "resources": ["Copper", "Ironwood", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.2471, -12.42] - }, - "properties": { - "name": "Teonnut", - "realm_idx": 2928, - "order": "The Order of Power", - "resources": ["Ironwood", "Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.9471, 13.48] - }, - "properties": { - "name": "Kazhnoozplus", - "realm_idx": 2929, - "order": "The Order of Protection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.28, -46.7996] - }, - "properties": { - "name": "tuit Tiebuit", - "realm_idx": 2930, - "order": "The Order of the Fox", - "resources": ["Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.48, 21.1003] - }, - "properties": { - "name": "Snewswep", - "realm_idx": 2931, - "order": "The Order of Fury", - "resources": ["Copper", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.7471, 53.48] - }, - "properties": { - "name": "\u2018inwan\u2018i\u2018neh", - "realm_idx": 2932, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Ignium", "Wood", "Hartwood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.4471, 7.68] - }, - "properties": { - "name": "Kin Ly\u00e4s", - "realm_idx": 2933, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.8471, 39.88] - }, - "properties": { - "name": "W\u00e1s\u00edw\u00e1ya", - "realm_idx": 2934, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.2471, 34.08] - }, - "properties": { - "name": "Iz\u00fam\u00fak", - "realm_idx": 2935, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.8801, 6.6004] - }, - "properties": { - "name": "Ulptiilmis", - "realm_idx": 2936, - "order": "The Order of Rage", - "resources": ["Wood", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.58, 26.6003] - }, - "properties": { - "name": "sak-Z\u00edtu", - "realm_idx": 2937, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Obsidian", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.2529, 42.68] - }, - "properties": { - "name": "Settet", - "realm_idx": 2938, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.2529, 1.18] - }, - "properties": { - "name": "Ulghaqdols", - "realm_idx": 2939, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.2229, 39.5357] - }, - "properties": { - "name": "Do Chunche", - "realm_idx": 2940, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.3471, 48.08] - }, - "properties": { - "name": "Xuntintontun", - "realm_idx": 2941, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.4471, -32.82] - }, - "properties": { - "name": "Xnugnididim", - "realm_idx": 2942, - "order": "The Order of Power", - "resources": ["Stone", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.5529, -9.92] - }, - "properties": { - "name": "Serkkelh", - "realm_idx": 2943, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Obsidian", "Deep Crystal", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-41.4529, 4.98] - }, - "properties": { - "name": "Nonlonbenrun", - "realm_idx": 2944, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.2471, 2.18] - }, - "properties": { - "name": "Konkan", - "realm_idx": 2945, - "order": "The Order of Brilliance", - "resources": ["Stone", "Ethereal Silica", "Hartwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.6564, -15.8793] - }, - "properties": { - "name": "Shk\u00fcw", - "realm_idx": 2946, - "order": "The Order of Protection", - "resources": ["Silver", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.3008, -23.7572] - }, - "properties": { - "name": "Sqitsguvsqit", - "realm_idx": 2947, - "order": "The Order of Protection", - "resources": ["Coal", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.1801, -45.9996] - }, - "properties": { - "name": "Tolot", - "realm_idx": 2948, - "order": "The Order of the Twins", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.58, -48.4997] - }, - "properties": { - "name": "Sku\u0161fpo\u017eso\u017e", - "realm_idx": 2949, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Ironwood", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.08, 8.7003] - }, - "properties": { - "name": "Zhauzhpia", - "realm_idx": 2950, - "order": "The Order of Detection", - "resources": ["Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.1471, -3.52] - }, - "properties": { - "name": "Drann\u00e1m", - "realm_idx": 2951, - "order": "The Order of Giants", - "resources": ["Gold", "Wood", "Coal", "Diamonds", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.7471, 20.88] - }, - "properties": { - "name": "Wopiki", - "realm_idx": 2952, - "order": "The Order of Skill", - "resources": ["Coal", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.78, -45.8996] - }, - "properties": { - "name": "Goshshkug", - "realm_idx": 2953, - "order": "The Order of the Fox", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.5471, 25.58] - }, - "properties": { - "name": "Malos", - "realm_idx": 2954, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.8471, 23.18] - }, - "properties": { - "name": "Nyuhit", - "realm_idx": 2955, - "order": "The Order of Skill", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.4208, 35.6786] - }, - "properties": { - "name": "Mounluonnui", - "realm_idx": 2956, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Coal", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.48, 20.8003] - }, - "properties": { - "name": "Ululnelqol", - "realm_idx": 2957, - "order": "The Order of Detection", - "resources": ["Obsidian", "Wood", "Coal", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.9471, 14.78] - }, - "properties": { - "name": "N\u00edrr\u00e1j", - "realm_idx": 2958, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.2471, 43.68] - }, - "properties": { - "name": "Tomslin", - "realm_idx": 2959, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Copper", "Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.9103, 7.1293] - }, - "properties": { - "name": "Mohulule", - "realm_idx": 2960, - "order": "The Order of Protection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.9471, 19.88] - }, - "properties": { - "name": "Tintinnenkem", - "realm_idx": 2961, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.58, -34.9997] - }, - "properties": { - "name": "Unmung", - "realm_idx": 2962, - "order": "The Order of the Fox", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.1801, -31.8996] - }, - "properties": { - "name": "Sn\u00edksn\u00edt", - "realm_idx": 2963, - "order": "The Order of the Twins", - "resources": ["Stone", "Coal", "Cold Iron", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.7794, 56.1446] - }, - "properties": { - "name": "Ml\u00e2tmlurm\u00e2m", - "realm_idx": 2964, - "order": "The Order of Fury", - "resources": ["Obsidian", "Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.0394, 7.8353] - }, - "properties": { - "name": "Rielniernrig", - "realm_idx": 2965, - "order": "The Order of Protection", - "resources": ["Coal", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.2529, -5.22] - }, - "properties": { - "name": "Linpihwip", - "realm_idx": 2966, - "order": "The Order of the Fox", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.3801, -42.8996] - }, - "properties": { - "name": "Kl\u00ebnnl\u00ebn", - "realm_idx": 2967, - "order": "The Order of the Twins", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.5471, 43.88] - }, - "properties": { - "name": "Talsonsit", - "realm_idx": 2968, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.4471, 6.58] - }, - "properties": { - "name": "Jujrodji\u0161", - "realm_idx": 2969, - "order": "The Order of Protection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.2529, 0.98] - }, - "properties": { - "name": "Munekumu", - "realm_idx": 2970, - "order": "The Order of Vitriol", - "resources": ["Silver", "Wood", "Stone", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.6471, 21.98] - }, - "properties": { - "name": "Wup\u00fal", - "realm_idx": 2971, - "order": "The Order of Skill", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.4446, 39.0465] - }, - "properties": { - "name": "Nidigi", - "realm_idx": 2972, - "order": "The Order of Fury", - "resources": ["Copper", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.6471, 54.78] - }, - "properties": { - "name": "Kupotkugej", - "realm_idx": 2973, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.2801, 44.1004] - }, - "properties": { - "name": "\u2018ok\u2018ok\u2018el\u2018el", - "realm_idx": 2974, - "order": "The Order of Anger", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.2471, -33.02] - }, - "properties": { - "name": "Ilknult", - "realm_idx": 2975, - "order": "The Order of Giants", - "resources": ["Coal", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.2471, -14.72] - }, - "properties": { - "name": "Ak-Ik", - "realm_idx": 2976, - "order": "The Order of Giants", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.0471, 28.98] - }, - "properties": { - "name": "\u010du\u017e-Tijil\u017ezi", - "realm_idx": 2977, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.9471, -47.32] - }, - "properties": { - "name": "Oqoremekek", - "realm_idx": 2978, - "order": "The Order of Giants", - "resources": ["Ruby", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.1709, -50.8613] - }, - "properties": { - "name": "Unom\u2018u", - "realm_idx": 2979, - "order": "The Order of the Twins", - "resources": ["Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.4471, -11.72] - }, - "properties": { - "name": "Sontoskup", - "realm_idx": 2980, - "order": "The Order of Power", - "resources": ["Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.2801, 20.2004] - }, - "properties": { - "name": "swu Swo Sli", - "realm_idx": 2981, - "order": "The Order of Rage", - "resources": ["Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [71.5471, 19.18] - }, - "properties": { - "name": "S\u00e4m\u0161l\u00e4l", - "realm_idx": 2982, - "order": "The Order of Skill", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.2642, -21.9866] - }, - "properties": { - "name": "K\u00ednkuk", - "realm_idx": 2983, - "order": "The Order of Protection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.28, 40.3003] - }, - "properties": { - "name": "Dimnot", - "realm_idx": 2984, - "order": "The Order of Reflection", - "resources": ["Cold Iron", "Gold", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.0471, 12.68] - }, - "properties": { - "name": "Muaastaaam", - "realm_idx": 2985, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.9801, -57.3996] - }, - "properties": { - "name": "Sukhwusimlem", - "realm_idx": 2986, - "order": "The Order of the Twins", - "resources": ["Wood", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [44.5471, -37.72] - }, - "properties": { - "name": "Munumupa", - "realm_idx": 2987, - "order": "The Order of Giants", - "resources": ["Wood", "Deep Crystal", "Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.8471, -13.02] - }, - "properties": { - "name": "Raqulariri", - "realm_idx": 2988, - "order": "The Order of Giants", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.4471, 7.88] - }, - "properties": { - "name": "P\u00e4lp\u00e4l", - "realm_idx": 2989, - "order": "The Order of Titans", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.68, 9.8003] - }, - "properties": { - "name": "Emakam", - "realm_idx": 2990, - "order": "The Order of Detection", - "resources": ["Wood", "Gold", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.8471, 32.78] - }, - "properties": { - "name": "Nom Nom\u2018an", - "realm_idx": 2991, - "order": "The Order of Skill", - "resources": [ - "Diamonds", - "Copper", - "Coal", - "Cold Iron", - "Twilight Quartz" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.5529, -9.12] - }, - "properties": { - "name": "Tungmimang", - "realm_idx": 2992, - "order": "The Order of the Fox", - "resources": [ - "Cold Iron", - "Wood", - "Copper", - "Coal", - "Obsidian", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.3529, -23.92] - }, - "properties": { - "name": "ron Jon", - "realm_idx": 2993, - "order": "The Order of Power", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [107.0471, 41.48] - }, - "properties": { - "name": "Sazach-Ach", - "realm_idx": 2994, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.0801, 5.6004] - }, - "properties": { - "name": "Pey Nu", - "realm_idx": 2995, - "order": "The Order of Rage", - "resources": ["Obsidian", "Hartwood", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.88, -25.6997] - }, - "properties": { - "name": "Erjm\u00f6lwerw", - "realm_idx": 2996, - "order": "The Order of Detection", - "resources": ["Silver", "Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.38, -26.8997] - }, - "properties": { - "name": "Riirneen-Eer", - "realm_idx": 2997, - "order": "The Order of Reflection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.2529, 13.88] - }, - "properties": { - "name": "Nommun", - "realm_idx": 2998, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.8471, 0.38] - }, - "properties": { - "name": "Munwunmonwen", - "realm_idx": 2999, - "order": "The Order of Power", - "resources": [ - "Coal", - "Copper", - "Cold Iron", - "Silver", - "Wood", - "Obsidian", - "Diamonds" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.7471, -14.62] - }, - "properties": { - "name": "Owukukolah", - "realm_idx": 3000, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-78.2801, -35.4996] - }, - "properties": { - "name": "\u00dcrl\u00f6lp", - "realm_idx": 3001, - "order": "The Order of the Twins", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.7471, -16.32] - }, - "properties": { - "name": "Nihakhasmami", - "realm_idx": 3002, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper", "Coal", "Stone", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.7471, -14.72] - }, - "properties": { - "name": "Bak\u00edz Kig", - "realm_idx": 3003, - "order": "The Order of Giants", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.2471, 22.88] - }, - "properties": { - "name": "Nilntolmon", - "realm_idx": 3004, - "order": "The Order of Skill", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.08, 7.2003] - }, - "properties": { - "name": "Lurul", - "realm_idx": 3005, - "order": "The Order of Detection", - "resources": [ - "Coal", - "Diamonds", - "Hartwood", - "Wood", - "Cold Iron", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.3471, -19.32] - }, - "properties": { - "name": "Ninikitauku", - "realm_idx": 3006, - "order": "The Order of Perfection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.78, -51.4996] - }, - "properties": { - "name": "Sangsang", - "realm_idx": 3007, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.0529, -4.72] - }, - "properties": { - "name": "Viwmkures", - "realm_idx": 3008, - "order": "The Order of the Fox", - "resources": ["Stone", "Ironwood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.3471, 43.28] - }, - "properties": { - "name": "Eputoh", - "realm_idx": 3009, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [107.847, -5.62] - }, - "properties": { - "name": "Oschozhozhet", - "realm_idx": 3010, - "order": "The Order of Perfection", - "resources": ["Copper", "Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [13.9471, -12.12] - }, - "properties": { - "name": "Nu\u2018\u2018o\u2018", - "realm_idx": 3011, - "order": "The Order of Power", - "resources": ["Cold Iron", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.5801, -39.6996] - }, - "properties": { - "name": "Tyukpeksyuk", - "realm_idx": 3012, - "order": "The Order of the Twins", - "resources": ["Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.634, 42.2865] - }, - "properties": { - "name": "Tudqiwqiw", - "realm_idx": 3013, - "order": "The Order of Anger", - "resources": ["Wood", "Ruby", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.9224, 38.2297] - }, - "properties": { - "name": "Gizgezh", - "realm_idx": 3014, - "order": "The Order of Fury", - "resources": ["Obsidian", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [108.7471, 40.98] - }, - "properties": { - "name": "Kiussuan", - "realm_idx": 3015, - "order": "The Order of Enlightenment", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.8471, 6.28] - }, - "properties": { - "name": "Nupsrut", - "realm_idx": 3016, - "order": "The Order of Titans", - "resources": ["Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.8684, -22.0689] - }, - "properties": { - "name": "\u00c1p\u00e1k-Anat", - "realm_idx": 3017, - "order": "The Order of Protection", - "resources": [ - "Ironwood", - "Alchemical Silver", - "Stone", - "Twilight Quartz", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.3471, 38.28] - }, - "properties": { - "name": "Laagdluchmud", - "realm_idx": 3018, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.4471, 17.68] - }, - "properties": { - "name": "Iwiww\u00e4npim", - "realm_idx": 3019, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood", "Twilight Quartz", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.1529, 16.18] - }, - "properties": { - "name": "Teolselteol", - "realm_idx": 3020, - "order": "The Order of Vitriol", - "resources": ["Copper", "Wood", "Stone", "Hartwood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2887, 28.8484] - }, - "properties": { - "name": "skil-Kuklus", - "realm_idx": 3021, - "order": "The Order of Anger", - "resources": ["Coal", "Ruby", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.88, -50.9996] - }, - "properties": { - "name": "Tunkansomtun", - "realm_idx": 3022, - "order": "The Order of the Fox", - "resources": ["Coal", "Copper", "Stone", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.3471, 35.68] - }, - "properties": { - "name": "Schirschir", - "realm_idx": 3023, - "order": "The Order of Titans", - "resources": ["Gold", "Copper", "Wood", "Silver", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.9801, 51.0004] - }, - "properties": { - "name": "M\u00e4wi-Tuwig", - "realm_idx": 3024, - "order": "The Order of Anger", - "resources": ["Ruby", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.3471, 0.38] - }, - "properties": { - "name": "Umukoyumoy", - "realm_idx": 3025, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Ignium", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.48, -60.7996] - }, - "properties": { - "name": "Nildnid", - "realm_idx": 3026, - "order": "The Order of the Fox", - "resources": ["Ruby", "Coal", "Hartwood", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.6529, 54.58] - }, - "properties": { - "name": "ra\u0161 Bloqol", - "realm_idx": 3027, - "order": "The Order of Fury", - "resources": ["Coal", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.4471, 15.58] - }, - "properties": { - "name": "Mukamim\u00ed", - "realm_idx": 3028, - "order": "The Order of Protection", - "resources": ["Obsidian", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.38, -43.6996] - }, - "properties": { - "name": "Lolukkol", - "realm_idx": 3029, - "order": "The Order of the Fox", - "resources": [ - "Deep Crystal", - "Wood", - "Cold Iron", - "Diamonds", - "Coal", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.0274, 34.0004] - }, - "properties": { - "name": "Halwwaa", - "realm_idx": 3030, - "order": "The Order of Anger", - "resources": ["Wood", "Stone", "Silver", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.6801, 39.2004] - }, - "properties": { - "name": "Zwrawl", - "realm_idx": 3031, - "order": "The Order of Anger", - "resources": ["Stone", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.3801, 37.9004] - }, - "properties": { - "name": "ma Mutomu", - "realm_idx": 3032, - "order": "The Order of Anger", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.6801, 7.3004] - }, - "properties": { - "name": "Pio Piodeup", - "realm_idx": 3033, - "order": "The Order of Rage", - "resources": ["Silver", "Coal", "Obsidian", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.8394, 19.0601] - }, - "properties": { - "name": "T\u00f3p\u00f3pkitku", - "realm_idx": 3034, - "order": "The Order of Protection", - "resources": ["Coal", "Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-77.08, -52.3996] - }, - "properties": { - "name": "N\u00f6ln\u00f6lsm\u00fct", - "realm_idx": 3035, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.8471, 13.48] - }, - "properties": { - "name": "Nlusmishnlus", - "realm_idx": 3036, - "order": "The Order of Titans", - "resources": ["Wood", "Cold Iron", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.4471, 13.68] - }, - "properties": { - "name": "\u2018\u00e1\u2018ha\u2018\u00e1\u2018k\u00e1k\u00f3", - "realm_idx": 3037, - "order": "The Order of Protection", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.0471, 32.18] - }, - "properties": { - "name": "M\u00e9nlelk", - "realm_idx": 3038, - "order": "The Order of Skill", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-47.7529, 54.48] - }, - "properties": { - "name": "Taq-roq-Rut", - "realm_idx": 3039, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.5529, -23.52] - }, - "properties": { - "name": "Vikqus", - "realm_idx": 3040, - "order": "The Order of Power", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.9801, 47.6004] - }, - "properties": { - "name": "Nothiktit", - "realm_idx": 3041, - "order": "The Order of Anger", - "resources": ["Stone", "Copper", "Obsidian", "Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.0471, 21.68] - }, - "properties": { - "name": "Mimnannun", - "realm_idx": 3042, - "order": "The Order of Skill", - "resources": ["Wood", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.1529, 27.78] - }, - "properties": { - "name": "Rutmush", - "realm_idx": 3043, - "order": "The Order of Vitriol", - "resources": ["Ruby", "Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.08, -6.1997] - }, - "properties": { - "name": "Geg\u00fate", - "realm_idx": 3044, - "order": "The Order of Detection", - "resources": ["Ethereal Silica", "Wood", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.8401, -19.7927] - }, - "properties": { - "name": "Dimenee", - "realm_idx": 3045, - "order": "The Order of Perfection", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.08, -34.8997] - }, - "properties": { - "name": "Nonunoni", - "realm_idx": 3046, - "order": "The Order of Reflection", - "resources": ["Stone", "Hartwood", "Coal", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.5471, 32.08] - }, - "properties": { - "name": "ezh Okschin", - "realm_idx": 3047, - "order": "The Order of Skill", - "resources": ["Wood", "Ethereal Silica", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.48, -50.6996] - }, - "properties": { - "name": "Popuba", - "realm_idx": 3048, - "order": "The Order of the Fox", - "resources": ["Wood", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.2801, -33.8996] - }, - "properties": { - "name": "ul Molbur", - "realm_idx": 3049, - "order": "The Order of the Twins", - "resources": ["Alchemical Silver", "Ignium", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.0529, -33.82] - }, - "properties": { - "name": "Nikum\u00f3nu", - "realm_idx": 3050, - "order": "The Order of Power", - "resources": ["Wood", "Silver", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.8097, -21.5961] - }, - "properties": { - "name": "Togomkog", - "realm_idx": 3051, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Ruby", "Stone", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.1471, -13.12] - }, - "properties": { - "name": "nuz \u00c1rp\u00e9rg", - "realm_idx": 3052, - "order": "The Order of Power", - "resources": ["Copper", "Wood", "Diamonds", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.3471, 13.38] - }, - "properties": { - "name": "Iinsiit", - "realm_idx": 3053, - "order": "The Order of Titans", - "resources": ["Copper", "Diamonds", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.9471, -26.32] - }, - "properties": { - "name": "Puksus", - "realm_idx": 3054, - "order": "The Order of Giants", - "resources": ["Stone", "Ethereal Silica", "Coal", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.6471, 20.48] - }, - "properties": { - "name": "Tabt\u00fad", - "realm_idx": 3055, - "order": "The Order of Skill", - "resources": ["Coal", "Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.0529, 5.88] - }, - "properties": { - "name": "N\u00e9wlel", - "realm_idx": 3056, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.3471, 44.18] - }, - "properties": { - "name": "P\u00e2non", - "realm_idx": 3057, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.2471, 9.28] - }, - "properties": { - "name": "Quripi", - "realm_idx": 3058, - "order": "The Order of Brilliance", - "resources": ["Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.1529, -26.72] - }, - "properties": { - "name": "kas Pjik", - "realm_idx": 3059, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.38, -60.2996] - }, - "properties": { - "name": "Tutnumulmul", - "realm_idx": 3060, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.0801, -37.1996] - }, - "properties": { - "name": "ug Izhizh", - "realm_idx": 3061, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.2801, 43.3004] - }, - "properties": { - "name": "Ge\u017er\u00f4l", - "realm_idx": 3062, - "order": "The Order of Anger", - "resources": ["Ruby", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.88, 24.3003] - }, - "properties": { - "name": "Qemsomral", - "realm_idx": 3063, - "order": "The Order of Fury", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.0529, 50.48] - }, - "properties": { - "name": "Snimchnim", - "realm_idx": 3064, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.7529, -8.82] - }, - "properties": { - "name": "Klenslonlun", - "realm_idx": 3065, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Obsidian", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.78, -43.4996] - }, - "properties": { - "name": "T\u00e4nk\u00efm", - "realm_idx": 3066, - "order": "The Order of the Fox", - "resources": ["Mithral", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.88, -48.7997] - }, - "properties": { - "name": "Ogoggesem", - "realm_idx": 3067, - "order": "The Order of the Fox", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-26.4529, -1.52] - }, - "properties": { - "name": "Monnun", - "realm_idx": 3068, - "order": "The Order of Vitriol", - "resources": ["Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.88, -12.5997] - }, - "properties": { - "name": "Tumtumben", - "realm_idx": 3069, - "order": "The Order of Detection", - "resources": ["Coal", "Copper", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.6529, 23.58] - }, - "properties": { - "name": "Ultseklaplap", - "realm_idx": 3070, - "order": "The Order of Vitriol", - "resources": ["Stone", "Copper", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.2501, -22.5299] - }, - "properties": { - "name": "Asurischum", - "realm_idx": 3071, - "order": "The Order of Perfection", - "resources": ["Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.88, 25.8003] - }, - "properties": { - "name": "ch\u00edch Azh", - "realm_idx": 3072, - "order": "The Order of Fury", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.7801, 49.7004] - }, - "properties": { - "name": "Umammammu", - "realm_idx": 3073, - "order": "The Order of Anger", - "resources": ["Wood", "Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.5529, -10.12] - }, - "properties": { - "name": "N\u00f3uli\u00e1l\u00f3ule\u00f3", - "realm_idx": 3074, - "order": "The Order of the Fox", - "resources": [ - "Ironwood", - "Ethereal Silica", - "Silver", - "Wood", - "Stone", - "Gold", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.1471, 8.68] - }, - "properties": { - "name": "Bushtush", - "realm_idx": 3075, - "order": "The Order of Titans", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [101.8471, 48.78] - }, - "properties": { - "name": "Linkhigh", - "realm_idx": 3076, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.8471, 23.48] - }, - "properties": { - "name": "Olupup", - "realm_idx": 3077, - "order": "The Order of Skill", - "resources": ["Coal", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.5471, 50.68] - }, - "properties": { - "name": "Tunsh\u00edsh\u00ed", - "realm_idx": 3078, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.1529, 20.78] - }, - "properties": { - "name": "Sqad\u0161ww", - "realm_idx": 3079, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.0246, 45.7221] - }, - "properties": { - "name": "Wuhinw\u00fcnging", - "realm_idx": 3080, - "order": "The Order of Anger", - "resources": ["Stone", "Silver", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.4529, 22.68] - }, - "properties": { - "name": "K\u00edkk\u00edklik", - "realm_idx": 3081, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.4471, 7.88] - }, - "properties": { - "name": "Stosnon", - "realm_idx": 3082, - "order": "The Order of Brilliance", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.4086, -34.6325] - }, - "properties": { - "name": "Maiknuitch", - "realm_idx": 3083, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.88, -58.3996] - }, - "properties": { - "name": "Sch\u2018ipna\u2018", - "realm_idx": 3084, - "order": "The Order of the Fox", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.88, -49.6997] - }, - "properties": { - "name": "Slitsmitput", - "realm_idx": 3085, - "order": "The Order of the Fox", - "resources": ["Sapphire", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.2471, 39.08] - }, - "properties": { - "name": "Iqusum", - "realm_idx": 3086, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.28, -12.7997] - }, - "properties": { - "name": "Zhumsumwon", - "realm_idx": 3087, - "order": "The Order of Detection", - "resources": ["Obsidian", "Hartwood", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.0471, 8.08] - }, - "properties": { - "name": "Niziz", - "realm_idx": 3088, - "order": "The Order of Brilliance", - "resources": ["Ethereal Silica", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.9307, 40.9404] - }, - "properties": { - "name": "Woomhan", - "realm_idx": 3089, - "order": "The Order of Anger", - "resources": ["Cold Iron", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.6529, 25.48] - }, - "properties": { - "name": "er Anjaqiv", - "realm_idx": 3090, - "order": "The Order of Vitriol", - "resources": ["Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.7529, -28.82] - }, - "properties": { - "name": "Twiskyes", - "realm_idx": 3091, - "order": "The Order of Power", - "resources": ["Adamantine", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.4471, 1.38] - }, - "properties": { - "name": "Ilunopopop", - "realm_idx": 3092, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.4801, -22.8996] - }, - "properties": { - "name": "Tatintem", - "realm_idx": 3093, - "order": "The Order of the Twins", - "resources": ["Sapphire", "Obsidian", "Copper", "Adamantine", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.4529, 11.18] - }, - "properties": { - "name": "Omdon\u00e9m", - "realm_idx": 3094, - "order": "The Order of Vitriol", - "resources": ["Deep Crystal", "Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.8471, 13.78] - }, - "properties": { - "name": "L\u00e4montl\u00efm", - "realm_idx": 3095, - "order": "The Order of Titans", - "resources": ["Stone", "Cold Iron", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.2357, -24.0206] - }, - "properties": { - "name": "Nulnulpurh", - "realm_idx": 3096, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.88, 6.7003] - }, - "properties": { - "name": "Pulur", - "realm_idx": 3097, - "order": "The Order of Detection", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.7031, 45.5119] - }, - "properties": { - "name": "Sn\u00edn-K\u00edml\u00edn", - "realm_idx": 3098, - "order": "The Order of Anger", - "resources": ["Obsidian", "Gold", "Coal", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.0471, -25.32] - }, - "properties": { - "name": "Olnotopup", - "realm_idx": 3099, - "order": "The Order of Perfection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.28, -58.5996] - }, - "properties": { - "name": "\u00c1p\u00e1pw\u00edw\u00ed", - "realm_idx": 3100, - "order": "The Order of the Fox", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.0471, 42.48] - }, - "properties": { - "name": "Al\u00edsuk", - "realm_idx": 3101, - "order": "The Order of Titans", - "resources": [ - "Stone", - "Twilight Quartz", - "Wood", - "Coal", - "Obsidian", - "Gold", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.0529, 27.88] - }, - "properties": { - "name": "Wo\u2018nommop", - "realm_idx": 3102, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.2801, -33.7996] - }, - "properties": { - "name": "Remruk", - "realm_idx": 3103, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.5471, 50.58] - }, - "properties": { - "name": "Shpunmummon", - "realm_idx": 3104, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.4801, -15.0996] - }, - "properties": { - "name": "M\u00faklulik", - "realm_idx": 3105, - "order": "The Order of Rage", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.3471, -24.62] - }, - "properties": { - "name": "Sosnomsli", - "realm_idx": 3106, - "order": "The Order of Giants", - "resources": ["Copper", "Deep Crystal", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.7801, -14.5996] - }, - "properties": { - "name": "Omupukos", - "realm_idx": 3107, - "order": "The Order of Rage", - "resources": ["Copper", "Wood", "Ruby", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.1529, 13.98] - }, - "properties": { - "name": "Sogsogsiksog", - "realm_idx": 3108, - "order": "The Order of Vitriol", - "resources": [ - "Coal", - "Ironwood", - "Gold", - "Obsidian", - "Sapphire", - "Wood", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.5529, 55.08] - }, - "properties": { - "name": "Uluv Isak", - "realm_idx": 3109, - "order": "The Order of Fury", - "resources": ["Silver", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.68, -28.2997] - }, - "properties": { - "name": "Tuzniz", - "realm_idx": 3110, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.3172, -35.5571] - }, - "properties": { - "name": "D\u00e1nd\u00e1n", - "realm_idx": 3111, - "order": "The Order of Reflection", - "resources": ["Silver", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.4529, 45.48] - }, - "properties": { - "name": "Zumtchun", - "realm_idx": 3112, - "order": "The Order of Titans", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.0471, -23.22] - }, - "properties": { - "name": "Komumnokumon", - "realm_idx": 3113, - "order": "The Order of Giants", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.1801, -27.3996] - }, - "properties": { - "name": "Bunjymbun", - "realm_idx": 3114, - "order": "The Order of the Twins", - "resources": ["Wood", "Copper", "Obsidian", "Stone", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.5471, 42.78] - }, - "properties": { - "name": "nrom Mon", - "realm_idx": 3115, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.78, -7.0997] - }, - "properties": { - "name": "Shoshouketau", - "realm_idx": 3116, - "order": "The Order of Detection", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.7962, -23.8426] - }, - "properties": { - "name": "Kupi ne Noni", - "realm_idx": 3117, - "order": "The Order of Protection", - "resources": ["Stone", "Coal", "Wood", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.3471, -14.42] - }, - "properties": { - "name": "Postokpos", - "realm_idx": 3118, - "order": "The Order of Perfection", - "resources": ["Copper", "Stone", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.18, 35.8003] - }, - "properties": { - "name": "Gim gun Tyn", - "realm_idx": 3119, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Cold Iron", "Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.0471, 43.88] - }, - "properties": { - "name": "Chiahgeh", - "realm_idx": 3120, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.28, -60.3996] - }, - "properties": { - "name": "Ngipelu", - "realm_idx": 3121, - "order": "The Order of the Fox", - "resources": ["Silver", "Diamonds", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.4801, 22.8004] - }, - "properties": { - "name": "Uhukuyez", - "realm_idx": 3122, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.1471, 38.38] - }, - "properties": { - "name": "Vamvunpunrem", - "realm_idx": 3123, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.1471, 9.48] - }, - "properties": { - "name": "Ilpkipilkilk", - "realm_idx": 3124, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.5666, -7.8433] - }, - "properties": { - "name": "k\u00ean Wyn", - "realm_idx": 3125, - "order": "The Order of Reflection", - "resources": [ - "Cold Iron", - "Obsidian", - "Copper", - "Gold", - "Stone", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.9471, 30.28] - }, - "properties": { - "name": "Dridgrun", - "realm_idx": 3126, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.88, 2.3003] - }, - "properties": { - "name": "Mimmim", - "realm_idx": 3127, - "order": "The Order of Reflection", - "resources": ["Cold Iron", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.2261, 37.6911] - }, - "properties": { - "name": "K\u00fabuk", - "realm_idx": 3128, - "order": "The Order of Fury", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2801, -20.6996] - }, - "properties": { - "name": "Loluw", - "realm_idx": 3129, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.88, -11.8997] - }, - "properties": { - "name": "Enu\u2018u\u2018wl", - "realm_idx": 3130, - "order": "The Order of Detection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.5471, 9.48] - }, - "properties": { - "name": "P\u00f6nhlon P\u00f6n", - "realm_idx": 3131, - "order": "The Order of Titans", - "resources": ["Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.1529, 4.38] - }, - "properties": { - "name": "Posle", - "realm_idx": 3132, - "order": "The Order of Vitriol", - "resources": ["Cold Iron", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.7529, -41.42] - }, - "properties": { - "name": "Pal-Malhak", - "realm_idx": 3133, - "order": "The Order of Power", - "resources": ["Hartwood", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.4471, 1.58] - }, - "properties": { - "name": "Qurqurqurlur", - "realm_idx": 3134, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.6514, 53.1846] - }, - "properties": { - "name": "Uptesit", - "realm_idx": 3135, - "order": "The Order of Fury", - "resources": ["Coal", "Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.5086, -34.3325] - }, - "properties": { - "name": "Minit il It", - "realm_idx": 3136, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Silver", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.4529, -8.12] - }, - "properties": { - "name": "Kunnuklux", - "realm_idx": 3137, - "order": "The Order of Power", - "resources": ["Copper", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.6801, 37.9004] - }, - "properties": { - "name": "Klaankok", - "realm_idx": 3138, - "order": "The Order of Anger", - "resources": ["Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.3832, -39.0684] - }, - "properties": { - "name": "\u017ditit-Toba", - "realm_idx": 3139, - "order": "The Order of the Twins", - "resources": ["Stone", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.2471, -12.92] - }, - "properties": { - "name": "Karktelnel", - "realm_idx": 3140, - "order": "The Order of Perfection", - "resources": ["Silver", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.7529, 22.38] - }, - "properties": { - "name": "kuw \u2018owwu", - "realm_idx": 3141, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.18, -4.9997] - }, - "properties": { - "name": "Tast\u00fcls\u00fcop", - "realm_idx": 3142, - "order": "The Order of Detection", - "resources": ["Ironwood", "Coal", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.2877, 31.0834] - }, - "properties": { - "name": "Paypay", - "realm_idx": 3143, - "order": "The Order of Fury", - "resources": ["Obsidian", "Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.6471, -16.82] - }, - "properties": { - "name": "Sgoonwoun", - "realm_idx": 3144, - "order": "The Order of Giants", - "resources": ["Gold", "Wood", "Silver", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.48, -22.3997] - }, - "properties": { - "name": "Unah-Onop", - "realm_idx": 3145, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Sapphire", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.38, -43.9997] - }, - "properties": { - "name": "Eisch", - "realm_idx": 3146, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Coal", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.2471, -21.22] - }, - "properties": { - "name": "Slumlol", - "realm_idx": 3147, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.233, 40.9818] - }, - "properties": { - "name": "Ornerp", - "realm_idx": 3148, - "order": "The Order of Anger", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [126.4471, 11.58] - }, - "properties": { - "name": "Zakzak Nik", - "realm_idx": 3149, - "order": "The Order of Protection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.9471, -36.12] - }, - "properties": { - "name": "Deoghiwk", - "realm_idx": 3150, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.7801, -25.8996] - }, - "properties": { - "name": "\u00das\u00falututit", - "realm_idx": 3151, - "order": "The Order of the Twins", - "resources": ["Diamonds", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.3801, -32.8996] - }, - "properties": { - "name": "\u2018illo\u2018\u2018i\u2018\u2018i\u2018", - "realm_idx": 3152, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.8801, 27.5004] - }, - "properties": { - "name": "Tasmul", - "realm_idx": 3153, - "order": "The Order of Rage", - "resources": ["Obsidian", "Wood", "Cold Iron", "Stone", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.9529, -8.12] - }, - "properties": { - "name": "Em\u00ebshozh", - "realm_idx": 3154, - "order": "The Order of the Fox", - "resources": ["Copper", "Coal", "Wood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.3529, 24.68] - }, - "properties": { - "name": "Irpmuturzh", - "realm_idx": 3155, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.9631, 36.4512] - }, - "properties": { - "name": "Qinschandum", - "realm_idx": 3156, - "order": "The Order of Anger", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.3801, -14.8996] - }, - "properties": { - "name": "Kekkonnuk", - "realm_idx": 3157, - "order": "The Order of Rage", - "resources": ["Coal", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.6471, 50.48] - }, - "properties": { - "name": "\u00danut\u00fas\u00fash", - "realm_idx": 3158, - "order": "The Order of Titans", - "resources": ["Copper", "Obsidian", "Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.3279, 49.8633] - }, - "properties": { - "name": "Kinlontin", - "realm_idx": 3159, - "order": "The Order of Anger", - "resources": ["Ironwood", "Cold Iron", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.1529, 49.98] - }, - "properties": { - "name": "Lepmim", - "realm_idx": 3160, - "order": "The Order of Vitriol", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.78, 32.5003] - }, - "properties": { - "name": "Pukopa", - "realm_idx": 3161, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.8471, -44.72] - }, - "properties": { - "name": "K\u00f3kp\u00f3ls\u00fal", - "realm_idx": 3162, - "order": "The Order of Giants", - "resources": ["Coal", "Obsidian", "Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.3407, -23.7531] - }, - "properties": { - "name": "tun Muh", - "realm_idx": 3163, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Coal", "Gold", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.4801, -28.9996] - }, - "properties": { - "name": "Akisit", - "realm_idx": 3164, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Coal", "Copper", "Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.6471, 24.58] - }, - "properties": { - "name": "Tunstun", - "realm_idx": 3165, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Cold Iron", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.7529, 22.68] - }, - "properties": { - "name": "M\u00e2khlagh", - "realm_idx": 3166, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.0529, 22.88] - }, - "properties": { - "name": "Pi\u2018snim", - "realm_idx": 3167, - "order": "The Order of Vitriol", - "resources": ["Copper", "Stone", "Ruby", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.3471, -24.22] - }, - "properties": { - "name": "Sl\u00e1sn\u00fasm\u00f3", - "realm_idx": 3168, - "order": "The Order of Giants", - "resources": ["True Ice", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.0645, -17.3727] - }, - "properties": { - "name": "Sum-Nwnlan", - "realm_idx": 3169, - "order": "The Order of Perfection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.8551, -23.7875] - }, - "properties": { - "name": "Tup no Ma", - "realm_idx": 3170, - "order": "The Order of Perfection", - "resources": ["Copper", "Wood", "Coal", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.4471, 8.58] - }, - "properties": { - "name": "Pashtu", - "realm_idx": 3171, - "order": "The Order of Titans", - "resources": ["Ironwood", "Obsidian", "Gold", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.38, 29.4003] - }, - "properties": { - "name": "Oslingoh", - "realm_idx": 3172, - "order": "The Order of Fury", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.8471, -11.12] - }, - "properties": { - "name": "Muimmuimnir", - "realm_idx": 3173, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.3472, -16.0788] - }, - "properties": { - "name": "Lezhulqu", - "realm_idx": 3174, - "order": "The Order of Protection", - "resources": ["Wood", "Deep Crystal", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.3471, 1.78] - }, - "properties": { - "name": "\u0160ial\u017eai\u017e\u010dom", - "realm_idx": 3175, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.3471, 8.28] - }, - "properties": { - "name": "Zinugku", - "realm_idx": 3176, - "order": "The Order of Brilliance", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.3801, -15.7996] - }, - "properties": { - "name": "Ekeuu", - "realm_idx": 3177, - "order": "The Order of Rage", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [23.6471, 43.78] - }, - "properties": { - "name": "Tenklitmlin", - "realm_idx": 3178, - "order": "The Order of Titans", - "resources": ["Stone", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.2471, 28.88] - }, - "properties": { - "name": "Alulul", - "realm_idx": 3179, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.68, -6.2997] - }, - "properties": { - "name": "Totoku", - "realm_idx": 3180, - "order": "The Order of Detection", - "resources": ["Coal", "Wood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.18, -3.6997] - }, - "properties": { - "name": "Brubbrub", - "realm_idx": 3181, - "order": "The Order of Detection", - "resources": ["Copper", "Stone", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.0801, 6.0004] - }, - "properties": { - "name": "leis Kuos", - "realm_idx": 3182, - "order": "The Order of Rage", - "resources": ["Copper", "Stone", "Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.28, 10.7003] - }, - "properties": { - "name": "Okhebikhoxeb", - "realm_idx": 3183, - "order": "The Order of Fury", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.48, 28.8003] - }, - "properties": { - "name": "Soespuus", - "realm_idx": 3184, - "order": "The Order of Reflection", - "resources": ["Stone", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.6109, 40.8449] - }, - "properties": { - "name": "Nulelnotik", - "realm_idx": 3185, - "order": "The Order of Anger", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.2364, -35.2304] - }, - "properties": { - "name": "\u00dc\u010dibib", - "realm_idx": 3186, - "order": "The Order of Reflection", - "resources": ["Copper", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.6801, 10.6004] - }, - "properties": { - "name": "Reyevevngey", - "realm_idx": 3187, - "order": "The Order of Rage", - "resources": ["Coal", "Obsidian", "Stone", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.633, 48.0261] - }, - "properties": { - "name": "Olatdlunudat", - "realm_idx": 3188, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [126.5656, 4.1772] - }, - "properties": { - "name": "Heutuetuot", - "realm_idx": 3189, - "order": "The Order of Protection", - "resources": ["Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.9471, 44.38] - }, - "properties": { - "name": "Erp Ch\u00e9lzh\u00e9l", - "realm_idx": 3190, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.5558, -24.7252] - }, - "properties": { - "name": "Dammisna", - "realm_idx": 3191, - "order": "The Order of Protection", - "resources": ["Coal", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.2801, -16.6996] - }, - "properties": { - "name": "Pouguozzouz", - "realm_idx": 3192, - "order": "The Order of Rage", - "resources": ["Wood", "Silver", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.0471, 22.58] - }, - "properties": { - "name": "Numhon", - "realm_idx": 3193, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Obsidian", "Wood", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.9471, -38.52] - }, - "properties": { - "name": "Khisrukukhen", - "realm_idx": 3194, - "order": "The Order of Giants", - "resources": ["Copper", "Obsidian", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.211, -18.8793] - }, - "properties": { - "name": "Lilnlilult", - "realm_idx": 3195, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Alchemical Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.18, 31.6003] - }, - "properties": { - "name": "uk Imulimik", - "realm_idx": 3196, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.78, -3.7997] - }, - "properties": { - "name": "Sagchut", - "realm_idx": 3197, - "order": "The Order of Detection", - "resources": ["Obsidian", "Ignium", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.6376, 27.5764] - }, - "properties": { - "name": "Skinskin", - "realm_idx": 3198, - "order": "The Order of Fury", - "resources": ["Coal", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.4529, 46.88] - }, - "properties": { - "name": "\u00d3memsim", - "realm_idx": 3199, - "order": "The Order of Fury", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.0801, -39.9996] - }, - "properties": { - "name": "Wletwt", - "realm_idx": 3200, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.6801, -33.0996] - }, - "properties": { - "name": "Chunkem", - "realm_idx": 3201, - "order": "The Order of the Twins", - "resources": ["Wood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.38, 16.0003] - }, - "properties": { - "name": "\u2018lompru\u2018", - "realm_idx": 3202, - "order": "The Order of Detection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.0728, -16.8768] - }, - "properties": { - "name": "Usiemalaus", - "realm_idx": 3203, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Ironwood", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.363, -26.429] - }, - "properties": { - "name": "Ubewudugub", - "realm_idx": 3204, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.3471, 30.48] - }, - "properties": { - "name": "Diochchoid", - "realm_idx": 3205, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Silver", "Copper", "Twilight Quartz", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.5529, -11.42] - }, - "properties": { - "name": "Kudueu", - "realm_idx": 3206, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Obsidian", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.5203, -24.5362] - }, - "properties": { - "name": "Szhoknikkak", - "realm_idx": 3207, - "order": "The Order of Protection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.7471, 9.08] - }, - "properties": { - "name": "Tluk muk Nak", - "realm_idx": 3208, - "order": "The Order of Brilliance", - "resources": ["Stone", "Ethereal Silica", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.247, -4.42] - }, - "properties": { - "name": "Okkamak Kom", - "realm_idx": 3209, - "order": "The Order of Perfection", - "resources": ["Stone", "Ironwood", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [128.2518, 9.7878] - }, - "properties": { - "name": "Olkolgh", - "realm_idx": 3210, - "order": "The Order of Protection", - "resources": ["Coal", "Ruby", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.48, -0.7997] - }, - "properties": { - "name": "Ajknunajkun", - "realm_idx": 3211, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [10.4471, -36.52] - }, - "properties": { - "name": "Wmtwm", - "realm_idx": 3212, - "order": "The Order of Power", - "resources": ["Sapphire", "Stone", "Wood", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.8801, -45.6996] - }, - "properties": { - "name": "Nakpunlu", - "realm_idx": 3213, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.8471, 12.88] - }, - "properties": { - "name": "Kalnil", - "realm_idx": 3214, - "order": "The Order of Protection", - "resources": [ - "Copper", - "Obsidian", - "Deep Crystal", - "Silver", - "Wood", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.9529, 2.88] - }, - "properties": { - "name": "Timu-ka-Nupu", - "realm_idx": 3215, - "order": "The Order of Power", - "resources": ["Sapphire", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.7529, -6.12] - }, - "properties": { - "name": "Gichichegi", - "realm_idx": 3216, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.6471, -33.02] - }, - "properties": { - "name": "Bosapo", - "realm_idx": 3217, - "order": "The Order of Giants", - "resources": ["Obsidian", "Stone", "Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.2471, 13.08] - }, - "properties": { - "name": "Gumsuet", - "realm_idx": 3218, - "order": "The Order of Protection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-28.5529, 25.38] - }, - "properties": { - "name": "Duuzopozuus", - "realm_idx": 3219, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.8225, -49.4858] - }, - "properties": { - "name": "Lemaml\u00e9m", - "realm_idx": 3220, - "order": "The Order of the Fox", - "resources": ["Wood", "True Ice", "Gold", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.0471, -21.92] - }, - "properties": { - "name": "Nlasschis", - "realm_idx": 3221, - "order": "The Order of Power", - "resources": ["Stone", "Ironwood", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.88, -48.0997] - }, - "properties": { - "name": "Kelokeluke", - "realm_idx": 3222, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [24.8471, 40.88] - }, - "properties": { - "name": "Wenlounnloum", - "realm_idx": 3223, - "order": "The Order of Titans", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.4471, 10.48] - }, - "properties": { - "name": "K\u00eam r\u00eak Ah", - "realm_idx": 3224, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Copper", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.2801, 9.7004] - }, - "properties": { - "name": "Kenkumjlon", - "realm_idx": 3225, - "order": "The Order of Rage", - "resources": ["Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.5801, -20.0996] - }, - "properties": { - "name": "Ginogin", - "realm_idx": 3226, - "order": "The Order of the Twins", - "resources": ["Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.1801, 30.2004] - }, - "properties": { - "name": "Surchbuq", - "realm_idx": 3227, - "order": "The Order of Anger", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.6801, 12.4004] - }, - "properties": { - "name": "Amamush", - "realm_idx": 3228, - "order": "The Order of Rage", - "resources": ["Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.8801, 25.2004] - }, - "properties": { - "name": "Stunontu", - "realm_idx": 3229, - "order": "The Order of Rage", - "resources": ["Stone", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.3891, 40.6809] - }, - "properties": { - "name": "Ulopomok", - "realm_idx": 3230, - "order": "The Order of Anger", - "resources": ["Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.8527, 53.0801] - }, - "properties": { - "name": "Svagon", - "realm_idx": 3231, - "order": "The Order of the Twins", - "resources": ["Hartwood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.5471, 16.68] - }, - "properties": { - "name": "Slamkl\u00fan", - "realm_idx": 3232, - "order": "The Order of Brilliance", - "resources": ["Silver", "Wood", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.5471, -0.52] - }, - "properties": { - "name": "Kiwpzu", - "realm_idx": 3233, - "order": "The Order of Brilliance", - "resources": ["Stone", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [128.6351, 9.1833] - }, - "properties": { - "name": "Mulalz", - "realm_idx": 3234, - "order": "The Order of Protection", - "resources": ["Deep Crystal", "Wood", "Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.5529, 10.68] - }, - "properties": { - "name": "Potkot", - "realm_idx": 3235, - "order": "The Order of Vitriol", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.6471, 30.78] - }, - "properties": { - "name": "Kilnilsik", - "realm_idx": 3236, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.1074, 39.0834] - }, - "properties": { - "name": "Peiwlaul", - "realm_idx": 3237, - "order": "The Order of Anger", - "resources": ["Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.5471, 1.88] - }, - "properties": { - "name": "Urplik", - "realm_idx": 3238, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.7471, 29.28] - }, - "properties": { - "name": "T\u00ebhkwip", - "realm_idx": 3239, - "order": "The Order of Skill", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.7785, 32.3588] - }, - "properties": { - "name": "Rukup", - "realm_idx": 3240, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.8244, 50.6374] - }, - "properties": { - "name": "Ponwin", - "realm_idx": 3241, - "order": "The Order of the Twins", - "resources": ["Ignium", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.8529, 31.48] - }, - "properties": { - "name": "Chibzhus", - "realm_idx": 3242, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.6471, 34.38] - }, - "properties": { - "name": "Oxisit", - "realm_idx": 3243, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Wood", "Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.9471, -22.62] - }, - "properties": { - "name": "P\u00efkklah", - "realm_idx": 3244, - "order": "The Order of Perfection", - "resources": ["Coal", "Silver", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.4297, 9.4707] - }, - "properties": { - "name": "\u00c4k\u00e4ne\u2018ok", - "realm_idx": 3245, - "order": "The Order of Protection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.5527, 52.2801] - }, - "properties": { - "name": "S\u00faksisp\u00fatt\u00fam", - "realm_idx": 3246, - "order": "The Order of the Twins", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.7471, 39.48] - }, - "properties": { - "name": "G\u00edmbenzam", - "realm_idx": 3247, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.68, -58.7996] - }, - "properties": { - "name": "Xulxsurx", - "realm_idx": 3248, - "order": "The Order of the Fox", - "resources": ["Gold", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.8117, 17.1861] - }, - "properties": { - "name": "Sjerraglood", - "realm_idx": 3249, - "order": "The Order of Protection", - "resources": ["Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.0801, -54.7996] - }, - "properties": { - "name": "Sponsnet", - "realm_idx": 3250, - "order": "The Order of the Twins", - "resources": ["Ruby", "Sapphire", "Ironwood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.4471, 1.88] - }, - "properties": { - "name": "Nopeke", - "realm_idx": 3251, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Silver", "Ruby", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.5471, -13.42] - }, - "properties": { - "name": "Zhron", - "realm_idx": 3252, - "order": "The Order of Perfection", - "resources": ["Coal", "Copper", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.3801, -42.7996] - }, - "properties": { - "name": "P\u00e2ynnuam", - "realm_idx": 3253, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Copper", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.98, -6.6997] - }, - "properties": { - "name": "Senpwom", - "realm_idx": 3254, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.2861, -56.1351] - }, - "properties": { - "name": "lup Up", - "realm_idx": 3255, - "order": "The Order of the Twins", - "resources": ["Diamonds", "Copper", "Ironwood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.1471, 35.58] - }, - "properties": { - "name": "Ulagunusul", - "realm_idx": 3256, - "order": "The Order of Enlightenment", - "resources": ["Diamonds", "Copper", "Stone", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.0471, 4.58] - }, - "properties": { - "name": "Tutotu", - "realm_idx": 3257, - "order": "The Order of Titans", - "resources": ["Ironwood", "Wood", "Coal", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.3016, 41.7648] - }, - "properties": { - "name": "Dogh di Bil", - "realm_idx": 3258, - "order": "The Order of Anger", - "resources": ["Diamonds", "Twilight Quartz", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.2284, -25.6638] - }, - "properties": { - "name": "Tapsapsapsus", - "realm_idx": 3259, - "order": "The Order of Perfection", - "resources": ["Copper", "Stone", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [107.7831, -6.1154] - }, - "properties": { - "name": "Sl\u00e1tsnoml\u00edl", - "realm_idx": 3260, - "order": "The Order of Perfection", - "resources": [ - "Deep Crystal", - "Copper", - "Stone", - "Wood", - "Coal", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.7529, 6.58] - }, - "properties": { - "name": "Degdeggo", - "realm_idx": 3261, - "order": "The Order of Power", - "resources": ["Gold", "Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.9529, 22.88] - }, - "properties": { - "name": "Piplilla\u2018\u2018u\u2018", - "realm_idx": 3262, - "order": "The Order of Vitriol", - "resources": ["Stone", "Alchemical Silver", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.813, 11.0282] - }, - "properties": { - "name": "Kugkanu", - "realm_idx": 3263, - "order": "The Order of Protection", - "resources": ["Wood", "Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.4529, 23.98] - }, - "properties": { - "name": "Keupoik", - "realm_idx": 3264, - "order": "The Order of Vitriol", - "resources": ["Gold", "Stone", "Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.747, 0.68] - }, - "properties": { - "name": "Kuyskhissbiw", - "realm_idx": 3265, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.6801, -1.0996] - }, - "properties": { - "name": "Kanka", - "realm_idx": 3266, - "order": "The Order of Rage", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.2471, 10.78] - }, - "properties": { - "name": "Kokkukkok", - "realm_idx": 3267, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Diamonds", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.3471, 28.88] - }, - "properties": { - "name": "Megtem", - "realm_idx": 3268, - "order": "The Order of Vitriol", - "resources": ["Wood", "Diamonds", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.18, -8.6997] - }, - "properties": { - "name": "\u00c2n\u00e2ch\u00e2b", - "realm_idx": 3269, - "order": "The Order of Reflection", - "resources": ["Wood", "True Ice", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.1529, -8.42] - }, - "properties": { - "name": "Shuykhukh", - "realm_idx": 3270, - "order": "The Order of the Fox", - "resources": ["Deep Crystal", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.6529, 0.18] - }, - "properties": { - "name": "tuk Ulii", - "realm_idx": 3271, - "order": "The Order of Vitriol", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.6595, 30.2816] - }, - "properties": { - "name": "Nan nu \u2018inan", - "realm_idx": 3272, - "order": "The Order of Anger", - "resources": ["Silver", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.6471, 9.88] - }, - "properties": { - "name": "Kinken", - "realm_idx": 3273, - "order": "The Order of Protection", - "resources": ["Wood", "Deep Crystal", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.4031, 45.7973] - }, - "properties": { - "name": "Biykeybnoyw", - "realm_idx": 3274, - "order": "The Order of Anger", - "resources": ["Obsidian", "Coal", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.498, -47.2904] - }, - "properties": { - "name": "N\u00famn\u00famnenn\u00fan", - "realm_idx": 3275, - "order": "The Order of the Fox", - "resources": ["Coal", "Stone", "Copper", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.2471, -10.42] - }, - "properties": { - "name": "Kulnpaltuln", - "realm_idx": 3276, - "order": "The Order of Giants", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.6529, -21.72] - }, - "properties": { - "name": "B\u00e1ib\u017ei\u00e1t\u017e\u00e1iz", - "realm_idx": 3277, - "order": "The Order of Power", - "resources": ["Hartwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.8529, 19.48] - }, - "properties": { - "name": "\u00cdltsar", - "realm_idx": 3278, - "order": "The Order of Vitriol", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.9471, 20.48] - }, - "properties": { - "name": "Mom ko Bo", - "realm_idx": 3279, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.5529, 11.58] - }, - "properties": { - "name": "Paxhuxhux", - "realm_idx": 3280, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.1471, -8.32] - }, - "properties": { - "name": "Punhenkon", - "realm_idx": 3281, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.8471, 28.88] - }, - "properties": { - "name": "Nolio", - "realm_idx": 3282, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.78, -7.3997] - }, - "properties": { - "name": "Solimozhmo", - "realm_idx": 3283, - "order": "The Order of Detection", - "resources": ["Stone", "Obsidian", "Coal", "Hartwood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.6471, 20.78] - }, - "properties": { - "name": "Pum wum Hun", - "realm_idx": 3284, - "order": "The Order of Skill", - "resources": ["Wood", "Cold Iron", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.88, 29.9003] - }, - "properties": { - "name": "Obokun Ehun", - "realm_idx": 3285, - "order": "The Order of Fury", - "resources": ["Stone", "Copper", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.2801, 7.2004] - }, - "properties": { - "name": "Luunal-Chuz", - "realm_idx": 3286, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.3801, -17.1996] - }, - "properties": { - "name": "Dl\u00famsan", - "realm_idx": 3287, - "order": "The Order of Rage", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.4706, 21.7138] - }, - "properties": { - "name": "in-Agi", - "realm_idx": 3288, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.68, -42.7996] - }, - "properties": { - "name": "Emipimipus", - "realm_idx": 3289, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.1471, 23.48] - }, - "properties": { - "name": "Temlamsem", - "realm_idx": 3290, - "order": "The Order of Skill", - "resources": ["Stone", "Silver", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.5471, 37.38] - }, - "properties": { - "name": "Ml\u00e4mn\u00e4m", - "realm_idx": 3291, - "order": "The Order of Skill", - "resources": ["Stone", "Copper", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.4529, 2.48] - }, - "properties": { - "name": "ed-Utanir", - "realm_idx": 3292, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Ironwood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.58, -5.2997] - }, - "properties": { - "name": "N\u00fcmson", - "realm_idx": 3293, - "order": "The Order of Detection", - "resources": ["Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.8471, 12.68] - }, - "properties": { - "name": "Ninlamlam", - "realm_idx": 3294, - "order": "The Order of Titans", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.1801, -14.6996] - }, - "properties": { - "name": "Lawpupwok", - "realm_idx": 3295, - "order": "The Order of Rage", - "resources": ["Silver", "Stone", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.4224, -16.085] - }, - "properties": { - "name": "Setet", - "realm_idx": 3296, - "order": "The Order of Reflection", - "resources": ["Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.3246, 29.7479] - }, - "properties": { - "name": "Nuoppoitpoit", - "realm_idx": 3297, - "order": "The Order of Fury", - "resources": ["Ignium", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2801, -48.5996] - }, - "properties": { - "name": "Pu\u00fatni\u00fam", - "realm_idx": 3298, - "order": "The Order of the Twins", - "resources": ["Silver", "Ruby", "Stone", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.0801, 29.2004] - }, - "properties": { - "name": "i Kimaak", - "realm_idx": 3299, - "order": "The Order of Rage", - "resources": ["Wood", "Alchemical Silver", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.5471, 53.18] - }, - "properties": { - "name": "P\u00fatt\u00fattolt\u00fat", - "realm_idx": 3300, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.4471, 14.78] - }, - "properties": { - "name": "Sawsijw", - "realm_idx": 3301, - "order": "The Order of Brilliance", - "resources": ["Wood", "Silver", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.1801, -35.1996] - }, - "properties": { - "name": "Romim", - "realm_idx": 3302, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.7529, 2.28] - }, - "properties": { - "name": "q\u00e1m-Enan", - "realm_idx": 3303, - "order": "The Order of Power", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.8471, 37.68] - }, - "properties": { - "name": "Lilkilnglil", - "realm_idx": 3304, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.0527, 52.2801] - }, - "properties": { - "name": "Luplasillon", - "realm_idx": 3305, - "order": "The Order of the Twins", - "resources": ["Diamonds", "Wood", "Hartwood", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.4607, 39.3164] - }, - "properties": { - "name": "Kimgumgunpan", - "realm_idx": 3306, - "order": "The Order of Anger", - "resources": [ - "Stone", - "Obsidian", - "Coal", - "Adamantine", - "Wood", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.48, 33.7003] - }, - "properties": { - "name": "Nolkolm", - "realm_idx": 3307, - "order": "The Order of Fury", - "resources": [ - "Obsidian", - "Alchemical Silver", - "Wood", - "Copper", - "Stone", - "Sapphire" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.7801, 4.6004] - }, - "properties": { - "name": "Nekhenmlon", - "realm_idx": 3308, - "order": "The Order of Rage", - "resources": ["Obsidian", "Copper", "Silver", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.38, 22.3003] - }, - "properties": { - "name": "Keilkeiltue", - "realm_idx": 3309, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2801, -39.2996] - }, - "properties": { - "name": "Nezmiz", - "realm_idx": 3310, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.4471, -37.42] - }, - "properties": { - "name": "Sid\u00edld", - "realm_idx": 3311, - "order": "The Order of Giants", - "resources": ["Stone", "Cold Iron", "Obsidian", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.1471, -18.62] - }, - "properties": { - "name": "Nipman", - "realm_idx": 3312, - "order": "The Order of Giants", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [23.9471, -8.02] - }, - "properties": { - "name": "Gegzin", - "realm_idx": 3313, - "order": "The Order of Power", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.3801, -11.0996] - }, - "properties": { - "name": "Duwidu", - "realm_idx": 3314, - "order": "The Order of Rage", - "resources": ["Ethereal Silica", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.98, 13.5003] - }, - "properties": { - "name": "\u010cibzez\u0161au\u0161", - "realm_idx": 3315, - "order": "The Order of Detection", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.2529, -37.12] - }, - "properties": { - "name": "Mamhensnun", - "realm_idx": 3316, - "order": "The Order of Power", - "resources": ["Copper", "Gold", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.6471, 34.98] - }, - "properties": { - "name": "Pekemo\u2018o", - "realm_idx": 3317, - "order": "The Order of Skill", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-127.58, -0.3997] - }, - "properties": { - "name": "Hipswikop", - "realm_idx": 3318, - "order": "The Order of Detection", - "resources": ["Wood", "Coal", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.2801, -39.5996] - }, - "properties": { - "name": "Prok Hron", - "realm_idx": 3319, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "True Ice", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.0209, 5.1523] - }, - "properties": { - "name": "Pukpikliis", - "realm_idx": 3320, - "order": "The Order of Protection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.4692, 9.3811] - }, - "properties": { - "name": "Eptot Sutkon", - "realm_idx": 3321, - "order": "The Order of Protection", - "resources": [ - "Cold Iron", - "Deep Crystal", - "Stone", - "Gold", - "Silver", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.98, -12.8997] - }, - "properties": { - "name": "Tchinkankan", - "realm_idx": 3322, - "order": "The Order of Detection", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.6471, -50.72] - }, - "properties": { - "name": "biar-Metteib", - "realm_idx": 3323, - "order": "The Order of Giants", - "resources": ["Wood", "Ignium", "Stone", "True Ice", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.0471, 19.18] - }, - "properties": { - "name": "Ontonuon", - "realm_idx": 3324, - "order": "The Order of Titans", - "resources": ["Ethereal Silica", "Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.5529, 25.38] - }, - "properties": { - "name": "Lonmuyp", - "realm_idx": 3325, - "order": "The Order of Vitriol", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.8824, 44.315] - }, - "properties": { - "name": "Skums\u00e2m", - "realm_idx": 3326, - "order": "The Order of Anger", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.3471, 17.88] - }, - "properties": { - "name": "Goshn\u00e1k", - "realm_idx": 3327, - "order": "The Order of Skill", - "resources": ["Stone", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.7529, -21.82] - }, - "properties": { - "name": "Onamamam", - "realm_idx": 3328, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.0801, 8.4004] - }, - "properties": { - "name": "Loy\u2018oy", - "realm_idx": 3329, - "order": "The Order of Rage", - "resources": ["Ironwood", "Obsidian", "Stone", "Gold", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [108.1101, -4.9516] - }, - "properties": { - "name": "Mem Unmannan", - "realm_idx": 3330, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.38, -46.9996] - }, - "properties": { - "name": "Mem\u00edtu", - "realm_idx": 3331, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood", "Coal", "Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.1801, -47.3996] - }, - "properties": { - "name": "N\u00edsmasmep", - "realm_idx": 3332, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.8529, -30.02] - }, - "properties": { - "name": "Muwhnuyay", - "realm_idx": 3333, - "order": "The Order of Power", - "resources": ["Ironwood", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-44.4529, 10.08] - }, - "properties": { - "name": "Nr\u00f4pnr\u00f4p", - "realm_idx": 3334, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.78, -26.8997] - }, - "properties": { - "name": "Mrinnrimlum", - "realm_idx": 3335, - "order": "The Order of Reflection", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.839, -18.8205] - }, - "properties": { - "name": "Jak\u00e1ks\u00f3s", - "realm_idx": 3336, - "order": "The Order of Perfection", - "resources": ["Diamonds", "Hartwood", "Stone", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.8801, 41.2004] - }, - "properties": { - "name": "Mirpk\u00edrm \u00cdm", - "realm_idx": 3337, - "order": "The Order of Anger", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.0801, -5.9996] - }, - "properties": { - "name": "Gamgiudditch", - "realm_idx": 3338, - "order": "The Order of Rage", - "resources": ["Obsidian", "Ruby", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.1393, 43.9313] - }, - "properties": { - "name": "Luwwinun", - "realm_idx": 3339, - "order": "The Order of Anger", - "resources": ["Wood", "Silver", "Hartwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.2394, 16.72] - }, - "properties": { - "name": "Duoshuoddeus", - "realm_idx": 3340, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.18, 30.9003] - }, - "properties": { - "name": "Ununtutu", - "realm_idx": 3341, - "order": "The Order of Fury", - "resources": ["Silver", "Obsidian", "Wood", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [69.0471, -15.52] - }, - "properties": { - "name": "Smema Schhe", - "realm_idx": 3342, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Wood", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.38, -34.5997] - }, - "properties": { - "name": "\u00c2\u017esateztez", - "realm_idx": 3343, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.5801, 30.7004] - }, - "properties": { - "name": "Hoton a Hae", - "realm_idx": 3344, - "order": "The Order of Anger", - "resources": ["Obsidian", "Wood", "Copper", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.1801, -20.1996] - }, - "properties": { - "name": "Kikmuk", - "realm_idx": 3345, - "order": "The Order of the Twins", - "resources": ["Stone", "Silver", "Wood", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.6471, -34.72] - }, - "properties": { - "name": "Smiprin", - "realm_idx": 3346, - "order": "The Order of Giants", - "resources": ["Coal", "Sapphire", "Wood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.8471, 3.18] - }, - "properties": { - "name": "Namkulmimsek", - "realm_idx": 3347, - "order": "The Order of Brilliance", - "resources": ["Gold", "Hartwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.5801, 50.1004] - }, - "properties": { - "name": "Pitit", - "realm_idx": 3348, - "order": "The Order of Anger", - "resources": ["Stone", "Wood", "Silver", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.4529, -5.82] - }, - "properties": { - "name": "Lomenen", - "realm_idx": 3349, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone", "Copper", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [24.8471, 42.18] - }, - "properties": { - "name": "S\u00e2k-Ky\u00e2kpyul", - "realm_idx": 3350, - "order": "The Order of Titans", - "resources": ["Wood", "Deep Crystal", "Ruby", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.4471, 8.28] - }, - "properties": { - "name": "ske-Lu", - "realm_idx": 3351, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.2471, 40.88] - }, - "properties": { - "name": "T\u00e1ukt\u00e1nn\u00edn", - "realm_idx": 3352, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.7801, 35.6004] - }, - "properties": { - "name": "Shyot", - "realm_idx": 3353, - "order": "The Order of Anger", - "resources": ["Coal", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.0471, 27.78] - }, - "properties": { - "name": "K\u00e4kkut", - "realm_idx": 3354, - "order": "The Order of Skill", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.3551, -41.6777] - }, - "properties": { - "name": "Otazhot", - "realm_idx": 3355, - "order": "The Order of the Fox", - "resources": ["Stone", "Silver", "Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.0801, -14.4996] - }, - "properties": { - "name": "U\u0161i\u017eu\u0161", - "realm_idx": 3356, - "order": "The Order of Rage", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.6801, 47.7004] - }, - "properties": { - "name": "kom Simi", - "realm_idx": 3357, - "order": "The Order of Anger", - "resources": ["Wood", "Hartwood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [45.6471, -38.12] - }, - "properties": { - "name": "nen-Tuntlin", - "realm_idx": 3358, - "order": "The Order of Giants", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.0527, 44.5801] - }, - "properties": { - "name": "Aw\u00e1p Aphaw", - "realm_idx": 3359, - "order": "The Order of the Twins", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.1224, 37.8297] - }, - "properties": { - "name": "Lu\u2018a \u2018u Wulu", - "realm_idx": 3360, - "order": "The Order of Fury", - "resources": ["Coal", "Ruby", "Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.8471, 21.68] - }, - "properties": { - "name": "Sduchdun", - "realm_idx": 3361, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.4471, 54.98] - }, - "properties": { - "name": "Innundunicha", - "realm_idx": 3362, - "order": "The Order of Titans", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.3602, 29.825] - }, - "properties": { - "name": "os Gosde\u017eu\u0161", - "realm_idx": 3363, - "order": "The Order of Anger", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-26.4529, -8.52] - }, - "properties": { - "name": "nal-Mun-S\u00fcm", - "realm_idx": 3364, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.0471, 23.48] - }, - "properties": { - "name": "Tautnia", - "realm_idx": 3365, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.4471, 49.28] - }, - "properties": { - "name": "Aangangung", - "realm_idx": 3366, - "order": "The Order of Skill", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.98, 1.0003] - }, - "properties": { - "name": "ki Kuninu", - "realm_idx": 3367, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.3471, 37.48] - }, - "properties": { - "name": "Nans\u00e1nsesam", - "realm_idx": 3368, - "order": "The Order of Titans", - "resources": ["Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.4471, -7.92] - }, - "properties": { - "name": "su Utum", - "realm_idx": 3369, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Silver", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.78, -47.4997] - }, - "properties": { - "name": "Uk\u00f3s Sek", - "realm_idx": 3370, - "order": "The Order of the Fox", - "resources": ["Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.4471, 30.18] - }, - "properties": { - "name": "To nuk Ke", - "realm_idx": 3371, - "order": "The Order of Skill", - "resources": ["Stone", "Wood", "Sapphire", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.1471, 61.18] - }, - "properties": { - "name": "Urmul ul Kul", - "realm_idx": 3372, - "order": "The Order of Titans", - "resources": ["Coal", "Hartwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.0471, 8.78] - }, - "properties": { - "name": "Mursirp", - "realm_idx": 3373, - "order": "The Order of Titans", - "resources": ["Stone", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [102.1471, 50.78] - }, - "properties": { - "name": "Sushdult", - "realm_idx": 3374, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.3529, -21.12] - }, - "properties": { - "name": "Akakgik", - "realm_idx": 3375, - "order": "The Order of Power", - "resources": ["Silver", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.6918, 13.837] - }, - "properties": { - "name": "Lonmonlenk\u00e2n", - "realm_idx": 3376, - "order": "The Order of Protection", - "resources": ["Stone", "Coal", "Wood", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.5471, -10.22] - }, - "properties": { - "name": "Klumklung", - "realm_idx": 3377, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.7471, -13.82] - }, - "properties": { - "name": "Turch", - "realm_idx": 3378, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.9681, 20.0668] - }, - "properties": { - "name": "Puntamumu", - "realm_idx": 3379, - "order": "The Order of Fury", - "resources": ["Coal", "Wood", "Obsidian", "Gold", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.7529, -9.62] - }, - "properties": { - "name": "Fqeturpe", - "realm_idx": 3380, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.9156, -18.7929] - }, - "properties": { - "name": "In\u00efzhum", - "realm_idx": 3381, - "order": "The Order of Protection", - "resources": ["Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.4529, 51.58] - }, - "properties": { - "name": "Sessopsos", - "realm_idx": 3382, - "order": "The Order of Fury", - "resources": ["Stone", "Silver", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.5471, 30.58] - }, - "properties": { - "name": "Do Sdisti", - "realm_idx": 3383, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Ethereal Silica", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.5471, 38.68] - }, - "properties": { - "name": "nu Kusu", - "realm_idx": 3384, - "order": "The Order of Skill", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.4833, 26.7183] - }, - "properties": { - "name": "\u2018eum\u2018eumluep", - "realm_idx": 3385, - "order": "The Order of Reflection", - "resources": ["Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.6289, 29.3927] - }, - "properties": { - "name": "Ip\u00eanes", - "realm_idx": 3386, - "order": "The Order of Fury", - "resources": ["Deep Crystal", "Copper", "Gold", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.38, 9.9003] - }, - "properties": { - "name": "Gongsimtem", - "realm_idx": 3387, - "order": "The Order of Detection", - "resources": ["Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.48, -0.5997] - }, - "properties": { - "name": "Wunschkakkel", - "realm_idx": 3388, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.18, -6.0997] - }, - "properties": { - "name": "Mohuki", - "realm_idx": 3389, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Cold Iron", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.6636, -26.1832] - }, - "properties": { - "name": "Tunmlin", - "realm_idx": 3390, - "order": "The Order of Protection", - "resources": ["Stone", "Silver", "Copper", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.1471, -7.92] - }, - "properties": { - "name": "Mis\u0161o", - "realm_idx": 3391, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.78, -5.0997] - }, - "properties": { - "name": "Kuylsaunmyas", - "realm_idx": 3392, - "order": "The Order of Reflection", - "resources": ["Wood", "Ironwood", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.7471, -13.42] - }, - "properties": { - "name": "ke Neku", - "realm_idx": 3393, - "order": "The Order of Giants", - "resources": ["Cold Iron", "Wood", "Stone", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.996, 7.7762] - }, - "properties": { - "name": "Plom\u2018iem", - "realm_idx": 3394, - "order": "The Order of Protection", - "resources": ["Wood", "Coal", "Obsidian", "Ruby", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.1529, 45.08] - }, - "properties": { - "name": "Sot\u00fask\u00f3lk", - "realm_idx": 3395, - "order": "The Order of Fury", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.1481, -17.5148] - }, - "properties": { - "name": "\u00cf\u0161ak \u00cfm\u00efn", - "realm_idx": 3396, - "order": "The Order of Perfection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.4776, -19.39] - }, - "properties": { - "name": "j\u00fc \u00dcshes", - "realm_idx": 3397, - "order": "The Order of Protection", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.9801, -38.2996] - }, - "properties": { - "name": "Innem", - "realm_idx": 3398, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.3471, 37.48] - }, - "properties": { - "name": "Kettet", - "realm_idx": 3399, - "order": "The Order of Skill", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.7621, 36.3286] - }, - "properties": { - "name": "Mimschhon", - "realm_idx": 3400, - "order": "The Order of Reflection", - "resources": ["Gold", "Wood", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.5471, 17.68] - }, - "properties": { - "name": "Lachlach", - "realm_idx": 3401, - "order": "The Order of Titans", - "resources": ["Stone", "Copper", "Gold", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.7471, 55.38] - }, - "properties": { - "name": "Alepeg", - "realm_idx": 3402, - "order": "The Order of Titans", - "resources": ["Wood", "Copper", "Stone", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.5045, -17.254] - }, - "properties": { - "name": "Wei-Loiw", - "realm_idx": 3403, - "order": "The Order of Protection", - "resources": ["Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.6529, 39.08] - }, - "properties": { - "name": "Sihirsika", - "realm_idx": 3404, - "order": "The Order of Titans", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.4801, 49.7004] - }, - "properties": { - "name": "Rirtraul", - "realm_idx": 3405, - "order": "The Order of Anger", - "resources": [ - "Coal", - "Wood", - "Silver", - "True Ice", - "Cold Iron", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.4471, 28.28] - }, - "properties": { - "name": "Sakkes", - "realm_idx": 3406, - "order": "The Order of Titans", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.0584, 15.4326] - }, - "properties": { - "name": "Labozh", - "realm_idx": 3407, - "order": "The Order of Fury", - "resources": ["Copper", "Wood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.9529, 10.98] - }, - "properties": { - "name": "Unuzuhumuzh", - "realm_idx": 3408, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.4471, -26.52] - }, - "properties": { - "name": "Kaptakkuk", - "realm_idx": 3409, - "order": "The Order of Perfection", - "resources": ["Wood", "Silver", "Ironwood", "Gold", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.2801, -49.3996] - }, - "properties": { - "name": "Konmota", - "realm_idx": 3410, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.58, -45.7996] - }, - "properties": { - "name": "Chnin", - "realm_idx": 3411, - "order": "The Order of the Fox", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.3471, -26.92] - }, - "properties": { - "name": "Y\u00fcrg\u00fclniul", - "realm_idx": 3412, - "order": "The Order of Giants", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.08, -12.7997] - }, - "properties": { - "name": "Kruselrok", - "realm_idx": 3413, - "order": "The Order of Detection", - "resources": ["Wood", "Stone", "Silver", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.594, -9.7638] - }, - "properties": { - "name": "Nausslok", - "realm_idx": 3414, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.1479, -36.0781] - }, - "properties": { - "name": "O\u2018unmok", - "realm_idx": 3415, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.2471, -21.12] - }, - "properties": { - "name": "Jarzhsijk", - "realm_idx": 3416, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.2471, 2.38] - }, - "properties": { - "name": "Kangvuy", - "realm_idx": 3417, - "order": "The Order of Brilliance", - "resources": ["Silver", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.1529, 40.58] - }, - "properties": { - "name": "K\u00ednsw\u00edngsnan", - "realm_idx": 3418, - "order": "The Order of Vitriol", - "resources": ["Copper", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.2801, 5.5004] - }, - "properties": { - "name": "Relghol\u0161 \u00cfld", - "realm_idx": 3419, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.8471, -14.42] - }, - "properties": { - "name": "Tchuyno", - "realm_idx": 3420, - "order": "The Order of Perfection", - "resources": ["Gold", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.6471, 7.58] - }, - "properties": { - "name": "\u2018awweew", - "realm_idx": 3421, - "order": "The Order of Brilliance", - "resources": ["Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.2872, 12.6446] - }, - "properties": { - "name": "Demdunimrun", - "realm_idx": 3422, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.7529, -21.42] - }, - "properties": { - "name": "Akimuh", - "realm_idx": 3423, - "order": "The Order of Power", - "resources": ["Wood", "Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.3471, -23.02] - }, - "properties": { - "name": "Sloms\u017eillud", - "realm_idx": 3424, - "order": "The Order of Giants", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.6627, -10.9044] - }, - "properties": { - "name": "Bobeblib", - "realm_idx": 3425, - "order": "The Order of Perfection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.6471, 54.38] - }, - "properties": { - "name": "Tilktultur", - "realm_idx": 3426, - "order": "The Order of Titans", - "resources": ["Coal", "Silver", "Wood", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.58, -50.6997] - }, - "properties": { - "name": "L\u00e4nl\u00e4nmim", - "realm_idx": 3427, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.2471, -15.32] - }, - "properties": { - "name": "Kagk\u00e4mt\u00e4gkag", - "realm_idx": 3428, - "order": "The Order of Perfection", - "resources": ["Coal", "Hartwood", "Ironwood", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.2529, -22.12] - }, - "properties": { - "name": "Motmuenkus", - "realm_idx": 3429, - "order": "The Order of Power", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.3785, 29.493] - }, - "properties": { - "name": "Kemsemnun", - "realm_idx": 3430, - "order": "The Order of Anger", - "resources": ["Stone", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.6471, 32.98] - }, - "properties": { - "name": "\u00c4k\u00e4sn\u00e4k", - "realm_idx": 3431, - "order": "The Order of Skill", - "resources": ["Copper", "Stone", "Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.5471, -21.72] - }, - "properties": { - "name": "Idilb", - "realm_idx": 3432, - "order": "The Order of Power", - "resources": ["Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.0471, 50.88] - }, - "properties": { - "name": "Wuchukkoh", - "realm_idx": 3433, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.18, 27.5003] - }, - "properties": { - "name": "Hamit", - "realm_idx": 3434, - "order": "The Order of Fury", - "resources": ["Ironwood", "Gold", "Cold Iron", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.18, 14.3003] - }, - "properties": { - "name": "Pankun", - "realm_idx": 3435, - "order": "The Order of Detection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.7471, -8.12] - }, - "properties": { - "name": "Hahilhil", - "realm_idx": 3436, - "order": "The Order of Power", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2801, -51.2996] - }, - "properties": { - "name": "Sliklilskin", - "realm_idx": 3437, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.98, -17.9997] - }, - "properties": { - "name": "Lanapo", - "realm_idx": 3438, - "order": "The Order of Detection", - "resources": ["Silver", "Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.1722, -52.8396] - }, - "properties": { - "name": "Ilp\u00e1rm", - "realm_idx": 3439, - "order": "The Order of the Fox", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.7801, 1.7004] - }, - "properties": { - "name": "\u0160ujgujgsij", - "realm_idx": 3440, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.5471, 50.68] - }, - "properties": { - "name": "Om\u00e4nkong\u00efm", - "realm_idx": 3441, - "order": "The Order of Skill", - "resources": ["Gold", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.78, 28.2003] - }, - "properties": { - "name": "Sumummun", - "realm_idx": 3442, - "order": "The Order of Reflection", - "resources": ["Hartwood", "Deep Crystal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.0529, 10.38] - }, - "properties": { - "name": "Sulimschlesu", - "realm_idx": 3443, - "order": "The Order of Vitriol", - "resources": ["Coal", "Twilight Quartz", "Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.5301, 12.1169] - }, - "properties": { - "name": "Kunten", - "realm_idx": 3444, - "order": "The Order of Protection", - "resources": ["Silver", "Wood", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.9471, 46.18] - }, - "properties": { - "name": "Uroruk", - "realm_idx": 3445, - "order": "The Order of Skill", - "resources": ["Coal", "Gold", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.1529, 49.38] - }, - "properties": { - "name": "Pemlak", - "realm_idx": 3446, - "order": "The Order of Fury", - "resources": ["Coal", "Stone", "Obsidian", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.6471, -31.72] - }, - "properties": { - "name": "Genkinkindin", - "realm_idx": 3447, - "order": "The Order of Giants", - "resources": ["Wood", "Cold Iron", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.1471, -41.02] - }, - "properties": { - "name": "Pam Mamseul", - "realm_idx": 3448, - "order": "The Order of Giants", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.2793, 32.298] - }, - "properties": { - "name": "Sikisesiki", - "realm_idx": 3449, - "order": "The Order of Anger", - "resources": ["Wood", "Stone", "Obsidian", "Ruby", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.5471, 24.38] - }, - "properties": { - "name": "Tego\u0161\u00fago", - "realm_idx": 3450, - "order": "The Order of Skill", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.88, -51.9996] - }, - "properties": { - "name": "Malhulhulur", - "realm_idx": 3451, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Deep Crystal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.6471, 29.78] - }, - "properties": { - "name": "Qingsug", - "realm_idx": 3452, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.1471, -43.92] - }, - "properties": { - "name": "Nitlat", - "realm_idx": 3453, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.3471, -50.42] - }, - "properties": { - "name": "Dogege", - "realm_idx": 3454, - "order": "The Order of Giants", - "resources": ["Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.08, -49.6997] - }, - "properties": { - "name": "n\u00e9m Namt\u00edn", - "realm_idx": 3455, - "order": "The Order of the Fox", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.3158, -35.718] - }, - "properties": { - "name": "Terenzemlum", - "realm_idx": 3456, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.1801, -15.5996] - }, - "properties": { - "name": "Chitk\u00e4b", - "realm_idx": 3457, - "order": "The Order of Rage", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.7529, -40.02] - }, - "properties": { - "name": "Neknoklek", - "realm_idx": 3458, - "order": "The Order of Power", - "resources": ["Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.0471, 38.08] - }, - "properties": { - "name": "Hehet", - "realm_idx": 3459, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Ruby", "Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.7471, 29.68] - }, - "properties": { - "name": "Unipil", - "realm_idx": 3460, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Cold Iron", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.3471, 20.88] - }, - "properties": { - "name": "Oz\u00efzed", - "realm_idx": 3461, - "order": "The Order of Skill", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.98, -11.8997] - }, - "properties": { - "name": "Ekilmsok", - "realm_idx": 3462, - "order": "The Order of Detection", - "resources": ["Silver", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.1529, 17.48] - }, - "properties": { - "name": "Schuta", - "realm_idx": 3463, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Silver", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.2471, 26.48] - }, - "properties": { - "name": "Noyeypmoy", - "realm_idx": 3464, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Hartwood", "Copper", "Ethereal Silica", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.6529, -32.52] - }, - "properties": { - "name": "Ub-Memretmub", - "realm_idx": 3465, - "order": "The Order of Power", - "resources": ["Hartwood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.5529, 47.88] - }, - "properties": { - "name": "Chkatdokgu", - "realm_idx": 3466, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.7746, 45.0746] - }, - "properties": { - "name": "Smulutsmu", - "realm_idx": 3467, - "order": "The Order of Fury", - "resources": ["Wood", "Deep Crystal", "Coal", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.9304, -22.4886] - }, - "properties": { - "name": "Iwpuw", - "realm_idx": 3468, - "order": "The Order of Protection", - "resources": ["Obsidian", "Diamonds", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.4471, -43.12] - }, - "properties": { - "name": "Nuinloen", - "realm_idx": 3469, - "order": "The Order of Giants", - "resources": ["Coal", "Deep Crystal", "Gold", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.6471, 0.18] - }, - "properties": { - "name": "Yim-Kem", - "realm_idx": 3470, - "order": "The Order of Brilliance", - "resources": ["Hartwood", "Copper", "Silver", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.1529, 9.68] - }, - "properties": { - "name": "Sassikkais", - "realm_idx": 3471, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.7471, 9.28] - }, - "properties": { - "name": "Mas us Kok", - "realm_idx": 3472, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Stone", "Hartwood", "Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.8841, -18.6583] - }, - "properties": { - "name": "Winglwiq", - "realm_idx": 3473, - "order": "The Order of Protection", - "resources": [ - "True Ice", - "Cold Iron", - "Coal", - "Stone", - "Gold", - "Wood", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.08, -19.9997] - }, - "properties": { - "name": "Emokomus", - "realm_idx": 3474, - "order": "The Order of Detection", - "resources": ["Silver", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.78, -46.6997] - }, - "properties": { - "name": "\u00c9zismozhsoz", - "realm_idx": 3475, - "order": "The Order of the Fox", - "resources": ["Cold Iron", "Hartwood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.9066, 37.7335] - }, - "properties": { - "name": "Nelngas", - "realm_idx": 3476, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Coal", "Hartwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.8801, -32.7996] - }, - "properties": { - "name": "Kiwneh", - "realm_idx": 3477, - "order": "The Order of the Twins", - "resources": ["Stone", "Coal", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.147, 1.98] - }, - "properties": { - "name": "Olm Sorn", - "realm_idx": 3478, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.2471, -32.32] - }, - "properties": { - "name": "bu Pichbi", - "realm_idx": 3479, - "order": "The Order of Giants", - "resources": ["Silver", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.7529, -42.02] - }, - "properties": { - "name": "Kussaksik", - "realm_idx": 3480, - "order": "The Order of Power", - "resources": ["Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.48, -31.1997] - }, - "properties": { - "name": "lol Ek\u00fal\u00falne", - "realm_idx": 3481, - "order": "The Order of Detection", - "resources": ["Copper", "Wood", "Obsidian", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.9471, -33.72] - }, - "properties": { - "name": "Skohpipkuk", - "realm_idx": 3482, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.3529, 6.58] - }, - "properties": { - "name": "Ulstchaltch", - "realm_idx": 3483, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.8471, 32.98] - }, - "properties": { - "name": "Kong u Tino", - "realm_idx": 3484, - "order": "The Order of Titans", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.8471, 15.78] - }, - "properties": { - "name": "Mozodudotayo", - "realm_idx": 3485, - "order": "The Order of Brilliance", - "resources": ["Wood", "Silver", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-131.48, -6.0997] - }, - "properties": { - "name": "Gekqa ngu Qa", - "realm_idx": 3486, - "order": "The Order of Detection", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.98, 17.0003] - }, - "properties": { - "name": "W\u00e2sw\u00e2s", - "realm_idx": 3487, - "order": "The Order of Detection", - "resources": ["Coal", "Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.3801, 40.5004] - }, - "properties": { - "name": "Unun \u00d3i", - "realm_idx": 3488, - "order": "The Order of Anger", - "resources": ["Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.7168, 38.3203] - }, - "properties": { - "name": "Yinsin", - "realm_idx": 3489, - "order": "The Order of Anger", - "resources": ["Silver", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.8801, -26.4996] - }, - "properties": { - "name": "Meopnanliel", - "realm_idx": 3490, - "order": "The Order of the Twins", - "resources": ["Stone", "Cold Iron", "Gold", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.4471, -26.32] - }, - "properties": { - "name": "Alpol", - "realm_idx": 3491, - "order": "The Order of Power", - "resources": ["Ironwood", "Cold Iron", "Silver", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.8471, 38.98] - }, - "properties": { - "name": "Osototot", - "realm_idx": 3492, - "order": "The Order of Skill", - "resources": ["Gold", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.9939, -19.0339] - }, - "properties": { - "name": "Qungqung", - "realm_idx": 3493, - "order": "The Order of Protection", - "resources": ["Wood", "Obsidian", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.08, -51.2996] - }, - "properties": { - "name": "\u00edy-\u00c1dab", - "realm_idx": 3494, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.8471, 29.08] - }, - "properties": { - "name": "Zhiikebii", - "realm_idx": 3495, - "order": "The Order of Skill", - "resources": ["Ironwood", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.7096, -26.0638] - }, - "properties": { - "name": "Mukuh Pyk", - "realm_idx": 3496, - "order": "The Order of Perfection", - "resources": ["Alchemical Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.8302, 11.9169] - }, - "properties": { - "name": "Musmus", - "realm_idx": 3497, - "order": "The Order of Protection", - "resources": ["Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.2801, -38.4996] - }, - "properties": { - "name": "Skutskut", - "realm_idx": 3498, - "order": "The Order of the Twins", - "resources": ["Gold", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.28, -19.4997] - }, - "properties": { - "name": "kum Chammibu", - "realm_idx": 3499, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.0471, 42.48] - }, - "properties": { - "name": "Kumgus", - "realm_idx": 3500, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Diamonds", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.3801, 22.9004] - }, - "properties": { - "name": "Nun nik Nin", - "realm_idx": 3501, - "order": "The Order of Rage", - "resources": ["Copper", "Stone", "Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.5471, -28.42] - }, - "properties": { - "name": "Tonam", - "realm_idx": 3502, - "order": "The Order of Giants", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.6471, -8.72] - }, - "properties": { - "name": "Troch", - "realm_idx": 3503, - "order": "The Order of Giants", - "resources": ["Stone", "Gold", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.1529, 4.98] - }, - "properties": { - "name": "Kalqkalq Ar", - "realm_idx": 3504, - "order": "The Order of Titans", - "resources": ["Obsidian", "Ironwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.2529, 5.88] - }, - "properties": { - "name": "So\u00efsniednuk", - "realm_idx": 3505, - "order": "The Order of Power", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.1529, 49.48] - }, - "properties": { - "name": "Tjunmunbun", - "realm_idx": 3506, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.1529, 5.68] - }, - "properties": { - "name": "Dundunma\u0161", - "realm_idx": 3507, - "order": "The Order of Titans", - "resources": [ - "Stone", - "Ironwood", - "Obsidian", - "Hartwood", - "Silver", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.7471, -15.02] - }, - "properties": { - "name": "lis Uiiti", - "realm_idx": 3508, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Silver", "Gold", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.0801, -56.3996] - }, - "properties": { - "name": "Ulusokus", - "realm_idx": 3509, - "order": "The Order of the Twins", - "resources": ["Coal", "Sapphire", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.3471, 3.88] - }, - "properties": { - "name": "Krektehhet", - "realm_idx": 3510, - "order": "The Order of Titans", - "resources": ["Ironwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.3779, 30.8488] - }, - "properties": { - "name": "Njiklitnjik", - "realm_idx": 3511, - "order": "The Order of Anger", - "resources": ["Coal", "Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.2471, 30.68] - }, - "properties": { - "name": "Gas Ni", - "realm_idx": 3512, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-27.6529, 25.88] - }, - "properties": { - "name": "Pumpun", - "realm_idx": 3513, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.1471, 38.18] - }, - "properties": { - "name": "Sboslik", - "realm_idx": 3514, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Obsidian", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.8801, -48.2996] - }, - "properties": { - "name": "Nopwopnop", - "realm_idx": 3515, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.68, -7.2997] - }, - "properties": { - "name": "Schjot", - "realm_idx": 3516, - "order": "The Order of Reflection", - "resources": [ - "Hartwood", - "Silver", - "Wood", - "Stone", - "Obsidian", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.3471, -15.42] - }, - "properties": { - "name": "Unjandimzim", - "realm_idx": 3517, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.9801, 10.3004] - }, - "properties": { - "name": "Lulpap", - "realm_idx": 3518, - "order": "The Order of Rage", - "resources": ["Ironwood", "Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.2529, 22.78] - }, - "properties": { - "name": "\u00dct\u00fcgak", - "realm_idx": 3519, - "order": "The Order of Vitriol", - "resources": ["Silver", "Ethereal Silica", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.1384, -20.4319] - }, - "properties": { - "name": "Komman", - "realm_idx": 3520, - "order": "The Order of Perfection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.1399, -22.9142] - }, - "properties": { - "name": "Ipkek", - "realm_idx": 3521, - "order": "The Order of Protection", - "resources": [ - "Ethereal Silica", - "Ironwood", - "Copper", - "Obsidian", - "Coal", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.68, 30.4003] - }, - "properties": { - "name": "Ingung\u00e1pung", - "realm_idx": 3522, - "order": "The Order of Reflection", - "resources": ["Stone", "Obsidian", "Copper", "Ruby", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.3471, -41.12] - }, - "properties": { - "name": "Ponnom", - "realm_idx": 3523, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Silver", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.5527, 50.0801] - }, - "properties": { - "name": "Jiz Maz", - "realm_idx": 3524, - "order": "The Order of the Twins", - "resources": ["Stone", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.2805, -6.3355] - }, - "properties": { - "name": "Tutumedu", - "realm_idx": 3525, - "order": "The Order of Rage", - "resources": ["Stone", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.2586, 26.8317] - }, - "properties": { - "name": "\u2018unghing\u2018ung", - "realm_idx": 3526, - "order": "The Order of Anger", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.2471, 41.28] - }, - "properties": { - "name": "Tatmin", - "realm_idx": 3527, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.0801, -20.3996] - }, - "properties": { - "name": "Lolonkomkom", - "realm_idx": 3528, - "order": "The Order of the Twins", - "resources": ["Wood", "Deep Crystal", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.38, 24.2003] - }, - "properties": { - "name": "Pi\u2018oko", - "realm_idx": 3529, - "order": "The Order of Fury", - "resources": ["Stone", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.7471, 15.18] - }, - "properties": { - "name": "Sotsyikyes", - "realm_idx": 3530, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.58, -54.7996] - }, - "properties": { - "name": "Uamokun", - "realm_idx": 3531, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.157, 47.6957] - }, - "properties": { - "name": "Unpumum", - "realm_idx": 3532, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.3471, 14.38] - }, - "properties": { - "name": "Tidshazliug", - "realm_idx": 3533, - "order": "The Order of Brilliance", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.6529, 15.08] - }, - "properties": { - "name": "Sunpuam", - "realm_idx": 3534, - "order": "The Order of Vitriol", - "resources": ["Wood", "Gold", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.5801, -51.6996] - }, - "properties": { - "name": "P\u00f3s\u00f3s", - "realm_idx": 3535, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.48, 14.2003] - }, - "properties": { - "name": "Delnel", - "realm_idx": 3536, - "order": "The Order of Detection", - "resources": ["Coal", "Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.4529, -4.72] - }, - "properties": { - "name": "Pidpid", - "realm_idx": 3537, - "order": "The Order of Power", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.8471, 54.98] - }, - "properties": { - "name": "Komdommindon", - "realm_idx": 3538, - "order": "The Order of Enlightenment", - "resources": ["Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.5801, 10.1004] - }, - "properties": { - "name": "Liwmlehlak", - "realm_idx": 3539, - "order": "The Order of Rage", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.38, -41.6996] - }, - "properties": { - "name": "Sk\u00f4ll\u00e2slo", - "realm_idx": 3540, - "order": "The Order of the Fox", - "resources": ["Coal", "Stone", "Copper", "Wood", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.3471, -19.62] - }, - "properties": { - "name": "Leyghil", - "realm_idx": 3541, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.0586, 39.9049] - }, - "properties": { - "name": "Mummon", - "realm_idx": 3542, - "order": "The Order of Anger", - "resources": ["Wood", "Obsidian", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.18, -0.7997] - }, - "properties": { - "name": "Mus Lippip", - "realm_idx": 3543, - "order": "The Order of Detection", - "resources": ["Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.0527, 51.4801] - }, - "properties": { - "name": "Shikishdada", - "realm_idx": 3544, - "order": "The Order of the Twins", - "resources": ["Copper", "Coal", "Wood", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.8801, 7.6004] - }, - "properties": { - "name": "Rueg Gail", - "realm_idx": 3545, - "order": "The Order of Rage", - "resources": ["Wood", "Coal", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.4565, -9.8544] - }, - "properties": { - "name": "D\u00ednd\u00edsd\u00edn\u00e1d", - "realm_idx": 3546, - "order": "The Order of Perfection", - "resources": ["Ruby", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.1529, 7.28] - }, - "properties": { - "name": "Soenkakpit", - "realm_idx": 3547, - "order": "The Order of Titans", - "resources": ["Wood", "Obsidian", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.7471, -15.72] - }, - "properties": { - "name": "Osomos", - "realm_idx": 3548, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.9801, -52.3996] - }, - "properties": { - "name": "Kilnupimlik", - "realm_idx": 3549, - "order": "The Order of the Twins", - "resources": ["Stone", "Silver", "Ironwood", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.0471, 57.18] - }, - "properties": { - "name": "Isimos\u00fah", - "realm_idx": 3550, - "order": "The Order of Titans", - "resources": ["Stone", "Coal", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.48, -51.9996] - }, - "properties": { - "name": "Muheha", - "realm_idx": 3551, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.1065, -4.7069] - }, - "properties": { - "name": "Ruldilsulb", - "realm_idx": 3552, - "order": "The Order of Reflection", - "resources": ["Hartwood", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.68, -6.2997] - }, - "properties": { - "name": "N\u00f3pninn\u00e1nnel", - "realm_idx": 3553, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.8529, 19.18] - }, - "properties": { - "name": "Tanuluasoma", - "realm_idx": 3554, - "order": "The Order of Vitriol", - "resources": ["Ruby", "Wood", "Coal", "Obsidian", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.2471, -14.32] - }, - "properties": { - "name": "Puyfzhoyu", - "realm_idx": 3555, - "order": "The Order of Giants", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.88, -56.9996] - }, - "properties": { - "name": "Pultilnul", - "realm_idx": 3556, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood", "Coal", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.9471, -36.32] - }, - "properties": { - "name": "Pem Es", - "realm_idx": 3557, - "order": "The Order of Giants", - "resources": ["Wood", "Silver", "Copper", "Ironwood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.88, 27.5003] - }, - "properties": { - "name": "Gumtud", - "realm_idx": 3558, - "order": "The Order of Reflection", - "resources": ["Gold", "Wood", "Copper", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.5529, 10.48] - }, - "properties": { - "name": "Uln\u00e2lp\u00e2lsn\u00e2l", - "realm_idx": 3559, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.2471, 40.38] - }, - "properties": { - "name": "Suplaalpis", - "realm_idx": 3560, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.1801, 7.3004] - }, - "properties": { - "name": "Negges-Gous", - "realm_idx": 3561, - "order": "The Order of Rage", - "resources": ["Ironwood", "Copper", "Stone", "Silver", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.88, -43.3997] - }, - "properties": { - "name": "Ywuwuj\u00e2k", - "realm_idx": 3562, - "order": "The Order of the Fox", - "resources": ["Gold", "Obsidian", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.5471, 15.48] - }, - "properties": { - "name": "Hum\u2018\u00ednghan", - "realm_idx": 3563, - "order": "The Order of Titans", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.3753, -14.9637] - }, - "properties": { - "name": "Makmik", - "realm_idx": 3564, - "order": "The Order of Rage", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.1471, 6.28] - }, - "properties": { - "name": "Rirbirsnur", - "realm_idx": 3565, - "order": "The Order of Brilliance", - "resources": ["Coal", "Copper", "Wood", "Alchemical Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.3529, 46.58] - }, - "properties": { - "name": "Qoq Orqorq", - "realm_idx": 3566, - "order": "The Order of Titans", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.4596, -20.8575] - }, - "properties": { - "name": "Asrushasas", - "realm_idx": 3567, - "order": "The Order of Perfection", - "resources": ["Coal", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.8436, 9.3457] - }, - "properties": { - "name": "\u00c1zhmuzhos", - "realm_idx": 3568, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.0471, 20.38] - }, - "properties": { - "name": "\u00e2p Idykidyd", - "realm_idx": 3569, - "order": "The Order of Brilliance", - "resources": ["Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.7471, 54.98] - }, - "properties": { - "name": "Twgsas", - "realm_idx": 3570, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.3529, 11.28] - }, - "properties": { - "name": "Snuuzmashozh", - "realm_idx": 3571, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-47.1529, 54.78] - }, - "properties": { - "name": "Kungmumpo", - "realm_idx": 3572, - "order": "The Order of Fury", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.1529, 46.98] - }, - "properties": { - "name": "Mitpum", - "realm_idx": 3573, - "order": "The Order of Fury", - "resources": [ - "Coal", - "Cold Iron", - "Wood", - "Copper", - "Stone", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.3471, 17.78] - }, - "properties": { - "name": "Chadbech", - "realm_idx": 3574, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.6471, 29.18] - }, - "properties": { - "name": "Tost\u00edp", - "realm_idx": 3575, - "order": "The Order of Skill", - "resources": ["Obsidian", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.7471, 19.28] - }, - "properties": { - "name": "Uryerderd", - "realm_idx": 3576, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.38, 1.0003] - }, - "properties": { - "name": "Limkaptussis", - "realm_idx": 3577, - "order": "The Order of Detection", - "resources": ["Copper", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.6471, 3.48] - }, - "properties": { - "name": "wil Yuvkw\u00edl", - "realm_idx": 3578, - "order": "The Order of Power", - "resources": ["Hartwood", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.8471, 53.38] - }, - "properties": { - "name": "Nalhaltup", - "realm_idx": 3579, - "order": "The Order of Enlightenment", - "resources": [ - "Diamonds", - "Obsidian", - "Hartwood", - "Ironwood", - "Coal", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.18, 0.5003] - }, - "properties": { - "name": "Narsturn", - "realm_idx": 3580, - "order": "The Order of Detection", - "resources": ["Copper", "Obsidian", "Sapphire", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.5929, 57.1538] - }, - "properties": { - "name": "Ononun-\u00c9mon", - "realm_idx": 3581, - "order": "The Order of Fury", - "resources": ["Silver", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.7801, 26.7004] - }, - "properties": { - "name": "Rubkex", - "realm_idx": 3582, - "order": "The Order of Rage", - "resources": [ - "Cold Iron", - "Coal", - "Diamonds", - "Silver", - "Obsidian", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.6801, 18.4004] - }, - "properties": { - "name": "Mumuka", - "realm_idx": 3583, - "order": "The Order of Rage", - "resources": ["Cold Iron", "Stone", "Copper", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.2533, -18.5566] - }, - "properties": { - "name": "Anotuneh", - "realm_idx": 3584, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.38, -50.8996] - }, - "properties": { - "name": "Ukusol\u00fakunun", - "realm_idx": 3585, - "order": "The Order of the Fox", - "resources": ["Coal", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.8173, -26.5358] - }, - "properties": { - "name": "Kokbosnos", - "realm_idx": 3586, - "order": "The Order of Protection", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-47.116, 53.1553] - }, - "properties": { - "name": "Limlaamlimun", - "realm_idx": 3587, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.4529, -22.92] - }, - "properties": { - "name": "Slesfnol", - "realm_idx": 3588, - "order": "The Order of Power", - "resources": ["Stone", "Copper", "Wood", "Coal", "Ruby", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.58, -58.9996] - }, - "properties": { - "name": "So\u017ekosspu\u017e", - "realm_idx": 3589, - "order": "The Order of the Fox", - "resources": ["Coal", "Ruby", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.4471, 34.68] - }, - "properties": { - "name": "Geeshmiimdag", - "realm_idx": 3590, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.2801, 10.1004] - }, - "properties": { - "name": "Ing\u00fcgon", - "realm_idx": 3591, - "order": "The Order of Rage", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.5027, 12.8881] - }, - "properties": { - "name": "Koschvesch", - "realm_idx": 3592, - "order": "The Order of Fury", - "resources": ["Obsidian", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.9801, -24.2996] - }, - "properties": { - "name": "Xmoktusxpik", - "realm_idx": 3593, - "order": "The Order of the Twins", - "resources": ["Coal", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.78, 0.5003] - }, - "properties": { - "name": "Lukkam", - "realm_idx": 3594, - "order": "The Order of Detection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.28, -51.4996] - }, - "properties": { - "name": "Gikwijt", - "realm_idx": 3595, - "order": "The Order of the Fox", - "resources": ["Wood", "Silver", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.0471, -7.02] - }, - "properties": { - "name": "T\u00edspasmuss\u00e1l", - "realm_idx": 3596, - "order": "The Order of Brilliance", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.2801, -36.1996] - }, - "properties": { - "name": "Luten Nonki", - "realm_idx": 3597, - "order": "The Order of the Twins", - "resources": ["Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.3471, -16.12] - }, - "properties": { - "name": "Mentannlon", - "realm_idx": 3598, - "order": "The Order of Giants", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.3471, 31.48] - }, - "properties": { - "name": "Tuusnuuuush", - "realm_idx": 3599, - "order": "The Order of Enlightenment", - "resources": ["Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.2471, -22.72] - }, - "properties": { - "name": "ho-Hepot", - "realm_idx": 3600, - "order": "The Order of Giants", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.7529, -21.62] - }, - "properties": { - "name": "Skuhputskut", - "realm_idx": 3601, - "order": "The Order of Power", - "resources": ["Wood", "Diamonds", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.0471, -0.02] - }, - "properties": { - "name": "Punpun", - "realm_idx": 3602, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.5801, 26.6004] - }, - "properties": { - "name": "Tewoy Tiwuyt", - "realm_idx": 3603, - "order": "The Order of Rage", - "resources": ["Cold Iron", "Mithral", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.6529, 2.08] - }, - "properties": { - "name": "Klosmos", - "realm_idx": 3604, - "order": "The Order of Vitriol", - "resources": ["Stone", "Ironwood", "Obsidian", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.0471, 38.38] - }, - "properties": { - "name": "Kotumu", - "realm_idx": 3605, - "order": "The Order of Skill", - "resources": ["Ironwood", "Gold", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.0471, 34.08] - }, - "properties": { - "name": "Yiyagunulinu", - "realm_idx": 3606, - "order": "The Order of Titans", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.18, -1.8997] - }, - "properties": { - "name": "Shisskuk", - "realm_idx": 3607, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Copper", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.6471, 28.38] - }, - "properties": { - "name": "Silsil Karn", - "realm_idx": 3608, - "order": "The Order of Skill", - "resources": ["Coal", "Copper", "Ethereal Silica", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.18, -17.6997] - }, - "properties": { - "name": "Muzhpuzhku", - "realm_idx": 3609, - "order": "The Order of Reflection", - "resources": ["Ethereal Silica", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.58, 32.3003] - }, - "properties": { - "name": "Tlekmok", - "realm_idx": 3610, - "order": "The Order of Fury", - "resources": ["Coal", "Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.8471, 6.08] - }, - "properties": { - "name": "Wikhwknek", - "realm_idx": 3611, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.0801, 18.1004] - }, - "properties": { - "name": "Pomnumpim", - "realm_idx": 3612, - "order": "The Order of Rage", - "resources": ["Copper", "Coal", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.9471, -4.52] - }, - "properties": { - "name": "Jubbukqi\u00e1m", - "realm_idx": 3613, - "order": "The Order of Power", - "resources": ["Ethereal Silica", "Silver", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.4801, -22.3996] - }, - "properties": { - "name": "Sipkurmkurm", - "realm_idx": 3614, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.88, 37.9003] - }, - "properties": { - "name": "Liapie", - "realm_idx": 3615, - "order": "The Order of Fury", - "resources": ["Stone", "Copper", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.0702, -28.6942] - }, - "properties": { - "name": "Shalshgesheg", - "realm_idx": 3616, - "order": "The Order of Reflection", - "resources": ["Cold Iron", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.1471, -13.52] - }, - "properties": { - "name": "Luntusruklun", - "realm_idx": 3617, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.8801, -22.4996] - }, - "properties": { - "name": "E\u2018emiwem", - "realm_idx": 3618, - "order": "The Order of the Twins", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.1801, -14.3996] - }, - "properties": { - "name": "I\u2018omi\u2018il", - "realm_idx": 3619, - "order": "The Order of Rage", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-27.0529, 28.68] - }, - "properties": { - "name": "Tujtaerjoer", - "realm_idx": 3620, - "order": "The Order of Vitriol", - "resources": ["Sapphire", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.7801, 37.4004] - }, - "properties": { - "name": "ip U\u2018imimok", - "realm_idx": 3621, - "order": "The Order of Anger", - "resources": ["Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.0801, 26.1004] - }, - "properties": { - "name": "Kiu-kei-Noip", - "realm_idx": 3622, - "order": "The Order of Rage", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.4471, 6.28] - }, - "properties": { - "name": "L\u00edp\u00edpimp\u00edh\u00e9n", - "realm_idx": 3623, - "order": "The Order of Brilliance", - "resources": ["Stone", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [107.9101, -5.2516] - }, - "properties": { - "name": "Ikiklopokik", - "realm_idx": 3624, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.9529, 25.58] - }, - "properties": { - "name": "Panpunpan", - "realm_idx": 3625, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Gold", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.7471, -26.32] - }, - "properties": { - "name": "Ekekatek", - "realm_idx": 3626, - "order": "The Order of Giants", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-78.2801, 43.8004] - }, - "properties": { - "name": "Fmisimu", - "realm_idx": 3627, - "order": "The Order of Anger", - "resources": ["Stone", "Wood", "Coal", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.8529, 29.48] - }, - "properties": { - "name": "Mutmuthukhuk", - "realm_idx": 3628, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.1471, -34.12] - }, - "properties": { - "name": "Onozob", - "realm_idx": 3629, - "order": "The Order of Giants", - "resources": ["Ironwood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.0278, -33.9692] - }, - "properties": { - "name": "Munmjin", - "realm_idx": 3630, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.18, -52.8996] - }, - "properties": { - "name": "\u017d\u00e4a\u017e\u017e\u00e4i\u010d", - "realm_idx": 3631, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Coal", "Copper", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.3408, 42.0166] - }, - "properties": { - "name": "Palwul\u2018ulp", - "realm_idx": 3632, - "order": "The Order of Anger", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.6471, 14.88] - }, - "properties": { - "name": "Kukukusu", - "realm_idx": 3633, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.8471, -36.32] - }, - "properties": { - "name": "Qajoraq", - "realm_idx": 3634, - "order": "The Order of Giants", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.7624, 12.2569] - }, - "properties": { - "name": "Umnun", - "realm_idx": 3635, - "order": "The Order of Protection", - "resources": ["Silver", "Ruby", "Copper", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-77.7801, 44.3004] - }, - "properties": { - "name": "Ek\u00e1p\u00e1p", - "realm_idx": 3636, - "order": "The Order of Anger", - "resources": ["Wood", "Ironwood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.2471, 11.58] - }, - "properties": { - "name": "\u00dar\u00fag\u00fag", - "realm_idx": 3637, - "order": "The Order of Brilliance", - "resources": ["Coal", "Copper", "Silver", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.5529, -6.52] - }, - "properties": { - "name": "Molosompemos", - "realm_idx": 3638, - "order": "The Order of the Fox", - "resources": ["Stone", "Cold Iron", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.6801, 46.2004] - }, - "properties": { - "name": "\u00c2kamikik", - "realm_idx": 3639, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.6529, -5.92] - }, - "properties": { - "name": "T\u00f3bgugya", - "realm_idx": 3640, - "order": "The Order of the Fox", - "resources": ["Stone", "Silver", "Hartwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.9136, 51.1999] - }, - "properties": { - "name": "Hompon", - "realm_idx": 3641, - "order": "The Order of Fury", - "resources": ["Coal", "True Ice", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.0529, -21.82] - }, - "properties": { - "name": "Tuluso", - "realm_idx": 3642, - "order": "The Order of Power", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.7471, -15.72] - }, - "properties": { - "name": "Shnaasapsap", - "realm_idx": 3643, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.38, 1.3003] - }, - "properties": { - "name": "Kingkimhang", - "realm_idx": 3644, - "order": "The Order of Detection", - "resources": ["Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.3529, 41.98] - }, - "properties": { - "name": "At Ulninat", - "realm_idx": 3645, - "order": "The Order of Titans", - "resources": ["Sapphire", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.0471, 11.78] - }, - "properties": { - "name": "Mwunmwun", - "realm_idx": 3646, - "order": "The Order of Brilliance", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.9471, -35.82] - }, - "properties": { - "name": "Snapkuktat", - "realm_idx": 3647, - "order": "The Order of Power", - "resources": ["Copper", "Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.6471, 32.08] - }, - "properties": { - "name": "Sususugung", - "realm_idx": 3648, - "order": "The Order of Skill", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.3471, 38.28] - }, - "properties": { - "name": "M\u00e1l\u00e1rr\u00e1n", - "realm_idx": 3649, - "order": "The Order of Skill", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.4471, -30.32] - }, - "properties": { - "name": "Ikokik", - "realm_idx": 3650, - "order": "The Order of Power", - "resources": ["Wood", "Silver", "Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.9527, 52.0801] - }, - "properties": { - "name": "Enkankan", - "realm_idx": 3651, - "order": "The Order of the Twins", - "resources": ["Stone", "Cold Iron", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.5801, -41.3996] - }, - "properties": { - "name": "Mininkumnun", - "realm_idx": 3652, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.447, -4.22] - }, - "properties": { - "name": "Tiwtus", - "realm_idx": 3653, - "order": "The Order of Perfection", - "resources": ["Stone", "Ironwood", "Hartwood", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.8471, 10.58] - }, - "properties": { - "name": "Ninukuhikuni", - "realm_idx": 3654, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.1529, 3.08] - }, - "properties": { - "name": "Bomonudugu", - "realm_idx": 3655, - "order": "The Order of Power", - "resources": ["Obsidian", "Ruby", "Cold Iron", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.3003, 10.3102] - }, - "properties": { - "name": "Liengamien", - "realm_idx": 3656, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.4471, 32.68] - }, - "properties": { - "name": "Lelklelk", - "realm_idx": 3657, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.8801, 26.1004] - }, - "properties": { - "name": "Ipommu", - "realm_idx": 3658, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.78, -15.3997] - }, - "properties": { - "name": "Uusunool", - "realm_idx": 3659, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Copper", "Gold", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.68, 8.9003] - }, - "properties": { - "name": "Iwttiytelt", - "realm_idx": 3660, - "order": "The Order of Detection", - "resources": ["Coal", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.5131, 44.9491] - }, - "properties": { - "name": "Monslemsnim", - "realm_idx": 3661, - "order": "The Order of Fury", - "resources": ["Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.0471, -13.82] - }, - "properties": { - "name": "M\u00e1m\u00e1g\u00e1m\u00ed", - "realm_idx": 3662, - "order": "The Order of Power", - "resources": ["Copper", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.0471, -1.52] - }, - "properties": { - "name": "Hwnkamtwn", - "realm_idx": 3663, - "order": "The Order of Giants", - "resources": ["Gold", "Silver", "Stone", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [131.8659, 9.0627] - }, - "properties": { - "name": "Me\u017em\u00fa\u017e", - "realm_idx": 3664, - "order": "The Order of Protection", - "resources": ["Stone", "Obsidian", "Ruby", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.6471, 32.98] - }, - "properties": { - "name": "Sewssewssan", - "realm_idx": 3665, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.38, -8.4997] - }, - "properties": { - "name": "Tuqskatstiv", - "realm_idx": 3666, - "order": "The Order of Detection", - "resources": ["Coal", "Obsidian", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.6529, -29.62] - }, - "properties": { - "name": "Mammutmam", - "realm_idx": 3667, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.9387, 29.8432] - }, - "properties": { - "name": "Y\u00e1rmirghargh", - "realm_idx": 3668, - "order": "The Order of Anger", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.047, 1.68] - }, - "properties": { - "name": "Sraknrasmrek", - "realm_idx": 3669, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.9529, 36.38] - }, - "properties": { - "name": "Kaamuumbin", - "realm_idx": 3670, - "order": "The Order of Titans", - "resources": ["Ignium", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.1471, 19.98] - }, - "properties": { - "name": "Kaaukkaiil", - "realm_idx": 3671, - "order": "The Order of Titans", - "resources": [ - "Stone", - "Coal", - "Silver", - "Ironwood", - "Cold Iron", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.6477, -16.1773] - }, - "properties": { - "name": "Onohop", - "realm_idx": 3672, - "order": "The Order of Protection", - "resources": ["Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.3947, -23.5445] - }, - "properties": { - "name": "Mimak", - "realm_idx": 3673, - "order": "The Order of Protection", - "resources": ["Copper", "Stone", "Obsidian", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.78, 7.0003] - }, - "properties": { - "name": "pi\u00e1n R\u00e9rr\u00e9r", - "realm_idx": 3674, - "order": "The Order of Detection", - "resources": ["Hartwood", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.9076, 41.3049] - }, - "properties": { - "name": "Umopipipek", - "realm_idx": 3675, - "order": "The Order of Anger", - "resources": ["Silver", "Wood", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.08, 33.5003] - }, - "properties": { - "name": "Lusonsus", - "realm_idx": 3676, - "order": "The Order of Reflection", - "resources": ["Gold", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.733, 47.8261] - }, - "properties": { - "name": "Wilyzhulol", - "realm_idx": 3677, - "order": "The Order of Fury", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.8432, 33.0387] - }, - "properties": { - "name": "W\u00edwuna", - "realm_idx": 3678, - "order": "The Order of Anger", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-28.2529, -1.52] - }, - "properties": { - "name": "Pokmupok", - "realm_idx": 3679, - "order": "The Order of Vitriol", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.0529, 3.48] - }, - "properties": { - "name": "\u2018in\u2018anangung", - "realm_idx": 3680, - "order": "The Order of Vitriol", - "resources": ["True Ice", "Stone", "Silver", "Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.8471, -46.12] - }, - "properties": { - "name": "Smusdob", - "realm_idx": 3681, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.8471, -15.42] - }, - "properties": { - "name": "Mosingsing", - "realm_idx": 3682, - "order": "The Order of Power", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.88, -47.4997] - }, - "properties": { - "name": "Sat lun Ret", - "realm_idx": 3683, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-132.98, 0.3003] - }, - "properties": { - "name": "mek Hihkum", - "realm_idx": 3684, - "order": "The Order of Detection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.2471, 2.68] - }, - "properties": { - "name": "Ninnan", - "realm_idx": 3685, - "order": "The Order of Brilliance", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.9471, 42.38] - }, - "properties": { - "name": "Ahikah", - "realm_idx": 3686, - "order": "The Order of Skill", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-21.9529, 29.48] - }, - "properties": { - "name": "Kamsumgen", - "realm_idx": 3687, - "order": "The Order of Vitriol", - "resources": ["Stone", "Copper", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.4471, -17.02] - }, - "properties": { - "name": "Suksassus", - "realm_idx": 3688, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Gold", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [27.3471, -39.02] - }, - "properties": { - "name": "Ikasmekon", - "realm_idx": 3689, - "order": "The Order of Giants", - "resources": ["Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-28.7529, 28.68] - }, - "properties": { - "name": "Luh\u00edn\u00edp\u00ed", - "realm_idx": 3690, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Ironwood", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.7529, 23.68] - }, - "properties": { - "name": "Irlert", - "realm_idx": 3691, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.6043, 27.4746] - }, - "properties": { - "name": "Biwrich", - "realm_idx": 3692, - "order": "The Order of Rage", - "resources": ["Twilight Quartz", "Wood", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.5471, 39.58] - }, - "properties": { - "name": "Lansun", - "realm_idx": 3693, - "order": "The Order of Skill", - "resources": ["Wood", "Gold", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.3586, 26.4317] - }, - "properties": { - "name": "Umumunool", - "realm_idx": 3694, - "order": "The Order of Anger", - "resources": ["Wood", "Silver", "Twilight Quartz", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.0581, 26.3586] - }, - "properties": { - "name": "Ahahuhapum", - "realm_idx": 3695, - "order": "The Order of Fury", - "resources": ["Gold", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.5529, 2.28] - }, - "properties": { - "name": "Kengmemhim", - "realm_idx": 3696, - "order": "The Order of Power", - "resources": ["Ethereal Silica", "Copper", "Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.0471, 1.18] - }, - "properties": { - "name": "biuk Tiotio", - "realm_idx": 3697, - "order": "The Order of Brilliance", - "resources": ["Cold Iron", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.78, -38.7997] - }, - "properties": { - "name": "Anhunkun", - "realm_idx": 3698, - "order": "The Order of the Fox", - "resources": ["Coal", "Sapphire", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.0471, -40.42] - }, - "properties": { - "name": "Sp\u00fat\u00fa S\u00fata", - "realm_idx": 3699, - "order": "The Order of Giants", - "resources": ["Silver", "Copper", "Wood", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.5523, -23.773] - }, - "properties": { - "name": "Wukukhatukan", - "realm_idx": 3700, - "order": "The Order of Perfection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.48, -53.7996] - }, - "properties": { - "name": "S\u00e1p\u00edd\u00edp\u00e1", - "realm_idx": 3701, - "order": "The Order of the Fox", - "resources": ["Wood", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.98, -11.0997] - }, - "properties": { - "name": "Ninkingnim", - "realm_idx": 3702, - "order": "The Order of Detection", - "resources": ["Silver", "Hartwood", "Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.9471, -16.92] - }, - "properties": { - "name": "Kuminekuna", - "realm_idx": 3703, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.9456, -5.3503] - }, - "properties": { - "name": "Losloit", - "realm_idx": 3704, - "order": "The Order of Reflection", - "resources": ["Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.7529, 22.48] - }, - "properties": { - "name": "Rekdosbekbek", - "realm_idx": 3705, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.88, -58.5996] - }, - "properties": { - "name": "Gig u A", - "realm_idx": 3706, - "order": "The Order of the Fox", - "resources": ["Silver", "Stone", "Obsidian", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.9471, -8.72] - }, - "properties": { - "name": "Nimlul", - "realm_idx": 3707, - "order": "The Order of Giants", - "resources": ["Ironwood", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.6529, 15.88] - }, - "properties": { - "name": "Oh na Onman", - "realm_idx": 3708, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.6801, 36.3004] - }, - "properties": { - "name": "Mik\u2018raklik", - "realm_idx": 3709, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.8471, 11.18] - }, - "properties": { - "name": "Wimmunhen", - "realm_idx": 3710, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Ethereal Silica", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.58, -25.4997] - }, - "properties": { - "name": "Samnlun", - "realm_idx": 3711, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood", "Stone", "Ironwood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.9879, -13.1379] - }, - "properties": { - "name": "Kikas", - "realm_idx": 3712, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.9471, 53.38] - }, - "properties": { - "name": "Dupaw", - "realm_idx": 3713, - "order": "The Order of Skill", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.1756, 48.6852] - }, - "properties": { - "name": "Soumeit", - "realm_idx": 3714, - "order": "The Order of Anger", - "resources": ["Wood", "Obsidian", "Ironwood", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.4231, 45.7574] - }, - "properties": { - "name": "Paswasp\u00fak", - "realm_idx": 3715, - "order": "The Order of Anger", - "resources": ["Copper", "Deep Crystal", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.3471, -37.32] - }, - "properties": { - "name": "Simnum", - "realm_idx": 3716, - "order": "The Order of Giants", - "resources": ["Hartwood", "Cold Iron", "Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.4529, 7.08] - }, - "properties": { - "name": "lo Bulkey", - "realm_idx": 3717, - "order": "The Order of Titans", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.4801, 28.7004] - }, - "properties": { - "name": "Dotnob", - "realm_idx": 3718, - "order": "The Order of Rage", - "resources": ["Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.9527, 47.3801] - }, - "properties": { - "name": "M\u00efls\u00eflsik", - "realm_idx": 3719, - "order": "The Order of the Twins", - "resources": [ - "Coal", - "Wood", - "Obsidian", - "Ironwood", - "Stone", - "Deep Crystal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.48, -49.1997] - }, - "properties": { - "name": "Ikupep", - "realm_idx": 3720, - "order": "The Order of the Fox", - "resources": [ - "Wood", - "Obsidian", - "Stone", - "Deep Crystal", - "Copper", - "Ironwood", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.7471, 21.58] - }, - "properties": { - "name": "Omih Mim", - "realm_idx": 3721, - "order": "The Order of Skill", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.3529, 14.58] - }, - "properties": { - "name": "Ekipus", - "realm_idx": 3722, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.1801, -21.8996] - }, - "properties": { - "name": "Slulsh\u2018omkin", - "realm_idx": 3723, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.996, -18.107] - }, - "properties": { - "name": "Kigpeqxpis", - "realm_idx": 3724, - "order": "The Order of Perfection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.6471, 52.48] - }, - "properties": { - "name": "Ghuldeghghul", - "realm_idx": 3725, - "order": "The Order of Titans", - "resources": ["Hartwood", "Coal", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.0471, 32.78] - }, - "properties": { - "name": "Klesk\u00fck", - "realm_idx": 3726, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.6801, -32.4996] - }, - "properties": { - "name": "Milsmam", - "realm_idx": 3727, - "order": "The Order of the Twins", - "resources": ["Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [27.5471, 22.48] - }, - "properties": { - "name": "Limmispit", - "realm_idx": 3728, - "order": "The Order of Titans", - "resources": ["Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.0368, 11.6639] - }, - "properties": { - "name": "Po-Tuma", - "realm_idx": 3729, - "order": "The Order of Protection", - "resources": ["Deep Crystal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.7529, 20.08] - }, - "properties": { - "name": "Pubwumizhizh", - "realm_idx": 3730, - "order": "The Order of Vitriol", - "resources": ["Wood", "Cold Iron", "Copper", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.58, -32.0997] - }, - "properties": { - "name": "ud \u00c2wis\u00e2w", - "realm_idx": 3731, - "order": "The Order of the Fox", - "resources": ["Twilight Quartz", "Stone", "Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.1529, 4.38] - }, - "properties": { - "name": "Uutulisak Uk", - "realm_idx": 3732, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper", "Ironwood", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.8471, 22.98] - }, - "properties": { - "name": "Mizhniz", - "realm_idx": 3733, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.1471, -10.42] - }, - "properties": { - "name": "Manipim\u00e1nipu", - "realm_idx": 3734, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.1471, -2.32] - }, - "properties": { - "name": "Litmisis", - "realm_idx": 3735, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-77.5801, 44.7004] - }, - "properties": { - "name": "Sasht\u00edm", - "realm_idx": 3736, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.8471, 2.18] - }, - "properties": { - "name": "Wazhmish", - "realm_idx": 3737, - "order": "The Order of Brilliance", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.1867, 42.7857] - }, - "properties": { - "name": "Polnhalpuh", - "realm_idx": 3738, - "order": "The Order of Anger", - "resources": [ - "Deep Crystal", - "Coal", - "Obsidian", - "Stone", - "Wood", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.0471, 8.88] - }, - "properties": { - "name": "Kookoomami", - "realm_idx": 3739, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Copper", "Wood", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.0471, 44.28] - }, - "properties": { - "name": "T\u00e4st\u00efkikik", - "realm_idx": 3740, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.7403, 10.4603] - }, - "properties": { - "name": "Niantialiu", - "realm_idx": 3741, - "order": "The Order of Protection", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.8407, 52.2647] - }, - "properties": { - "name": "Sdins\u00fansn\u00fan", - "realm_idx": 3742, - "order": "The Order of Fury", - "resources": ["Obsidian", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.8471, -7.92] - }, - "properties": { - "name": "Ivorovor", - "realm_idx": 3743, - "order": "The Order of Power", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.6471, 11.98] - }, - "properties": { - "name": "\u0160o\u0161om\u00fa ne \u0160o", - "realm_idx": 3744, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.7801, 12.7004] - }, - "properties": { - "name": "Mogigi", - "realm_idx": 3745, - "order": "The Order of Rage", - "resources": ["Wood", "Sapphire", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.88, -24.6997] - }, - "properties": { - "name": "K\u00ebt\u00eblt Alt", - "realm_idx": 3746, - "order": "The Order of Detection", - "resources": ["Stone", "Obsidian", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.4471, 13.68] - }, - "properties": { - "name": "Kartakzhax", - "realm_idx": 3747, - "order": "The Order of Protection", - "resources": ["Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.2801, -51.4996] - }, - "properties": { - "name": "Wolwoknaew", - "realm_idx": 3748, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.9219, 39.2068] - }, - "properties": { - "name": "Renn\u00fanten", - "realm_idx": 3749, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.1471, 19.28] - }, - "properties": { - "name": "Gauloazhbao", - "realm_idx": 3750, - "order": "The Order of Skill", - "resources": ["Stone", "Copper", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.8801, 25.5004] - }, - "properties": { - "name": "Penschgenpom", - "realm_idx": 3751, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.18, 13.5003] - }, - "properties": { - "name": "Kuikkui", - "realm_idx": 3752, - "order": "The Order of Fury", - "resources": ["Silver", "Wood", "Stone", "Gold", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [13.0471, 24.48] - }, - "properties": { - "name": "Nekh\u00fcnkimpen", - "realm_idx": 3753, - "order": "The Order of Titans", - "resources": ["Obsidian", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.2879, 56.1813] - }, - "properties": { - "name": "Ussemil-Ses", - "realm_idx": 3754, - "order": "The Order of Fury", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.165, -17.5664] - }, - "properties": { - "name": "Url\u00edlilmnil", - "realm_idx": 3755, - "order": "The Order of Perfection", - "resources": ["Silver", "Gold", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.0471, 17.68] - }, - "properties": { - "name": "\u00c2wr\u00e2n\u00e2w", - "realm_idx": 3756, - "order": "The Order of Skill", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.18, -41.9996] - }, - "properties": { - "name": "Gorborchal", - "realm_idx": 3757, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.6471, 10.88] - }, - "properties": { - "name": "Tettot", - "realm_idx": 3758, - "order": "The Order of Protection", - "resources": ["Coal", "Diamonds", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [101.3884, -11.7809] - }, - "properties": { - "name": "kik \u00c4klik", - "realm_idx": 3759, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.4748, 44.2957] - }, - "properties": { - "name": "Mag-Tu", - "realm_idx": 3760, - "order": "The Order of Anger", - "resources": [ - "Coal", - "Ironwood", - "Dragonhide", - "Stone", - "Obsidian", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.3471, 33.08] - }, - "properties": { - "name": "Noknok", - "realm_idx": 3761, - "order": "The Order of Skill", - "resources": ["Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.3529, -40.22] - }, - "properties": { - "name": "Kur Witwok", - "realm_idx": 3762, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [128.449, 4.4916] - }, - "properties": { - "name": "Moebnuegrua", - "realm_idx": 3763, - "order": "The Order of Protection", - "resources": ["Coal", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.2801, 38.4004] - }, - "properties": { - "name": "Ng\u00ea ra Vum", - "realm_idx": 3764, - "order": "The Order of Anger", - "resources": ["Stone", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.58, 17.9003] - }, - "properties": { - "name": "Tch\u00f3y", - "realm_idx": 3765, - "order": "The Order of Detection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.2529, 0.08] - }, - "properties": { - "name": "Spuksnus", - "realm_idx": 3766, - "order": "The Order of Power", - "resources": ["Silver", "Coal", "Stone", "Wood", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.9801, 46.8004] - }, - "properties": { - "name": "Qan lan Qun", - "realm_idx": 3767, - "order": "The Order of Anger", - "resources": ["Coal", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.0831, 12.4987] - }, - "properties": { - "name": "Kiqyuly", - "realm_idx": 3768, - "order": "The Order of Fury", - "resources": ["Wood", "Silver", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [130.5833, 9.0541] - }, - "properties": { - "name": "Tirini", - "realm_idx": 3769, - "order": "The Order of Protection", - "resources": ["Ironwood", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.7527, 46.0801] - }, - "properties": { - "name": "Orchop", - "realm_idx": 3770, - "order": "The Order of the Twins", - "resources": ["Coal", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.3893, 10.6356] - }, - "properties": { - "name": "Numke", - "realm_idx": 3771, - "order": "The Order of Protection", - "resources": ["Silver", "Deep Crystal", "Twilight Quartz", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-78.4801, -14.6996] - }, - "properties": { - "name": "Tjipsutkl\u00efk", - "realm_idx": 3772, - "order": "The Order of Rage", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.78, -4.9997] - }, - "properties": { - "name": "Op\u00e1w \u00c1k\u00e1w", - "realm_idx": 3773, - "order": "The Order of Detection", - "resources": ["Copper", "Coal", "Ironwood", "Adamantine", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.08, -53.1996] - }, - "properties": { - "name": "Penen", - "realm_idx": 3774, - "order": "The Order of the Fox", - "resources": ["Copper", "Stone", "Ironwood", "True Ice", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.0801, 19.8004] - }, - "properties": { - "name": "Y\u00fasrus", - "realm_idx": 3775, - "order": "The Order of Rage", - "resources": ["Coal", "Stone", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.4471, 10.68] - }, - "properties": { - "name": "Maamxtaang", - "realm_idx": 3776, - "order": "The Order of Protection", - "resources": ["Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.2471, -16.42] - }, - "properties": { - "name": "Mookyog", - "realm_idx": 3777, - "order": "The Order of Power", - "resources": ["Ruby", "Copper", "Stone", "Ironwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.5236, 50.4482] - }, - "properties": { - "name": "Ses\u0161es", - "realm_idx": 3778, - "order": "The Order of Anger", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.2529, 19.58] - }, - "properties": { - "name": "Kokmrukmom", - "realm_idx": 3779, - "order": "The Order of Vitriol", - "resources": ["Wood", "Gold", "Obsidian", "Coal", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.9657, 12.0553] - }, - "properties": { - "name": "S\u017eudfdun", - "realm_idx": 3780, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.6471, -34.82] - }, - "properties": { - "name": "Aletup", - "realm_idx": 3781, - "order": "The Order of Giants", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.7121, 27.8727] - }, - "properties": { - "name": "Rangum", - "realm_idx": 3782, - "order": "The Order of Rage", - "resources": ["Obsidian", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.1343, 9.3674] - }, - "properties": { - "name": "Twldtwld", - "realm_idx": 3783, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.7154, 42.7926] - }, - "properties": { - "name": "Sollolk", - "realm_idx": 3784, - "order": "The Order of Anger", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.78, -58.4996] - }, - "properties": { - "name": "D\u00f3odtoat", - "realm_idx": 3785, - "order": "The Order of the Fox", - "resources": [ - "Wood", - "Silver", - "Cold Iron", - "Obsidian", - "Ironwood", - "Deep Crystal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.2471, 40.28] - }, - "properties": { - "name": "Zi-n\u00e4-Tugtug", - "realm_idx": 3786, - "order": "The Order of Skill", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.78, -8.8997] - }, - "properties": { - "name": "Gutmeg", - "realm_idx": 3787, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.8801, 22.5004] - }, - "properties": { - "name": "\u00c4km\u00fck\u00fck", - "realm_idx": 3788, - "order": "The Order of Rage", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.28, -25.6997] - }, - "properties": { - "name": "pe-Oktukto", - "realm_idx": 3789, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Obsidian", "Cold Iron", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.3529, -24.92] - }, - "properties": { - "name": "Pilnut", - "realm_idx": 3790, - "order": "The Order of Power", - "resources": ["Hartwood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.6471, 30.28] - }, - "properties": { - "name": "Ututlum", - "realm_idx": 3791, - "order": "The Order of Skill", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.0527, 51.2801] - }, - "properties": { - "name": "Mipslunwepow", - "realm_idx": 3792, - "order": "The Order of the Twins", - "resources": ["Copper", "Coal", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.3471, 25.18] - }, - "properties": { - "name": "Upunrurrur", - "realm_idx": 3793, - "order": "The Order of Skill", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.7471, -23.12] - }, - "properties": { - "name": "Doyodo", - "realm_idx": 3794, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.2471, -32.92] - }, - "properties": { - "name": "Epmeme", - "realm_idx": 3795, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.6471, 7.98] - }, - "properties": { - "name": "Muskozm\u00e1z", - "realm_idx": 3796, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.1529, -21.52] - }, - "properties": { - "name": "Pupnel", - "realm_idx": 3797, - "order": "The Order of Power", - "resources": ["Copper", "Diamonds", "Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.7801, 39.0004] - }, - "properties": { - "name": "heng Mung", - "realm_idx": 3798, - "order": "The Order of Anger", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.4471, 17.18] - }, - "properties": { - "name": "Rurob", - "realm_idx": 3799, - "order": "The Order of Skill", - "resources": ["True Ice", "Stone", "Wood", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.6801, -32.5996] - }, - "properties": { - "name": "Tuvuy", - "realm_idx": 3800, - "order": "The Order of the Twins", - "resources": ["Silver", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.0471, 9.58] - }, - "properties": { - "name": "Pulmiltit", - "realm_idx": 3801, - "order": "The Order of Brilliance", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.6529, -11.52] - }, - "properties": { - "name": "Irtpulk", - "realm_idx": 3802, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Coal", "Obsidian", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.1024, 4.8096] - }, - "properties": { - "name": "Im Imoj", - "realm_idx": 3803, - "order": "The Order of Protection", - "resources": ["Coal", "Obsidian", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.0801, -14.5996] - }, - "properties": { - "name": "Malimmokma", - "realm_idx": 3804, - "order": "The Order of Rage", - "resources": ["Coal", "Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.68, -45.5996] - }, - "properties": { - "name": "Slosh Klash", - "realm_idx": 3805, - "order": "The Order of the Fox", - "resources": ["Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.0801, 41.0004] - }, - "properties": { - "name": "t\u00e1n Tentemam", - "realm_idx": 3806, - "order": "The Order of Anger", - "resources": ["Wood", "Hartwood", "Stone", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.5529, 55.88] - }, - "properties": { - "name": "Momtonmo", - "realm_idx": 3807, - "order": "The Order of Fury", - "resources": ["Stone", "Gold", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.18, 12.1003] - }, - "properties": { - "name": "melm-Ek", - "realm_idx": 3808, - "order": "The Order of Detection", - "resources": ["Silver", "Obsidian", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-43.2529, 10.98] - }, - "properties": { - "name": "Iiicho", - "realm_idx": 3809, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.8801, -56.0996] - }, - "properties": { - "name": "Hurwnarw\u2018irk", - "realm_idx": 3810, - "order": "The Order of the Twins", - "resources": ["Ethereal Silica", "Copper", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.3496, 44.1297] - }, - "properties": { - "name": "Sutsag", - "realm_idx": 3811, - "order": "The Order of Anger", - "resources": ["Wood", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.3529, 25.88] - }, - "properties": { - "name": "si Lukok", - "realm_idx": 3812, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.6471, 7.08] - }, - "properties": { - "name": "Tughjubghleq", - "realm_idx": 3813, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.4471, 28.88] - }, - "properties": { - "name": "Ona om Ekouk", - "realm_idx": 3814, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.38, -8.1997] - }, - "properties": { - "name": "Zheb zor M\u00e4n", - "realm_idx": 3815, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone", "Wood", "Gold", "Ruby", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.2471, 26.38] - }, - "properties": { - "name": "W\u00edhah", - "realm_idx": 3816, - "order": "The Order of Vitriol", - "resources": ["Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.7471, 35.28] - }, - "properties": { - "name": "Kukkus", - "realm_idx": 3817, - "order": "The Order of Skill", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.8471, 51.58] - }, - "properties": { - "name": "Nupunuk", - "realm_idx": 3818, - "order": "The Order of Skill", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.5471, 27.98] - }, - "properties": { - "name": "Sunslam", - "realm_idx": 3819, - "order": "The Order of Titans", - "resources": ["Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.5487, 0.6222] - }, - "properties": { - "name": "Eyakemep", - "realm_idx": 3820, - "order": "The Order of Reflection", - "resources": [ - "Obsidian", - "Sapphire", - "Coal", - "Wood", - "Adamantine", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.2471, 53.78] - }, - "properties": { - "name": "Fzhaasesdaa", - "realm_idx": 3821, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.0529, 5.58] - }, - "properties": { - "name": "Olaloselos", - "realm_idx": 3822, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Coal", "Mithral", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.4471, -9.52] - }, - "properties": { - "name": "Epusak", - "realm_idx": 3823, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.5045, -55.3627] - }, - "properties": { - "name": "ulm Puspus", - "realm_idx": 3824, - "order": "The Order of the Twins", - "resources": ["Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.9471, 10.58] - }, - "properties": { - "name": "Swixnixsghak", - "realm_idx": 3825, - "order": "The Order of Brilliance", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.9471, 18.78] - }, - "properties": { - "name": "Dedded Odded", - "realm_idx": 3826, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.9529, -20.92] - }, - "properties": { - "name": "Xgh\u00fcxsyub", - "realm_idx": 3827, - "order": "The Order of Power", - "resources": ["Obsidian", "Silver", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.78, -35.5997] - }, - "properties": { - "name": "Taunsuimmuam", - "realm_idx": 3828, - "order": "The Order of the Fox", - "resources": ["Ruby", "Wood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.28, 19.1003] - }, - "properties": { - "name": "Nertork", - "realm_idx": 3829, - "order": "The Order of Detection", - "resources": [ - "Obsidian", - "Wood", - "Diamonds", - "Cold Iron", - "Stone", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.7471, 19.28] - }, - "properties": { - "name": "Chwmchan", - "realm_idx": 3830, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.8801, -18.9996] - }, - "properties": { - "name": "Etpatuyp Am", - "realm_idx": 3831, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.9175, 45.2098] - }, - "properties": { - "name": "Igazhag", - "realm_idx": 3832, - "order": "The Order of Fury", - "resources": ["Wood", "Coal", "Ironwood", "Stone", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.2529, -33.22] - }, - "properties": { - "name": "Kuk\u2018ihi\u2018", - "realm_idx": 3833, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.3529, -1.72] - }, - "properties": { - "name": "Z\u00e1zh\u00eds\u00e1", - "realm_idx": 3834, - "order": "The Order of Power", - "resources": ["Gold", "Silver", "Copper", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.7529, 21.38] - }, - "properties": { - "name": "Qok Osok", - "realm_idx": 3835, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.8077, 11.7295] - }, - "properties": { - "name": "Mis Suskus", - "realm_idx": 3836, - "order": "The Order of Fury", - "resources": [ - "Deep Crystal", - "Copper", - "Stone", - "Cold Iron", - "Coal", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.6471, -32.72] - }, - "properties": { - "name": "Wixxdez", - "realm_idx": 3837, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.88, -58.0996] - }, - "properties": { - "name": "Kilu Lami", - "realm_idx": 3838, - "order": "The Order of the Fox", - "resources": ["Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.2152, -33.8664] - }, - "properties": { - "name": "Nlownin", - "realm_idx": 3839, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.9529, 0.88] - }, - "properties": { - "name": "S\u00fanotu", - "realm_idx": 3840, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.58, -1.5997] - }, - "properties": { - "name": "Sr\u00e1ch", - "realm_idx": 3841, - "order": "The Order of Reflection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.0471, -1.12] - }, - "properties": { - "name": "Nennun", - "realm_idx": 3842, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Copper", "Coal", "Stone", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.9529, 14.08] - }, - "properties": { - "name": "Ulwul\u2018", - "realm_idx": 3843, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Gold", "Coal", "Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.98, -32.9997] - }, - "properties": { - "name": "Loappoal", - "realm_idx": 3844, - "order": "The Order of Detection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.8471, -42.72] - }, - "properties": { - "name": "Nlentlapnlel", - "realm_idx": 3845, - "order": "The Order of Giants", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.7471, -16.02] - }, - "properties": { - "name": "En\u017eun", - "realm_idx": 3846, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [126.8471, 13.98] - }, - "properties": { - "name": "\u2018a\u2018aka", - "realm_idx": 3847, - "order": "The Order of Protection", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.2529, 2.98] - }, - "properties": { - "name": "Korkeltiln", - "realm_idx": 3848, - "order": "The Order of Vitriol", - "resources": [ - "Obsidian", - "Hartwood", - "Gold", - "Wood", - "Silver", - "Sapphire" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.2529, -22.22] - }, - "properties": { - "name": "Nunin", - "realm_idx": 3849, - "order": "The Order of Power", - "resources": ["Coal", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.3471, 32.58] - }, - "properties": { - "name": "Mulsuzuw", - "realm_idx": 3850, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.9471, 20.58] - }, - "properties": { - "name": "Ml\u00e1tvuq", - "realm_idx": 3851, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.1801, -44.2996] - }, - "properties": { - "name": "Shn\u00e9shtaz", - "realm_idx": 3852, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.1801, 36.3004] - }, - "properties": { - "name": "Nosrom", - "realm_idx": 3853, - "order": "The Order of Anger", - "resources": ["Silver", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.6471, 42.68] - }, - "properties": { - "name": "Qus Ok", - "realm_idx": 3854, - "order": "The Order of Skill", - "resources": ["Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.7529, 39.68] - }, - "properties": { - "name": "Tuktukmis", - "realm_idx": 3855, - "order": "The Order of Titans", - "resources": ["Ironwood", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.88, -31.2997] - }, - "properties": { - "name": "Lumenen", - "realm_idx": 3856, - "order": "The Order of the Fox", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.3471, -35.32] - }, - "properties": { - "name": "Umenesomulen", - "realm_idx": 3857, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.5471, 11.68] - }, - "properties": { - "name": "Pamnim Nim", - "realm_idx": 3858, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.0154, 7.9297] - }, - "properties": { - "name": "Lipip", - "realm_idx": 3859, - "order": "The Order of Rage", - "resources": ["Coal", "Obsidian", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.38, -44.9996] - }, - "properties": { - "name": "Un\u00fateh", - "realm_idx": 3860, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.0471, 9.88] - }, - "properties": { - "name": "Ujh\u00f4jp", - "realm_idx": 3861, - "order": "The Order of Brilliance", - "resources": ["Copper", "Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.88, 33.7003] - }, - "properties": { - "name": "Lisnoli", - "realm_idx": 3862, - "order": "The Order of Fury", - "resources": ["Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.1201, 33.2533] - }, - "properties": { - "name": "Mulpun", - "realm_idx": 3863, - "order": "The Order of Anger", - "resources": ["Coal", "Ignium", "Copper", "Twilight Quartz", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.98, 31.9003] - }, - "properties": { - "name": "Tuzpashtish", - "realm_idx": 3864, - "order": "The Order of Fury", - "resources": ["Copper", "Obsidian", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.0529, -23.02] - }, - "properties": { - "name": "Swenryanmin", - "realm_idx": 3865, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.1471, 22.18] - }, - "properties": { - "name": "Sinli Lilim", - "realm_idx": 3866, - "order": "The Order of Skill", - "resources": ["Wood", "Diamonds", "Coal", "Stone", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.0471, 19.18] - }, - "properties": { - "name": "Ulul\u2018ulul", - "realm_idx": 3867, - "order": "The Order of Brilliance", - "resources": ["Cold Iron", "Silver", "Obsidian", "Diamonds", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.4529, -8.92] - }, - "properties": { - "name": "\u00c1qipiq", - "realm_idx": 3868, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.3801, 38.3004] - }, - "properties": { - "name": "Ikohim", - "realm_idx": 3869, - "order": "The Order of Anger", - "resources": ["Copper", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.3767, 20.0884] - }, - "properties": { - "name": "Monnonlan", - "realm_idx": 3870, - "order": "The Order of Fury", - "resources": ["Hartwood", "Coal", "Ironwood", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.38, 16.9003] - }, - "properties": { - "name": "Smits\u017eus\u017euba", - "realm_idx": 3871, - "order": "The Order of Detection", - "resources": ["Sapphire", "Ironwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.9471, 13.68] - }, - "properties": { - "name": "Miz\u010drij", - "realm_idx": 3872, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.1015, -15.2092] - }, - "properties": { - "name": "Poi-Woilpui", - "realm_idx": 3873, - "order": "The Order of Perfection", - "resources": ["Twilight Quartz", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.2801, 9.7004] - }, - "properties": { - "name": "Ninsimen", - "realm_idx": 3874, - "order": "The Order of Rage", - "resources": ["Stone", "Ethereal Silica", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.8471, 27.38] - }, - "properties": { - "name": "Mememonuk", - "realm_idx": 3875, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.0801, -54.1996] - }, - "properties": { - "name": "\u010c\u00farslib", - "realm_idx": 3876, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Copper", "Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.3529, -25.32] - }, - "properties": { - "name": "Masdunsassin", - "realm_idx": 3877, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.6529, -4.32] - }, - "properties": { - "name": "Nlem Krin", - "realm_idx": 3878, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Copper", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.6544, 54.0077] - }, - "properties": { - "name": "Mint\u00f6nm\u00fcm", - "realm_idx": 3879, - "order": "The Order of Fury", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.1801, 45.9004] - }, - "properties": { - "name": "Zakkom\u010du\u010dwom", - "realm_idx": 3880, - "order": "The Order of Anger", - "resources": ["Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [101.2471, 49.78] - }, - "properties": { - "name": "Sanlos", - "realm_idx": 3881, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.8801, -32.7996] - }, - "properties": { - "name": "Upkislurt", - "realm_idx": 3882, - "order": "The Order of the Twins", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.1529, -35.02] - }, - "properties": { - "name": "Inku-Tatkana", - "realm_idx": 3883, - "order": "The Order of Power", - "resources": ["Hartwood", "Coal", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.1529, -15.22] - }, - "properties": { - "name": "el-Olmelpelp", - "realm_idx": 3884, - "order": "The Order of Power", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.4527, 53.0801] - }, - "properties": { - "name": "Swomtlul", - "realm_idx": 3885, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone", "Wood", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.7471, 34.88] - }, - "properties": { - "name": "Sokisimo", - "realm_idx": 3886, - "order": "The Order of Titans", - "resources": ["Copper", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.28, -32.6997] - }, - "properties": { - "name": "H\u00e9wm\u00e9ww\u00e9m", - "realm_idx": 3887, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.8471, 37.48] - }, - "properties": { - "name": "Hanminp\u00ednhan", - "realm_idx": 3888, - "order": "The Order of Skill", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.0801, -18.6996] - }, - "properties": { - "name": "Minmammam", - "realm_idx": 3889, - "order": "The Order of the Twins", - "resources": ["Stone", "Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.2471, 57.08] - }, - "properties": { - "name": "Keikpoak", - "realm_idx": 3890, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.6702, -19.874] - }, - "properties": { - "name": "Sgesge", - "realm_idx": 3891, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.1471, 39.38] - }, - "properties": { - "name": "Ng\u00e1sng\u00e1squr", - "realm_idx": 3892, - "order": "The Order of Skill", - "resources": ["Gold", "Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.4529, 8.48] - }, - "properties": { - "name": "en Shumden", - "realm_idx": 3893, - "order": "The Order of Vitriol", - "resources": ["Coal", "Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.5801, -25.9996] - }, - "properties": { - "name": "Spukstuk", - "realm_idx": 3894, - "order": "The Order of the Twins", - "resources": ["Copper", "Silver", "Stone", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.8694, -19.1798] - }, - "properties": { - "name": "Rakrakrusruj", - "realm_idx": 3895, - "order": "The Order of Perfection", - "resources": ["Coal", "Obsidian", "Copper", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.9471, 0.68] - }, - "properties": { - "name": "Ghriskak Mik", - "realm_idx": 3896, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Obsidian", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.28, 18.5003] - }, - "properties": { - "name": "Masmas", - "realm_idx": 3897, - "order": "The Order of Detection", - "resources": ["Coal", "Copper", "Wood", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.6529, 36.28] - }, - "properties": { - "name": "Muhem Nenawh", - "realm_idx": 3898, - "order": "The Order of Titans", - "resources": ["Obsidian", "Wood", "Ignium", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.9471, -38.22] - }, - "properties": { - "name": "Gadsulchil", - "realm_idx": 3899, - "order": "The Order of Giants", - "resources": ["Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [132.0937, 9.3674] - }, - "properties": { - "name": "Swknot", - "realm_idx": 3900, - "order": "The Order of Protection", - "resources": ["Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.4471, 34.48] - }, - "properties": { - "name": "Us\u00ebk\u00e4l", - "realm_idx": 3901, - "order": "The Order of Skill", - "resources": ["Hartwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.0801, -22.6996] - }, - "properties": { - "name": "kuk Looknool", - "realm_idx": 3902, - "order": "The Order of the Twins", - "resources": ["Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.9916, 4.2319] - }, - "properties": { - "name": "Juwnedon-Wek", - "realm_idx": 3903, - "order": "The Order of Protection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [27.3471, -30.62] - }, - "properties": { - "name": "Osaloumeau", - "realm_idx": 3904, - "order": "The Order of Giants", - "resources": ["Cold Iron", "Gold", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.5471, -15.02] - }, - "properties": { - "name": "Mamimanu", - "realm_idx": 3905, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Obsidian", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.3471, 19.08] - }, - "properties": { - "name": "O\u0161u\u0161no\u017elu\u0161", - "realm_idx": 3906, - "order": "The Order of Skill", - "resources": ["Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.4471, 42.98] - }, - "properties": { - "name": "Wenlenlon", - "realm_idx": 3907, - "order": "The Order of Enlightenment", - "resources": ["Ironwood", "Wood", "Coal", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.38, 35.5003] - }, - "properties": { - "name": "Smash", - "realm_idx": 3908, - "order": "The Order of Reflection", - "resources": [ - "Obsidian", - "Silver", - "Coal", - "Cold Iron", - "Wood", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.98, -51.4996] - }, - "properties": { - "name": "\u00cdlus \u00cdk\u00eds", - "realm_idx": 3909, - "order": "The Order of the Fox", - "resources": ["Wood", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.5529, 2.28] - }, - "properties": { - "name": "Schien", - "realm_idx": 3910, - "order": "The Order of Power", - "resources": ["Copper", "Obsidian", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.8471, 10.58] - }, - "properties": { - "name": "Umumiminak", - "realm_idx": 3911, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Coal", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.1394, -34.0712] - }, - "properties": { - "name": "Ha\u00edh\u00edatnai", - "realm_idx": 3912, - "order": "The Order of Reflection", - "resources": ["Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [11.5471, -13.62] - }, - "properties": { - "name": "Anliso I", - "realm_idx": 3913, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.7471, 26.98] - }, - "properties": { - "name": "Nunine", - "realm_idx": 3914, - "order": "The Order of Vitriol", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.3529, -24.62] - }, - "properties": { - "name": "Plokm\u00e9t", - "realm_idx": 3915, - "order": "The Order of Power", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.7672, 50.4008] - }, - "properties": { - "name": "Omwolh", - "realm_idx": 3916, - "order": "The Order of Fury", - "resources": ["Silver", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.2801, -56.6996] - }, - "properties": { - "name": "Uguggugon", - "realm_idx": 3917, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.8529, 47.48] - }, - "properties": { - "name": "\u00damej\u2018pip", - "realm_idx": 3918, - "order": "The Order of Fury", - "resources": ["Coal", "Cold Iron", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.08, 39.1003] - }, - "properties": { - "name": "Aumhaunen", - "realm_idx": 3919, - "order": "The Order of Reflection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.2529, 43.58] - }, - "properties": { - "name": "Timminghan", - "realm_idx": 3920, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.4471, -5.62] - }, - "properties": { - "name": "Kinchwam", - "realm_idx": 3921, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Copper", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.5471, 30.38] - }, - "properties": { - "name": "P\u00fayuyuno", - "realm_idx": 3922, - "order": "The Order of Skill", - "resources": ["Diamonds", "Coal", "Obsidian", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.0471, 7.38] - }, - "properties": { - "name": "Imah-Ahunhuh", - "realm_idx": 3923, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.98, 29.5003] - }, - "properties": { - "name": "Sl\u00fcnlung", - "realm_idx": 3924, - "order": "The Order of Fury", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.6801, -28.1996] - }, - "properties": { - "name": "Ep Iktelk", - "realm_idx": 3925, - "order": "The Order of the Twins", - "resources": ["Wood", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.5801, -54.3996] - }, - "properties": { - "name": "Lwukpwess\u00f4s", - "realm_idx": 3926, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.1529, 4.98] - }, - "properties": { - "name": "syish Pezh", - "realm_idx": 3927, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Copper", "Stone", "Gold", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.2968, 29.6281] - }, - "properties": { - "name": "Utut at Apum", - "realm_idx": 3928, - "order": "The Order of Reflection", - "resources": ["Gold", "Diamonds", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.1471, -1.82] - }, - "properties": { - "name": "na Euin", - "realm_idx": 3929, - "order": "The Order of Brilliance", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.98, 29.8003] - }, - "properties": { - "name": "Ilbalnaln", - "realm_idx": 3930, - "order": "The Order of Reflection", - "resources": ["Stone", "Copper", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.5529, 25.68] - }, - "properties": { - "name": "Emoginin", - "realm_idx": 3931, - "order": "The Order of Vitriol", - "resources": ["Silver", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.7801, -15.4996] - }, - "properties": { - "name": "Amesesh", - "realm_idx": 3932, - "order": "The Order of Rage", - "resources": ["Stone", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.28, 31.8003] - }, - "properties": { - "name": "Alw\u00edlsy\u00e9lalw", - "realm_idx": 3933, - "order": "The Order of Detection", - "resources": ["Twilight Quartz", "Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.2801, 50.3004] - }, - "properties": { - "name": "Pipumpaj", - "realm_idx": 3934, - "order": "The Order of Anger", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.0471, 19.88] - }, - "properties": { - "name": "Silulmsil", - "realm_idx": 3935, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.8801, -54.8996] - }, - "properties": { - "name": "\u00dclim\u00e4l", - "realm_idx": 3936, - "order": "The Order of the Twins", - "resources": ["Hartwood", "Ignium", "Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.2471, 40.58] - }, - "properties": { - "name": "Bazbazlebleb", - "realm_idx": 3937, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.6471, 30.68] - }, - "properties": { - "name": "ger Or", - "realm_idx": 3938, - "order": "The Order of Titans", - "resources": ["Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.3471, 31.28] - }, - "properties": { - "name": "\u00cdqamuq", - "realm_idx": 3939, - "order": "The Order of Enlightenment", - "resources": ["Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.6471, 16.08] - }, - "properties": { - "name": "mum-Gurnugum", - "realm_idx": 3940, - "order": "The Order of Skill", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.7529, 26.98] - }, - "properties": { - "name": "tuk Kirik", - "realm_idx": 3941, - "order": "The Order of Vitriol", - "resources": ["Silver", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.2395, -23.1182] - }, - "properties": { - "name": "Ikigtigtig", - "realm_idx": 3942, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.6767, 29.8602] - }, - "properties": { - "name": "Dieschweo", - "realm_idx": 3943, - "order": "The Order of Reflection", - "resources": [ - "Coal", - "Sapphire", - "Stone", - "Wood", - "Ethereal Silica", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [10.0471, -13.52] - }, - "properties": { - "name": "Satiki", - "realm_idx": 3944, - "order": "The Order of Power", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.5471, 49.58] - }, - "properties": { - "name": "Muenheohheup", - "realm_idx": 3945, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.3471, 44.08] - }, - "properties": { - "name": "Atotik", - "realm_idx": 3946, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.4471, 8.28] - }, - "properties": { - "name": "P\u00efng\u00e4npanzun", - "realm_idx": 3947, - "order": "The Order of Protection", - "resources": ["Silver", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.4471, 51.78] - }, - "properties": { - "name": "Neluln", - "realm_idx": 3948, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.9639, 44.5127] - }, - "properties": { - "name": "Og\u00e9kolok", - "realm_idx": 3949, - "order": "The Order of Anger", - "resources": ["Stone", "Gold", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.2918, -22.0193] - }, - "properties": { - "name": "Ch\u00fauch\u00fa", - "realm_idx": 3950, - "order": "The Order of Perfection", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.78, 30.0003] - }, - "properties": { - "name": "Puksnussnus", - "realm_idx": 3951, - "order": "The Order of Reflection", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.78, -6.4997] - }, - "properties": { - "name": "Siapmit", - "realm_idx": 3952, - "order": "The Order of Detection", - "resources": ["Coal", "Copper", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.5471, -2.32] - }, - "properties": { - "name": "Tuhatuhu", - "realm_idx": 3953, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Silver", "Wood", "Cold Iron", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.4471, 13.98] - }, - "properties": { - "name": "Wm\u00f4pa", - "realm_idx": 3954, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-26.5529, 28.58] - }, - "properties": { - "name": "Ik-Kalzkar", - "realm_idx": 3955, - "order": "The Order of Vitriol", - "resources": ["Diamonds", "Ruby", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.78, -31.5997] - }, - "properties": { - "name": "Notket", - "realm_idx": 3956, - "order": "The Order of Detection", - "resources": ["Coal", "Stone", "Wood", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.7471, 21.68] - }, - "properties": { - "name": "Sunbu Yuyong", - "realm_idx": 3957, - "order": "The Order of Titans", - "resources": ["Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-28.6527, 51.3801] - }, - "properties": { - "name": "Niuntainia", - "realm_idx": 3958, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.0471, 17.08] - }, - "properties": { - "name": "Uzko-Teez", - "realm_idx": 3959, - "order": "The Order of Skill", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.2529, 24.48] - }, - "properties": { - "name": "Qiwghilagh", - "realm_idx": 3960, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.5801, -26.6996] - }, - "properties": { - "name": "Zumno\u010dun", - "realm_idx": 3961, - "order": "The Order of the Twins", - "resources": ["Coal", "Diamonds", "Wood", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.1801, 4.4004] - }, - "properties": { - "name": "Tennunnun", - "realm_idx": 3962, - "order": "The Order of Rage", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.4496, 47.0787] - }, - "properties": { - "name": "Ash Sosngash", - "realm_idx": 3963, - "order": "The Order of Anger", - "resources": ["Cold Iron", "Coal", "Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.83, -24.1169] - }, - "properties": { - "name": "Zhodbrezh", - "realm_idx": 3964, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.7655, -18.6982] - }, - "properties": { - "name": "Pilsk\u00fc", - "realm_idx": 3965, - "order": "The Order of Perfection", - "resources": ["Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.1529, -10.12] - }, - "properties": { - "name": "Tusole", - "realm_idx": 3966, - "order": "The Order of the Fox", - "resources": ["Gold", "Wood", "Copper", "Stone", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.2529, -4.32] - }, - "properties": { - "name": "Ringjiv", - "realm_idx": 3967, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.0471, 39.88] - }, - "properties": { - "name": "Meelmelsolm", - "realm_idx": 3968, - "order": "The Order of Enlightenment", - "resources": ["Ironwood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.2471, -29.72] - }, - "properties": { - "name": "Pinmunmim", - "realm_idx": 3969, - "order": "The Order of Giants", - "resources": ["Copper", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [45.8471, -38.22] - }, - "properties": { - "name": "Alrilv", - "realm_idx": 3970, - "order": "The Order of Giants", - "resources": ["Gold", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.0529, 49.88] - }, - "properties": { - "name": "Osush", - "realm_idx": 3971, - "order": "The Order of Fury", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.1529, 49.58] - }, - "properties": { - "name": "Nonam Onmun", - "realm_idx": 3972, - "order": "The Order of Fury", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.2801, 31.1004] - }, - "properties": { - "name": "Kukm\u00fak", - "realm_idx": 3973, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.4334, -22.1934] - }, - "properties": { - "name": "\u00c9smiztozezoz", - "realm_idx": 3974, - "order": "The Order of Protection", - "resources": ["Wood", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.6527, 52.8801] - }, - "properties": { - "name": "Jewighakhi", - "realm_idx": 3975, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Coal", "Copper", "True Ice", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.8471, 36.18] - }, - "properties": { - "name": "Skemsme", - "realm_idx": 3976, - "order": "The Order of Enlightenment", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.6471, -0.72] - }, - "properties": { - "name": "Tchautbud", - "realm_idx": 3977, - "order": "The Order of Power", - "resources": ["Ignium", "Wood", "Silver", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-126.78, -11.6997] - }, - "properties": { - "name": "Maun\u0161laun", - "realm_idx": 3978, - "order": "The Order of Detection", - "resources": ["Obsidian", "Coal", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.7471, 38.48] - }, - "properties": { - "name": "Mimn\u00edlnams\u00e1m", - "realm_idx": 3979, - "order": "The Order of Skill", - "resources": ["Stone", "Silver", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.6471, 34.78] - }, - "properties": { - "name": "kl\u00e4s \u2018likwus", - "realm_idx": 3980, - "order": "The Order of Skill", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.9471, -8.82] - }, - "properties": { - "name": "Nansnak", - "realm_idx": 3981, - "order": "The Order of Power", - "resources": ["Gold", "Obsidian", "Stone", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.5471, 4.38] - }, - "properties": { - "name": "Tutasa Nuta", - "realm_idx": 3982, - "order": "The Order of Brilliance", - "resources": ["Coal", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.9801, 7.1004] - }, - "properties": { - "name": "kol-Nols\u00fap", - "realm_idx": 3983, - "order": "The Order of Rage", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.0471, 19.18] - }, - "properties": { - "name": "M\u00fannonnon", - "realm_idx": 3984, - "order": "The Order of Brilliance", - "resources": ["Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [13.5471, 47.48] - }, - "properties": { - "name": "chun Aunmu", - "realm_idx": 3985, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.2793, 35.0164] - }, - "properties": { - "name": "Tuschugoge", - "realm_idx": 3986, - "order": "The Order of Anger", - "resources": ["Wood", "Copper", "Ruby", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.1471, -48.52] - }, - "properties": { - "name": "Rolse", - "realm_idx": 3987, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.1471, 26.78] - }, - "properties": { - "name": "Hieh\u00e1a", - "realm_idx": 3988, - "order": "The Order of Skill", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.5471, 46.38] - }, - "properties": { - "name": "Lozkisch", - "realm_idx": 3989, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Diamonds", "Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.6443, 40.2786] - }, - "properties": { - "name": "eip Eitautug", - "realm_idx": 3990, - "order": "The Order of Fury", - "resources": ["Stone", "Coal", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.5801, -6.0996] - }, - "properties": { - "name": "Uakzhou", - "realm_idx": 3991, - "order": "The Order of Rage", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.3455, 45.9465] - }, - "properties": { - "name": "Snyzh", - "realm_idx": 3992, - "order": "The Order of Anger", - "resources": ["Coal", "Ruby", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.1529, 30.78] - }, - "properties": { - "name": "Iewkhum", - "realm_idx": 3993, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.0288, -28.9348] - }, - "properties": { - "name": "Mat\u0161m\u00fam\u0161k\u00fam", - "realm_idx": 3994, - "order": "The Order of Protection", - "resources": ["Wood", "Cold Iron", "Gold", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.4801, -31.9996] - }, - "properties": { - "name": "S\u00edpk\u00e1sk\u00e1s", - "realm_idx": 3995, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.3801, 5.2004] - }, - "properties": { - "name": "N\u00e1klak", - "realm_idx": 3996, - "order": "The Order of Rage", - "resources": ["Copper", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.6471, 1.58] - }, - "properties": { - "name": "Chyekbak", - "realm_idx": 3997, - "order": "The Order of Brilliance", - "resources": [ - "Gold", - "Ironwood", - "Ignium", - "Cold Iron", - "Obsidian", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.08, -26.5997] - }, - "properties": { - "name": "Kipun", - "realm_idx": 3998, - "order": "The Order of Detection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.5187, 33.8208] - }, - "properties": { - "name": "Roqweghleq", - "realm_idx": 3999, - "order": "The Order of Anger", - "resources": ["Ironwood", "Coal", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.88, -36.4997] - }, - "properties": { - "name": "i Mauma", - "realm_idx": 4000, - "order": "The Order of Reflection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.5801, -55.0996] - }, - "properties": { - "name": "Zeshzhu", - "realm_idx": 4001, - "order": "The Order of the Twins", - "resources": ["Stone", "Cold Iron", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.4471, 8.88] - }, - "properties": { - "name": "Okimat", - "realm_idx": 4002, - "order": "The Order of Brilliance", - "resources": ["Coal", "Silver", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.3801, -22.4996] - }, - "properties": { - "name": "Tottot", - "realm_idx": 4003, - "order": "The Order of the Twins", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.5471, -21.42] - }, - "properties": { - "name": "Urgmuldulmur", - "realm_idx": 4004, - "order": "The Order of Power", - "resources": ["Coal", "Diamonds", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.9471, 37.78] - }, - "properties": { - "name": "as Itupupap", - "realm_idx": 4005, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.8471, 49.98] - }, - "properties": { - "name": "Dignegn\u00efsdig", - "realm_idx": 4006, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.1529, 38.78] - }, - "properties": { - "name": "Snuttitshnat", - "realm_idx": 4007, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Coal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-26.1529, -8.52] - }, - "properties": { - "name": "Imkinnam", - "realm_idx": 4008, - "order": "The Order of the Fox", - "resources": ["Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.78, -6.1997] - }, - "properties": { - "name": "Lizhkizs\u00ef", - "realm_idx": 4009, - "order": "The Order of Detection", - "resources": ["Obsidian", "Twilight Quartz", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.4629, 3.6656] - }, - "properties": { - "name": "Amamamaw", - "realm_idx": 4010, - "order": "The Order of Reflection", - "resources": ["Stone", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.9471, -20.02] - }, - "properties": { - "name": "Anumin", - "realm_idx": 4011, - "order": "The Order of Giants", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.0801, 45.8004] - }, - "properties": { - "name": "Hrimmem", - "realm_idx": 4012, - "order": "The Order of Anger", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.1471, -28.92] - }, - "properties": { - "name": "Kononkunen", - "realm_idx": 4013, - "order": "The Order of Giants", - "resources": ["Coal", "Stone", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.5529, 21.28] - }, - "properties": { - "name": "Ornomnongag", - "realm_idx": 4014, - "order": "The Order of Vitriol", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.3529, 20.78] - }, - "properties": { - "name": "Schokissik", - "realm_idx": 4015, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.0471, -3.42] - }, - "properties": { - "name": "Arbigh", - "realm_idx": 4016, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.2471, 9.78] - }, - "properties": { - "name": "Sipk\u00fakminsas", - "realm_idx": 4017, - "order": "The Order of Brilliance", - "resources": ["Diamonds", "Stone", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.2471, -40.12] - }, - "properties": { - "name": "Nushu Tooz", - "realm_idx": 4018, - "order": "The Order of Giants", - "resources": ["Gold", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.0471, 11.98] - }, - "properties": { - "name": "og Sot", - "realm_idx": 4019, - "order": "The Order of Titans", - "resources": ["Coal", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.7471, 29.48] - }, - "properties": { - "name": "saz Lozmos", - "realm_idx": 4020, - "order": "The Order of Skill", - "resources": [ - "Stone", - "Silver", - "Cold Iron", - "Wood", - "Copper", - "Coal", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.4529, -6.22] - }, - "properties": { - "name": "Muzh Nyugzun", - "realm_idx": 4021, - "order": "The Order of the Fox", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.9529, -10.92] - }, - "properties": { - "name": "Zialail", - "realm_idx": 4022, - "order": "The Order of the Fox", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.2471, -13.92] - }, - "properties": { - "name": "Ik-K\u00f3mik\u00f3hik", - "realm_idx": 4023, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.0471, 50.18] - }, - "properties": { - "name": "Ghenghen", - "realm_idx": 4024, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.4169, 29.562] - }, - "properties": { - "name": "\u00dcses\u00fckemum", - "realm_idx": 4025, - "order": "The Order of Fury", - "resources": ["Ironwood", "Coal", "Adamantine", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.0801, -10.5996] - }, - "properties": { - "name": "Paklala", - "realm_idx": 4026, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [10.8471, -14.32] - }, - "properties": { - "name": "Lili-Lamlun", - "realm_idx": 4027, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.58, 2.1003] - }, - "properties": { - "name": "Pu la Lu", - "realm_idx": 4028, - "order": "The Order of Detection", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.4226, 14.3708] - }, - "properties": { - "name": "Mo hon Nu", - "realm_idx": 4029, - "order": "The Order of Protection", - "resources": ["Copper", "Ironwood", "Coal", "True Ice", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.28, -4.5997] - }, - "properties": { - "name": "Kinen", - "realm_idx": 4030, - "order": "The Order of Reflection", - "resources": ["Diamonds", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.5471, 36.28] - }, - "properties": { - "name": "Nounnoun", - "realm_idx": 4031, - "order": "The Order of Titans", - "resources": ["Coal", "Cold Iron", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.547, 0.48] - }, - "properties": { - "name": "Soesoeksai", - "realm_idx": 4032, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.2471, 37.38] - }, - "properties": { - "name": "Kunmunlon", - "realm_idx": 4033, - "order": "The Order of Skill", - "resources": ["Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [102.3814, -11.9238] - }, - "properties": { - "name": "Kom\u2018owon", - "realm_idx": 4034, - "order": "The Order of Perfection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.4135, 12.5562] - }, - "properties": { - "name": "S\u00edst\u00edkstos", - "realm_idx": 4035, - "order": "The Order of Protection", - "resources": ["Silver", "Copper", "Diamonds", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.5471, 16.08] - }, - "properties": { - "name": "Pesesemus", - "realm_idx": 4036, - "order": "The Order of Titans", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.4117, 17.0861] - }, - "properties": { - "name": "Igi Pivsug", - "realm_idx": 4037, - "order": "The Order of Protection", - "resources": ["Obsidian", "Silver", "Copper", "Ruby", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.18, -47.8997] - }, - "properties": { - "name": "Nopsoimpek", - "realm_idx": 4038, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Stone", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.3801, -49.4996] - }, - "properties": { - "name": "Oykloymuyow", - "realm_idx": 4039, - "order": "The Order of the Twins", - "resources": [ - "Stone", - "Copper", - "Sapphire", - "Hartwood", - "Coal", - "Ironwood", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.9801, 2.1004] - }, - "properties": { - "name": "Nwknrik", - "realm_idx": 4040, - "order": "The Order of Rage", - "resources": ["Stone", "Coal", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.8471, 26.38] - }, - "properties": { - "name": "Mlumul", - "realm_idx": 4041, - "order": "The Order of Skill", - "resources": ["Obsidian", "Stone", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.4471, 8.58] - }, - "properties": { - "name": "Sutsut", - "realm_idx": 4042, - "order": "The Order of Brilliance", - "resources": ["Stone", "Silver", "Deep Crystal", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.1471, 5.98] - }, - "properties": { - "name": "Osilottut", - "realm_idx": 4043, - "order": "The Order of Protection", - "resources": ["Copper", "Ethereal Silica", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.3801, -14.9996] - }, - "properties": { - "name": "Nipnotnot", - "realm_idx": 4044, - "order": "The Order of Rage", - "resources": ["Coal", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.1471, 12.38] - }, - "properties": { - "name": "ni-Tinopa", - "realm_idx": 4045, - "order": "The Order of Protection", - "resources": ["Wood", "Coal", "Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.2471, 51.48] - }, - "properties": { - "name": "Simsp\u00edp", - "realm_idx": 4046, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.2919, 32.7922] - }, - "properties": { - "name": "Nirhnernnirh", - "realm_idx": 4047, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.2471, -10.02] - }, - "properties": { - "name": "Moghsghub", - "realm_idx": 4048, - "order": "The Order of Giants", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.1529, 12.78] - }, - "properties": { - "name": "Ftschem", - "realm_idx": 4049, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [108.3471, 41.18] - }, - "properties": { - "name": "nus S\u00e1s", - "realm_idx": 4050, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.0471, 11.08] - }, - "properties": { - "name": "Nuknlus", - "realm_idx": 4051, - "order": "The Order of Protection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.3471, 15.38] - }, - "properties": { - "name": "Mondimo", - "realm_idx": 4052, - "order": "The Order of Brilliance", - "resources": ["Stone", "Gold", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.9471, 29.78] - }, - "properties": { - "name": "Dlonwlanwom", - "realm_idx": 4053, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Obsidian", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.3529, 47.28] - }, - "properties": { - "name": "Parmak", - "realm_idx": 4054, - "order": "The Order of Fury", - "resources": ["Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.9471, 32.68] - }, - "properties": { - "name": "Pypety", - "realm_idx": 4055, - "order": "The Order of Skill", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.1471, 52.18] - }, - "properties": { - "name": "Kemek", - "realm_idx": 4056, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.3529, -40.82] - }, - "properties": { - "name": "Ipayagagay", - "realm_idx": 4057, - "order": "The Order of Power", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [71.3471, -13.82] - }, - "properties": { - "name": "\u2018la\u2018\u2018rek\u2018ol", - "realm_idx": 4058, - "order": "The Order of Perfection", - "resources": ["Deep Crystal", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.38, -35.8997] - }, - "properties": { - "name": "Kunkin", - "realm_idx": 4059, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.08, -8.5997] - }, - "properties": { - "name": "Slungh\u00edng", - "realm_idx": 4060, - "order": "The Order of Reflection", - "resources": ["Copper", "Coal", "Ironwood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.78, 18.3003] - }, - "properties": { - "name": "Litkullelsel", - "realm_idx": 4061, - "order": "The Order of Detection", - "resources": ["Ironwood", "Hartwood", "Stone", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.2471, 44.18] - }, - "properties": { - "name": "Konson", - "realm_idx": 4062, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Diamonds", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.88, 14.1003] - }, - "properties": { - "name": "Nrurnunzlik", - "realm_idx": 4063, - "order": "The Order of Detection", - "resources": ["Coal", "Silver", "Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.7471, -7.12] - }, - "properties": { - "name": "Ulnul", - "realm_idx": 4064, - "order": "The Order of Power", - "resources": ["Wood", "Ironwood", "Sapphire", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-21.3529, 42.98] - }, - "properties": { - "name": "Kium Imonkii", - "realm_idx": 4065, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper", "True Ice", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.6379, 9.0035] - }, - "properties": { - "name": "Tektuk", - "realm_idx": 4066, - "order": "The Order of Protection", - "resources": ["Coal", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.8471, 6.78] - }, - "properties": { - "name": "mok Xdexye", - "realm_idx": 4067, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.88, 14.0003] - }, - "properties": { - "name": "Yilugilu", - "realm_idx": 4068, - "order": "The Order of Fury", - "resources": ["Silver", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.48, -53.4996] - }, - "properties": { - "name": "T\u00eflmt\u00eflm", - "realm_idx": 4069, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.58, -2.0997] - }, - "properties": { - "name": "Mummlitmul", - "realm_idx": 4070, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Ignium", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.3175, -34.8434] - }, - "properties": { - "name": "T\u00fa-Nepke", - "realm_idx": 4071, - "order": "The Order of Reflection", - "resources": ["Stone", "Obsidian", "Coal", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.3471, 46.08] - }, - "properties": { - "name": "Nunusese", - "realm_idx": 4072, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Silver", "Ironwood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.7471, 11.78] - }, - "properties": { - "name": "Etekuh", - "realm_idx": 4073, - "order": "The Order of Brilliance", - "resources": ["Coal", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.1801, 40.4004] - }, - "properties": { - "name": "Uytkoytoy", - "realm_idx": 4074, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.7529, -13.42] - }, - "properties": { - "name": "Jr\u00fcjijjluj", - "realm_idx": 4075, - "order": "The Order of Power", - "resources": ["Wood", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.9801, 17.9004] - }, - "properties": { - "name": "Lolodbrok", - "realm_idx": 4076, - "order": "The Order of Rage", - "resources": ["Gold", "Copper", "Stone", "Ruby", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.08, 21.1003] - }, - "properties": { - "name": "Q\u00f3schni", - "realm_idx": 4077, - "order": "The Order of Fury", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.2876, 29.2411] - }, - "properties": { - "name": "Maturnirnir", - "realm_idx": 4078, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal", "Cold Iron", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.3471, 25.48] - }, - "properties": { - "name": "Ipusipupem", - "realm_idx": 4079, - "order": "The Order of Enlightenment", - "resources": ["Ruby", "Ignium", "Stone", "Coal", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.998, -42.6089] - }, - "properties": { - "name": "Bujqiutjaj", - "realm_idx": 4080, - "order": "The Order of the Fox", - "resources": ["Copper", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.7801, 6.2004] - }, - "properties": { - "name": "Ninniknyn", - "realm_idx": 4081, - "order": "The Order of Rage", - "resources": ["Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.9471, 30.78] - }, - "properties": { - "name": "Bylnn\u00eald", - "realm_idx": 4082, - "order": "The Order of Enlightenment", - "resources": ["Hartwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.4801, 14.3004] - }, - "properties": { - "name": "lo Lini", - "realm_idx": 4083, - "order": "The Order of Rage", - "resources": ["Wood", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.2471, 30.38] - }, - "properties": { - "name": "Timuns\u00fam", - "realm_idx": 4084, - "order": "The Order of Skill", - "resources": ["Silver", "Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.9801, 7.5004] - }, - "properties": { - "name": "Alnulk\u00edlnul", - "realm_idx": 4085, - "order": "The Order of Rage", - "resources": ["Wood", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.798, -52.0567] - }, - "properties": { - "name": "ob-Seg", - "realm_idx": 4086, - "order": "The Order of the Fox", - "resources": ["Copper", "Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.4529, 48.48] - }, - "properties": { - "name": "Paninesete", - "realm_idx": 4087, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.1529, 22.78] - }, - "properties": { - "name": "\u00c1lkk\u00e1lal", - "realm_idx": 4088, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.6471, 5.28] - }, - "properties": { - "name": "Yush Khoy", - "realm_idx": 4089, - "order": "The Order of Brilliance", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.78, -5.4997] - }, - "properties": { - "name": "Tinut\u00ed", - "realm_idx": 4090, - "order": "The Order of Reflection", - "resources": [ - "Alchemical Silver", - "Silver", - "Coal", - "Copper", - "Obsidian", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.8529, -24.32] - }, - "properties": { - "name": "Bibi Bin", - "realm_idx": 4091, - "order": "The Order of Power", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.2801, 5.7004] - }, - "properties": { - "name": "Driklis", - "realm_idx": 4092, - "order": "The Order of Rage", - "resources": ["Coal", "Hartwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.9471, -0.62] - }, - "properties": { - "name": "\u00c4m\u00e4k\u00e4nkum", - "realm_idx": 4093, - "order": "The Order of Power", - "resources": ["Stone", "Gold", "Silver", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.3801, 21.3004] - }, - "properties": { - "name": "Sbunskungen", - "realm_idx": 4094, - "order": "The Order of Rage", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.3801, -10.6996] - }, - "properties": { - "name": "Plunplunplun", - "realm_idx": 4095, - "order": "The Order of Rage", - "resources": ["Obsidian", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.0257, 30.5395] - }, - "properties": { - "name": "Kis Kazkoz", - "realm_idx": 4096, - "order": "The Order of Reflection", - "resources": ["Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.88, -20.4997] - }, - "properties": { - "name": "Iribibim", - "realm_idx": 4097, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.2471, 26.08] - }, - "properties": { - "name": "Diwuw\u00e1", - "realm_idx": 4098, - "order": "The Order of Skill", - "resources": ["Ruby", "Coal", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.68, -2.8997] - }, - "properties": { - "name": "dwos H\u00ebn", - "realm_idx": 4099, - "order": "The Order of Detection", - "resources": ["Ruby", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.68, 13.1003] - }, - "properties": { - "name": "Alpalnolk", - "realm_idx": 4100, - "order": "The Order of Fury", - "resources": ["Silver", "Stone", "Diamonds", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.2801, 42.9004] - }, - "properties": { - "name": "Sasulu", - "realm_idx": 4101, - "order": "The Order of Anger", - "resources": ["Wood", "Silver", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.8076, -34.9726] - }, - "properties": { - "name": "Ezhitsch", - "realm_idx": 4102, - "order": "The Order of Reflection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.6471, 32.88] - }, - "properties": { - "name": "Mulwuw", - "realm_idx": 4103, - "order": "The Order of Skill", - "resources": ["Wood", "Ironwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.88, -47.1997] - }, - "properties": { - "name": "mor Kaqsel", - "realm_idx": 4104, - "order": "The Order of the Fox", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [11.0471, -14.42] - }, - "properties": { - "name": "Gazhidgazh", - "realm_idx": 4105, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.2471, -26.32] - }, - "properties": { - "name": "Kilwanwan", - "realm_idx": 4106, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.9471, 48.78] - }, - "properties": { - "name": "A\u0161uazmuz", - "realm_idx": 4107, - "order": "The Order of Titans", - "resources": ["Hartwood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.6801, 28.5004] - }, - "properties": { - "name": "Konukolu", - "realm_idx": 4108, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.9471, 34.38] - }, - "properties": { - "name": "Wekwekstes", - "realm_idx": 4109, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Copper", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-113.0268, -34.7351] - }, - "properties": { - "name": "Tyns\u00easzogzog", - "realm_idx": 4110, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.18, -44.7997] - }, - "properties": { - "name": "Ultelnirp", - "realm_idx": 4111, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.1471, 38.58] - }, - "properties": { - "name": "Mrumt\u00e1mteng", - "realm_idx": 4112, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [71.0471, 18.68] - }, - "properties": { - "name": "Petsek", - "realm_idx": 4113, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.2801, -53.5996] - }, - "properties": { - "name": "Kan\u00fam", - "realm_idx": 4114, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.6471, 12.88] - }, - "properties": { - "name": "Ikelirs Om", - "realm_idx": 4115, - "order": "The Order of Titans", - "resources": ["Coal", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.3805, 45.3382] - }, - "properties": { - "name": "N\u00edsusalusu", - "realm_idx": 4116, - "order": "The Order of Anger", - "resources": ["Wood", "Hartwood", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.6471, 15.78] - }, - "properties": { - "name": "Tisis", - "realm_idx": 4117, - "order": "The Order of Brilliance", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.8471, 51.38] - }, - "properties": { - "name": "Lontonmom", - "realm_idx": 4118, - "order": "The Order of Skill", - "resources": ["Coal", "Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.2801, -41.9996] - }, - "properties": { - "name": "\u00c2rmmir", - "realm_idx": 4119, - "order": "The Order of the Twins", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.8471, -23.72] - }, - "properties": { - "name": "Razs\u00e1tshz\u00edch", - "realm_idx": 4120, - "order": "The Order of Giants", - "resources": ["Copper", "Stone", "Gold", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.9471, -24.42] - }, - "properties": { - "name": "Keinkeomeik", - "realm_idx": 4121, - "order": "The Order of Perfection", - "resources": [ - "Ironwood", - "Stone", - "Wood", - "Coal", - "Alchemical Silver", - "Hartwood", - "Deep Crystal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.4529, -40.52] - }, - "properties": { - "name": "Traskwiz", - "realm_idx": 4122, - "order": "The Order of Power", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.6471, -44.32] - }, - "properties": { - "name": "\u2018o\u2018nolloel", - "realm_idx": 4123, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Coal", "Gold", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.1471, 24.28] - }, - "properties": { - "name": "Mrun-Munmum", - "realm_idx": 4124, - "order": "The Order of Skill", - "resources": ["Ironwood", "Wood", "Alchemical Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.8471, 19.08] - }, - "properties": { - "name": "Flengftan", - "realm_idx": 4125, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.2471, 7.68] - }, - "properties": { - "name": "Lakul", - "realm_idx": 4126, - "order": "The Order of Brilliance", - "resources": ["Coal", "Deep Crystal", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.2471, 0.48] - }, - "properties": { - "name": "Ulvulv", - "realm_idx": 4127, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.545, -0.5304] - }, - "properties": { - "name": "Nri\u017es\u00edzviz", - "realm_idx": 4128, - "order": "The Order of Reflection", - "resources": ["Wood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.8471, 46.68] - }, - "properties": { - "name": "Tiuktiuk", - "realm_idx": 4129, - "order": "The Order of Enlightenment", - "resources": ["Ironwood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [108.8636, -21.0833] - }, - "properties": { - "name": "Smunsmusluka", - "realm_idx": 4130, - "order": "The Order of Protection", - "resources": ["Silver", "Gold", "Hartwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.9471, 2.08] - }, - "properties": { - "name": "Agnud", - "realm_idx": 4131, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.4529, -11.12] - }, - "properties": { - "name": "Minmemummem", - "realm_idx": 4132, - "order": "The Order of the Fox", - "resources": [ - "Stone", - "Ironwood", - "Ethereal Silica", - "Wood", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.48, 34.7003] - }, - "properties": { - "name": "Shitm\u00e1sh", - "realm_idx": 4133, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Stone", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.7461, 21.6834] - }, - "properties": { - "name": "Nipnitni", - "realm_idx": 4134, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.5529, -2.82] - }, - "properties": { - "name": "Prosok", - "realm_idx": 4135, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.3471, -14.02] - }, - "properties": { - "name": "Batqu", - "realm_idx": 4136, - "order": "The Order of Giants", - "resources": ["Ironwood", "Ruby", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.0471, 18.28] - }, - "properties": { - "name": "Kuksp\u00e1kt\u00edn", - "realm_idx": 4137, - "order": "The Order of Brilliance", - "resources": ["Cold Iron", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.0471, -34.92] - }, - "properties": { - "name": "Orttokholh", - "realm_idx": 4138, - "order": "The Order of Giants", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.0471, -33.62] - }, - "properties": { - "name": "Exokosonakiq", - "realm_idx": 4139, - "order": "The Order of Power", - "resources": ["Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.9801, 41.3004] - }, - "properties": { - "name": "Memolo", - "realm_idx": 4140, - "order": "The Order of Anger", - "resources": ["Wood", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.9471, 12.48] - }, - "properties": { - "name": "Uk Ni", - "realm_idx": 4141, - "order": "The Order of Titans", - "resources": ["Silver", "Obsidian", "Hartwood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.58, -0.2997] - }, - "properties": { - "name": "Uvingivug", - "realm_idx": 4142, - "order": "The Order of Detection", - "resources": ["Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.8471, 30.78] - }, - "properties": { - "name": "Ginren", - "realm_idx": 4143, - "order": "The Order of Skill", - "resources": ["Stone", "Coal", "Silver", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.48, -3.9997] - }, - "properties": { - "name": "Lumnan", - "realm_idx": 4144, - "order": "The Order of Detection", - "resources": ["Obsidian", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.8801, -22.4996] - }, - "properties": { - "name": "Nonsinot", - "realm_idx": 4145, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.0529, 24.38] - }, - "properties": { - "name": "Halee\u2018i\u2018u", - "realm_idx": 4146, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.0284, 3.8994] - }, - "properties": { - "name": "Kermessersep", - "realm_idx": 4147, - "order": "The Order of Protection", - "resources": ["Obsidian", "Hartwood", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [44.5471, -36.72] - }, - "properties": { - "name": "Lawmrinm\u00efk", - "realm_idx": 4148, - "order": "The Order of Giants", - "resources": ["Obsidian", "Wood", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.6801, -36.7996] - }, - "properties": { - "name": "ni-Liti", - "realm_idx": 4149, - "order": "The Order of the Twins", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.5471, 22.98] - }, - "properties": { - "name": "Bankhomdong", - "realm_idx": 4150, - "order": "The Order of Skill", - "resources": ["Obsidian", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.6471, 36.08] - }, - "properties": { - "name": "il-\u00c1dighuwaq", - "realm_idx": 4151, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.78, -25.0997] - }, - "properties": { - "name": "ub Emosup", - "realm_idx": 4152, - "order": "The Order of Detection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.7801, 41.7004] - }, - "properties": { - "name": "Omulokul", - "realm_idx": 4153, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.98, -2.6997] - }, - "properties": { - "name": "Umlom", - "realm_idx": 4154, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.6471, -31.72] - }, - "properties": { - "name": "Kiopkuenluet", - "realm_idx": 4155, - "order": "The Order of Giants", - "resources": ["Stone", "Silver", "Wood", "Coal", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.0471, -30.82] - }, - "properties": { - "name": "Kukmenkiksik", - "realm_idx": 4156, - "order": "The Order of Giants", - "resources": ["Obsidian", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.1469, 26.2186] - }, - "properties": { - "name": "Sonkupu", - "realm_idx": 4157, - "order": "The Order of Fury", - "resources": ["Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.3801, 46.7004] - }, - "properties": { - "name": "Loloschpesch", - "realm_idx": 4158, - "order": "The Order of Anger", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.9471, 52.38] - }, - "properties": { - "name": "Luushlaam", - "realm_idx": 4159, - "order": "The Order of Skill", - "resources": ["Coal", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.88, 10.5003] - }, - "properties": { - "name": "Stengschtung", - "realm_idx": 4160, - "order": "The Order of Fury", - "resources": ["Stone", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.1682, 9.8311] - }, - "properties": { - "name": "Eunnemun", - "realm_idx": 4161, - "order": "The Order of Protection", - "resources": ["Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.3529, 4.98] - }, - "properties": { - "name": "um-Open", - "realm_idx": 4162, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Sapphire", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.08, -28.1997] - }, - "properties": { - "name": "Br\u00e1ldl\u00edt", - "realm_idx": 4163, - "order": "The Order of Reflection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.2471, -44.52] - }, - "properties": { - "name": "Nuggug", - "realm_idx": 4164, - "order": "The Order of Giants", - "resources": ["Copper", "Coal", "Diamonds", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.98, -5.9997] - }, - "properties": { - "name": "Um\u00fan P\u00fanuman", - "realm_idx": 4165, - "order": "The Order of Reflection", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.18, -28.7997] - }, - "properties": { - "name": "Syrmyrkp\u00e2r", - "realm_idx": 4166, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.7471, 21.78] - }, - "properties": { - "name": "Nun \u2018on Lwm", - "realm_idx": 4167, - "order": "The Order of Skill", - "resources": ["True Ice", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.9471, -12.8825] - }, - "properties": { - "name": "Lupzhunzhun", - "realm_idx": 4168, - "order": "The Order of Perfection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.6529, 47.68] - }, - "properties": { - "name": "Fmamdisshkud", - "realm_idx": 4169, - "order": "The Order of Titans", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.6529, 0.98] - }, - "properties": { - "name": "Tlin Kin", - "realm_idx": 4170, - "order": "The Order of Vitriol", - "resources": ["Silver", "Wood", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.2529, 16.08] - }, - "properties": { - "name": "Unungirp", - "realm_idx": 4171, - "order": "The Order of Vitriol", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.0471, -32.72] - }, - "properties": { - "name": "tim Spah", - "realm_idx": 4172, - "order": "The Order of Giants", - "resources": ["Silver", "Stone", "Coal", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.9529, 56.88] - }, - "properties": { - "name": "Ididud Nrad", - "realm_idx": 4173, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.5876, 27.3318] - }, - "properties": { - "name": "Ununinuk", - "realm_idx": 4174, - "order": "The Order of Reflection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.8801, 5.1004] - }, - "properties": { - "name": "Koteno", - "realm_idx": 4175, - "order": "The Order of Rage", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.98, 30.5003] - }, - "properties": { - "name": "Pek Trot", - "realm_idx": 4176, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.3801, -47.6996] - }, - "properties": { - "name": "Lykkhissrak", - "realm_idx": 4177, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.476, -17.9038] - }, - "properties": { - "name": "Mlamshl\u00fcm", - "realm_idx": 4178, - "order": "The Order of Protection", - "resources": ["Obsidian", "Diamonds", "Coal", "Ruby", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.08, 33.3003] - }, - "properties": { - "name": "Dutnu", - "realm_idx": 4179, - "order": "The Order of Fury", - "resources": ["Obsidian", "Coal", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.78, 12.7003] - }, - "properties": { - "name": "M\u00e1nkrun", - "realm_idx": 4180, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.18, 37.2003] - }, - "properties": { - "name": "\u00c9n k\u00e9n N\u00e9", - "realm_idx": 4181, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Obsidian", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.58, 7.6003] - }, - "properties": { - "name": "Momhom", - "realm_idx": 4182, - "order": "The Order of Detection", - "resources": ["Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.3471, 34.68] - }, - "properties": { - "name": "Laptutpuzlap", - "realm_idx": 4183, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.4471, 8.28] - }, - "properties": { - "name": "Ukishelom", - "realm_idx": 4184, - "order": "The Order of Titans", - "resources": ["Coal", "Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.9471, -27.52] - }, - "properties": { - "name": "Tisispesh", - "realm_idx": 4185, - "order": "The Order of Giants", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.6471, 48.38] - }, - "properties": { - "name": "Momimi", - "realm_idx": 4186, - "order": "The Order of Skill", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.2471, -50.52] - }, - "properties": { - "name": "Regh-wus-Uk", - "realm_idx": 4187, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.8471, 37.88] - }, - "properties": { - "name": "Runmumrunsin", - "realm_idx": 4188, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Coal", "Ethereal Silica", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.5471, 4.18] - }, - "properties": { - "name": "Niakio", - "realm_idx": 4189, - "order": "The Order of Brilliance", - "resources": ["Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.7471, 9.88] - }, - "properties": { - "name": "Kirerholkir", - "realm_idx": 4190, - "order": "The Order of Brilliance", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [8.7471, 32.98] - }, - "properties": { - "name": "Zhozp\u00falep", - "realm_idx": 4191, - "order": "The Order of Titans", - "resources": ["Stone", "Coal", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.3529, -21.82] - }, - "properties": { - "name": "Sit\u00fcnti", - "realm_idx": 4192, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.5801, 5.2004] - }, - "properties": { - "name": "Yuzhpu Penik", - "realm_idx": 4193, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.2226, -23.4738] - }, - "properties": { - "name": "Buizgioq", - "realm_idx": 4194, - "order": "The Order of Protection", - "resources": ["Obsidian", "Wood", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.5471, 18.68] - }, - "properties": { - "name": "Umakak\u00edkuhhu", - "realm_idx": 4195, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.6492, -52.1027] - }, - "properties": { - "name": "Sme-lal-Me", - "realm_idx": 4196, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Copper", "Cold Iron", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.2521, -4.1693] - }, - "properties": { - "name": "Anzunlol", - "realm_idx": 4197, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.18, -57.1996] - }, - "properties": { - "name": "Aliglumlum", - "realm_idx": 4198, - "order": "The Order of the Fox", - "resources": ["Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.0471, 13.38] - }, - "properties": { - "name": "Spunmon", - "realm_idx": 4199, - "order": "The Order of Brilliance", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.8801, -21.4996] - }, - "properties": { - "name": "Tuntungun", - "realm_idx": 4200, - "order": "The Order of the Twins", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.68, -35.8997] - }, - "properties": { - "name": "Hui Liu", - "realm_idx": 4201, - "order": "The Order of Reflection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.7801, -26.4996] - }, - "properties": { - "name": "Emonawop", - "realm_idx": 4202, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.4801, 22.8004] - }, - "properties": { - "name": "Benbubo Zu", - "realm_idx": 4203, - "order": "The Order of Rage", - "resources": ["Stone", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.7901, 14.3569] - }, - "properties": { - "name": "Kuntrontling", - "realm_idx": 4204, - "order": "The Order of Protection", - "resources": ["Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.7801, 45.4004] - }, - "properties": { - "name": "Naknrik", - "realm_idx": 4205, - "order": "The Order of Anger", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.3471, -6.22] - }, - "properties": { - "name": "Wutsnub", - "realm_idx": 4206, - "order": "The Order of Power", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.4471, -20.12] - }, - "properties": { - "name": "\u00c4wwawlew", - "realm_idx": 4207, - "order": "The Order of Perfection", - "resources": ["Wood", "Gold", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.551, 40.0672] - }, - "properties": { - "name": "Pidsuzh", - "realm_idx": 4208, - "order": "The Order of Anger", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.2126, -22.9472] - }, - "properties": { - "name": "Burpburplur", - "realm_idx": 4209, - "order": "The Order of Protection", - "resources": ["Wood", "Copper", "Silver", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.5801, -35.9996] - }, - "properties": { - "name": "Miklipinok", - "realm_idx": 4210, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.5801, 39.6004] - }, - "properties": { - "name": "Slonften", - "realm_idx": 4211, - "order": "The Order of Anger", - "resources": ["Silver", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.48, -53.5996] - }, - "properties": { - "name": "Emzhenmud", - "realm_idx": 4212, - "order": "The Order of the Fox", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.7748, 44.3957] - }, - "properties": { - "name": "Kipkewm", - "realm_idx": 4213, - "order": "The Order of Anger", - "resources": ["Copper", "Wood", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.6471, -34.52] - }, - "properties": { - "name": "M\u00e2tn\u00e2msmen", - "realm_idx": 4214, - "order": "The Order of Giants", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.7482, 5.8083] - }, - "properties": { - "name": "um-Dun-Un", - "realm_idx": 4215, - "order": "The Order of Protection", - "resources": ["Diamonds", "Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.5529, -18.92] - }, - "properties": { - "name": "Vaiypuiv", - "realm_idx": 4216, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.9527, 45.7801] - }, - "properties": { - "name": "Uqmolg Ong", - "realm_idx": 4217, - "order": "The Order of the Twins", - "resources": ["Copper", "Obsidian", "Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.6471, 31.68] - }, - "properties": { - "name": "Liklimnup", - "realm_idx": 4218, - "order": "The Order of Skill", - "resources": ["Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.9323, -17.1408] - }, - "properties": { - "name": "Moti Timo", - "realm_idx": 4219, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.8534, 34.4052] - }, - "properties": { - "name": "Ramtchlunjom", - "realm_idx": 4220, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.9801, -55.5996] - }, - "properties": { - "name": "Suinmeo", - "realm_idx": 4221, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.0471, 52.88] - }, - "properties": { - "name": "Shzotsdel", - "realm_idx": 4222, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Ruby", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.58, 12.9003] - }, - "properties": { - "name": "Kingintinkin", - "realm_idx": 4223, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.2471, -8.62] - }, - "properties": { - "name": "Mamo Massw", - "realm_idx": 4224, - "order": "The Order of Power", - "resources": ["Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [71.7776, -13.3983] - }, - "properties": { - "name": "Fnanfnanput", - "realm_idx": 4225, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.78, 21.2003] - }, - "properties": { - "name": "Oche ung E", - "realm_idx": 4226, - "order": "The Order of Fury", - "resources": ["Ironwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.0471, 40.88] - }, - "properties": { - "name": "Shponnem Kop", - "realm_idx": 4227, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.7471, 47.58] - }, - "properties": { - "name": "Olikos", - "realm_idx": 4228, - "order": "The Order of Skill", - "resources": ["Obsidian", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.6471, 25.58] - }, - "properties": { - "name": "Zuzzur", - "realm_idx": 4229, - "order": "The Order of Enlightenment", - "resources": [ - "Stone", - "Coal", - "True Ice", - "Silver", - "Cold Iron", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.3471, 51.48] - }, - "properties": { - "name": "Sk\u00e9tsnep", - "realm_idx": 4230, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.7471, 27.38] - }, - "properties": { - "name": "Gurppuln", - "realm_idx": 4231, - "order": "The Order of Titans", - "resources": ["Silver", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.3091, -20.1189] - }, - "properties": { - "name": "Susen Sessus", - "realm_idx": 4232, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.2471, 12.18] - }, - "properties": { - "name": "as-Ukkrunrat", - "realm_idx": 4233, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.8471, 52.48] - }, - "properties": { - "name": "Mriskibruk", - "realm_idx": 4234, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.4471, 42.68] - }, - "properties": { - "name": "Galilopepe", - "realm_idx": 4235, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.0529, 7.48] - }, - "properties": { - "name": "neak Nes T\u00fck", - "realm_idx": 4236, - "order": "The Order of Titans", - "resources": ["Wood", "Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.88, -57.3996] - }, - "properties": { - "name": "Panumaha", - "realm_idx": 4237, - "order": "The Order of the Fox", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [107.0471, 52.78] - }, - "properties": { - "name": "Imenlin", - "realm_idx": 4238, - "order": "The Order of Enlightenment", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.7471, 8.38] - }, - "properties": { - "name": "Nieem", - "realm_idx": 4239, - "order": "The Order of Brilliance", - "resources": ["Ignium", "Coal", "Obsidian", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.1471, 45.98] - }, - "properties": { - "name": "Mailtas", - "realm_idx": 4240, - "order": "The Order of Enlightenment", - "resources": [ - "Cold Iron", - "Stone", - "Coal", - "Copper", - "Wood", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.9884, -11.7809] - }, - "properties": { - "name": "S\u017eemu\u017e\u0161jej", - "realm_idx": 4241, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood", "Stone", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.2471, 7.68] - }, - "properties": { - "name": "Oqzhimadoq", - "realm_idx": 4242, - "order": "The Order of Brilliance", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.6801, -27.6996] - }, - "properties": { - "name": "Muitiughau", - "realm_idx": 4243, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.18, -14.9997] - }, - "properties": { - "name": "S\u00edts\u00edtsk\u00e1p", - "realm_idx": 4244, - "order": "The Order of Detection", - "resources": ["Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.2801, 41.0004] - }, - "properties": { - "name": "Denshunsoom", - "realm_idx": 4245, - "order": "The Order of Anger", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.4471, 6.38] - }, - "properties": { - "name": "Buwjab", - "realm_idx": 4246, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.6471, 31.98] - }, - "properties": { - "name": "Mimp\u00ednkin", - "realm_idx": 4247, - "order": "The Order of Skill", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.48, 32.6003] - }, - "properties": { - "name": "Lip Limlip", - "realm_idx": 4248, - "order": "The Order of Fury", - "resources": ["Gold", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.0471, 24.98] - }, - "properties": { - "name": "S\u00e9l\u00e9rms\u00e9l", - "realm_idx": 4249, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Silver", "Ironwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.9471, 32.68] - }, - "properties": { - "name": "Inmun An", - "realm_idx": 4250, - "order": "The Order of Skill", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.6529, 0.48] - }, - "properties": { - "name": "Lulnimsiplul", - "realm_idx": 4251, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Obsidian", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.1471, -25.42] - }, - "properties": { - "name": "Usumam", - "realm_idx": 4252, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.4512, -53.4387] - }, - "properties": { - "name": "Jesjes", - "realm_idx": 4253, - "order": "The Order of the Fox", - "resources": ["Silver", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.7471, 23.48] - }, - "properties": { - "name": "Fbahqad", - "realm_idx": 4254, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.6172, -55.3135] - }, - "properties": { - "name": "nr\u00eatsch Nr\u00e2d", - "realm_idx": 4255, - "order": "The Order of the Twins", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.78, 15.8003] - }, - "properties": { - "name": "Sogsog", - "realm_idx": 4256, - "order": "The Order of Detection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.08, 14.1003] - }, - "properties": { - "name": "Dolk-ru-Dult", - "realm_idx": 4257, - "order": "The Order of Detection", - "resources": ["Copper", "Stone", "Silver", "Ironwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.08, 30.3003] - }, - "properties": { - "name": "M\u00f3hm\u00f3h", - "realm_idx": 4258, - "order": "The Order of Reflection", - "resources": ["Cold Iron", "Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.0997, 7.5381] - }, - "properties": { - "name": "Tinkunnioh", - "realm_idx": 4259, - "order": "The Order of Protection", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.8801, -29.3996] - }, - "properties": { - "name": "Koolnels", - "realm_idx": 4260, - "order": "The Order of the Twins", - "resources": ["Hartwood", "Obsidian", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.5471, -39.12] - }, - "properties": { - "name": "Siztaz", - "realm_idx": 4261, - "order": "The Order of Giants", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.18, 1.9003] - }, - "properties": { - "name": "Treknlun", - "realm_idx": 4262, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Wood", "True Ice", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.9471, -35.72] - }, - "properties": { - "name": "Tyutpuntim", - "realm_idx": 4263, - "order": "The Order of Power", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.48, 24.2003] - }, - "properties": { - "name": "Sintomki", - "realm_idx": 4264, - "order": "The Order of Detection", - "resources": ["Stone", "Obsidian", "Hartwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.7471, 3.28] - }, - "properties": { - "name": "Ulmulvalmult", - "realm_idx": 4265, - "order": "The Order of Brilliance", - "resources": ["Wood", "Deep Crystal", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.5533, -23.7475] - }, - "properties": { - "name": "\u00e1h \u00c9h\u00e9tuh", - "realm_idx": 4266, - "order": "The Order of Perfection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.8529, 27.58] - }, - "properties": { - "name": "Ukiwmimt\u00eft", - "realm_idx": 4267, - "order": "The Order of Vitriol", - "resources": ["Stone", "Copper", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.9471, 2.18] - }, - "properties": { - "name": "Ghuchfmukh", - "realm_idx": 4268, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.0471, 3.88] - }, - "properties": { - "name": "Dadi\u010d", - "realm_idx": 4269, - "order": "The Order of Brilliance", - "resources": ["Coal", "Obsidian", "Ironwood", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.2471, -5.62] - }, - "properties": { - "name": "Itluk", - "realm_idx": 4270, - "order": "The Order of Power", - "resources": ["Coal", "Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.6529, 39.58] - }, - "properties": { - "name": "Squnsyin", - "realm_idx": 4271, - "order": "The Order of Vitriol", - "resources": ["Wood", "Deep Crystal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.2471, -27.02] - }, - "properties": { - "name": "\u0160oputotuko", - "realm_idx": 4272, - "order": "The Order of Giants", - "resources": ["Copper", "Coal", "Cold Iron", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [13.1471, 23.08] - }, - "properties": { - "name": "Qeuvaingauv", - "realm_idx": 4273, - "order": "The Order of Titans", - "resources": ["Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.2471, 51.48] - }, - "properties": { - "name": "Atgliwlej", - "realm_idx": 4274, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.2471, 0.88] - }, - "properties": { - "name": "Bridag", - "realm_idx": 4275, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Copper", "Hartwood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.0801, 14.6004] - }, - "properties": { - "name": "Taruym", - "realm_idx": 4276, - "order": "The Order of Rage", - "resources": ["Copper", "Wood", "Sapphire", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.3471, 11.38] - }, - "properties": { - "name": "Mowpnoh", - "realm_idx": 4277, - "order": "The Order of Protection", - "resources": ["Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.0801, 22.4004] - }, - "properties": { - "name": "Sesseklak", - "realm_idx": 4278, - "order": "The Order of Rage", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.8543, -24.1017] - }, - "properties": { - "name": "Gjeekrosnik", - "realm_idx": 4279, - "order": "The Order of Reflection", - "resources": ["Gold", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.8752, -9.8816] - }, - "properties": { - "name": "boy Biyuwzh", - "realm_idx": 4280, - "order": "The Order of Rage", - "resources": ["Stone", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.4801, 44.8004] - }, - "properties": { - "name": "Tinarturnser", - "realm_idx": 4281, - "order": "The Order of Anger", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.1471, 28.28] - }, - "properties": { - "name": "Helul", - "realm_idx": 4282, - "order": "The Order of Titans", - "resources": ["Obsidian", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.9529, 14.28] - }, - "properties": { - "name": "Ukin\u00ednun", - "realm_idx": 4283, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.68, 5.9003] - }, - "properties": { - "name": "Eseuse", - "realm_idx": 4284, - "order": "The Order of Detection", - "resources": ["Silver", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.0471, -40.62] - }, - "properties": { - "name": "Lalkloklil", - "realm_idx": 4285, - "order": "The Order of Giants", - "resources": ["Ironwood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.9471, 18.28] - }, - "properties": { - "name": "Mardonen\u010der\u017e", - "realm_idx": 4286, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood", "Silver", "Adamantine", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.28, 30.1003] - }, - "properties": { - "name": "Miwnluw", - "realm_idx": 4287, - "order": "The Order of Fury", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.2801, -19.9996] - }, - "properties": { - "name": "Poxkooxmaz", - "realm_idx": 4288, - "order": "The Order of the Twins", - "resources": ["Copper", "Obsidian", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [71.8471, -26.42] - }, - "properties": { - "name": "Slemsam-Snin", - "realm_idx": 4289, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.68, -0.8997] - }, - "properties": { - "name": "\u0160kul\u0161kul", - "realm_idx": 4290, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Cold Iron", "Silver", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-127.68, -1.0997] - }, - "properties": { - "name": "Sok\u00fam\u00e1", - "realm_idx": 4291, - "order": "The Order of Detection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.2471, -11.82] - }, - "properties": { - "name": "Anik\u00edkit\u00edn", - "realm_idx": 4292, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.3471, -17.72] - }, - "properties": { - "name": "B\u00e2kygi", - "realm_idx": 4293, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.8604, 46.9635] - }, - "properties": { - "name": "\u00daz\u00fazum", - "realm_idx": 4294, - "order": "The Order of Anger", - "resources": ["Coal", "Stone", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.6192, -35.7929] - }, - "properties": { - "name": "Shkanshkun", - "realm_idx": 4295, - "order": "The Order of Reflection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.2471, 22.58] - }, - "properties": { - "name": "Kuymuwshsays", - "realm_idx": 4296, - "order": "The Order of Skill", - "resources": ["Wood", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.48, -11.5997] - }, - "properties": { - "name": "Yuvrusulnu", - "realm_idx": 4297, - "order": "The Order of Detection", - "resources": [ - "Silver", - "Wood", - "Deep Crystal", - "Stone", - "Obsidian", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.5471, 29.08] - }, - "properties": { - "name": "Kinkinkin", - "realm_idx": 4298, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.6801, -32.3996] - }, - "properties": { - "name": "Ha te Tchu", - "realm_idx": 4299, - "order": "The Order of the Twins", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.711, 35.2949] - }, - "properties": { - "name": "Unkulzholb", - "realm_idx": 4300, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.1801, 48.3004] - }, - "properties": { - "name": "Wolkpolk", - "realm_idx": 4301, - "order": "The Order of Anger", - "resources": ["Wood", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.7691, 35.5572] - }, - "properties": { - "name": "Xlon Tloxxug", - "realm_idx": 4302, - "order": "The Order of Anger", - "resources": ["Coal", "Ironwood", "Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.58, 0.1003] - }, - "properties": { - "name": "Stunmitshnuh", - "realm_idx": 4303, - "order": "The Order of Reflection", - "resources": ["Copper", "Wood", "Stone", "Cold Iron", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.68, 38.2003] - }, - "properties": { - "name": "Otelolel", - "realm_idx": 4304, - "order": "The Order of Reflection", - "resources": ["Stone", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2801, -39.6996] - }, - "properties": { - "name": "Lezepupuzene", - "realm_idx": 4305, - "order": "The Order of the Twins", - "resources": ["Wood", "Gold", "Silver", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.1471, -13.72] - }, - "properties": { - "name": "Tundlun", - "realm_idx": 4306, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.1471, -34.62] - }, - "properties": { - "name": "In\u00falil", - "realm_idx": 4307, - "order": "The Order of Power", - "resources": ["Silver", "Cold Iron", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.6591, -19.3841] - }, - "properties": { - "name": "Din Nomo", - "realm_idx": 4308, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Wood", "Sapphire", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.3693, 8.8687] - }, - "properties": { - "name": "She\u00e1sh", - "realm_idx": 4309, - "order": "The Order of Protection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [131.0141, 9.3114] - }, - "properties": { - "name": "Chibgag", - "realm_idx": 4310, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.4102, -24.5061] - }, - "properties": { - "name": "Nuivnguak", - "realm_idx": 4311, - "order": "The Order of Perfection", - "resources": ["True Ice", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.4471, 1.68] - }, - "properties": { - "name": "Panmom", - "realm_idx": 4312, - "order": "The Order of Brilliance", - "resources": ["Wood", "Ironwood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.2471, 7.98] - }, - "properties": { - "name": "Tep pum Nut", - "realm_idx": 4313, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.2474, 28.5118] - }, - "properties": { - "name": "Ulin Ipislin", - "realm_idx": 4314, - "order": "The Order of Reflection", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.6801, 4.3004] - }, - "properties": { - "name": "vum Vuamgoul", - "realm_idx": 4315, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.4471, 43.98] - }, - "properties": { - "name": "kot Sitit", - "realm_idx": 4316, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Coal", "Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.7025, 32.2697] - }, - "properties": { - "name": "Me\u00edr\u010d\u00edet", - "realm_idx": 4317, - "order": "The Order of Anger", - "resources": ["Wood", "Silver", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.28, -52.7996] - }, - "properties": { - "name": "Sookliskus", - "realm_idx": 4318, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.9801, 25.4004] - }, - "properties": { - "name": "Urdurd", - "realm_idx": 4319, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Copper", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.1529, -7.12] - }, - "properties": { - "name": "Iilalulim", - "realm_idx": 4320, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Ethereal Silica", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.6801, 40.4004] - }, - "properties": { - "name": "Lapekpek", - "realm_idx": 4321, - "order": "The Order of Anger", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.5471, 52.28] - }, - "properties": { - "name": "Pea\u2018pea\u2018hum", - "realm_idx": 4322, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.5471, 20.28] - }, - "properties": { - "name": "Hempomnompom", - "realm_idx": 4323, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.8471, -20.02] - }, - "properties": { - "name": "T\u00e2ls\u00eamlol", - "realm_idx": 4324, - "order": "The Order of Giants", - "resources": ["Obsidian", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.8801, -35.7996] - }, - "properties": { - "name": "Unhihkah", - "realm_idx": 4325, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.0471, 30.78] - }, - "properties": { - "name": "Kongom", - "realm_idx": 4326, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.4471, 19.08] - }, - "properties": { - "name": "Rutmurnotut", - "realm_idx": 4327, - "order": "The Order of Skill", - "resources": ["Stone", "Obsidian", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.4699, -16.7519] - }, - "properties": { - "name": "Uzhuzhumusch", - "realm_idx": 4328, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.1398, 27.6553] - }, - "properties": { - "name": "Suchsuzh", - "realm_idx": 4329, - "order": "The Order of Rage", - "resources": ["Coal", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.2407, 52.2647] - }, - "properties": { - "name": "Tenipa Oun", - "realm_idx": 4330, - "order": "The Order of Fury", - "resources": ["Obsidian", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.4276, -14.9439] - }, - "properties": { - "name": "Kiabauk", - "realm_idx": 4331, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.7471, 54.58] - }, - "properties": { - "name": "Kolv\u00edrolmek", - "realm_idx": 4332, - "order": "The Order of Titans", - "resources": ["Ignium", "Stone", "Wood", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.3471, 44.78] - }, - "properties": { - "name": "Slangpanlang", - "realm_idx": 4333, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.5799, 48.7178] - }, - "properties": { - "name": "Hinmuh", - "realm_idx": 4334, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [14.5471, -11.82] - }, - "properties": { - "name": "Edebedux", - "realm_idx": 4335, - "order": "The Order of Power", - "resources": ["Coal", "Hartwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.1077, 26.2987] - }, - "properties": { - "name": "blid Kutriq", - "realm_idx": 4336, - "order": "The Order of Fury", - "resources": ["Wood", "Copper", "Stone", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.1158, 28.502] - }, - "properties": { - "name": "Tunto Tun", - "realm_idx": 4337, - "order": "The Order of Anger", - "resources": ["Ironwood", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.48, 16.5003] - }, - "properties": { - "name": "Sumspok", - "realm_idx": 4338, - "order": "The Order of Detection", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.88, 21.3003] - }, - "properties": { - "name": "Xinug", - "realm_idx": 4339, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.1529, 6.78] - }, - "properties": { - "name": "Umusutak", - "realm_idx": 4340, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.196, -20.6146] - }, - "properties": { - "name": "Sidsis", - "realm_idx": 4341, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Gold", "Wood", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.9801, 47.5004] - }, - "properties": { - "name": "Noutou", - "realm_idx": 4342, - "order": "The Order of Anger", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.18, -20.2997] - }, - "properties": { - "name": "Tukhos", - "realm_idx": 4343, - "order": "The Order of Detection", - "resources": [ - "Silver", - "Wood", - "Copper", - "Cold Iron", - "Obsidian", - "Gold" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.08, -33.6997] - }, - "properties": { - "name": "Inalamun", - "realm_idx": 4344, - "order": "The Order of Detection", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [108.2471, 41.58] - }, - "properties": { - "name": "Shzumshzup", - "realm_idx": 4345, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.48, -49.6997] - }, - "properties": { - "name": "Nonnon", - "realm_idx": 4346, - "order": "The Order of the Fox", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.2471, -12.72] - }, - "properties": { - "name": "Miezuu", - "realm_idx": 4347, - "order": "The Order of Giants", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.9471, 30.28] - }, - "properties": { - "name": "lol Ulg", - "realm_idx": 4348, - "order": "The Order of Skill", - "resources": ["Wood", "Coal", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.9529, -8.22] - }, - "properties": { - "name": "Toestae", - "realm_idx": 4349, - "order": "The Order of the Fox", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.3529, 17.58] - }, - "properties": { - "name": "sik Miktas", - "realm_idx": 4350, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.98, -49.9997] - }, - "properties": { - "name": "Spensal", - "realm_idx": 4351, - "order": "The Order of the Fox", - "resources": ["Stone", "Gold", "Sapphire", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.3741, 29.8742] - }, - "properties": { - "name": "S\u00e1nk\u00edm", - "realm_idx": 4352, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [24.4471, 61.08] - }, - "properties": { - "name": "Dugdug", - "realm_idx": 4353, - "order": "The Order of Titans", - "resources": [ - "Wood", - "Ironwood", - "Silver", - "Stone", - "Cold Iron", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.5529, -23.12] - }, - "properties": { - "name": "ka Tamusalu", - "realm_idx": 4354, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.7527, 50.9801] - }, - "properties": { - "name": "Noyptusmes", - "realm_idx": 4355, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.4801, -27.6996] - }, - "properties": { - "name": "Munnun", - "realm_idx": 4356, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal", "Stone", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.8801, -28.4996] - }, - "properties": { - "name": "Nakelkkitok", - "realm_idx": 4357, - "order": "The Order of the Twins", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.6801, 25.2004] - }, - "properties": { - "name": "Sl\u00e1np\u00e1n", - "realm_idx": 4358, - "order": "The Order of Rage", - "resources": ["Hartwood", "Wood", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.5824, 41.0418] - }, - "properties": { - "name": "Ngueqtuemiu", - "realm_idx": 4359, - "order": "The Order of Anger", - "resources": ["Coal", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.7471, 29.28] - }, - "properties": { - "name": "Nunupu", - "realm_idx": 4360, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.298, -22.4951] - }, - "properties": { - "name": "Tattes", - "realm_idx": 4361, - "order": "The Order of Protection", - "resources": ["Copper", "Wood", "Silver", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.8471, 12.58] - }, - "properties": { - "name": "Chikr\u00e9ghrir", - "realm_idx": 4362, - "order": "The Order of Protection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.0471, -10.02] - }, - "properties": { - "name": "Nronmr\u00e1mhr\u00edh", - "realm_idx": 4363, - "order": "The Order of Power", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.4801, -14.8996] - }, - "properties": { - "name": "Wlanlum", - "realm_idx": 4364, - "order": "The Order of Rage", - "resources": ["Ruby", "Stone", "Ironwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.28, -34.7997] - }, - "properties": { - "name": "Virgim", - "realm_idx": 4365, - "order": "The Order of the Fox", - "resources": ["Wood", "Hartwood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.0801, -20.6996] - }, - "properties": { - "name": "Nuktikmaknuk", - "realm_idx": 4366, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.9471, -12.72] - }, - "properties": { - "name": "\u00danin\u00e1nik\u00f3n\u00f3k", - "realm_idx": 4367, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.38, -55.2996] - }, - "properties": { - "name": "Ilpilellil", - "realm_idx": 4368, - "order": "The Order of the Fox", - "resources": ["Wood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.4471, 37.68] - }, - "properties": { - "name": "Uuliuen", - "realm_idx": 4369, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Gold", "Alchemical Silver", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [129.9463, 4.6571] - }, - "properties": { - "name": "Yazghij", - "realm_idx": 4370, - "order": "The Order of Protection", - "resources": [ - "Deep Crystal", - "Stone", - "Silver", - "Obsidian", - "Coal", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.08, -54.3996] - }, - "properties": { - "name": "Mogroporo", - "realm_idx": 4371, - "order": "The Order of the Fox", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.48, 2.3003] - }, - "properties": { - "name": "Smalkilsnit", - "realm_idx": 4372, - "order": "The Order of Reflection", - "resources": ["Wood", "Silver", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.1471, 29.88] - }, - "properties": { - "name": "\u010cwekzek", - "realm_idx": 4373, - "order": "The Order of Skill", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.58, -16.8997] - }, - "properties": { - "name": "ar Edonon", - "realm_idx": 4374, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Copper", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.9471, -11.32] - }, - "properties": { - "name": "Tetamtam", - "realm_idx": 4375, - "order": "The Order of Giants", - "resources": ["True Ice", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.48, 13.0003] - }, - "properties": { - "name": "Pip skum Pak", - "realm_idx": 4376, - "order": "The Order of Detection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [14.9471, 20.28] - }, - "properties": { - "name": "Lumpom", - "realm_idx": 4377, - "order": "The Order of Titans", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.1471, -12.72] - }, - "properties": { - "name": "Letlyos", - "realm_idx": 4378, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.5801, -18.9996] - }, - "properties": { - "name": "un-Itelel", - "realm_idx": 4379, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.38, -6.7997] - }, - "properties": { - "name": "E T\u00e1n", - "realm_idx": 4380, - "order": "The Order of Detection", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.4529, -23.72] - }, - "properties": { - "name": "Mu\u0161ed O\u0161mud", - "realm_idx": 4381, - "order": "The Order of Power", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.8801, 7.1004] - }, - "properties": { - "name": "Nyapuszrug", - "realm_idx": 4382, - "order": "The Order of Rage", - "resources": ["Silver", "Coal", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.6471, 16.68] - }, - "properties": { - "name": "Nuwm\u00fcn", - "realm_idx": 4383, - "order": "The Order of Titans", - "resources": ["Wood", "Obsidian", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.6471, 1.28] - }, - "properties": { - "name": "Mesch", - "realm_idx": 4384, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.2801, 42.1004] - }, - "properties": { - "name": "Sisskitspis", - "realm_idx": 4385, - "order": "The Order of Anger", - "resources": [ - "Stone", - "Coal", - "Copper", - "Deep Crystal", - "Silver", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.9471, -24.02] - }, - "properties": { - "name": "Uskiki", - "realm_idx": 4386, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Deep Crystal", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.78, 28.3003] - }, - "properties": { - "name": "Luollomkuol", - "realm_idx": 4387, - "order": "The Order of Reflection", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.8471, -32.02] - }, - "properties": { - "name": "Xwuxghozh", - "realm_idx": 4388, - "order": "The Order of Giants", - "resources": ["Coal", "Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.88, -30.5997] - }, - "properties": { - "name": "Mamtlinpin", - "realm_idx": 4389, - "order": "The Order of the Fox", - "resources": ["Stone", "Gold", "Wood", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.8801, 27.1004] - }, - "properties": { - "name": "Murpsumurp", - "realm_idx": 4390, - "order": "The Order of Rage", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [126.9279, 8.6531] - }, - "properties": { - "name": "Heshe", - "realm_idx": 4391, - "order": "The Order of Protection", - "resources": ["Ironwood", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.2471, 14.68] - }, - "properties": { - "name": "Nunulisusu", - "realm_idx": 4392, - "order": "The Order of Protection", - "resources": ["Obsidian", "Cold Iron", "Deep Crystal", "Gold", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.6529, 40.78] - }, - "properties": { - "name": "Q\u00e9lm\u00e9nm\u00e9n", - "realm_idx": 4393, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.5471, -13.52] - }, - "properties": { - "name": "Xtaaktakaap", - "realm_idx": 4394, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.8086, 33.858] - }, - "properties": { - "name": "Kuknoskok", - "realm_idx": 4395, - "order": "The Order of Anger", - "resources": ["Coal", "Silver", "Wood", "Ethereal Silica", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.8471, -30.72] - }, - "properties": { - "name": "Lumsmomkon", - "realm_idx": 4396, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.0801, -43.0996] - }, - "properties": { - "name": "Swqwkqaes", - "realm_idx": 4397, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.8471, -31.62] - }, - "properties": { - "name": "Slunsnun", - "realm_idx": 4398, - "order": "The Order of Giants", - "resources": ["Obsidian", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.4471, -31.62] - }, - "properties": { - "name": "Sbisshush", - "realm_idx": 4399, - "order": "The Order of Power", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.3801, 4.5004] - }, - "properties": { - "name": "Itusek", - "realm_idx": 4400, - "order": "The Order of Rage", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.8471, -42.72] - }, - "properties": { - "name": "smu Spisnu", - "realm_idx": 4401, - "order": "The Order of Giants", - "resources": ["Obsidian", "Wood", "Silver", "Ignium", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.0496, -31.9929] - }, - "properties": { - "name": "Sgugi", - "realm_idx": 4402, - "order": "The Order of Reflection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.6894, -29.0517] - }, - "properties": { - "name": "Emap-Emukem", - "realm_idx": 4403, - "order": "The Order of Protection", - "resources": [ - "Obsidian", - "Wood", - "Silver", - "Copper", - "Cold Iron", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.3732, -20.4304] - }, - "properties": { - "name": "Sapnenunek", - "realm_idx": 4404, - "order": "The Order of Perfection", - "resources": ["Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.3865, -33.9387] - }, - "properties": { - "name": "Apmowmam", - "realm_idx": 4405, - "order": "The Order of the Fox", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.08, 22.5003] - }, - "properties": { - "name": "N\u00e2rspwrkwrt", - "realm_idx": 4406, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.8596, -21.0436] - }, - "properties": { - "name": "\u00cflmerper", - "realm_idx": 4407, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.5527, 51.6801] - }, - "properties": { - "name": "Unkokunu-Uku", - "realm_idx": 4408, - "order": "The Order of the Twins", - "resources": ["Copper", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.0471, 8.48] - }, - "properties": { - "name": "Tyinnyaswin", - "realm_idx": 4409, - "order": "The Order of Brilliance", - "resources": ["Cold Iron", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.5471, -11.42] - }, - "properties": { - "name": "Mulsot", - "realm_idx": 4410, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.68, -56.8996] - }, - "properties": { - "name": "Mumgamnum", - "realm_idx": 4411, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.5801, 46.1004] - }, - "properties": { - "name": "Sun-Nlin", - "realm_idx": 4412, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.2471, 32.88] - }, - "properties": { - "name": "Emenatihup", - "realm_idx": 4413, - "order": "The Order of Titans", - "resources": [ - "Ruby", - "Stone", - "Sapphire", - "Coal", - "Obsidian", - "Wood", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.7579, 4.655] - }, - "properties": { - "name": "Helhur", - "realm_idx": 4414, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.6801, 43.6004] - }, - "properties": { - "name": "Godsadosh", - "realm_idx": 4415, - "order": "The Order of Anger", - "resources": ["Silver", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.8801, 26.1004] - }, - "properties": { - "name": "Kotilo", - "realm_idx": 4416, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [13.3471, 22.88] - }, - "properties": { - "name": "Monemmenmun", - "realm_idx": 4417, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.7471, 6.18] - }, - "properties": { - "name": "Pavu Pa", - "realm_idx": 4418, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.08, -31.5997] - }, - "properties": { - "name": "Soltulanmit", - "realm_idx": 4419, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.5632, 9.722] - }, - "properties": { - "name": "Ayghaynghaw", - "realm_idx": 4420, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.18, -17.8997] - }, - "properties": { - "name": "Ngeroraggum", - "realm_idx": 4421, - "order": "The Order of Reflection", - "resources": ["Stone", "Gold", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.5265, -21.6905] - }, - "properties": { - "name": "Usamusam", - "realm_idx": 4422, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.4471, -42.42] - }, - "properties": { - "name": "Honum", - "realm_idx": 4423, - "order": "The Order of Giants", - "resources": ["Cold Iron", "Silver", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.0801, -19.0996] - }, - "properties": { - "name": "U a Ng\u00edu", - "realm_idx": 4424, - "order": "The Order of the Twins", - "resources": ["Dragonhide", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [13.5471, 23.78] - }, - "properties": { - "name": "Ajajasupak", - "realm_idx": 4425, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.4471, -44.82] - }, - "properties": { - "name": "Zakgis", - "realm_idx": 4426, - "order": "The Order of Giants", - "resources": ["Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.809, 41.1152] - }, - "properties": { - "name": "Qiiwnutel", - "realm_idx": 4427, - "order": "The Order of Anger", - "resources": ["Obsidian", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.9801, -33.0996] - }, - "properties": { - "name": "uw-Ubkuujku", - "realm_idx": 4428, - "order": "The Order of the Twins", - "resources": ["Stone", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.2801, 4.3004] - }, - "properties": { - "name": "Shlimbl\u00e1n", - "realm_idx": 4429, - "order": "The Order of Rage", - "resources": ["Stone", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.4471, -18.32] - }, - "properties": { - "name": "Guskut", - "realm_idx": 4430, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.7471, 19.18] - }, - "properties": { - "name": "Ri\u2018wik", - "realm_idx": 4431, - "order": "The Order of Brilliance", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.6471, 2.18] - }, - "properties": { - "name": "W\u00edlwawl\u00edp", - "realm_idx": 4432, - "order": "The Order of Power", - "resources": ["Ironwood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.4869, 42.1303] - }, - "properties": { - "name": "Ukamunakanun", - "realm_idx": 4433, - "order": "The Order of Anger", - "resources": ["Obsidian", "Coal", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.1529, -25.02] - }, - "properties": { - "name": "Kunumnum", - "realm_idx": 4434, - "order": "The Order of Power", - "resources": ["Diamonds", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.3471, 1.28] - }, - "properties": { - "name": "Raung", - "realm_idx": 4435, - "order": "The Order of Brilliance", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.58, 2.9003] - }, - "properties": { - "name": "T\u00edmt\u00edm", - "realm_idx": 4436, - "order": "The Order of Detection", - "resources": ["Coal", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.2607, -23.2792] - }, - "properties": { - "name": "Ungungnung", - "realm_idx": 4437, - "order": "The Order of Protection", - "resources": ["Stone", "Gold", "Wood", "Silver", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.6722, -45.2708] - }, - "properties": { - "name": "Nruchtyn", - "realm_idx": 4438, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Copper", "Wood", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.6471, 4.98] - }, - "properties": { - "name": "Nyimkah", - "realm_idx": 4439, - "order": "The Order of Protection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.0172, -35.8571] - }, - "properties": { - "name": "Alhulp", - "realm_idx": 4440, - "order": "The Order of Reflection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.4471, 20.78] - }, - "properties": { - "name": "Pona Ouuupon", - "realm_idx": 4441, - "order": "The Order of Titans", - "resources": ["Alchemical Silver", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.58, 35.0003] - }, - "properties": { - "name": "Kouzhuzhhe", - "realm_idx": 4442, - "order": "The Order of Fury", - "resources": [ - "Obsidian", - "Copper", - "Sapphire", - "Ethereal Silica", - "Wood", - "Coal", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.0126, 37.084] - }, - "properties": { - "name": "Ur Ol", - "realm_idx": 4443, - "order": "The Order of Fury", - "resources": [ - "Copper", - "Obsidian", - "Cold Iron", - "Stone", - "Wood", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.8801, 44.8004] - }, - "properties": { - "name": "Tannin", - "realm_idx": 4444, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.5801, -19.8996] - }, - "properties": { - "name": "i Som mo Kan", - "realm_idx": 4445, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.7471, 10.18] - }, - "properties": { - "name": "Pubchaschazh", - "realm_idx": 4446, - "order": "The Order of Titans", - "resources": ["Ironwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.18, -14.8997] - }, - "properties": { - "name": "Rintunrin", - "realm_idx": 4447, - "order": "The Order of Reflection", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.8062, -28.3959] - }, - "properties": { - "name": "Leeliinote", - "realm_idx": 4448, - "order": "The Order of Protection", - "resources": [ - "Obsidian", - "Stone", - "Wood", - "Copper", - "Ignium", - "Coal", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.8801, 35.0004] - }, - "properties": { - "name": "Eamie", - "realm_idx": 4449, - "order": "The Order of Anger", - "resources": ["Wood", "Obsidian", "Gold", "Ruby", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.6998, -19.951] - }, - "properties": { - "name": "Telute", - "realm_idx": 4450, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.047, -1.42] - }, - "properties": { - "name": "No\u0161su\u0161u", - "realm_idx": 4451, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Ignium", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.38, -7.1997] - }, - "properties": { - "name": "Ngunngun", - "realm_idx": 4452, - "order": "The Order of Detection", - "resources": ["Wood", "Ironwood", "Ruby", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.1801, -53.2996] - }, - "properties": { - "name": "Blizshemr\u00edn", - "realm_idx": 4453, - "order": "The Order of the Twins", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.4471, -21.32] - }, - "properties": { - "name": "A\u2018ipipiw", - "realm_idx": 4454, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.5801, -54.6996] - }, - "properties": { - "name": "Sinsyavit", - "realm_idx": 4455, - "order": "The Order of the Twins", - "resources": ["Stone", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.5471, 26.18] - }, - "properties": { - "name": "Klunpin", - "realm_idx": 4456, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.2471, 7.78] - }, - "properties": { - "name": "P\u00fapl\u00f3puull\u00f3p", - "realm_idx": 4457, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.1801, 26.7004] - }, - "properties": { - "name": "poh Huhnoyn", - "realm_idx": 4458, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.68, 0.3003] - }, - "properties": { - "name": "Tetnehtet", - "realm_idx": 4459, - "order": "The Order of Detection", - "resources": [ - "Copper", - "Gold", - "Stone", - "Ethereal Silica", - "Wood", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.18, -50.8996] - }, - "properties": { - "name": "Ngotpishyog", - "realm_idx": 4460, - "order": "The Order of the Fox", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.8471, -14.32] - }, - "properties": { - "name": "Soud-Biokh", - "realm_idx": 4461, - "order": "The Order of Power", - "resources": ["Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.8529, 36.28] - }, - "properties": { - "name": "Si\u00e1kai", - "realm_idx": 4462, - "order": "The Order of Titans", - "resources": ["Gold", "Wood", "Copper", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.8471, -2.52] - }, - "properties": { - "name": "Stakfh\u00e2msm\u00e2n", - "realm_idx": 4463, - "order": "The Order of Giants", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.2471, 25.78] - }, - "properties": { - "name": "L\u00e1kkuskoskak", - "realm_idx": 4464, - "order": "The Order of Skill", - "resources": ["Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.7471, 18.48] - }, - "properties": { - "name": "N\u00f6mn\u00fcng", - "realm_idx": 4465, - "order": "The Order of Brilliance", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.4529, -26.52] - }, - "properties": { - "name": "Sitimullulim", - "realm_idx": 4466, - "order": "The Order of Power", - "resources": ["Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.8801, 46.5004] - }, - "properties": { - "name": "Pimimiti", - "realm_idx": 4467, - "order": "The Order of Anger", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-127.08, 4.9003] - }, - "properties": { - "name": "Sh\u00edshishra", - "realm_idx": 4468, - "order": "The Order of Detection", - "resources": ["Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.88, -44.1996] - }, - "properties": { - "name": "Aghkhur", - "realm_idx": 4469, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Coal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.0471, 8.08] - }, - "properties": { - "name": "Peo\u2018neun", - "realm_idx": 4470, - "order": "The Order of Protection", - "resources": ["Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.2471, 51.48] - }, - "properties": { - "name": "klok Ol", - "realm_idx": 4471, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.3471, 46.78] - }, - "properties": { - "name": "Wewpuwhrow", - "realm_idx": 4472, - "order": "The Order of Titans", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.2471, -10.92] - }, - "properties": { - "name": "Letkrenpelek", - "realm_idx": 4473, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.0403, 41.6196] - }, - "properties": { - "name": "Shrukshtos", - "realm_idx": 4474, - "order": "The Order of Fury", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.2801, 25.5004] - }, - "properties": { - "name": "Wonwu\u2018wrul", - "realm_idx": 4475, - "order": "The Order of Anger", - "resources": ["Copper", "Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.88, -48.0996] - }, - "properties": { - "name": "Muil\u00e9\u00e1t", - "realm_idx": 4476, - "order": "The Order of the Fox", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.2197, 51.3712] - }, - "properties": { - "name": "Tuta-Namani", - "realm_idx": 4477, - "order": "The Order of Fury", - "resources": ["Stone", "Obsidian", "Coal", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.18, -7.6997] - }, - "properties": { - "name": "Ninpenhok", - "realm_idx": 4478, - "order": "The Order of Detection", - "resources": [ - "Ironwood", - "Wood", - "Stone", - "Ethereal Silica", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.8801, -25.4996] - }, - "properties": { - "name": "M\u00e1nm\u00e1n", - "realm_idx": 4479, - "order": "The Order of the Twins", - "resources": [ - "Deep Crystal", - "Twilight Quartz", - "Wood", - "Cold Iron", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.106, -17.3877] - }, - "properties": { - "name": "Plasmimmes", - "realm_idx": 4480, - "order": "The Order of Protection", - "resources": ["Silver", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.0801, 36.6004] - }, - "properties": { - "name": "il Ii", - "realm_idx": 4481, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.4471, -18.92] - }, - "properties": { - "name": "Niennoyt", - "realm_idx": 4482, - "order": "The Order of Perfection", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.7471, -7.92] - }, - "properties": { - "name": "Kisun Umum", - "realm_idx": 4483, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.2471, 14.18] - }, - "properties": { - "name": "uls Uln", - "realm_idx": 4484, - "order": "The Order of Protection", - "resources": ["Ruby", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.4471, 38.68] - }, - "properties": { - "name": "Sumsyen", - "realm_idx": 4485, - "order": "The Order of Skill", - "resources": ["Coal", "Cold Iron", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.5529, -7.62] - }, - "properties": { - "name": "L\u00ednk\u00e1s", - "realm_idx": 4486, - "order": "The Order of the Fox", - "resources": ["Stone", "Coal", "Silver", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.3471, 49.58] - }, - "properties": { - "name": "Zurzur", - "realm_idx": 4487, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.18, -1.7997] - }, - "properties": { - "name": "M\u00fa\u00f3saes", - "realm_idx": 4488, - "order": "The Order of Detection", - "resources": ["Coal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.8746, 32.7129] - }, - "properties": { - "name": "et Imim", - "realm_idx": 4489, - "order": "The Order of Reflection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.98, 8.1003] - }, - "properties": { - "name": "e Munek", - "realm_idx": 4490, - "order": "The Order of Detection", - "resources": ["Wood", "Copper", "Coal", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.7471, 31.68] - }, - "properties": { - "name": "Toekmop", - "realm_idx": 4491, - "order": "The Order of Skill", - "resources": ["Ironwood", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.0471, -41.62] - }, - "properties": { - "name": "Meskol", - "realm_idx": 4492, - "order": "The Order of Giants", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.6529, 41.28] - }, - "properties": { - "name": "Sikmijik", - "realm_idx": 4493, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.6931, 47.4778] - }, - "properties": { - "name": "Oonitetat", - "realm_idx": 4494, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.9529, 46.68] - }, - "properties": { - "name": "Sinim", - "realm_idx": 4495, - "order": "The Order of Fury", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.2471, 51.38] - }, - "properties": { - "name": "Sekpem", - "realm_idx": 4496, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Ethereal Silica", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [44.0471, -15.02] - }, - "properties": { - "name": "Ilirmnirneir", - "realm_idx": 4497, - "order": "The Order of Giants", - "resources": ["Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.4471, -9.42] - }, - "properties": { - "name": "Qizyis", - "realm_idx": 4498, - "order": "The Order of Power", - "resources": ["Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.0529, 48.58] - }, - "properties": { - "name": "Ich\u00e1k \u00c9demem", - "realm_idx": 4499, - "order": "The Order of Fury", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.6801, 24.8004] - }, - "properties": { - "name": "Ungtom", - "realm_idx": 4500, - "order": "The Order of Rage", - "resources": ["Twilight Quartz", "Wood", "Coal", "Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.0495, -29.0699] - }, - "properties": { - "name": "Fpuwfpuwlal", - "realm_idx": 4501, - "order": "The Order of Protection", - "resources": ["Stone", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.3801, -44.6996] - }, - "properties": { - "name": "in Onpon", - "realm_idx": 4502, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone", "Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.5471, 21.28] - }, - "properties": { - "name": "Kolkelnnellu", - "realm_idx": 4503, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Copper", "Dragonhide", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.6471, 13.48] - }, - "properties": { - "name": "Nummunpunhem", - "realm_idx": 4504, - "order": "The Order of Brilliance", - "resources": ["Wood", "Silver", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.5801, -33.4996] - }, - "properties": { - "name": "Numlunnul", - "realm_idx": 4505, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.3471, -34.12] - }, - "properties": { - "name": "Klan rin Ol", - "realm_idx": 4506, - "order": "The Order of Power", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.0471, 25.98] - }, - "properties": { - "name": "Revivivu", - "realm_idx": 4507, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Coal", "Wood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.5471, 2.98] - }, - "properties": { - "name": "Eneletetum", - "realm_idx": 4508, - "order": "The Order of Brilliance", - "resources": ["Stone", "Silver", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.6471, 23.88] - }, - "properties": { - "name": "Katpekpol", - "realm_idx": 4509, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.2801, -38.3996] - }, - "properties": { - "name": "Munkikkik", - "realm_idx": 4510, - "order": "The Order of the Twins", - "resources": ["Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.18, -38.0997] - }, - "properties": { - "name": "Kununukapa", - "realm_idx": 4511, - "order": "The Order of the Fox", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.0352, 8.8761] - }, - "properties": { - "name": "Kutostaskek", - "realm_idx": 4512, - "order": "The Order of Protection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.18, 10.5003] - }, - "properties": { - "name": "Ukavis", - "realm_idx": 4513, - "order": "The Order of Fury", - "resources": ["Gold", "Wood", "Cold Iron", "Copper", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.3801, -27.1996] - }, - "properties": { - "name": "Shrop Shduch", - "realm_idx": 4514, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.1822, 46.8525] - }, - "properties": { - "name": "Owapiw", - "realm_idx": 4515, - "order": "The Order of Anger", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.5471, -17.52] - }, - "properties": { - "name": "Dluzhsil", - "realm_idx": 4516, - "order": "The Order of Perfection", - "resources": [ - "Ethereal Silica", - "Coal", - "Wood", - "Ignium", - "Cold Iron", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.7801, 47.4004] - }, - "properties": { - "name": "Aj\u00edjujt", - "realm_idx": 4517, - "order": "The Order of Anger", - "resources": ["True Ice", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.5471, 6.48] - }, - "properties": { - "name": "Spukpes", - "realm_idx": 4518, - "order": "The Order of Brilliance", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.6471, 36.48] - }, - "properties": { - "name": "Us Ul", - "realm_idx": 4519, - "order": "The Order of Skill", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.0471, 47.08] - }, - "properties": { - "name": "Mohoynekow", - "realm_idx": 4520, - "order": "The Order of Skill", - "resources": ["Obsidian", "Stone", "Copper", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.08, 29.3003] - }, - "properties": { - "name": "Irsirs\u00e4ln", - "realm_idx": 4521, - "order": "The Order of Fury", - "resources": ["Coal", "Wood", "Deep Crystal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.1471, 28.48] - }, - "properties": { - "name": "M\u00ebn\u00eftezh", - "realm_idx": 4522, - "order": "The Order of Skill", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.4529, 23.58] - }, - "properties": { - "name": "Upipipap", - "realm_idx": 4523, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.0801, -17.0996] - }, - "properties": { - "name": "Liupui", - "realm_idx": 4524, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.7471, -25.72] - }, - "properties": { - "name": "pit Pin Sus", - "realm_idx": 4525, - "order": "The Order of Giants", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.5471, 39.68] - }, - "properties": { - "name": "T\u00f3ks\u00f3s", - "realm_idx": 4526, - "order": "The Order of Enlightenment", - "resources": ["Coal", "True Ice", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.5471, -32.82] - }, - "properties": { - "name": "Kunpan", - "realm_idx": 4527, - "order": "The Order of Giants", - "resources": ["Coal", "Copper", "Wood", "Obsidian", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.0471, -51.62] - }, - "properties": { - "name": "Klammrim", - "realm_idx": 4528, - "order": "The Order of Giants", - "resources": ["Silver", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.8471, 44.98] - }, - "properties": { - "name": "Lammurtpik", - "realm_idx": 4529, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.38, -30.8997] - }, - "properties": { - "name": "Otezhoted", - "realm_idx": 4530, - "order": "The Order of Detection", - "resources": ["Coal", "Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.58, -54.6996] - }, - "properties": { - "name": "Kungkungmam", - "realm_idx": 4531, - "order": "The Order of the Fox", - "resources": ["Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.9806, 5.6592] - }, - "properties": { - "name": "mai-Tainuim", - "realm_idx": 4532, - "order": "The Order of Protection", - "resources": ["Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.48, 28.5003] - }, - "properties": { - "name": "Puy\u2018uyuywpuy", - "realm_idx": 4533, - "order": "The Order of Fury", - "resources": ["Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.88, -0.2997] - }, - "properties": { - "name": "Men Gim", - "realm_idx": 4534, - "order": "The Order of Detection", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.4801, 26.0004] - }, - "properties": { - "name": "Inblot", - "realm_idx": 4535, - "order": "The Order of Anger", - "resources": ["Cold Iron", "Hartwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.0471, 44.08] - }, - "properties": { - "name": "Punundilwulw", - "realm_idx": 4536, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.8801, 31.2004] - }, - "properties": { - "name": "Mup\u00e1s\u00ed", - "realm_idx": 4537, - "order": "The Order of Anger", - "resources": ["Silver", "Wood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.78, -51.0996] - }, - "properties": { - "name": "Ziyikekue", - "realm_idx": 4538, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.7529, 1.88] - }, - "properties": { - "name": "P\u00fattos", - "realm_idx": 4539, - "order": "The Order of Vitriol", - "resources": ["Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.0471, -29.52] - }, - "properties": { - "name": "Gam\u00e4zz\u00efy\u00efch", - "realm_idx": 4540, - "order": "The Order of Giants", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.5801, -39.0996] - }, - "properties": { - "name": "Kutimeke", - "realm_idx": 4541, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Ironwood", "Stone", "Cold Iron", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.8471, -21.22] - }, - "properties": { - "name": "Nintesmuem", - "realm_idx": 4542, - "order": "The Order of Perfection", - "resources": ["Stone", "Obsidian", "Cold Iron", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.1742, 46.1057] - }, - "properties": { - "name": "Uhabazedum", - "realm_idx": 4543, - "order": "The Order of Anger", - "resources": ["Copper", "Wood", "Coal", "Deep Crystal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.5471, -9.22] - }, - "properties": { - "name": "Tchich", - "realm_idx": 4544, - "order": "The Order of Giants", - "resources": ["Deep Crystal", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.6529, -41.32] - }, - "properties": { - "name": "Siesios", - "realm_idx": 4545, - "order": "The Order of Power", - "resources": ["Copper", "Wood", "Ignium", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.6529, -10.12] - }, - "properties": { - "name": "Suskus", - "realm_idx": 4546, - "order": "The Order of the Fox", - "resources": ["Stone", "Obsidian", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.4529, 52.18] - }, - "properties": { - "name": "Duntchi", - "realm_idx": 4547, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.3471, -39.72] - }, - "properties": { - "name": "Peuut", - "realm_idx": 4548, - "order": "The Order of Giants", - "resources": ["Coal", "Gold", "Ruby", "Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.38, -60.2996] - }, - "properties": { - "name": "Numuls", - "realm_idx": 4549, - "order": "The Order of the Fox", - "resources": ["Coal", "Deep Crystal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.9529, -25.82] - }, - "properties": { - "name": "Tulnlu", - "realm_idx": 4550, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.4471, 27.58] - }, - "properties": { - "name": "Urkmotmoturk", - "realm_idx": 4551, - "order": "The Order of Titans", - "resources": ["Silver", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.5942, 52.2854] - }, - "properties": { - "name": "Smumu", - "realm_idx": 4552, - "order": "The Order of Fury", - "resources": ["Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.7471, 51.58] - }, - "properties": { - "name": "Yeoyhoeyaet", - "realm_idx": 4553, - "order": "The Order of Skill", - "resources": ["Coal", "Stone", "Ruby", "Sapphire", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.5471, -43.72] - }, - "properties": { - "name": "mrus At", - "realm_idx": 4554, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.1471, 51.18] - }, - "properties": { - "name": "Tinn\u00e1mn\u00e1m", - "realm_idx": 4555, - "order": "The Order of Enlightenment", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.0471, 42.78] - }, - "properties": { - "name": "Somkulmen", - "realm_idx": 4556, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.7999, 14.2972] - }, - "properties": { - "name": "Linglingnun", - "realm_idx": 4557, - "order": "The Order of Fury", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.1393, 43.5313] - }, - "properties": { - "name": "dam Dan", - "realm_idx": 4558, - "order": "The Order of Anger", - "resources": ["Ironwood", "Coal", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.2801, -23.1996] - }, - "properties": { - "name": "Yoqroq-Aghey", - "realm_idx": 4559, - "order": "The Order of the Twins", - "resources": ["Copper", "Ironwood", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-41.2529, -11.62] - }, - "properties": { - "name": "Stumstemkep", - "realm_idx": 4560, - "order": "The Order of the Fox", - "resources": ["Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.4471, 19.48] - }, - "properties": { - "name": "Kl\u00falglozhdip", - "realm_idx": 4561, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.18, -47.3996] - }, - "properties": { - "name": "Smalmisskum", - "realm_idx": 4562, - "order": "The Order of the Fox", - "resources": ["Copper", "Obsidian", "Wood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.9529, -20.52] - }, - "properties": { - "name": "Nanljimnwan", - "realm_idx": 4563, - "order": "The Order of Power", - "resources": ["Gold", "Ironwood", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.8659, -14.0673] - }, - "properties": { - "name": "Lisiuiusus", - "realm_idx": 4564, - "order": "The Order of Perfection", - "resources": ["Silver", "Coal", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [23.9471, 41.58] - }, - "properties": { - "name": "Paauaat", - "realm_idx": 4565, - "order": "The Order of Titans", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.98, -27.6997] - }, - "properties": { - "name": "Om\u00f4 Pim\u00f4", - "realm_idx": 4566, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Stone", "Wood", "Coal", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.4471, -5.62] - }, - "properties": { - "name": "Riunruizh", - "realm_idx": 4567, - "order": "The Order of Giants", - "resources": ["Stone", "Copper", "Ruby", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.4471, 55.68] - }, - "properties": { - "name": "Tasskos", - "realm_idx": 4568, - "order": "The Order of Titans", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [44.7471, -15.32] - }, - "properties": { - "name": "Iehhielp", - "realm_idx": 4569, - "order": "The Order of Giants", - "resources": ["Silver", "Wood", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.4901, -38.2571] - }, - "properties": { - "name": "Chutabukcha", - "realm_idx": 4570, - "order": "The Order of Reflection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.0471, -39.22] - }, - "properties": { - "name": "Hikmlah", - "realm_idx": 4571, - "order": "The Order of Giants", - "resources": ["Wood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.7801, -39.1996] - }, - "properties": { - "name": "Rananlin", - "realm_idx": 4572, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.8471, -23.32] - }, - "properties": { - "name": "Nuopouspous", - "realm_idx": 4573, - "order": "The Order of Perfection", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [101.7346, -11.8988] - }, - "properties": { - "name": "\u00c1mezji \u00c1", - "realm_idx": 4574, - "order": "The Order of Perfection", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.7645, -20.0048] - }, - "properties": { - "name": "Nok sak Spek", - "realm_idx": 4575, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.1471, -14.72] - }, - "properties": { - "name": "Niknoknoksak", - "realm_idx": 4576, - "order": "The Order of Giants", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.4048, -17.1007] - }, - "properties": { - "name": "Mumioka", - "realm_idx": 4577, - "order": "The Order of Perfection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.4801, 30.9004] - }, - "properties": { - "name": "Daimsoe", - "realm_idx": 4578, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.3529, 2.18] - }, - "properties": { - "name": "Omunan", - "realm_idx": 4579, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.78, 14.5003] - }, - "properties": { - "name": "Zheschbazizh", - "realm_idx": 4580, - "order": "The Order of Detection", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.68, -54.4996] - }, - "properties": { - "name": "Ruyuwr", - "realm_idx": 4581, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood", "Obsidian", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.9801, -42.6996] - }, - "properties": { - "name": "Pespo\u2018", - "realm_idx": 4582, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.9529, 56.28] - }, - "properties": { - "name": "Maallir", - "realm_idx": 4583, - "order": "The Order of Fury", - "resources": ["Wood", "Ironwood", "Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.5801, 36.4004] - }, - "properties": { - "name": "N\u00e4md\u00ef\u00e4sh", - "realm_idx": 4584, - "order": "The Order of Anger", - "resources": ["Obsidian", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.334, -53.4935] - }, - "properties": { - "name": "Nigman", - "realm_idx": 4585, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Wood", "Copper", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.2512, -53.7387] - }, - "properties": { - "name": "pe-Stut-Tat", - "realm_idx": 4586, - "order": "The Order of the Fox", - "resources": ["Ignium", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.3471, -35.92] - }, - "properties": { - "name": "om Setroktam", - "realm_idx": 4587, - "order": "The Order of Giants", - "resources": ["Wood", "Ruby", "Silver", "Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.08, -45.7997] - }, - "properties": { - "name": "Ukoqojeng", - "realm_idx": 4588, - "order": "The Order of the Fox", - "resources": ["Alchemical Silver", "Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.1529, 9.58] - }, - "properties": { - "name": "Uzhashabuzh", - "realm_idx": 4589, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.3801, 14.4004] - }, - "properties": { - "name": "Nihike Nipi", - "realm_idx": 4590, - "order": "The Order of Rage", - "resources": ["Copper", "Ruby", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.2471, 13.58] - }, - "properties": { - "name": "Nogmopsetde", - "realm_idx": 4591, - "order": "The Order of Titans", - "resources": ["Obsidian", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.08, -26.6997] - }, - "properties": { - "name": "Numtunfnon", - "realm_idx": 4592, - "order": "The Order of Reflection", - "resources": ["Stone", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.6471, -22.72] - }, - "properties": { - "name": "Neksek", - "realm_idx": 4593, - "order": "The Order of Giants", - "resources": ["Coal", "Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.7801, -15.2996] - }, - "properties": { - "name": "Usonuup", - "realm_idx": 4594, - "order": "The Order of Rage", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.8801, -56.0996] - }, - "properties": { - "name": "ol Aln", - "realm_idx": 4595, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Obsidian", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.2529, -14.42] - }, - "properties": { - "name": "Shmukshbus", - "realm_idx": 4596, - "order": "The Order of Power", - "resources": ["Wood", "Obsidian", "Silver", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.4246, 30.0479] - }, - "properties": { - "name": "Mempukup", - "realm_idx": 4597, - "order": "The Order of Fury", - "resources": ["Copper", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.8529, 18.68] - }, - "properties": { - "name": "Panlun", - "realm_idx": 4598, - "order": "The Order of Vitriol", - "resources": ["Wood", "Obsidian", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.8529, 49.28] - }, - "properties": { - "name": "Ajntanunnewh", - "realm_idx": 4599, - "order": "The Order of Fury", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.7471, 4.88] - }, - "properties": { - "name": "hom Em", - "realm_idx": 4600, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.8471, 43.38] - }, - "properties": { - "name": "Onotasot", - "realm_idx": 4601, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.0529, 49.78] - }, - "properties": { - "name": "Kekte", - "realm_idx": 4602, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.7471, 20.28] - }, - "properties": { - "name": "spi\u2018 Smum", - "realm_idx": 4603, - "order": "The Order of Brilliance", - "resources": ["Coal", "Stone", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.4471, 20.78] - }, - "properties": { - "name": "Numai", - "realm_idx": 4604, - "order": "The Order of Brilliance", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.0061, 37.3351] - }, - "properties": { - "name": "ut-Unukumus", - "realm_idx": 4605, - "order": "The Order of Fury", - "resources": [ - "Obsidian", - "Wood", - "Silver", - "Ethereal Silica", - "Coal", - "Gold" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.3471, -14.12] - }, - "properties": { - "name": "\u00c4usisig\u00e4ak", - "realm_idx": 4606, - "order": "The Order of Giants", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.701, 18.5246] - }, - "properties": { - "name": "Liaat", - "realm_idx": 4607, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.9801, 45.9004] - }, - "properties": { - "name": "Chokchekdaak", - "realm_idx": 4608, - "order": "The Order of Anger", - "resources": ["Stone", "Wood", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.6471, 17.98] - }, - "properties": { - "name": "Kunkum", - "realm_idx": 4609, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.8471, 41.28] - }, - "properties": { - "name": "Niwk\u00f4tlon", - "realm_idx": 4610, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.4529, -40.42] - }, - "properties": { - "name": "\u010cizjepord", - "realm_idx": 4611, - "order": "The Order of Power", - "resources": ["Coal", "Silver", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.7529, 0.98] - }, - "properties": { - "name": "T\u00f6bt\u00f6b", - "realm_idx": 4612, - "order": "The Order of Power", - "resources": ["Wood", "Silver", "Stone", "Diamonds", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.6801, 11.1004] - }, - "properties": { - "name": "Mrush", - "realm_idx": 4613, - "order": "The Order of Rage", - "resources": ["Wood", "Copper", "Ironwood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.4471, -34.12] - }, - "properties": { - "name": "Dulral", - "realm_idx": 4614, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.3163, 4.2943] - }, - "properties": { - "name": "Puno lu Umem", - "realm_idx": 4615, - "order": "The Order of Protection", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.4446, 38.7465] - }, - "properties": { - "name": "Nomem", - "realm_idx": 4616, - "order": "The Order of Fury", - "resources": ["Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.5801, 1.3004] - }, - "properties": { - "name": "Nojnnojn", - "realm_idx": 4617, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.0471, 28.78] - }, - "properties": { - "name": "Konkon", - "realm_idx": 4618, - "order": "The Order of Skill", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.8529, 22.28] - }, - "properties": { - "name": "Ukeba\u017eabes", - "realm_idx": 4619, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Sapphire", "Dragonhide"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.9527, 52.2801] - }, - "properties": { - "name": "Irwwirgi\u017eaw", - "realm_idx": 4620, - "order": "The Order of the Twins", - "resources": ["Stone", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.2471, -37.82] - }, - "properties": { - "name": "P\u00e4\u2018\u00e4nl\u00e4w\u00efm", - "realm_idx": 4621, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.2801, 50.6004] - }, - "properties": { - "name": "nlus Tuyklut", - "realm_idx": 4622, - "order": "The Order of Anger", - "resources": ["Obsidian", "Wood", "Coal", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.8471, 54.48] - }, - "properties": { - "name": "Qighimukhi", - "realm_idx": 4623, - "order": "The Order of Skill", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.8471, 8.48] - }, - "properties": { - "name": "Hikmuspikpus", - "realm_idx": 4624, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.5801, 29.4004] - }, - "properties": { - "name": "Lupekli", - "realm_idx": 4625, - "order": "The Order of Rage", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-48.8529, 48.98] - }, - "properties": { - "name": "qa\u00e1y-Kiak", - "realm_idx": 4626, - "order": "The Order of Fury", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.8529, 45.88] - }, - "properties": { - "name": "H\u00edjhh\u00edjh", - "realm_idx": 4627, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.8194, 9.3075] - }, - "properties": { - "name": "K\u00edse Tunl\u00e9n", - "realm_idx": 4628, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.5471, 42.58] - }, - "properties": { - "name": "Kilwilzil", - "realm_idx": 4629, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Ironwood", "Copper", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.6529, -26.72] - }, - "properties": { - "name": "Dindinbum\u00fcm", - "realm_idx": 4630, - "order": "The Order of Power", - "resources": [ - "Cold Iron", - "Silver", - "Wood", - "Obsidian", - "Stone", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.2529, 31.48] - }, - "properties": { - "name": "\u00e1q \u00c1ntramiy", - "realm_idx": 4631, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.6471, 44.48] - }, - "properties": { - "name": "Rupkisrim", - "realm_idx": 4632, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.7471, 54.48] - }, - "properties": { - "name": "Moh-oh-P\u00eak", - "realm_idx": 4633, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.2471, 57.58] - }, - "properties": { - "name": "Zuzmiztuy", - "realm_idx": 4634, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.6471, 26.98] - }, - "properties": { - "name": "Lako\u2018", - "realm_idx": 4635, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Silver", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.4471, 19.48] - }, - "properties": { - "name": "Slombon Slom", - "realm_idx": 4636, - "order": "The Order of Brilliance", - "resources": ["Silver", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.88, 26.5003] - }, - "properties": { - "name": "Pumasani", - "realm_idx": 4637, - "order": "The Order of Fury", - "resources": ["Stone", "Silver", "Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-77.48, -52.3996] - }, - "properties": { - "name": "Owepoked", - "realm_idx": 4638, - "order": "The Order of the Fox", - "resources": ["Stone", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.6471, -43.82] - }, - "properties": { - "name": "Namkomkun", - "realm_idx": 4639, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Alchemical Silver", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.3471, 13.98] - }, - "properties": { - "name": "Nimpum", - "realm_idx": 4640, - "order": "The Order of Brilliance", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.88, -48.5997] - }, - "properties": { - "name": "Momnohnoh", - "realm_idx": 4641, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.3529, -5.52] - }, - "properties": { - "name": "Opey eq Oeey", - "realm_idx": 4642, - "order": "The Order of the Fox", - "resources": ["Wood", "Silver", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.1801, -52.5996] - }, - "properties": { - "name": "Esesek", - "realm_idx": 4643, - "order": "The Order of the Twins", - "resources": ["Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.4529, -18.92] - }, - "properties": { - "name": "\u00c1h\u00e9n\u00e1t", - "realm_idx": 4644, - "order": "The Order of Power", - "resources": ["Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.9471, 7.68] - }, - "properties": { - "name": "Azhanigug", - "realm_idx": 4645, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.7529, 10.68] - }, - "properties": { - "name": "Krunkruntrom", - "realm_idx": 4646, - "order": "The Order of Vitriol", - "resources": ["Silver", "Stone", "Wood", "Obsidian", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.4529, -21.32] - }, - "properties": { - "name": "Iels Ault", - "realm_idx": 4647, - "order": "The Order of Power", - "resources": ["Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.1529, 10.78] - }, - "properties": { - "name": "Inupupusus", - "realm_idx": 4648, - "order": "The Order of Vitriol", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.68, 12.4003] - }, - "properties": { - "name": "Sonpilp", - "realm_idx": 4649, - "order": "The Order of Detection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.9073, -23.5966] - }, - "properties": { - "name": "Qinsav", - "realm_idx": 4650, - "order": "The Order of Perfection", - "resources": ["Stone", "Coal", "Ruby", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.1927, -10.7449] - }, - "properties": { - "name": "Pj\u00ealj\u00ean", - "realm_idx": 4651, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.6471, 5.78] - }, - "properties": { - "name": "Emutizhizhom", - "realm_idx": 4652, - "order": "The Order of Brilliance", - "resources": ["Coal", "Hartwood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.1678, -24.5589] - }, - "properties": { - "name": "Spimstim", - "realm_idx": 4653, - "order": "The Order of Protection", - "resources": ["Silver", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.1377, 41.158] - }, - "properties": { - "name": "Pilhpilhpilh", - "realm_idx": 4654, - "order": "The Order of Anger", - "resources": ["Stone", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.3527, 52.1801] - }, - "properties": { - "name": "Sasepin", - "realm_idx": 4655, - "order": "The Order of the Twins", - "resources": ["Copper", "Coal", "Stone", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.38, -59.0996] - }, - "properties": { - "name": "Uwi\u2018oz\u2018uzpu", - "realm_idx": 4656, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.3801, 28.3004] - }, - "properties": { - "name": "it-Pus", - "realm_idx": 4657, - "order": "The Order of Rage", - "resources": [ - "Deep Crystal", - "Ironwood", - "Hartwood", - "Copper", - "Stone", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.3801, -14.5996] - }, - "properties": { - "name": "Sitsankot", - "realm_idx": 4658, - "order": "The Order of Rage", - "resources": ["Wood", "Cold Iron", "Coal", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.6471, 28.78] - }, - "properties": { - "name": "Linil lul Li", - "realm_idx": 4659, - "order": "The Order of Skill", - "resources": ["Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.6471, -17.72] - }, - "properties": { - "name": "Tepeziwesu", - "realm_idx": 4660, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-42.8529, 4.88] - }, - "properties": { - "name": "Kallot", - "realm_idx": 4661, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Cold Iron", "Silver", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.1471, -32.22] - }, - "properties": { - "name": "Kl\u00fatkonhlat", - "realm_idx": 4662, - "order": "The Order of Giants", - "resources": ["Wood", "Adamantine", "Ignium", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.5801, 19.6004] - }, - "properties": { - "name": "Mengnongpem", - "realm_idx": 4663, - "order": "The Order of Rage", - "resources": ["Obsidian", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.9801, 11.2004] - }, - "properties": { - "name": "Esamizhooas", - "realm_idx": 4664, - "order": "The Order of Rage", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.9527, 46.0183] - }, - "properties": { - "name": "Isong", - "realm_idx": 4665, - "order": "The Order of the Twins", - "resources": ["Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.98, 34.5003] - }, - "properties": { - "name": "Amut Namut", - "realm_idx": 4666, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.0801, -15.1996] - }, - "properties": { - "name": "Ikanetsch", - "realm_idx": 4667, - "order": "The Order of Rage", - "resources": ["Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.1529, 5.28] - }, - "properties": { - "name": "hun Tlum", - "realm_idx": 4668, - "order": "The Order of Power", - "resources": ["Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.4529, 48.38] - }, - "properties": { - "name": "Som mul Tis", - "realm_idx": 4669, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Silver", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.18, -9.3997] - }, - "properties": { - "name": "Qokqikqik", - "realm_idx": 4670, - "order": "The Order of Detection", - "resources": ["Copper", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.5801, 50.0004] - }, - "properties": { - "name": "Papalu", - "realm_idx": 4671, - "order": "The Order of Anger", - "resources": ["Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.4392, -17.8045] - }, - "properties": { - "name": "Ulg Yulk", - "realm_idx": 4672, - "order": "The Order of Protection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.1801, -36.4996] - }, - "properties": { - "name": "uw-Uk\u00e1numuk", - "realm_idx": 4673, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.8471, 42.68] - }, - "properties": { - "name": "Hurtur", - "realm_idx": 4674, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.0801, 11.3004] - }, - "properties": { - "name": "Sz\u00fcgschoz", - "realm_idx": 4675, - "order": "The Order of Rage", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-132.98, 0.0003] - }, - "properties": { - "name": "Guesshaog", - "realm_idx": 4676, - "order": "The Order of Detection", - "resources": ["Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.18, -59.2996] - }, - "properties": { - "name": "Epakehamamut", - "realm_idx": 4677, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Wood", "Obsidian", "Coal", "Ignium", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.18, -6.8997] - }, - "properties": { - "name": "Aapukin", - "realm_idx": 4678, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.8909, -16.8562] - }, - "properties": { - "name": "Dinschiman", - "realm_idx": 4679, - "order": "The Order of Protection", - "resources": ["Obsidian", "Diamonds", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.58, 1.9003] - }, - "properties": { - "name": "Satlopkik", - "realm_idx": 4680, - "order": "The Order of Detection", - "resources": ["Ironwood", "Cold Iron", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.3631, 36.3512] - }, - "properties": { - "name": "\u00cbkapon", - "realm_idx": 4681, - "order": "The Order of Anger", - "resources": ["Copper", "Wood", "Sapphire", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.5175, 45.0109] - }, - "properties": { - "name": "Nukpi Puspit", - "realm_idx": 4682, - "order": "The Order of Fury", - "resources": ["Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.0471, 19.28] - }, - "properties": { - "name": "Amehenunih", - "realm_idx": 4683, - "order": "The Order of Brilliance", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.8801, 45.9004] - }, - "properties": { - "name": "Kon kun Nim", - "realm_idx": 4684, - "order": "The Order of Anger", - "resources": [ - "Coal", - "Cold Iron", - "Wood", - "Ironwood", - "Stone", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.6074, -21.1323] - }, - "properties": { - "name": "Kuklun", - "realm_idx": 4685, - "order": "The Order of Protection", - "resources": ["Coal", "Stone", "Obsidian", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.8308, -25.1805] - }, - "properties": { - "name": "Riuupruuish", - "realm_idx": 4686, - "order": "The Order of Protection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.2471, 33.38] - }, - "properties": { - "name": "\u2018uol\u2018o\u2018\u2018uol", - "realm_idx": 4687, - "order": "The Order of Titans", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.4471, 17.28] - }, - "properties": { - "name": "Mwsmwsmim", - "realm_idx": 4688, - "order": "The Order of Skill", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.2529, 30.88] - }, - "properties": { - "name": "Tol-Lotol", - "realm_idx": 4689, - "order": "The Order of Vitriol", - "resources": [ - "Wood", - "Twilight Quartz", - "Coal", - "Silver", - "Stone", - "Copper", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.2385, 20.3758] - }, - "properties": { - "name": "Ichichisum", - "realm_idx": 4690, - "order": "The Order of Fury", - "resources": ["Stone", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.48, 28.2003] - }, - "properties": { - "name": "G\u00fangnastam", - "realm_idx": 4691, - "order": "The Order of Fury", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.48, -31.2997] - }, - "properties": { - "name": "Tilpotneuk", - "realm_idx": 4692, - "order": "The Order of the Fox", - "resources": ["Copper", "Hartwood", "Silver", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.0471, 21.88] - }, - "properties": { - "name": "Gio Maumeig", - "realm_idx": 4693, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Silver", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.6801, 22.7004] - }, - "properties": { - "name": "Mu\u2018uwumawu", - "realm_idx": 4694, - "order": "The Order of Rage", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.5801, 45.4004] - }, - "properties": { - "name": "Unnumwup", - "realm_idx": 4695, - "order": "The Order of Anger", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.88, 33.4003] - }, - "properties": { - "name": "Ursnurknurk", - "realm_idx": 4696, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Coal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.38, -11.6997] - }, - "properties": { - "name": "Tuluk", - "realm_idx": 4697, - "order": "The Order of Detection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.4471, 14.48] - }, - "properties": { - "name": "Neltanpin", - "realm_idx": 4698, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.3471, -11.42] - }, - "properties": { - "name": "Sl\u00eapymimo", - "realm_idx": 4699, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Copper", "Ironwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.5471, -11.22] - }, - "properties": { - "name": "Titzipdiuh", - "realm_idx": 4700, - "order": "The Order of Giants", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.6471, 29.28] - }, - "properties": { - "name": "Samkam", - "realm_idx": 4701, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.1801, -36.2996] - }, - "properties": { - "name": "Liwhaw", - "realm_idx": 4702, - "order": "The Order of the Twins", - "resources": ["Hartwood", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.8529, 4.88] - }, - "properties": { - "name": "Lipwi\u2018", - "realm_idx": 4703, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.7015, 3.4235] - }, - "properties": { - "name": "Lwdw Zhwsch", - "realm_idx": 4704, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Diamonds", "Coal", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.5713, -31.7149] - }, - "properties": { - "name": "Tunnonpum", - "realm_idx": 4705, - "order": "The Order of the Fox", - "resources": ["Sapphire", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.4045, -18.0723] - }, - "properties": { - "name": "Heuhpou", - "realm_idx": 4706, - "order": "The Order of Protection", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.3607, -22.7298] - }, - "properties": { - "name": "w\u00e4 In\u00ef\u00e4l I\u00e4l", - "realm_idx": 4707, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.38, 14.4003] - }, - "properties": { - "name": "At\u00e1m \u00c1map", - "realm_idx": 4708, - "order": "The Order of Detection", - "resources": ["Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.0801, -15.5996] - }, - "properties": { - "name": "Kooyn", - "realm_idx": 4709, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.88, -3.1997] - }, - "properties": { - "name": "Zhaobchao", - "realm_idx": 4710, - "order": "The Order of Reflection", - "resources": ["Diamonds", "Silver", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.68, -50.5996] - }, - "properties": { - "name": "Inensangin", - "realm_idx": 4711, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.7801, 26.5004] - }, - "properties": { - "name": "Uzpusaj-Nuz", - "realm_idx": 4712, - "order": "The Order of Rage", - "resources": ["Sapphire", "Ruby", "Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.4471, 8.78] - }, - "properties": { - "name": "Tutatuw", - "realm_idx": 4713, - "order": "The Order of Brilliance", - "resources": ["Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [44.2471, -38.42] - }, - "properties": { - "name": "Opop lup Up", - "realm_idx": 4714, - "order": "The Order of Giants", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.4029, -19.3394] - }, - "properties": { - "name": "Sinanukaku", - "realm_idx": 4715, - "order": "The Order of Protection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.9471, -34.32] - }, - "properties": { - "name": "Wobubugigi", - "realm_idx": 4716, - "order": "The Order of Giants", - "resources": ["Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.9778, -26.6311] - }, - "properties": { - "name": "Taktuksuk", - "realm_idx": 4717, - "order": "The Order of Protection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [131.4568, 8.907] - }, - "properties": { - "name": "Shosnas", - "realm_idx": 4718, - "order": "The Order of Protection", - "resources": ["Silver", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.0471, -20.42] - }, - "properties": { - "name": "Ungeqoq", - "realm_idx": 4719, - "order": "The Order of Power", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.5471, -33.82] - }, - "properties": { - "name": "Srunkrumkon", - "realm_idx": 4720, - "order": "The Order of Power", - "resources": ["Cold Iron", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.5529, 32.78] - }, - "properties": { - "name": "Pirk-ery-Gik", - "realm_idx": 4721, - "order": "The Order of Vitriol", - "resources": ["Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.5652, 29.6947] - }, - "properties": { - "name": "mluus Ogig", - "realm_idx": 4722, - "order": "The Order of Anger", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.68, 0.2003] - }, - "properties": { - "name": "Pywt\u00e2ymayn", - "realm_idx": 4723, - "order": "The Order of Detection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.4471, -19.42] - }, - "properties": { - "name": "Utu Peniilun", - "realm_idx": 4724, - "order": "The Order of Power", - "resources": ["Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.1529, 42.38] - }, - "properties": { - "name": "Al-Non\u2018ekmoh", - "realm_idx": 4725, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.08, -5.7997] - }, - "properties": { - "name": "Hlunplam", - "realm_idx": 4726, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.1471, -20.02] - }, - "properties": { - "name": "Zuwlgijldi", - "realm_idx": 4727, - "order": "The Order of Giants", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.8471, 15.48] - }, - "properties": { - "name": "Kumkunpumsun", - "realm_idx": 4728, - "order": "The Order of Protection", - "resources": ["Coal", "Gold", "Stone", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.3471, 13.38] - }, - "properties": { - "name": "Nunnesnes", - "realm_idx": 4729, - "order": "The Order of Titans", - "resources": ["Ironwood", "Obsidian", "Copper", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.0801, -44.0996] - }, - "properties": { - "name": "\u2018izmes", - "realm_idx": 4730, - "order": "The Order of the Twins", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.5801, 26.1004] - }, - "properties": { - "name": "Okhughik", - "realm_idx": 4731, - "order": "The Order of Rage", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.5471, -16.12] - }, - "properties": { - "name": "Kespu", - "realm_idx": 4732, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.3801, -19.4996] - }, - "properties": { - "name": "Schmo", - "realm_idx": 4733, - "order": "The Order of the Twins", - "resources": ["Wood", "Copper", "Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.2471, -34.92] - }, - "properties": { - "name": "Enis Itusos", - "realm_idx": 4734, - "order": "The Order of Giants", - "resources": ["Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.08, -3.4997] - }, - "properties": { - "name": "Aalulelul", - "realm_idx": 4735, - "order": "The Order of Reflection", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.18, -31.2997] - }, - "properties": { - "name": "Zunusasoretu", - "realm_idx": 4736, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.3527, 51.9801] - }, - "properties": { - "name": "al-Sinnoktal", - "realm_idx": 4737, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Copper", "Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.7801, 48.8004] - }, - "properties": { - "name": "Koynowuwm", - "realm_idx": 4738, - "order": "The Order of Anger", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.3529, 6.68] - }, - "properties": { - "name": "Iltmaltol", - "realm_idx": 4739, - "order": "The Order of Vitriol", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.38, -0.3997] - }, - "properties": { - "name": "Rushmupi", - "realm_idx": 4740, - "order": "The Order of Detection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.4471, -5.92] - }, - "properties": { - "name": "Lunnais", - "realm_idx": 4741, - "order": "The Order of Brilliance", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.98, 21.8003] - }, - "properties": { - "name": "rir Or", - "realm_idx": 4742, - "order": "The Order of Detection", - "resources": ["Obsidian", "Coal", "Copper", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.2471, 9.98] - }, - "properties": { - "name": "Kintaammruun", - "realm_idx": 4743, - "order": "The Order of Brilliance", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.0529, -14.62] - }, - "properties": { - "name": "Aw ay Puyayh", - "realm_idx": 4744, - "order": "The Order of Power", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.839, 12.3238] - }, - "properties": { - "name": "Notottu", - "realm_idx": 4745, - "order": "The Order of Protection", - "resources": ["Copper", "Coal", "Deep Crystal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.7529, 21.38] - }, - "properties": { - "name": "Ymut\u00eakos", - "realm_idx": 4746, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.6148, -35.1446] - }, - "properties": { - "name": "Ilikak", - "realm_idx": 4747, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood", "Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.4471, 6.88] - }, - "properties": { - "name": "Nul Punslik", - "realm_idx": 4748, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Obsidian", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.8801, 10.4004] - }, - "properties": { - "name": "M\u00f3it\u0161ium", - "realm_idx": 4749, - "order": "The Order of Rage", - "resources": ["Cold Iron", "Ethereal Silica", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.1529, -38.82] - }, - "properties": { - "name": "Hanmu\u2018un", - "realm_idx": 4750, - "order": "The Order of Power", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.8529, -35.62] - }, - "properties": { - "name": "Soakoas", - "realm_idx": 4751, - "order": "The Order of Power", - "resources": ["Coal", "Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.48, 8.2003] - }, - "properties": { - "name": "Lakzhir", - "realm_idx": 4752, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.4471, 36.58] - }, - "properties": { - "name": "Ringring", - "realm_idx": 4753, - "order": "The Order of Enlightenment", - "resources": ["Ironwood", "Cold Iron", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.3529, 37.78] - }, - "properties": { - "name": "Izuzqiz", - "realm_idx": 4754, - "order": "The Order of Titans", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.48, 2.3003] - }, - "properties": { - "name": "Punutut", - "realm_idx": 4755, - "order": "The Order of Reflection", - "resources": ["Cold Iron", "Coal", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.5471, 21.38] - }, - "properties": { - "name": "Kaptatp\u00ebntut", - "realm_idx": 4756, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Obsidian", "Deep Crystal", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.1529, -3.12] - }, - "properties": { - "name": "Tusnildidina", - "realm_idx": 4757, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Coal", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.4471, 19.18] - }, - "properties": { - "name": "Qisper\u00e1ng", - "realm_idx": 4758, - "order": "The Order of Skill", - "resources": ["Ironwood", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.9254, 42.9363] - }, - "properties": { - "name": "Nrimtisnrot", - "realm_idx": 4759, - "order": "The Order of Anger", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.18, -2.4997] - }, - "properties": { - "name": "D\u00e4 kh\u00e4 B\u00ef", - "realm_idx": 4760, - "order": "The Order of Detection", - "resources": ["Obsidian", "Silver", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.0471, 20.58] - }, - "properties": { - "name": "e Tiuzhi", - "realm_idx": 4761, - "order": "The Order of Skill", - "resources": ["Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.5529, 27.28] - }, - "properties": { - "name": "Lukukuiu Ki", - "realm_idx": 4762, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.4441, -10.8556] - }, - "properties": { - "name": "Islattat", - "realm_idx": 4763, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.5471, 49.18] - }, - "properties": { - "name": "Ememurd", - "realm_idx": 4764, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Copper", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.1471, 17.68] - }, - "properties": { - "name": "Iklululul", - "realm_idx": 4765, - "order": "The Order of Brilliance", - "resources": [ - "Ironwood", - "Copper", - "Coal", - "Stone", - "Silver", - "Sapphire" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.8801, -11.8996] - }, - "properties": { - "name": "kuh Wikwe\u2018", - "realm_idx": 4766, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Cold Iron", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.3471, 18.98] - }, - "properties": { - "name": "Mlik\u00e1hram", - "realm_idx": 4767, - "order": "The Order of Brilliance", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.0471, 40.28] - }, - "properties": { - "name": "Mimkiltkilh", - "realm_idx": 4768, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.8801, -6.9996] - }, - "properties": { - "name": "Sipsipu", - "realm_idx": 4769, - "order": "The Order of Rage", - "resources": ["Wood", "Coal", "Copper", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.6471, 46.58] - }, - "properties": { - "name": "Mozmos", - "realm_idx": 4770, - "order": "The Order of Skill", - "resources": ["Wood", "Silver", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.1529, 29.18] - }, - "properties": { - "name": "Luw\u2018in\u2018\u00e9\u2018", - "realm_idx": 4771, - "order": "The Order of Vitriol", - "resources": ["Wood", "Cold Iron", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.1471, 54.78] - }, - "properties": { - "name": "Toks\u017e\u00fak", - "realm_idx": 4772, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.0224, -15.585] - }, - "properties": { - "name": "Tutch", - "realm_idx": 4773, - "order": "The Order of Reflection", - "resources": ["Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [24.7471, 61.28] - }, - "properties": { - "name": "osh Koi", - "realm_idx": 4774, - "order": "The Order of Titans", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.1529, 23.18] - }, - "properties": { - "name": "Ongin", - "realm_idx": 4775, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper", "Silver", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [23.3471, 42.68] - }, - "properties": { - "name": "Lomlom", - "realm_idx": 4776, - "order": "The Order of Titans", - "resources": ["Sapphire", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.8471, 42.08] - }, - "properties": { - "name": "Ziprid", - "realm_idx": 4777, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.6753, -15.2637] - }, - "properties": { - "name": "Doghe", - "realm_idx": 4778, - "order": "The Order of Rage", - "resources": ["Deep Crystal", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.4471, 20.18] - }, - "properties": { - "name": "\u00cfly\u00e4lkhbidub", - "realm_idx": 4779, - "order": "The Order of Skill", - "resources": ["Coal", "Ignium", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.8529, 32.18] - }, - "properties": { - "name": "Binbrombom", - "realm_idx": 4780, - "order": "The Order of Vitriol", - "resources": ["Coal", "Copper", "Obsidian", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.8801, -22.6996] - }, - "properties": { - "name": "Putteztez", - "realm_idx": 4781, - "order": "The Order of the Twins", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.2112, -27.9675] - }, - "properties": { - "name": "uk Pek", - "realm_idx": 4782, - "order": "The Order of Protection", - "resources": ["Stone", "Obsidian", "Gold", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.8915, -22.704] - }, - "properties": { - "name": "Gobbaek", - "realm_idx": 4783, - "order": "The Order of Protection", - "resources": ["Stone", "Cold Iron", "True Ice", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.0471, -33.72] - }, - "properties": { - "name": "N\u00ebpinin", - "realm_idx": 4784, - "order": "The Order of Giants", - "resources": ["Silver", "Wood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.88, -45.3996] - }, - "properties": { - "name": "Tannat", - "realm_idx": 4785, - "order": "The Order of the Fox", - "resources": ["Stone", "Silver", "Wood", "Obsidian", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.0471, 4.18] - }, - "properties": { - "name": "orh Kulh", - "realm_idx": 4786, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.2544, 29.4937] - }, - "properties": { - "name": "Kupqumkup", - "realm_idx": 4787, - "order": "The Order of Rage", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.78, -10.6997] - }, - "properties": { - "name": "\u0160\u00e9ssomg\u00e9", - "realm_idx": 4788, - "order": "The Order of Detection", - "resources": ["Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.68, 4.9003] - }, - "properties": { - "name": "Nenpemken", - "realm_idx": 4789, - "order": "The Order of Detection", - "resources": ["Gold", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.1529, -28.72] - }, - "properties": { - "name": "Miatkiusie", - "realm_idx": 4790, - "order": "The Order of Power", - "resources": ["Coal", "Ironwood", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.3471, 57.88] - }, - "properties": { - "name": "Paile\u00e9st\u00e1ut", - "realm_idx": 4791, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.58, 34.3003] - }, - "properties": { - "name": "Susret", - "realm_idx": 4792, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.48, -3.1997] - }, - "properties": { - "name": "Osagorisik", - "realm_idx": 4793, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.7527, 50.0801] - }, - "properties": { - "name": "Penpenpen", - "realm_idx": 4794, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.0471, 26.18] - }, - "properties": { - "name": "tax-Tozlos", - "realm_idx": 4795, - "order": "The Order of Titans", - "resources": ["Ironwood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.5471, -10.52] - }, - "properties": { - "name": "Uspo-tak-Usw", - "realm_idx": 4796, - "order": "The Order of Perfection", - "resources": ["Alchemical Silver", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.38, -6.2997] - }, - "properties": { - "name": "Sm\u00fakmip", - "realm_idx": 4797, - "order": "The Order of Detection", - "resources": ["Stone", "Copper", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.2529, 48.88] - }, - "properties": { - "name": "Demmlamling", - "realm_idx": 4798, - "order": "The Order of Vitriol", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.9134, -17.5463] - }, - "properties": { - "name": "Shegholsh", - "realm_idx": 4799, - "order": "The Order of Protection", - "resources": ["Adamantine", "Obsidian", "Silver", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.6139, -55.3088] - }, - "properties": { - "name": "\u2018wnlun\u2018r\u00f4m", - "realm_idx": 4800, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.6801, 5.1004] - }, - "properties": { - "name": "Largezh", - "realm_idx": 4801, - "order": "The Order of Rage", - "resources": ["Gold", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [8.8471, 41.08] - }, - "properties": { - "name": "Tustus Yas", - "realm_idx": 4802, - "order": "The Order of Titans", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.7801, 6.5004] - }, - "properties": { - "name": "Belyilb", - "realm_idx": 4803, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.1471, 17.88] - }, - "properties": { - "name": "wi \u2018owewole", - "realm_idx": 4804, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.9801, -9.3996] - }, - "properties": { - "name": "Shkenshenkam", - "realm_idx": 4805, - "order": "The Order of Rage", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.1471, 2.48] - }, - "properties": { - "name": "Niptimolm", - "realm_idx": 4806, - "order": "The Order of Brilliance", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.78, 14.2003] - }, - "properties": { - "name": "Krenkrelkrak", - "realm_idx": 4807, - "order": "The Order of Detection", - "resources": ["Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.3529, -9.22] - }, - "properties": { - "name": "Xpiwkowwen", - "realm_idx": 4808, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.8801, 40.2004] - }, - "properties": { - "name": "Milmmitmit", - "realm_idx": 4809, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.7471, 11.58] - }, - "properties": { - "name": "Islok", - "realm_idx": 4810, - "order": "The Order of Titans", - "resources": ["Copper", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.6529, -5.82] - }, - "properties": { - "name": "Atalatat", - "realm_idx": 4811, - "order": "The Order of the Fox", - "resources": ["Copper", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.9471, 21.78] - }, - "properties": { - "name": "Duggadked\u0161eg", - "realm_idx": 4812, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Ruby", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.7529, 47.28] - }, - "properties": { - "name": "eh Monnepet", - "realm_idx": 4813, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.0801, -38.5996] - }, - "properties": { - "name": "Edukuz", - "realm_idx": 4814, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.58, -47.5996] - }, - "properties": { - "name": "Umschez", - "realm_idx": 4815, - "order": "The Order of the Fox", - "resources": ["Coal", "Ironwood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.7471, -42.92] - }, - "properties": { - "name": "Moshprush", - "realm_idx": 4816, - "order": "The Order of Giants", - "resources": ["Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.8471, 14.48] - }, - "properties": { - "name": "Sil neok Ken", - "realm_idx": 4817, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.0529, 47.38] - }, - "properties": { - "name": "did Brizh", - "realm_idx": 4818, - "order": "The Order of Fury", - "resources": ["Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.08, -0.8997] - }, - "properties": { - "name": "Eselep", - "realm_idx": 4819, - "order": "The Order of Detection", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.3529, -24.42] - }, - "properties": { - "name": "Ninush", - "realm_idx": 4820, - "order": "The Order of Power", - "resources": ["Ironwood", "Deep Crystal", "Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.5529, 8.98] - }, - "properties": { - "name": "Epenepam", - "realm_idx": 4821, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.5471, -20.02] - }, - "properties": { - "name": "\u0160pukkuk", - "realm_idx": 4822, - "order": "The Order of Power", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.3471, 32.88] - }, - "properties": { - "name": "\u00cbjgt\u00efg \u00c4j\u0161\u00e4t", - "realm_idx": 4823, - "order": "The Order of Skill", - "resources": ["Stone", "Obsidian", "Coal", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.5471, 8.68] - }, - "properties": { - "name": "Lusn\u00e2skall\u00e2p", - "realm_idx": 4824, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.2471, 3.78] - }, - "properties": { - "name": "Ponl\u00f3msm\u00e1m", - "realm_idx": 4825, - "order": "The Order of Brilliance", - "resources": ["Stone", "Sapphire", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.7471, 21.68] - }, - "properties": { - "name": "Wurerorm", - "realm_idx": 4826, - "order": "The Order of Skill", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.1764, -18.7187] - }, - "properties": { - "name": "Klekhremklek", - "realm_idx": 4827, - "order": "The Order of Reflection", - "resources": ["Gold", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.78, 35.7003] - }, - "properties": { - "name": "Drez Nesnes", - "realm_idx": 4828, - "order": "The Order of Reflection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.58, 0.2003] - }, - "properties": { - "name": "le-Sinapi", - "realm_idx": 4829, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.6322, 16.7326] - }, - "properties": { - "name": "Nlindangan", - "realm_idx": 4830, - "order": "The Order of Fury", - "resources": ["Copper", "Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.8911, 9.4751] - }, - "properties": { - "name": "Numinim", - "realm_idx": 4831, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.4496, 43.8297] - }, - "properties": { - "name": "Mimt\u00edn", - "realm_idx": 4832, - "order": "The Order of Anger", - "resources": [ - "Wood", - "Cold Iron", - "Stone", - "Copper", - "Coal", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-44.3529, 9.28] - }, - "properties": { - "name": "Om mut Ep", - "realm_idx": 4833, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.7471, -36.72] - }, - "properties": { - "name": "Diqaqarmirb", - "realm_idx": 4834, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.08, -44.9996] - }, - "properties": { - "name": "Nu\u00fclpenpen", - "realm_idx": 4835, - "order": "The Order of the Fox", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.7471, 43.38] - }, - "properties": { - "name": "Kokmip", - "realm_idx": 4836, - "order": "The Order of Enlightenment", - "resources": ["Deep Crystal", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.58, 9.2003] - }, - "properties": { - "name": "Yusyusi", - "realm_idx": 4837, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.68, 27.4003] - }, - "properties": { - "name": "Hiktotmit", - "realm_idx": 4838, - "order": "The Order of Fury", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.5801, 27.1004] - }, - "properties": { - "name": "Siknoshnosh", - "realm_idx": 4839, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.2999, 22.1819] - }, - "properties": { - "name": "Lutk\u00e1ttl\u00eds", - "realm_idx": 4840, - "order": "The Order of Fury", - "resources": ["Gold", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.3801, -34.4996] - }, - "properties": { - "name": "Kes Smok", - "realm_idx": 4841, - "order": "The Order of the Twins", - "resources": ["Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.7471, -20.32] - }, - "properties": { - "name": "Nungheng", - "realm_idx": 4842, - "order": "The Order of Power", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.18, 29.8003] - }, - "properties": { - "name": "Poltomal", - "realm_idx": 4843, - "order": "The Order of Fury", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.98, 38.1003] - }, - "properties": { - "name": "Mepm\u00fasolp", - "realm_idx": 4844, - "order": "The Order of Fury", - "resources": ["Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.1471, 8.18] - }, - "properties": { - "name": "Erkalt", - "realm_idx": 4845, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Cold Iron", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.0801, 13.3004] - }, - "properties": { - "name": "Mem nin Mok", - "realm_idx": 4846, - "order": "The Order of Rage", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.0529, 45.68] - }, - "properties": { - "name": "Wimjaq \u00dcw\u00fcw", - "realm_idx": 4847, - "order": "The Order of Fury", - "resources": ["Stone", "Silver", "Wood", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.4471, 9.68] - }, - "properties": { - "name": "Zhukzisras", - "realm_idx": 4848, - "order": "The Order of Titans", - "resources": [ - "True Ice", - "Stone", - "Ruby", - "Ironwood", - "Hartwood", - "Obsidian", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.5471, 41.48] - }, - "properties": { - "name": "Chuag", - "realm_idx": 4849, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.98, -60.8996] - }, - "properties": { - "name": "Rishatlidokh", - "realm_idx": 4850, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.9589, 8.2844] - }, - "properties": { - "name": "\u00c1rhard\u00edl", - "realm_idx": 4851, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.3471, -19.92] - }, - "properties": { - "name": "Om\u00edi Non\u00ed\u00edmo", - "realm_idx": 4852, - "order": "The Order of Power", - "resources": ["Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.98, -6.3997] - }, - "properties": { - "name": "Lotlislot", - "realm_idx": 4853, - "order": "The Order of Detection", - "resources": ["Obsidian", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.6471, -30.62] - }, - "properties": { - "name": "Skemtenpen", - "realm_idx": 4854, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.6471, 4.48] - }, - "properties": { - "name": "Shmikshmel", - "realm_idx": 4855, - "order": "The Order of Brilliance", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [101.1471, 50.08] - }, - "properties": { - "name": "Shhom-Fhon", - "realm_idx": 4856, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.8471, 11.98] - }, - "properties": { - "name": "Pinmin", - "realm_idx": 4857, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood", "Silver", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.9471, -44.92] - }, - "properties": { - "name": "Vopqut o Qut", - "realm_idx": 4858, - "order": "The Order of Giants", - "resources": ["Coal", "Copper", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.8471, 47.88] - }, - "properties": { - "name": "Kupkup", - "realm_idx": 4859, - "order": "The Order of Skill", - "resources": ["Diamonds", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.7851, 9.9594] - }, - "properties": { - "name": "Lanles", - "realm_idx": 4860, - "order": "The Order of Protection", - "resources": ["Copper", "Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.0529, 49.48] - }, - "properties": { - "name": "Tihtohsnisno", - "realm_idx": 4861, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-26.6529, 29.48] - }, - "properties": { - "name": "Linillu", - "realm_idx": 4862, - "order": "The Order of Vitriol", - "resources": ["Wood", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.9801, 27.0004] - }, - "properties": { - "name": "Glugkinkin", - "realm_idx": 4863, - "order": "The Order of Rage", - "resources": ["Wood", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.1471, 34.88] - }, - "properties": { - "name": "Saluswpusw", - "realm_idx": 4864, - "order": "The Order of Titans", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.3801, 47.3004] - }, - "properties": { - "name": "E\u017eede\u017eas\u00fa\u017e", - "realm_idx": 4865, - "order": "The Order of Anger", - "resources": ["Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.08, 4.7003] - }, - "properties": { - "name": "\u00f6rk Pem", - "realm_idx": 4866, - "order": "The Order of Detection", - "resources": ["Coal", "Copper", "Obsidian", "Silver", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.8471, 25.88] - }, - "properties": { - "name": "G\u00edwch\u00e1wgul", - "realm_idx": 4867, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Coal", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.0471, 47.58] - }, - "properties": { - "name": "Lenlensul", - "realm_idx": 4868, - "order": "The Order of Skill", - "resources": ["Cold Iron", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.1471, 56.08] - }, - "properties": { - "name": "Nesun", - "realm_idx": 4869, - "order": "The Order of Titans", - "resources": ["Ironwood", "Stone", "Coal", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.677, 43.7635] - }, - "properties": { - "name": "Umikin", - "realm_idx": 4870, - "order": "The Order of Anger", - "resources": ["Silver", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.8529, 26.38] - }, - "properties": { - "name": "Porel", - "realm_idx": 4871, - "order": "The Order of Vitriol", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.3471, -27.02] - }, - "properties": { - "name": "Nguitv\u00eful", - "realm_idx": 4872, - "order": "The Order of Giants", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.6471, -17.42] - }, - "properties": { - "name": "Fpaknum", - "realm_idx": 4873, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.9223, 29.6147] - }, - "properties": { - "name": "din Tan", - "realm_idx": 4874, - "order": "The Order of Anger", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.2471, 43.88] - }, - "properties": { - "name": "Ukiduk", - "realm_idx": 4875, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.9471, -19.72] - }, - "properties": { - "name": "Kirnils-Irm", - "realm_idx": 4876, - "order": "The Order of Giants", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.3801, -23.4996] - }, - "properties": { - "name": "Zhat Dwazh", - "realm_idx": 4877, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-26.6529, -8.12] - }, - "properties": { - "name": "sli M\u00edh", - "realm_idx": 4878, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Ruby", "Gold", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.3471, 59.58] - }, - "properties": { - "name": "Kushhish Haz", - "realm_idx": 4879, - "order": "The Order of Titans", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.0471, 48.88] - }, - "properties": { - "name": "Hu\u00e4kt\u00fcukkoi", - "realm_idx": 4880, - "order": "The Order of Skill", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.88, 14.2003] - }, - "properties": { - "name": "Tukmisdan", - "realm_idx": 4881, - "order": "The Order of Detection", - "resources": ["Obsidian", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.6068, 56.8477] - }, - "properties": { - "name": "mil Lil", - "realm_idx": 4882, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.98, -34.4997] - }, - "properties": { - "name": "Ha\u00e1 ak Un\u00ed", - "realm_idx": 4883, - "order": "The Order of Detection", - "resources": ["Silver", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.1496, 47.8811] - }, - "properties": { - "name": "Dilshmamgish", - "realm_idx": 4884, - "order": "The Order of Fury", - "resources": ["Stone", "Hartwood", "Wood", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.1529, 0.38] - }, - "properties": { - "name": "irm-Irk", - "realm_idx": 4885, - "order": "The Order of Vitriol", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.98, 27.7003] - }, - "properties": { - "name": "Diktug", - "realm_idx": 4886, - "order": "The Order of Fury", - "resources": ["Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.5801, -27.9996] - }, - "properties": { - "name": "Nun-kon-Pil", - "realm_idx": 4887, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.6691, 41.9559] - }, - "properties": { - "name": "Upulan", - "realm_idx": 4888, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.5471, 11.08] - }, - "properties": { - "name": "L\u00e2kla Wiwila", - "realm_idx": 4889, - "order": "The Order of Protection", - "resources": ["Ironwood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.8307, 10.9741] - }, - "properties": { - "name": "Ikimid", - "realm_idx": 4890, - "order": "The Order of Fury", - "resources": ["Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.2955, 41.2779] - }, - "properties": { - "name": "Miookmooek", - "realm_idx": 4891, - "order": "The Order of Anger", - "resources": ["Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.3801, -52.3996] - }, - "properties": { - "name": "Stuzpuz", - "realm_idx": 4892, - "order": "The Order of the Twins", - "resources": [ - "Coal", - "Stone", - "Silver", - "Copper", - "Ironwood", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [69.3471, -26.72] - }, - "properties": { - "name": "Tejghow", - "realm_idx": 4893, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.08, -7.4997] - }, - "properties": { - "name": "Mepkup", - "realm_idx": 4894, - "order": "The Order of Reflection", - "resources": ["Wood", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.7471, 50.78] - }, - "properties": { - "name": "ut Eseboqod", - "realm_idx": 4895, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.9708, 30.4033] - }, - "properties": { - "name": "Seomientiu", - "realm_idx": 4896, - "order": "The Order of Fury", - "resources": ["Obsidian", "Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.68, -22.1997] - }, - "properties": { - "name": "Kemmungrung", - "realm_idx": 4897, - "order": "The Order of Detection", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.88, -48.3997] - }, - "properties": { - "name": "Unneum", - "realm_idx": 4898, - "order": "The Order of the Fox", - "resources": ["Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.9092, -16.4961] - }, - "properties": { - "name": "\u0160ul\u0161ul\u0161", - "realm_idx": 4899, - "order": "The Order of Protection", - "resources": ["Stone", "Ironwood", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.8471, -41.32] - }, - "properties": { - "name": "Chipge", - "realm_idx": 4900, - "order": "The Order of Giants", - "resources": ["Silver", "Copper", "Hartwood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.5064, -12.8805] - }, - "properties": { - "name": "Kulnilnul", - "realm_idx": 4901, - "order": "The Order of Rage", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.3801, -53.6996] - }, - "properties": { - "name": "ek-\u00datnumlem", - "realm_idx": 4902, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.2471, -15.62] - }, - "properties": { - "name": "Uppimtoetpim", - "realm_idx": 4903, - "order": "The Order of Giants", - "resources": ["Coal", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.7471, -3.82] - }, - "properties": { - "name": "tun Nennrem", - "realm_idx": 4904, - "order": "The Order of Power", - "resources": ["Gold", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.0471, -12.12] - }, - "properties": { - "name": "Nolmulpumsul", - "realm_idx": 4905, - "order": "The Order of Perfection", - "resources": ["Gold", "True Ice", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.5529, 24.78] - }, - "properties": { - "name": "Fqingnin", - "realm_idx": 4906, - "order": "The Order of Vitriol", - "resources": [ - "Stone", - "Coal", - "Wood", - "Cold Iron", - "Obsidian", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.2529, 23.38] - }, - "properties": { - "name": "wol \u2018ran Nop", - "realm_idx": 4907, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.2801, -39.6996] - }, - "properties": { - "name": "Pap\u2018iwal", - "realm_idx": 4908, - "order": "The Order of the Twins", - "resources": ["Wood", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.6471, -3.12] - }, - "properties": { - "name": "et-Eeweew", - "realm_idx": 4909, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.0471, 26.18] - }, - "properties": { - "name": "Choakuijjae", - "realm_idx": 4910, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.5471, 7.68] - }, - "properties": { - "name": "Etetet", - "realm_idx": 4911, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.5471, -33.52] - }, - "properties": { - "name": "M\u00edp\u00edd", - "realm_idx": 4912, - "order": "The Order of Power", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.4596, -25.6916] - }, - "properties": { - "name": "Srokqlok", - "realm_idx": 4913, - "order": "The Order of Protection", - "resources": ["Ironwood", "Silver", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.2215, -19.2812] - }, - "properties": { - "name": "Simslos", - "realm_idx": 4914, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.48, -23.2997] - }, - "properties": { - "name": "Spulsnolto", - "realm_idx": 4915, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Coal", "Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.8347, -23.505] - }, - "properties": { - "name": "\u0160tik\u0161k\u00e9klet", - "realm_idx": 4916, - "order": "The Order of Reflection", - "resources": ["Wood", "Obsidian", "Ruby", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.88, -5.9997] - }, - "properties": { - "name": "Muuepiewweow", - "realm_idx": 4917, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.4529, 12.78] - }, - "properties": { - "name": "Leimtol", - "realm_idx": 4918, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Wood", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.4471, 35.08] - }, - "properties": { - "name": "Miammuim", - "realm_idx": 4919, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-41.7529, 52.58] - }, - "properties": { - "name": "Uk\u00fctuk", - "realm_idx": 4920, - "order": "The Order of Fury", - "resources": ["Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.8527, 49.9801] - }, - "properties": { - "name": "Tullo", - "realm_idx": 4921, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.8529, -10.12] - }, - "properties": { - "name": "Onronran", - "realm_idx": 4922, - "order": "The Order of the Fox", - "resources": ["Mithral", "Ironwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.1529, 0.88] - }, - "properties": { - "name": "Sankan", - "realm_idx": 4923, - "order": "The Order of Vitriol", - "resources": ["Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.7596, -20.7575] - }, - "properties": { - "name": "Lungren", - "realm_idx": 4924, - "order": "The Order of Perfection", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.6371, -23.8756] - }, - "properties": { - "name": "Xuogue", - "realm_idx": 4925, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.2801, 6.0004] - }, - "properties": { - "name": "hem Anmom", - "realm_idx": 4926, - "order": "The Order of Rage", - "resources": ["Obsidian", "Coal", "Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-43.8529, 6.58] - }, - "properties": { - "name": "w\u00e1n Lin\u00e1", - "realm_idx": 4927, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.3801, 43.6004] - }, - "properties": { - "name": "Uwidikuwuch", - "realm_idx": 4928, - "order": "The Order of Anger", - "resources": ["Copper", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.68, 19.4003] - }, - "properties": { - "name": "Nok Snuk", - "realm_idx": 4929, - "order": "The Order of Detection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.4717, -18.0372] - }, - "properties": { - "name": "os Uukep", - "realm_idx": 4930, - "order": "The Order of Protection", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.9471, -22.52] - }, - "properties": { - "name": "Temmuttiltop", - "realm_idx": 4931, - "order": "The Order of Giants", - "resources": ["Diamonds", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.2471, -20.62] - }, - "properties": { - "name": "Unakulat", - "realm_idx": 4932, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.7801, -6.3996] - }, - "properties": { - "name": "Taon Ta", - "realm_idx": 4933, - "order": "The Order of Rage", - "resources": ["Copper", "Silver", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.5471, 28.68] - }, - "properties": { - "name": "Izhusuzipu", - "realm_idx": 4934, - "order": "The Order of Skill", - "resources": ["Coal", "Sapphire", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.7529, -10.82] - }, - "properties": { - "name": "Nutuptupku", - "realm_idx": 4935, - "order": "The Order of Power", - "resources": ["Copper", "Wood", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.2529, 27.18] - }, - "properties": { - "name": "Iitupiimam", - "realm_idx": 4936, - "order": "The Order of Vitriol", - "resources": ["Twilight Quartz", "Wood", "Stone", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.9471, 39.48] - }, - "properties": { - "name": "Zenmlimzon", - "realm_idx": 4937, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.6471, 48.88] - }, - "properties": { - "name": "Deqte\u0161raw", - "realm_idx": 4938, - "order": "The Order of Enlightenment", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.2471, -21.62] - }, - "properties": { - "name": "Den\u0161ad\u0161ad", - "realm_idx": 4939, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.9529, -33.62] - }, - "properties": { - "name": "Slemtenkat", - "realm_idx": 4940, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.8471, 48.38] - }, - "properties": { - "name": "Buizai", - "realm_idx": 4941, - "order": "The Order of Skill", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.7471, 38.78] - }, - "properties": { - "name": "Kukmuktukmos", - "realm_idx": 4942, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.1326, -19.9543] - }, - "properties": { - "name": "Katkit", - "realm_idx": 4943, - "order": "The Order of Perfection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.848, -5.9788] - }, - "properties": { - "name": "Atusin Usmim", - "realm_idx": 4944, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.3471, 7.88] - }, - "properties": { - "name": "Mammlim", - "realm_idx": 4945, - "order": "The Order of Protection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.2471, 47.88] - }, - "properties": { - "name": "Sune shu E\u00fau", - "realm_idx": 4946, - "order": "The Order of Skill", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.4096, -29.093] - }, - "properties": { - "name": "Lyuunnin", - "realm_idx": 4947, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.8529, -30.32] - }, - "properties": { - "name": "Sutsem", - "realm_idx": 4948, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-21.6529, 23.48] - }, - "properties": { - "name": "eh U\u2018\u00efw\u00efwu\u2018", - "realm_idx": 4949, - "order": "The Order of Vitriol", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.4471, 7.48] - }, - "properties": { - "name": "Kussos", - "realm_idx": 4950, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.8471, 5.08] - }, - "properties": { - "name": "Lonkongnom", - "realm_idx": 4951, - "order": "The Order of Brilliance", - "resources": ["Coal", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.38, -50.4997] - }, - "properties": { - "name": "Makk\u00edkm\u00e9mk\u00edk", - "realm_idx": 4952, - "order": "The Order of the Fox", - "resources": ["Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.8529, 5.18] - }, - "properties": { - "name": "M\u00e1mm\u00fat", - "realm_idx": 4953, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "True Ice", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.4471, 46.98] - }, - "properties": { - "name": "\u00c1bz\u00edt", - "realm_idx": 4954, - "order": "The Order of Skill", - "resources": ["Stone", "Copper", "Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.2471, 3.18] - }, - "properties": { - "name": "Daluk", - "realm_idx": 4955, - "order": "The Order of Brilliance", - "resources": ["Sapphire", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2801, -55.7996] - }, - "properties": { - "name": "Tum Dunden", - "realm_idx": 4956, - "order": "The Order of the Twins", - "resources": ["Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.1801, -28.6996] - }, - "properties": { - "name": "Gusokmis", - "realm_idx": 4957, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Stone", "Copper", "Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.0801, 28.0004] - }, - "properties": { - "name": "Ititel", - "realm_idx": 4958, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.78, 16.5003] - }, - "properties": { - "name": "Imuoo", - "realm_idx": 4959, - "order": "The Order of Fury", - "resources": ["Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.58, -0.9997] - }, - "properties": { - "name": "T\u00fapt\u00faplun", - "realm_idx": 4960, - "order": "The Order of Detection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.48, -0.7997] - }, - "properties": { - "name": "Dizdizdiz", - "realm_idx": 4961, - "order": "The Order of Detection", - "resources": ["Ironwood", "Stone", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.8801, 36.6004] - }, - "properties": { - "name": "Dedde", - "realm_idx": 4962, - "order": "The Order of Anger", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.38, -56.9996] - }, - "properties": { - "name": "Tschug", - "realm_idx": 4963, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.6529, 16.48] - }, - "properties": { - "name": "id Ogwkuzh", - "realm_idx": 4964, - "order": "The Order of Vitriol", - "resources": ["Coal", "Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.6471, 4.18] - }, - "properties": { - "name": "skad Spana", - "realm_idx": 4965, - "order": "The Order of Brilliance", - "resources": ["Ruby", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.545, 39.1773] - }, - "properties": { - "name": "Digidigi", - "realm_idx": 4966, - "order": "The Order of Fury", - "resources": ["Wood", "Copper", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.0529, -10.82] - }, - "properties": { - "name": "Seswin", - "realm_idx": 4967, - "order": "The Order of the Fox", - "resources": ["Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.2471, 9.68] - }, - "properties": { - "name": "T\u00f3it\u00fa\u00e1lp\u00faol", - "realm_idx": 4968, - "order": "The Order of Protection", - "resources": [ - "Copper", - "Wood", - "Silver", - "Coal", - "Hartwood", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.28, -7.5997] - }, - "properties": { - "name": "Leomaiqeo", - "realm_idx": 4969, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.5529, 9.28] - }, - "properties": { - "name": "\u00cdt\u00e1tus", - "realm_idx": 4970, - "order": "The Order of Vitriol", - "resources": ["Stone", "Twilight Quartz", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.9701, 39.8863] - }, - "properties": { - "name": "Nirk tur Pi", - "realm_idx": 4971, - "order": "The Order of Anger", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.68, 24.4003] - }, - "properties": { - "name": "Lukmyek Luk", - "realm_idx": 4972, - "order": "The Order of Fury", - "resources": ["Silver", "Wood", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.8801, -15.6996] - }, - "properties": { - "name": "Iralokhem", - "realm_idx": 4973, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.7471, 40.18] - }, - "properties": { - "name": "M\u00e9hhumt\u00e9hk\u00edn", - "realm_idx": 4974, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.0471, -25.82] - }, - "properties": { - "name": "Kinlak", - "realm_idx": 4975, - "order": "The Order of Giants", - "resources": ["Coal", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.5471, -12.72] - }, - "properties": { - "name": "Tenqemki", - "realm_idx": 4976, - "order": "The Order of Giants", - "resources": ["Ruby", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.2693, 43.7059] - }, - "properties": { - "name": "Gubpip", - "realm_idx": 4977, - "order": "The Order of Anger", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.6854, -50.9036] - }, - "properties": { - "name": "Muk\u2018ak", - "realm_idx": 4978, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.7529, 41.38] - }, - "properties": { - "name": "Biayled", - "realm_idx": 4979, - "order": "The Order of Titans", - "resources": ["Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.8471, 12.38] - }, - "properties": { - "name": "Qaevq\u00efe", - "realm_idx": 4980, - "order": "The Order of Protection", - "resources": ["Coal", "Wood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-42.7529, 5.18] - }, - "properties": { - "name": "Winan", - "realm_idx": 4981, - "order": "The Order of Vitriol", - "resources": ["Coal", "Silver", "Cold Iron", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.2801, 17.6004] - }, - "properties": { - "name": "Launiutpai", - "realm_idx": 4982, - "order": "The Order of Rage", - "resources": ["Wood", "Copper", "Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.034, -53.3935] - }, - "properties": { - "name": "Apunan-Umap", - "realm_idx": 4983, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.6529, 20.78] - }, - "properties": { - "name": "Ketketmip", - "realm_idx": 4984, - "order": "The Order of Vitriol", - "resources": ["Coal", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.28, -53.7996] - }, - "properties": { - "name": "Amansau", - "realm_idx": 4985, - "order": "The Order of the Fox", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.063, 4.9982] - }, - "properties": { - "name": "T\u00e1nsmemsan", - "realm_idx": 4986, - "order": "The Order of Protection", - "resources": ["Wood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.58, -1.8997] - }, - "properties": { - "name": "Teulait", - "realm_idx": 4987, - "order": "The Order of Reflection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.88, 0.6003] - }, - "properties": { - "name": "Lar-tril-Nis", - "realm_idx": 4988, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.08, -45.9997] - }, - "properties": { - "name": "Smeksmeksmok", - "realm_idx": 4989, - "order": "The Order of the Fox", - "resources": ["Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.8471, -13.52] - }, - "properties": { - "name": "Semkungtong", - "realm_idx": 4990, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.4801, -14.6996] - }, - "properties": { - "name": "Chpopi", - "realm_idx": 4991, - "order": "The Order of Rage", - "resources": ["Copper", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.6471, 40.88] - }, - "properties": { - "name": "Nososak", - "realm_idx": 4992, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Sapphire", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.3471, 12.88] - }, - "properties": { - "name": "Kilnulkus", - "realm_idx": 4993, - "order": "The Order of Titans", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.6471, -34.72] - }, - "properties": { - "name": "Liamuoddoam", - "realm_idx": 4994, - "order": "The Order of Giants", - "resources": ["Coal", "Obsidian", "Stone", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.0529, -23.82] - }, - "properties": { - "name": "Pon kom \u2018aun", - "realm_idx": 4995, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.3801, -32.0996] - }, - "properties": { - "name": "Nusslilkol", - "realm_idx": 4996, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.379, -23.4296] - }, - "properties": { - "name": "Kum\u2018ok", - "realm_idx": 4997, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.28, -0.2997] - }, - "properties": { - "name": "Tistissummil", - "realm_idx": 4998, - "order": "The Order of Detection", - "resources": ["Diamonds", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.8471, 43.88] - }, - "properties": { - "name": "Oos Oz", - "realm_idx": 4999, - "order": "The Order of Skill", - "resources": ["Hartwood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.5471, -22.72] - }, - "properties": { - "name": "K\u00fck\u00fck\u00fc", - "realm_idx": 5000, - "order": "The Order of Power", - "resources": ["Obsidian", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.9471, 1.48] - }, - "properties": { - "name": "Notlel", - "realm_idx": 5001, - "order": "The Order of Brilliance", - "resources": ["Silver", "Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.9159, -25.9763] - }, - "properties": { - "name": "Tuattoitiun", - "realm_idx": 5002, - "order": "The Order of Perfection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.4471, -15.22] - }, - "properties": { - "name": "Vonlanpum", - "realm_idx": 5003, - "order": "The Order of Giants", - "resources": ["Stone", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.9506, 36.5036] - }, - "properties": { - "name": "Shinos", - "realm_idx": 5004, - "order": "The Order of Fury", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.4471, -14.82] - }, - "properties": { - "name": "Lulsalk", - "realm_idx": 5005, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.4471, -6.52] - }, - "properties": { - "name": "Lorch\u00far", - "realm_idx": 5006, - "order": "The Order of Power", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.9471, -22.12] - }, - "properties": { - "name": "Raunlarunrie", - "realm_idx": 5007, - "order": "The Order of Giants", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.1471, 54.08] - }, - "properties": { - "name": "Yal\u00edls \u00cdls", - "realm_idx": 5008, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.38, -32.1997] - }, - "properties": { - "name": "Langsgaun", - "realm_idx": 5009, - "order": "The Order of Detection", - "resources": ["Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.9471, 9.78] - }, - "properties": { - "name": "Kiooneoneo", - "realm_idx": 5010, - "order": "The Order of Titans", - "resources": ["Gold", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-41.0527, 51.6801] - }, - "properties": { - "name": "Schonsqen", - "realm_idx": 5011, - "order": "The Order of the Twins", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.8125, -25.5406] - }, - "properties": { - "name": "Tununtunammu", - "realm_idx": 5012, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Coal", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.2471, 36.38] - }, - "properties": { - "name": "Ostok", - "realm_idx": 5013, - "order": "The Order of Titans", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.0801, 41.4004] - }, - "properties": { - "name": "Maemleomaem", - "realm_idx": 5014, - "order": "The Order of Anger", - "resources": ["Ignium", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.88, 34.1003] - }, - "properties": { - "name": "N\u00fakurkhkh\u00fak", - "realm_idx": 5015, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.4471, 30.18] - }, - "properties": { - "name": "Arpipnyn", - "realm_idx": 5016, - "order": "The Order of Skill", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.821, -20.1923] - }, - "properties": { - "name": "Ekokmok", - "realm_idx": 5017, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper", "Silver", "Coal", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.4471, 44.58] - }, - "properties": { - "name": "Shagimda", - "realm_idx": 5018, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.48, -11.6997] - }, - "properties": { - "name": "Sopsos", - "realm_idx": 5019, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.98, 32.7003] - }, - "properties": { - "name": "\u00c2d\u00e2\u017eut\u00e2\u017e", - "realm_idx": 5020, - "order": "The Order of Fury", - "resources": ["Coal", "Silver", "Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.38, 11.2003] - }, - "properties": { - "name": "l\u00ef-M\u00efka", - "realm_idx": 5021, - "order": "The Order of Fury", - "resources": ["Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-113.6734, -34.3163] - }, - "properties": { - "name": "Mussatlaup", - "realm_idx": 5022, - "order": "The Order of Reflection", - "resources": ["Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.4471, -15.82] - }, - "properties": { - "name": "Pul kel Lup", - "realm_idx": 5023, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.7801, -52.4996] - }, - "properties": { - "name": "\u00c9t\u00edschimotad", - "realm_idx": 5024, - "order": "The Order of the Twins", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.3801, -25.5996] - }, - "properties": { - "name": "Pig\u00eat", - "realm_idx": 5025, - "order": "The Order of the Twins", - "resources": ["Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.5471, -14.32] - }, - "properties": { - "name": "Kumwi", - "realm_idx": 5026, - "order": "The Order of Perfection", - "resources": ["Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.2801, 9.2004] - }, - "properties": { - "name": "Pomom", - "realm_idx": 5027, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.4877, 29.3203] - }, - "properties": { - "name": "N\u00fak\u00fak\u00fa", - "realm_idx": 5028, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.48, -31.8997] - }, - "properties": { - "name": "\u010corgo", - "realm_idx": 5029, - "order": "The Order of Reflection", - "resources": ["Wood", "Silver", "Stone", "Obsidian", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.9519, 4.5433] - }, - "properties": { - "name": "Rikuku", - "realm_idx": 5030, - "order": "The Order of Protection", - "resources": ["Copper", "Coal", "Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.1529, 32.08] - }, - "properties": { - "name": "Sbub\u010duz\u0161ub", - "realm_idx": 5031, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.2896, -18.1516] - }, - "properties": { - "name": "Siannea", - "realm_idx": 5032, - "order": "The Order of Protection", - "resources": ["Coal", "Wood", "Stone", "Hartwood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.9471, 21.28] - }, - "properties": { - "name": "Tlanpumprum", - "realm_idx": 5033, - "order": "The Order of Skill", - "resources": ["Coal", "Obsidian", "Silver", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.68, -31.8997] - }, - "properties": { - "name": "Kizhkizhbezh", - "realm_idx": 5034, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.6801, -7.7996] - }, - "properties": { - "name": "Sasspisitti", - "realm_idx": 5035, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.1801, 45.0004] - }, - "properties": { - "name": "Zrolkiz", - "realm_idx": 5036, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.98, 10.8003] - }, - "properties": { - "name": "Y\u00fasnirsu", - "realm_idx": 5037, - "order": "The Order of Detection", - "resources": ["Wood", "Obsidian", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.7986, -49.2904] - }, - "properties": { - "name": "Pownpewk", - "realm_idx": 5038, - "order": "The Order of the Fox", - "resources": ["Coal", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.48, 36.2003] - }, - "properties": { - "name": "Noklurmter", - "realm_idx": 5039, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.2801, 3.4004] - }, - "properties": { - "name": "Azr\u00fal", - "realm_idx": 5040, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.9529, 15.28] - }, - "properties": { - "name": "Xqinqixri", - "realm_idx": 5041, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.58, -56.4996] - }, - "properties": { - "name": "spem-Pi-Slu", - "realm_idx": 5042, - "order": "The Order of the Fox", - "resources": ["Coal", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.6471, 46.38] - }, - "properties": { - "name": "Kizkizdadpeg", - "realm_idx": 5043, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.2625, 45.1303] - }, - "properties": { - "name": "Otalopel", - "realm_idx": 5044, - "order": "The Order of Anger", - "resources": ["Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.3801, 4.2004] - }, - "properties": { - "name": "lo Komusupi", - "realm_idx": 5045, - "order": "The Order of Rage", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.8529, 26.88] - }, - "properties": { - "name": "Metskonsan", - "realm_idx": 5046, - "order": "The Order of Vitriol", - "resources": ["Gold", "Silver", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.7471, 20.38] - }, - "properties": { - "name": "Lumnin", - "realm_idx": 5047, - "order": "The Order of Brilliance", - "resources": ["Silver", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.9471, 48.28] - }, - "properties": { - "name": "Ngikpuk", - "realm_idx": 5048, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Ironwood", "Gold", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.5801, -21.3996] - }, - "properties": { - "name": "Kulpkulp", - "realm_idx": 5049, - "order": "The Order of the Twins", - "resources": ["Wood", "Deep Crystal", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.2471, 25.58] - }, - "properties": { - "name": "Lerler", - "realm_idx": 5050, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [27.5471, -30.32] - }, - "properties": { - "name": "Pamhunsnim", - "realm_idx": 5051, - "order": "The Order of Giants", - "resources": ["Coal", "Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.1471, -14.42] - }, - "properties": { - "name": "Unanun", - "realm_idx": 5052, - "order": "The Order of Perfection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.5801, -38.3996] - }, - "properties": { - "name": "hah-Tummuk", - "realm_idx": 5053, - "order": "The Order of the Twins", - "resources": ["Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.98, 16.9003] - }, - "properties": { - "name": "M\u00e9sch G\u00e9sch", - "realm_idx": 5054, - "order": "The Order of Detection", - "resources": ["Coal", "Obsidian", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.1471, 3.88] - }, - "properties": { - "name": "Kimtik", - "realm_idx": 5055, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.5488, -35.8933] - }, - "properties": { - "name": "Geyeku", - "realm_idx": 5056, - "order": "The Order of the Fox", - "resources": ["Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.4529, -18.32] - }, - "properties": { - "name": "auh \u2018oei", - "realm_idx": 5057, - "order": "The Order of Power", - "resources": ["Copper", "Obsidian", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.815, -7.084] - }, - "properties": { - "name": "tuk H\u00fa", - "realm_idx": 5058, - "order": "The Order of Reflection", - "resources": ["Coal", "Copper", "Wood", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.1471, 47.08] - }, - "properties": { - "name": "Edudugeg", - "realm_idx": 5059, - "order": "The Order of Skill", - "resources": ["Diamonds", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.0257, 30.8395] - }, - "properties": { - "name": "Ketni", - "realm_idx": 5060, - "order": "The Order of Reflection", - "resources": ["Gold", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.4529, -4.52] - }, - "properties": { - "name": "Nu mirk Mumu", - "realm_idx": 5061, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.3471, 34.78] - }, - "properties": { - "name": "\u00cdrzelch\u00edrzh", - "realm_idx": 5062, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.1471, 22.88] - }, - "properties": { - "name": "Et Atledotu\u010d", - "realm_idx": 5063, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Ironwood", "Twilight Quartz", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.2471, 17.48] - }, - "properties": { - "name": "Khatwokhrokh", - "realm_idx": 5064, - "order": "The Order of Brilliance", - "resources": ["Coal", "Obsidian", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.5471, 19.88] - }, - "properties": { - "name": "K\u00e1tniknikk\u00e1t", - "realm_idx": 5065, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.3529, -23.62] - }, - "properties": { - "name": "Nakisnakis-I", - "realm_idx": 5066, - "order": "The Order of Power", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.9471, 18.58] - }, - "properties": { - "name": "Lumnreinkaw", - "realm_idx": 5067, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.3471, 40.98] - }, - "properties": { - "name": "Loltnel", - "realm_idx": 5068, - "order": "The Order of Enlightenment", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.4471, 10.38] - }, - "properties": { - "name": "Littup", - "realm_idx": 5069, - "order": "The Order of Titans", - "resources": ["Coal", "Copper", "Wood", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.2471, 15.28] - }, - "properties": { - "name": "Napsporqik", - "realm_idx": 5070, - "order": "The Order of Titans", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.28, 0.8003] - }, - "properties": { - "name": "Bekcha D\u00fabu", - "realm_idx": 5071, - "order": "The Order of Detection", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.7471, -19.22] - }, - "properties": { - "name": "Geoweichue", - "realm_idx": 5072, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.9801, 5.5004] - }, - "properties": { - "name": "Hunkun", - "realm_idx": 5073, - "order": "The Order of Rage", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.8471, 19.58] - }, - "properties": { - "name": "Simnissinsin", - "realm_idx": 5074, - "order": "The Order of Brilliance", - "resources": ["Copper", "Ruby", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.4529, 28.68] - }, - "properties": { - "name": "Punonnem", - "realm_idx": 5075, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.9515, 12.6275] - }, - "properties": { - "name": "K\u00e4b Tete", - "realm_idx": 5076, - "order": "The Order of Protection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.9691, 35.9572] - }, - "properties": { - "name": "Ertnuk", - "realm_idx": 5077, - "order": "The Order of Anger", - "resources": ["Coal", "Cold Iron", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.147, -4.42] - }, - "properties": { - "name": "O\u2018kaniw", - "realm_idx": 5078, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.48, -1.2997] - }, - "properties": { - "name": "Vuruv", - "realm_idx": 5079, - "order": "The Order of Detection", - "resources": ["Wood", "Silver", "Gold", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.813, -17.2917] - }, - "properties": { - "name": "Pimunin", - "realm_idx": 5080, - "order": "The Order of Protection", - "resources": ["Stone", "Obsidian", "Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.04, -23.895] - }, - "properties": { - "name": "Zhuasschazh", - "realm_idx": 5081, - "order": "The Order of Reflection", - "resources": ["Wood", "True Ice", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [14.0471, 26.88] - }, - "properties": { - "name": "Snussnek", - "realm_idx": 5082, - "order": "The Order of Titans", - "resources": ["Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.8471, 30.18] - }, - "properties": { - "name": "Su min Ku", - "realm_idx": 5083, - "order": "The Order of Skill", - "resources": ["True Ice", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.9801, -1.3996] - }, - "properties": { - "name": "Matd\u00f4mnut", - "realm_idx": 5084, - "order": "The Order of Rage", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.48, -31.8997] - }, - "properties": { - "name": "Odaus", - "realm_idx": 5085, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.2471, -45.22] - }, - "properties": { - "name": "T\u00e1psastoktat", - "realm_idx": 5086, - "order": "The Order of Giants", - "resources": ["Silver", "Obsidian", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.88, 2.2003] - }, - "properties": { - "name": "Zaadduiih", - "realm_idx": 5087, - "order": "The Order of Reflection", - "resources": ["Hartwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.08, -53.9996] - }, - "properties": { - "name": "Zh\u00e4knw\u00f6kbos", - "realm_idx": 5088, - "order": "The Order of the Fox", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.6471, 27.08] - }, - "properties": { - "name": "kaurm Paut", - "realm_idx": 5089, - "order": "The Order of Skill", - "resources": ["Cold Iron", "Obsidian", "Gold", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [23.7471, 42.58] - }, - "properties": { - "name": "Ikiiihiik", - "realm_idx": 5090, - "order": "The Order of Titans", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.2529, -7.72] - }, - "properties": { - "name": "Umusidashid", - "realm_idx": 5091, - "order": "The Order of the Fox", - "resources": ["Coal", "Stone", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.6801, 14.3004] - }, - "properties": { - "name": "Asamulil", - "realm_idx": 5092, - "order": "The Order of Rage", - "resources": ["Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [11.2471, -14.62] - }, - "properties": { - "name": "Tatem", - "realm_idx": 5093, - "order": "The Order of Power", - "resources": ["Wood", "Obsidian", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.3503, -9.7794] - }, - "properties": { - "name": "Melnkols", - "realm_idx": 5094, - "order": "The Order of Perfection", - "resources": [ - "Gold", - "Coal", - "Wood", - "Cold Iron", - "Hartwood", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.3665, -37.4746] - }, - "properties": { - "name": "Liklilkals", - "realm_idx": 5095, - "order": "The Order of Reflection", - "resources": ["Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.6898, -28.367] - }, - "properties": { - "name": "Tissois", - "realm_idx": 5096, - "order": "The Order of Reflection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.9801, -31.7996] - }, - "properties": { - "name": "Soqope", - "realm_idx": 5097, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.78, -32.2997] - }, - "properties": { - "name": "G\u00ebeng\u00e4ah", - "realm_idx": 5098, - "order": "The Order of Detection", - "resources": [ - "Obsidian", - "Wood", - "Cold Iron", - "Stone", - "Copper", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.4471, 30.88] - }, - "properties": { - "name": "K\u00e9nkinm\u00e1mhin", - "realm_idx": 5099, - "order": "The Order of Titans", - "resources": ["Hartwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.6471, 30.08] - }, - "properties": { - "name": "Tiattupsim", - "realm_idx": 5100, - "order": "The Order of Skill", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.0471, 19.68] - }, - "properties": { - "name": "Siksik", - "realm_idx": 5101, - "order": "The Order of Skill", - "resources": ["Wood", "Diamonds", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.48, -1.1997] - }, - "properties": { - "name": "Spimpipspim", - "realm_idx": 5102, - "order": "The Order of Detection", - "resources": ["Obsidian", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.0924, 33.8741] - }, - "properties": { - "name": "Mulsel", - "realm_idx": 5103, - "order": "The Order of Fury", - "resources": ["Ruby", "Stone", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.1471, 17.48] - }, - "properties": { - "name": "qren Rinchem", - "realm_idx": 5104, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.6471, 9.08] - }, - "properties": { - "name": "nun-Nin", - "realm_idx": 5105, - "order": "The Order of Brilliance", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.2471, -14.82] - }, - "properties": { - "name": "Kunmon", - "realm_idx": 5106, - "order": "The Order of Perfection", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.4471, -11.02] - }, - "properties": { - "name": "Pomlu", - "realm_idx": 5107, - "order": "The Order of Perfection", - "resources": ["Coal", "Copper", "Wood", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.522, -22.9286] - }, - "properties": { - "name": "Nuku-Tahi", - "realm_idx": 5108, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.5471, -12.72] - }, - "properties": { - "name": "Wuwwuwwum", - "realm_idx": 5109, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Obsidian", "Copper", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.3471, -5.02] - }, - "properties": { - "name": "K\u00e4nk\u00efm", - "realm_idx": 5110, - "order": "The Order of Power", - "resources": ["Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.9529, -24.92] - }, - "properties": { - "name": "Taankeengiin", - "realm_idx": 5111, - "order": "The Order of Power", - "resources": ["Wood", "Deep Crystal", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.8801, -38.5996] - }, - "properties": { - "name": "B\u00edchalp", - "realm_idx": 5112, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [8.6471, 13.98] - }, - "properties": { - "name": "Tornermirt", - "realm_idx": 5113, - "order": "The Order of Titans", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.9529, 27.88] - }, - "properties": { - "name": "Ne\u00fcnu", - "realm_idx": 5114, - "order": "The Order of Vitriol", - "resources": ["Silver", "Stone", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.28, -53.8996] - }, - "properties": { - "name": "Hihapa", - "realm_idx": 5115, - "order": "The Order of the Fox", - "resources": ["Copper", "Wood", "Sapphire", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.78, -28.7997] - }, - "properties": { - "name": "\u00cdduyqid", - "realm_idx": 5116, - "order": "The Order of Reflection", - "resources": ["Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.9471, -12.32] - }, - "properties": { - "name": "Mangmum \u2018e\u2018e", - "realm_idx": 5117, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.4471, 44.08] - }, - "properties": { - "name": "M\u00f6ss\u00fcs", - "realm_idx": 5118, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Silver", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.4471, -37.62] - }, - "properties": { - "name": "Guste", - "realm_idx": 5119, - "order": "The Order of Giants", - "resources": ["Wood", "Obsidian", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.38, -4.9997] - }, - "properties": { - "name": "Luii\u2018", - "realm_idx": 5120, - "order": "The Order of Detection", - "resources": ["Stone", "Silver", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.4471, 12.18] - }, - "properties": { - "name": "Ototutup", - "realm_idx": 5121, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Wood", "Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.6471, 18.48] - }, - "properties": { - "name": "Stossmom", - "realm_idx": 5122, - "order": "The Order of Skill", - "resources": [ - "Stone", - "Wood", - "Ethereal Silica", - "Deep Crystal", - "Gold", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.4471, 49.48] - }, - "properties": { - "name": "gal Gagum", - "realm_idx": 5123, - "order": "The Order of Skill", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.0471, -11.02] - }, - "properties": { - "name": "Pomnang", - "realm_idx": 5124, - "order": "The Order of Giants", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.2529, -19.22] - }, - "properties": { - "name": "Nuwwl\u00fab", - "realm_idx": 5125, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.0471, 19.58] - }, - "properties": { - "name": "Utnet", - "realm_idx": 5126, - "order": "The Order of Titans", - "resources": ["Silver", "Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.8471, 54.18] - }, - "properties": { - "name": "N\u00edq\u00edn y\u00ed O", - "realm_idx": 5127, - "order": "The Order of Titans", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.9801, -54.6996] - }, - "properties": { - "name": "Kutusu", - "realm_idx": 5128, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.48, -11.2997] - }, - "properties": { - "name": "Umamimtikung", - "realm_idx": 5129, - "order": "The Order of Detection", - "resources": ["Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.6801, -16.5996] - }, - "properties": { - "name": "Nulmaln", - "realm_idx": 5130, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.9471, -33.22] - }, - "properties": { - "name": "Wumduswud", - "realm_idx": 5131, - "order": "The Order of Giants", - "resources": ["Copper", "Coal", "Obsidian", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.8471, -31.42] - }, - "properties": { - "name": "Lalamolilemo", - "realm_idx": 5132, - "order": "The Order of Giants", - "resources": ["Silver", "Gold", "Coal", "True Ice", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.08, -25.8997] - }, - "properties": { - "name": "Skiptepkik", - "realm_idx": 5133, - "order": "The Order of Reflection", - "resources": ["Silver", "Cold Iron", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.1471, 52.18] - }, - "properties": { - "name": "Izizuzhor", - "realm_idx": 5134, - "order": "The Order of Enlightenment", - "resources": ["Diamonds", "Stone", "Obsidian", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.6529, -1.22] - }, - "properties": { - "name": "Ozhuch", - "realm_idx": 5135, - "order": "The Order of Vitriol", - "resources": ["Coal", "Obsidian", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.4801, -35.8996] - }, - "properties": { - "name": "Fkemsgik", - "realm_idx": 5136, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.98, -35.8997] - }, - "properties": { - "name": "Newhul", - "realm_idx": 5137, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.98, 39.6003] - }, - "properties": { - "name": "\u00cfwzp\u00efj \u00c4jb", - "realm_idx": 5138, - "order": "The Order of Reflection", - "resources": ["Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.5471, -1.52] - }, - "properties": { - "name": "Setung", - "realm_idx": 5139, - "order": "The Order of Power", - "resources": ["Coal", "Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.7471, 31.48] - }, - "properties": { - "name": "Nurnurnurjoj", - "realm_idx": 5140, - "order": "The Order of Skill", - "resources": ["Copper", "Coal", "Stone", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.5718, 12.0377] - }, - "properties": { - "name": "Dyesdyes\u00e1m", - "realm_idx": 5141, - "order": "The Order of Protection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.7529, -21.82] - }, - "properties": { - "name": "Akadun", - "realm_idx": 5142, - "order": "The Order of Power", - "resources": ["Stone", "Obsidian", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.6669, -35.6811] - }, - "properties": { - "name": "Dum ka Miwk", - "realm_idx": 5143, - "order": "The Order of Reflection", - "resources": ["Wood", "Silver", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.0581, 3.6187] - }, - "properties": { - "name": "Kutshukshuk", - "realm_idx": 5144, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.9801, 42.7004] - }, - "properties": { - "name": "ton Nonon", - "realm_idx": 5145, - "order": "The Order of Anger", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.4471, 0.58] - }, - "properties": { - "name": "Lunsamsin", - "realm_idx": 5146, - "order": "The Order of Brilliance", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.7529, -6.32] - }, - "properties": { - "name": "Nummun", - "realm_idx": 5147, - "order": "The Order of the Fox", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.0471, 25.58] - }, - "properties": { - "name": "Kustunmon", - "realm_idx": 5148, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.6529, 22.18] - }, - "properties": { - "name": "Scheld", - "realm_idx": 5149, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.3721, -17.9928] - }, - "properties": { - "name": "Ubohohasogoz", - "realm_idx": 5150, - "order": "The Order of Protection", - "resources": ["Deep Crystal", "Cold Iron", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.3471, 42.38] - }, - "properties": { - "name": "Leuloemue", - "realm_idx": 5151, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Gold", "Stone", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-44.6529, 52.18] - }, - "properties": { - "name": "\u0160nimgiskug", - "realm_idx": 5152, - "order": "The Order of Fury", - "resources": ["Ethereal Silica", "Hartwood", "Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.98, -5.6997] - }, - "properties": { - "name": "Sue\u0161ai", - "realm_idx": 5153, - "order": "The Order of Detection", - "resources": ["Copper", "Coal", "Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.8666, -7.2487] - }, - "properties": { - "name": "Ghlubmus", - "realm_idx": 5154, - "order": "The Order of Reflection", - "resources": ["Cold Iron", "Obsidian", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.0471, -15.02] - }, - "properties": { - "name": "Ayey-un-Ayin", - "realm_idx": 5155, - "order": "The Order of Giants", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.88, 31.7003] - }, - "properties": { - "name": "os Umemulet", - "realm_idx": 5156, - "order": "The Order of Detection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.7097, 46.0135] - }, - "properties": { - "name": "stim Mong", - "realm_idx": 5157, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.4183, 47.5607] - }, - "properties": { - "name": "Qoe dou Lou", - "realm_idx": 5158, - "order": "The Order of Fury", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.2471, -16.12] - }, - "properties": { - "name": "Innen", - "realm_idx": 5159, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.2529, 13.98] - }, - "properties": { - "name": "Liulultalaak", - "realm_idx": 5160, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.6471, -16.42] - }, - "properties": { - "name": "Punnemnen", - "realm_idx": 5161, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.18, -5.4997] - }, - "properties": { - "name": "I al Aus", - "realm_idx": 5162, - "order": "The Order of Reflection", - "resources": ["Gold", "Stone", "Deep Crystal", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.1471, 12.38] - }, - "properties": { - "name": "Inpele Insao", - "realm_idx": 5163, - "order": "The Order of Protection", - "resources": ["Silver", "Coal", "Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.48, -21.5997] - }, - "properties": { - "name": "Momnemmomnom", - "realm_idx": 5164, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone", "Wood", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.5529, 41.58] - }, - "properties": { - "name": "Kay\u00eds\u00e1t", - "realm_idx": 5165, - "order": "The Order of Titans", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.7471, 15.08] - }, - "properties": { - "name": "Yoysolroq", - "realm_idx": 5166, - "order": "The Order of Titans", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.4801, 28.9004] - }, - "properties": { - "name": "Eekeek Itom", - "realm_idx": 5167, - "order": "The Order of Rage", - "resources": ["Stone", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.1801, 44.2004] - }, - "properties": { - "name": "Lumlen", - "realm_idx": 5168, - "order": "The Order of Anger", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.8471, 7.98] - }, - "properties": { - "name": "Nopen", - "realm_idx": 5169, - "order": "The Order of Brilliance", - "resources": ["Copper", "Stone", "Sapphire", "Deep Crystal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.5471, -12.22] - }, - "properties": { - "name": "Panpan", - "realm_idx": 5170, - "order": "The Order of Giants", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.5471, 8.38] - }, - "properties": { - "name": "Alkkil", - "realm_idx": 5171, - "order": "The Order of Protection", - "resources": ["Hartwood", "Stone", "Deep Crystal", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.0471, -34.92] - }, - "properties": { - "name": "\u00cftazash", - "realm_idx": 5172, - "order": "The Order of Power", - "resources": ["Copper", "Diamonds", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.1801, -22.2996] - }, - "properties": { - "name": "Mosfkap\u0161pap", - "realm_idx": 5173, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.9471, -37.62] - }, - "properties": { - "name": "ka Mulonelo", - "realm_idx": 5174, - "order": "The Order of Giants", - "resources": ["Ruby", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.48, 13.9003] - }, - "properties": { - "name": "Vizhsishsosh", - "realm_idx": 5175, - "order": "The Order of Detection", - "resources": ["Wood", "Copper", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.5471, 19.58] - }, - "properties": { - "name": "Uyikotuy", - "realm_idx": 5176, - "order": "The Order of Protection", - "resources": ["Wood", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.383, 21.7789] - }, - "properties": { - "name": "Vityuryur", - "realm_idx": 5177, - "order": "The Order of Fury", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.4471, 31.58] - }, - "properties": { - "name": "R\u00edmumun", - "realm_idx": 5178, - "order": "The Order of Skill", - "resources": ["Cold Iron", "Stone", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.3674, 36.009] - }, - "properties": { - "name": "G\u00f3rerm", - "realm_idx": 5179, - "order": "The Order of Anger", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.8471, 19.68] - }, - "properties": { - "name": "Kunluch", - "realm_idx": 5180, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.28, -55.2996] - }, - "properties": { - "name": "Op\u00ebyyol", - "realm_idx": 5181, - "order": "The Order of the Fox", - "resources": ["Silver", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.5529, -1.02] - }, - "properties": { - "name": "Oks\u00fatsops\u00fat", - "realm_idx": 5182, - "order": "The Order of Vitriol", - "resources": ["Coal", "Obsidian", "Stone", "Wood", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.38, -2.0997] - }, - "properties": { - "name": "Sansano", - "realm_idx": 5183, - "order": "The Order of Reflection", - "resources": ["Stone", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.9529, 54.98] - }, - "properties": { - "name": "Pituken-Sin", - "realm_idx": 5184, - "order": "The Order of Fury", - "resources": ["Stone", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.9471, 14.18] - }, - "properties": { - "name": "Shrizh", - "realm_idx": 5185, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.7328, 45.9053] - }, - "properties": { - "name": "Mietkeuk", - "realm_idx": 5186, - "order": "The Order of Anger", - "resources": ["Wood", "Sapphire", "Silver", "Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.3471, -39.62] - }, - "properties": { - "name": "Sauksauk", - "realm_idx": 5187, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.1529, -0.62] - }, - "properties": { - "name": "Emlu\u0161lu\u0161", - "realm_idx": 5188, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.8471, 4.38] - }, - "properties": { - "name": "Lamlam", - "realm_idx": 5189, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.68, 14.0003] - }, - "properties": { - "name": "Siadiu", - "realm_idx": 5190, - "order": "The Order of Fury", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.0471, -33.22] - }, - "properties": { - "name": "Sel\u00e9zhtez", - "realm_idx": 5191, - "order": "The Order of Giants", - "resources": ["Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.7801, 43.7004] - }, - "properties": { - "name": "Ranminning", - "realm_idx": 5192, - "order": "The Order of Anger", - "resources": ["Wood", "Obsidian", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [129.2267, 4.73] - }, - "properties": { - "name": "Oninupenan", - "realm_idx": 5193, - "order": "The Order of Protection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.58, -55.9996] - }, - "properties": { - "name": "In\u00e1n\u00edp\u00e1nuk", - "realm_idx": 5194, - "order": "The Order of the Fox", - "resources": ["Stone", "Obsidian", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.2471, 41.58] - }, - "properties": { - "name": "Awmurp", - "realm_idx": 5195, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Gold", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.515, -7.084] - }, - "properties": { - "name": "Skamspunmin", - "realm_idx": 5196, - "order": "The Order of Reflection", - "resources": ["Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.1201, -27.1152] - }, - "properties": { - "name": "m\u00fcn-Ontanem", - "realm_idx": 5197, - "order": "The Order of Protection", - "resources": ["Silver", "Copper", "Cold Iron", "True Ice", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2801, 25.7004] - }, - "properties": { - "name": "Egilh", - "realm_idx": 5198, - "order": "The Order of Rage", - "resources": ["Hartwood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.68, 24.4003] - }, - "properties": { - "name": "Giteshi", - "realm_idx": 5199, - "order": "The Order of Fury", - "resources": ["Gold", "Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.3471, 49.28] - }, - "properties": { - "name": "Gongnoer", - "realm_idx": 5200, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.48, -22.7997] - }, - "properties": { - "name": "\u00cdngving", - "realm_idx": 5201, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-26.1529, 49.38] - }, - "properties": { - "name": "Mununka", - "realm_idx": 5202, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.4471, -35.12] - }, - "properties": { - "name": "Szezneler", - "realm_idx": 5203, - "order": "The Order of Giants", - "resources": ["Wood", "Gold", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.5471, 19.38] - }, - "properties": { - "name": "Hunnrin", - "realm_idx": 5204, - "order": "The Order of Skill", - "resources": ["Stone", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.6529, 23.48] - }, - "properties": { - "name": "Punkumpon", - "realm_idx": 5205, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.4164, 1.269] - }, - "properties": { - "name": "tin Shlonkun", - "realm_idx": 5206, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.3529, 12.48] - }, - "properties": { - "name": "Sholshol", - "realm_idx": 5207, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.9471, 35.98] - }, - "properties": { - "name": "Tschumamape", - "realm_idx": 5208, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Cold Iron", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.3529, 25.18] - }, - "properties": { - "name": "Shghowshmul", - "realm_idx": 5209, - "order": "The Order of Vitriol", - "resources": ["True Ice", "Wood", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.6471, -34.02] - }, - "properties": { - "name": "Tikmik", - "realm_idx": 5210, - "order": "The Order of Giants", - "resources": ["Wood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.5471, 2.78] - }, - "properties": { - "name": "Uzhiyig", - "realm_idx": 5211, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.7529, 9.48] - }, - "properties": { - "name": "Vultugnip", - "realm_idx": 5212, - "order": "The Order of Titans", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.5471, 5.78] - }, - "properties": { - "name": "\u010caggi\u010dsgu", - "realm_idx": 5213, - "order": "The Order of Titans", - "resources": ["Coal", "Obsidian", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.08, -17.2997] - }, - "properties": { - "name": "Pekhekhrik", - "realm_idx": 5214, - "order": "The Order of Reflection", - "resources": ["Copper", "True Ice", "Coal", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.2568, 16.9249] - }, - "properties": { - "name": "Sutnlun", - "realm_idx": 5215, - "order": "The Order of Fury", - "resources": ["Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.6529, 10.98] - }, - "properties": { - "name": "Nitnitnum", - "realm_idx": 5216, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.0471, -26.22] - }, - "properties": { - "name": "Ilolqil", - "realm_idx": 5217, - "order": "The Order of Giants", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.7064, -13.0805] - }, - "properties": { - "name": "Lu\u2018num\u2018iw\u2018im", - "realm_idx": 5218, - "order": "The Order of Rage", - "resources": ["Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.3529, 31.88] - }, - "properties": { - "name": "hizh-Buz\u00edzh", - "realm_idx": 5219, - "order": "The Order of Vitriol", - "resources": ["Copper", "Stone", "Coal", "Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.2134, 5.4345] - }, - "properties": { - "name": "Imiimmionnen", - "realm_idx": 5220, - "order": "The Order of Protection", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.4471, -26.32] - }, - "properties": { - "name": "Traamtroplan", - "realm_idx": 5221, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.2529, 29.08] - }, - "properties": { - "name": "Olegop", - "realm_idx": 5222, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Coal", "Stone", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.1471, 18.98] - }, - "properties": { - "name": "non-Is", - "realm_idx": 5223, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.9801, -35.6996] - }, - "properties": { - "name": "Sullumsul", - "realm_idx": 5224, - "order": "The Order of the Twins", - "resources": ["Copper", "Wood", "Gold", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.4529, 49.78] - }, - "properties": { - "name": "Ing\u00fang", - "realm_idx": 5225, - "order": "The Order of Vitriol", - "resources": ["Coal", "Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.0801, 12.9004] - }, - "properties": { - "name": "D\u00edschtschu", - "realm_idx": 5226, - "order": "The Order of Rage", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.38, -31.2997] - }, - "properties": { - "name": "Slusanut", - "realm_idx": 5227, - "order": "The Order of Detection", - "resources": [ - "Gold", - "Copper", - "Stone", - "Cold Iron", - "Deep Crystal", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.6471, 10.68] - }, - "properties": { - "name": "Ukukomogukun", - "realm_idx": 5228, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.6529, 11.78] - }, - "properties": { - "name": "Kuhuku", - "realm_idx": 5229, - "order": "The Order of Vitriol", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.3471, -5.32] - }, - "properties": { - "name": "Nrattis", - "realm_idx": 5230, - "order": "The Order of Power", - "resources": ["Copper", "Ethereal Silica", "Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.8471, -16.32] - }, - "properties": { - "name": "Slonnep", - "realm_idx": 5231, - "order": "The Order of Power", - "resources": ["Stone", "Ethereal Silica", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.3801, 19.5004] - }, - "properties": { - "name": "Ischumadikad", - "realm_idx": 5232, - "order": "The Order of Rage", - "resources": ["Wood", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-126.28, 5.9003] - }, - "properties": { - "name": "mws Pwklus", - "realm_idx": 5233, - "order": "The Order of Detection", - "resources": ["Ironwood", "Stone", "Sapphire", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.9096, -9.7294] - }, - "properties": { - "name": "Mitpunpun", - "realm_idx": 5234, - "order": "The Order of Perfection", - "resources": ["Coal", "Copper", "Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.0596, -13.9638] - }, - "properties": { - "name": "Wamubuyghi", - "realm_idx": 5235, - "order": "The Order of Perfection", - "resources": ["Gold", "Wood", "Coal", "Stone", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.7471, 34.68] - }, - "properties": { - "name": "Bumtusqinmos", - "realm_idx": 5236, - "order": "The Order of Titans", - "resources": ["Ethereal Silica", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.8582, -39.3027] - }, - "properties": { - "name": "Pinpinnoxkop", - "realm_idx": 5237, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.6261, -36.6457] - }, - "properties": { - "name": "Zhaegluil", - "realm_idx": 5238, - "order": "The Order of Reflection", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.48, -40.1997] - }, - "properties": { - "name": "Lelerung", - "realm_idx": 5239, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.8471, -9.52] - }, - "properties": { - "name": "Mulmul al Ol", - "realm_idx": 5240, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Ironwood", "Obsidian", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.3529, 13.18] - }, - "properties": { - "name": "Adinowed", - "realm_idx": 5241, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.1471, 40.78] - }, - "properties": { - "name": "Miknus", - "realm_idx": 5242, - "order": "The Order of Titans", - "resources": ["Silver", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.2529, 10.68] - }, - "properties": { - "name": "Luglug", - "realm_idx": 5243, - "order": "The Order of Vitriol", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.6678, 55.28] - }, - "properties": { - "name": "Kaadriil", - "realm_idx": 5244, - "order": "The Order of Fury", - "resources": ["Wood", "Sapphire", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.2471, 41.18] - }, - "properties": { - "name": "Ilwilw Odqik", - "realm_idx": 5245, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.9471, 13.18] - }, - "properties": { - "name": "i Udud", - "realm_idx": 5246, - "order": "The Order of Titans", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.4442, -19.6192] - }, - "properties": { - "name": "Keabrom", - "realm_idx": 5247, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-77.8801, 44.0004] - }, - "properties": { - "name": "Sosshkangos", - "realm_idx": 5248, - "order": "The Order of Anger", - "resources": ["Wood", "Diamonds", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.4529, -10.92] - }, - "properties": { - "name": "Gig\u0161o\u0161\u0161inti\u0161", - "realm_idx": 5249, - "order": "The Order of the Fox", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.3471, 9.58] - }, - "properties": { - "name": "Makmomt\u00fcsmak", - "realm_idx": 5250, - "order": "The Order of Brilliance", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.38, 27.3003] - }, - "properties": { - "name": "Uburub", - "realm_idx": 5251, - "order": "The Order of Fury", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.78, -60.4996] - }, - "properties": { - "name": "L\u00edtm\u00e1m L\u00edtti", - "realm_idx": 5252, - "order": "The Order of the Fox", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.9457, -12.9793] - }, - "properties": { - "name": "Pepepeteko", - "realm_idx": 5253, - "order": "The Order of Rage", - "resources": ["Wood", "Cold Iron", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.08, -51.0996] - }, - "properties": { - "name": "Sotmirg", - "realm_idx": 5254, - "order": "The Order of the Fox", - "resources": ["Cold Iron", "Coal", "Ruby", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.7068, -0.5031] - }, - "properties": { - "name": "Iitaadasaw", - "realm_idx": 5255, - "order": "The Order of Perfection", - "resources": ["Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.6529, 47.18] - }, - "properties": { - "name": "Simie Sim", - "realm_idx": 5256, - "order": "The Order of Fury", - "resources": ["Coal", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.7176, 39.3504] - }, - "properties": { - "name": "uun Uqiq", - "realm_idx": 5257, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Stone", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.5529, 43.98] - }, - "properties": { - "name": "N\u00efln\u00efl", - "realm_idx": 5258, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.5471, 15.28] - }, - "properties": { - "name": "Osholmuw", - "realm_idx": 5259, - "order": "The Order of Titans", - "resources": ["Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.9224, 20.2645] - }, - "properties": { - "name": "Non Osese", - "realm_idx": 5260, - "order": "The Order of Fury", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.7103, -20.7847] - }, - "properties": { - "name": "Mi po Kil", - "realm_idx": 5261, - "order": "The Order of Perfection", - "resources": ["Deep Crystal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.6471, 38.08] - }, - "properties": { - "name": "Dukz\u00fcrkizh", - "realm_idx": 5262, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Silver", "Cold Iron", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.8468, 26.7991] - }, - "properties": { - "name": "jem Nijamong", - "realm_idx": 5263, - "order": "The Order of Fury", - "resources": ["Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.6529, -11.72] - }, - "properties": { - "name": "Kemlem", - "realm_idx": 5264, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.3471, 34.48] - }, - "properties": { - "name": "Timvankung", - "realm_idx": 5265, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.1801, -28.7996] - }, - "properties": { - "name": "Gupuqose", - "realm_idx": 5266, - "order": "The Order of the Twins", - "resources": ["Wood", "Obsidian", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.5801, -52.9996] - }, - "properties": { - "name": "Nupip", - "realm_idx": 5267, - "order": "The Order of the Twins", - "resources": ["Deep Crystal", "Gold", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.0173, -18.1764] - }, - "properties": { - "name": "Skinfkok", - "realm_idx": 5268, - "order": "The Order of Protection", - "resources": ["True Ice", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.9092, 25.111] - }, - "properties": { - "name": "Iqeqasotiq", - "realm_idx": 5269, - "order": "The Order of Fury", - "resources": ["Ironwood", "Copper", "Wood", "Sapphire", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.6238, -39.259] - }, - "properties": { - "name": "Menmunmum", - "realm_idx": 5270, - "order": "The Order of the Twins", - "resources": ["Coal", "Silver", "Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.3471, 52.38] - }, - "properties": { - "name": "\u00eart \u00carmh\u00earm", - "realm_idx": 5271, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.1471, 17.38] - }, - "properties": { - "name": "Tosposkis", - "realm_idx": 5272, - "order": "The Order of Protection", - "resources": ["Copper", "Wood", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.2801, 40.1004] - }, - "properties": { - "name": "Shtumu", - "realm_idx": 5273, - "order": "The Order of Anger", - "resources": ["Coal", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.7529, 45.78] - }, - "properties": { - "name": "Kem\u2018a\u2018\u2018apw\u00fcm", - "realm_idx": 5274, - "order": "The Order of Fury", - "resources": ["Stone", "Gold", "Ruby", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.4801, -53.6996] - }, - "properties": { - "name": "Sutskut", - "realm_idx": 5275, - "order": "The Order of the Twins", - "resources": ["Wood", "Obsidian", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.38, -10.9997] - }, - "properties": { - "name": "Limrol", - "realm_idx": 5276, - "order": "The Order of Detection", - "resources": ["Copper", "Coal", "Cold Iron", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.0108, -13.4354] - }, - "properties": { - "name": "Meshmep", - "realm_idx": 5277, - "order": "The Order of Rage", - "resources": ["Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.08, 39.1003] - }, - "properties": { - "name": "Zilibu", - "realm_idx": 5278, - "order": "The Order of Fury", - "resources": ["Silver", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.5651, -17.5706] - }, - "properties": { - "name": "Itikz\u00ed Dik", - "realm_idx": 5279, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [10.0471, 34.38] - }, - "properties": { - "name": "\u00dcshog", - "realm_idx": 5280, - "order": "The Order of Titans", - "resources": ["Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.58, 28.0824] - }, - "properties": { - "name": "Zelzel-Mog", - "realm_idx": 5281, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.9681, -17.8633] - }, - "properties": { - "name": "Oi Oen", - "realm_idx": 5282, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.8471, 9.18] - }, - "properties": { - "name": "Mik\u00e1riniqa", - "realm_idx": 5283, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.88, -54.8996] - }, - "properties": { - "name": "Ajh Hijh", - "realm_idx": 5284, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [23.4471, 55.88] - }, - "properties": { - "name": "Nriknomm\u00fam", - "realm_idx": 5285, - "order": "The Order of Titans", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.0471, -10.72] - }, - "properties": { - "name": "Dunsh\u00f3m", - "realm_idx": 5286, - "order": "The Order of Giants", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.4699, 10.7224] - }, - "properties": { - "name": "Moliln", - "realm_idx": 5287, - "order": "The Order of Protection", - "resources": ["Ignium", "Copper", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.2471, 30.38] - }, - "properties": { - "name": "Kraankraan", - "realm_idx": 5288, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.6471, 18.98] - }, - "properties": { - "name": "Spor\u0161edpeg", - "realm_idx": 5289, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.3471, 8.18] - }, - "properties": { - "name": "Ik u I", - "realm_idx": 5290, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.7529, 24.08] - }, - "properties": { - "name": "Swulul", - "realm_idx": 5291, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.7471, 31.78] - }, - "properties": { - "name": "Sniksmaksnes", - "realm_idx": 5292, - "order": "The Order of Titans", - "resources": ["Silver", "Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.1471, 18.68] - }, - "properties": { - "name": "Tuyhtaw", - "realm_idx": 5293, - "order": "The Order of Skill", - "resources": ["Wood", "Sapphire", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.2471, 11.98] - }, - "properties": { - "name": "Naw-han-Nu\u2018", - "realm_idx": 5294, - "order": "The Order of Titans", - "resources": [ - "Cold Iron", - "Wood", - "Stone", - "Deep Crystal", - "Coal", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.5527, 49.3801] - }, - "properties": { - "name": "Saklus", - "realm_idx": 5295, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.3529, 41.48] - }, - "properties": { - "name": "Sukli", - "realm_idx": 5296, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.1471, 43.38] - }, - "properties": { - "name": "Akl\u00edtkumik\u00edk", - "realm_idx": 5297, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Mithral", "True Ice", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.78, -55.4996] - }, - "properties": { - "name": "Ylmtyt", - "realm_idx": 5298, - "order": "The Order of the Fox", - "resources": ["Stone", "Cold Iron", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.58, 15.5003] - }, - "properties": { - "name": "Po\u010ddordor", - "realm_idx": 5299, - "order": "The Order of Detection", - "resources": ["Wood", "Gold", "Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.98, -34.3997] - }, - "properties": { - "name": "Nilem", - "realm_idx": 5300, - "order": "The Order of Detection", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.58, 11.3003] - }, - "properties": { - "name": "Tliktlikmlus", - "realm_idx": 5301, - "order": "The Order of Detection", - "resources": ["Wood", "Copper", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.2529, 29.08] - }, - "properties": { - "name": "Jyvqiqjys", - "realm_idx": 5302, - "order": "The Order of Vitriol", - "resources": ["Stone", "Gold", "Cold Iron", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.9403, 36.271] - }, - "properties": { - "name": "Emunpuman", - "realm_idx": 5303, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.8529, -4.92] - }, - "properties": { - "name": "Ol\u00ebs\u00efk", - "realm_idx": 5304, - "order": "The Order of the Fox", - "resources": ["Stone", "Copper", "Wood", "Alchemical Silver", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.6529, 11.08] - }, - "properties": { - "name": "Uletilkek", - "realm_idx": 5305, - "order": "The Order of Vitriol", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.08, -56.3996] - }, - "properties": { - "name": "glas Sesh", - "realm_idx": 5306, - "order": "The Order of the Fox", - "resources": ["Ignium", "Wood", "Hartwood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.08, -27.6997] - }, - "properties": { - "name": "Seuneos", - "realm_idx": 5307, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.4471, -0.32] - }, - "properties": { - "name": "Mungsem", - "realm_idx": 5308, - "order": "The Order of Brilliance", - "resources": ["Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.7471, -3.32] - }, - "properties": { - "name": "Puokoep", - "realm_idx": 5309, - "order": "The Order of Power", - "resources": ["Coal", "Copper", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.0471, 15.58] - }, - "properties": { - "name": "Hinnikhintan", - "realm_idx": 5310, - "order": "The Order of Brilliance", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.3801, -21.6996] - }, - "properties": { - "name": "Irurimit", - "realm_idx": 5311, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Wood", "Copper", "Stone", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.8471, 8.98] - }, - "properties": { - "name": "Malmup", - "realm_idx": 5312, - "order": "The Order of Brilliance", - "resources": ["Stone", "Copper", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.9471, -44.52] - }, - "properties": { - "name": "Alel par Al", - "realm_idx": 5313, - "order": "The Order of Giants", - "resources": ["Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.8632, 9.522] - }, - "properties": { - "name": "Pinshlun", - "realm_idx": 5314, - "order": "The Order of Protection", - "resources": ["Copper", "Ruby", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.8914, -22.7088] - }, - "properties": { - "name": "Munmen", - "realm_idx": 5315, - "order": "The Order of Protection", - "resources": ["Wood", "Copper", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.0801, 14.5004] - }, - "properties": { - "name": "\u0160a\u017e\u0161a\u017eninus", - "realm_idx": 5316, - "order": "The Order of Rage", - "resources": ["Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [130.648, 5.5363] - }, - "properties": { - "name": "Qiemiov", - "realm_idx": 5317, - "order": "The Order of Protection", - "resources": ["Stone", "Copper", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.5471, 41.08] - }, - "properties": { - "name": "Luuiu", - "realm_idx": 5318, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.98, -42.3996] - }, - "properties": { - "name": "\u0160ungongongun", - "realm_idx": 5319, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.0801, -12.8996] - }, - "properties": { - "name": "Hiyhpa", - "realm_idx": 5320, - "order": "The Order of Rage", - "resources": ["Ethereal Silica", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.4471, -41.12] - }, - "properties": { - "name": "Girp\u00efrsurs", - "realm_idx": 5321, - "order": "The Order of Giants", - "resources": ["Obsidian", "Gold", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.9529, 20.78] - }, - "properties": { - "name": "Timpoomson", - "realm_idx": 5322, - "order": "The Order of Vitriol", - "resources": ["Stone", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.78, 34.3003] - }, - "properties": { - "name": "Tamuh", - "realm_idx": 5323, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.6471, -34.82] - }, - "properties": { - "name": "Blambong", - "realm_idx": 5324, - "order": "The Order of Power", - "resources": ["Wood", "Diamonds", "Coal", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.447, -4.32] - }, - "properties": { - "name": "Nautuas", - "realm_idx": 5325, - "order": "The Order of Perfection", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.1471, -35.32] - }, - "properties": { - "name": "Dadsh\u00edmdig", - "realm_idx": 5326, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Obsidian", "Twilight Quartz", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.8801, -6.1996] - }, - "properties": { - "name": "Umali\u2018aw", - "realm_idx": 5327, - "order": "The Order of Rage", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.18, -55.1996] - }, - "properties": { - "name": "Nijni", - "realm_idx": 5328, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.5529, 55.68] - }, - "properties": { - "name": "Tutsezij", - "realm_idx": 5329, - "order": "The Order of Fury", - "resources": ["Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.6471, 31.08] - }, - "properties": { - "name": "Nulslu", - "realm_idx": 5330, - "order": "The Order of Skill", - "resources": ["Stone", "Coal", "Hartwood", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.3471, 7.38] - }, - "properties": { - "name": "Tuiniaruaq", - "realm_idx": 5331, - "order": "The Order of Titans", - "resources": ["Coal", "Cold Iron", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [102.8471, -11.92] - }, - "properties": { - "name": "Neulnuesnuas", - "realm_idx": 5332, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.18, -9.9997] - }, - "properties": { - "name": "Puimiopui", - "realm_idx": 5333, - "order": "The Order of Detection", - "resources": ["Stone", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [71.1471, 47.78] - }, - "properties": { - "name": "Tu\u010di\u010du\u010d", - "realm_idx": 5334, - "order": "The Order of Skill", - "resources": ["Stone", "Sapphire", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.5529, 49.38] - }, - "properties": { - "name": "Shmumstun", - "realm_idx": 5335, - "order": "The Order of Vitriol", - "resources": ["Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.4471, 40.48] - }, - "properties": { - "name": "\u00cdl\u00e1nap\u00edt\u00edk\u00edk", - "realm_idx": 5336, - "order": "The Order of Skill", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.28, -49.9996] - }, - "properties": { - "name": "Sotemurs", - "realm_idx": 5337, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.3471, 19.98] - }, - "properties": { - "name": "Chiensier", - "realm_idx": 5338, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.68, -30.7997] - }, - "properties": { - "name": "\u010comdlud", - "realm_idx": 5339, - "order": "The Order of Detection", - "resources": ["Obsidian", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.6801, 7.6004] - }, - "properties": { - "name": "Hun Hinhem", - "realm_idx": 5340, - "order": "The Order of Rage", - "resources": ["Ironwood", "Copper", "Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.0801, -40.3996] - }, - "properties": { - "name": "Shnimmip", - "realm_idx": 5341, - "order": "The Order of the Twins", - "resources": ["Copper", "Gold", "Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.9471, 14.2722] - }, - "properties": { - "name": "Mwpwlte", - "realm_idx": 5342, - "order": "The Order of Protection", - "resources": ["Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.2707, -21.5444] - }, - "properties": { - "name": "Teimteultie", - "realm_idx": 5343, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.9471, -40.52] - }, - "properties": { - "name": "tul-Sonolo", - "realm_idx": 5344, - "order": "The Order of Giants", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.8471, 42.68] - }, - "properties": { - "name": "Esuyesos", - "realm_idx": 5345, - "order": "The Order of Skill", - "resources": ["Obsidian", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.98, -47.7996] - }, - "properties": { - "name": "tok T\u00fckt\u00f6s", - "realm_idx": 5346, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.2175, 39.3775] - }, - "properties": { - "name": "Polp\u00e9nek", - "realm_idx": 5347, - "order": "The Order of Reflection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.7471, -25.72] - }, - "properties": { - "name": "ap Upupum", - "realm_idx": 5348, - "order": "The Order of Perfection", - "resources": ["Diamonds", "Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.98, 13.8003] - }, - "properties": { - "name": "Kirdizuksi", - "realm_idx": 5349, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.9801, 31.0308] - }, - "properties": { - "name": "Amnum", - "realm_idx": 5350, - "order": "The Order of Anger", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.0471, 9.48] - }, - "properties": { - "name": "Kikumu", - "realm_idx": 5351, - "order": "The Order of Brilliance", - "resources": [ - "Obsidian", - "Gold", - "Copper", - "Alchemical Silver", - "Ethereal Silica", - "Wood", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.18, 13.4003] - }, - "properties": { - "name": "Mokur", - "realm_idx": 5352, - "order": "The Order of Detection", - "resources": ["Silver", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.08, 27.7003] - }, - "properties": { - "name": "Dlontlon", - "realm_idx": 5353, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.0471, -34.72] - }, - "properties": { - "name": "Luplup", - "realm_idx": 5354, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.2471, -21.52] - }, - "properties": { - "name": "Ghir Likh", - "realm_idx": 5355, - "order": "The Order of Perfection", - "resources": ["Stone", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.5471, -16.32] - }, - "properties": { - "name": "Kulkpilkmalm", - "realm_idx": 5356, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.0801, -57.0996] - }, - "properties": { - "name": "Erpmolnul", - "realm_idx": 5357, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.48, -29.2997] - }, - "properties": { - "name": "Lag i Al", - "realm_idx": 5358, - "order": "The Order of Reflection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.1471, -37.92] - }, - "properties": { - "name": "Ungim", - "realm_idx": 5359, - "order": "The Order of Giants", - "resources": ["Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.9643, 35.0896] - }, - "properties": { - "name": "Sipsos\u00f3m\u00f3l", - "realm_idx": 5360, - "order": "The Order of Anger", - "resources": ["Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.3471, -30.32] - }, - "properties": { - "name": "Latkossran", - "realm_idx": 5361, - "order": "The Order of Giants", - "resources": ["True Ice", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.9565, 4.3198] - }, - "properties": { - "name": "Tienut", - "realm_idx": 5362, - "order": "The Order of Protection", - "resources": ["Coal", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.1529, -6.32] - }, - "properties": { - "name": "Moxteymox", - "realm_idx": 5363, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone", "Copper", "Adamantine", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.58, -43.1996] - }, - "properties": { - "name": "kuj Qa", - "realm_idx": 5364, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.1471, 30.18] - }, - "properties": { - "name": "Angangnapu", - "realm_idx": 5365, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.8189, -19.0679] - }, - "properties": { - "name": "P\u00e1almut", - "realm_idx": 5366, - "order": "The Order of Protection", - "resources": ["Copper", "Diamonds", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.68, 4.4003] - }, - "properties": { - "name": "Lo\u00e9ti\u00e1k", - "realm_idx": 5367, - "order": "The Order of Detection", - "resources": ["Coal", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.0801, -16.2996] - }, - "properties": { - "name": "Aschasch", - "realm_idx": 5368, - "order": "The Order of Rage", - "resources": ["Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.0471, 40.98] - }, - "properties": { - "name": "Luiwueimmeal", - "realm_idx": 5369, - "order": "The Order of Skill", - "resources": ["Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.6471, 17.18] - }, - "properties": { - "name": "Ebutoyumum", - "realm_idx": 5370, - "order": "The Order of Skill", - "resources": ["Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.6801, 41.2004] - }, - "properties": { - "name": "\u00dcnninkum\u00f6n", - "realm_idx": 5371, - "order": "The Order of Anger", - "resources": ["Coal", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.6801, -8.1996] - }, - "properties": { - "name": "Umhin Be", - "realm_idx": 5372, - "order": "The Order of Rage", - "resources": ["Coal", "Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.5865, 46.6126] - }, - "properties": { - "name": "Orhormirp", - "realm_idx": 5373, - "order": "The Order of Fury", - "resources": ["Coal", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.3801, -33.1996] - }, - "properties": { - "name": "Bululdnilp", - "realm_idx": 5374, - "order": "The Order of the Twins", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.4529, 25.38] - }, - "properties": { - "name": "Mlohnlop", - "realm_idx": 5375, - "order": "The Order of Vitriol", - "resources": ["Gold", "Stone", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.9529, 22.58] - }, - "properties": { - "name": "Ninnin", - "realm_idx": 5376, - "order": "The Order of Vitriol", - "resources": ["Copper", "Stone", "Coal", "Wood", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.8471, -22.92] - }, - "properties": { - "name": "Esuktelp", - "realm_idx": 5377, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Ruby", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.48, -19.7997] - }, - "properties": { - "name": "Moogkok", - "realm_idx": 5378, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal", "Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.8471, 51.68] - }, - "properties": { - "name": "Otatuham", - "realm_idx": 5379, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.78, 11.9003] - }, - "properties": { - "name": "Kunkun", - "realm_idx": 5380, - "order": "The Order of Detection", - "resources": ["Coal", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [71.4471, -26.42] - }, - "properties": { - "name": "Pukem", - "realm_idx": 5381, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.58, -15.3997] - }, - "properties": { - "name": "\u00c1z\u00edl\u00e1nup", - "realm_idx": 5382, - "order": "The Order of Reflection", - "resources": ["Hartwood", "Stone", "Gold", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.2529, -37.12] - }, - "properties": { - "name": "Kaimnop", - "realm_idx": 5383, - "order": "The Order of Power", - "resources": ["Coal", "Obsidian", "Ruby", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.0801, -4.4996] - }, - "properties": { - "name": "Irilach", - "realm_idx": 5384, - "order": "The Order of Rage", - "resources": ["Ironwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.78, -6.4997] - }, - "properties": { - "name": "Snun Snamgun", - "realm_idx": 5385, - "order": "The Order of Detection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.3471, 0.88] - }, - "properties": { - "name": "Skenken", - "realm_idx": 5386, - "order": "The Order of Brilliance", - "resources": ["Stone", "Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.9471, 11.88] - }, - "properties": { - "name": "Chumrur", - "realm_idx": 5387, - "order": "The Order of Brilliance", - "resources": ["Wood", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.2529, 41.28] - }, - "properties": { - "name": "Omikukuk", - "realm_idx": 5388, - "order": "The Order of Titans", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.5471, 43.48] - }, - "properties": { - "name": "Akelunusunel", - "realm_idx": 5389, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.78, -6.4997] - }, - "properties": { - "name": "Kilnurtsch", - "realm_idx": 5390, - "order": "The Order of Detection", - "resources": ["Gold", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.68, 33.8003] - }, - "properties": { - "name": "K\u00edkd\u00edn", - "realm_idx": 5391, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.7529, 54.58] - }, - "properties": { - "name": "uk Upepet", - "realm_idx": 5392, - "order": "The Order of Fury", - "resources": ["Coal", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.6471, 26.28] - }, - "properties": { - "name": "Ke\u2018nalke\u2018", - "realm_idx": 5393, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.9471, 14.08] - }, - "properties": { - "name": "Hikku", - "realm_idx": 5394, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Stone", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.9471, 59.18] - }, - "properties": { - "name": "Apich", - "realm_idx": 5395, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.7801, 45.7004] - }, - "properties": { - "name": "Chumn\u00e1m", - "realm_idx": 5396, - "order": "The Order of Anger", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.6529, -19.72] - }, - "properties": { - "name": "Ukumtiypin", - "realm_idx": 5397, - "order": "The Order of Power", - "resources": [ - "Coal", - "Sapphire", - "Obsidian", - "Hartwood", - "Wood", - "Ethereal Silica" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.1615, -11.2644] - }, - "properties": { - "name": "Ulkolgger", - "realm_idx": 5398, - "order": "The Order of Perfection", - "resources": ["Wood", "Ironwood", "Copper", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.1471, 50.18] - }, - "properties": { - "name": "Kh\u00fcrwisnuet", - "realm_idx": 5399, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.2529, -16.62] - }, - "properties": { - "name": "Klezhl\u00fa\u0161klez", - "realm_idx": 5400, - "order": "The Order of Power", - "resources": ["Wood", "Copper", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.6471, -39.42] - }, - "properties": { - "name": "Tittu", - "realm_idx": 5401, - "order": "The Order of Giants", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.5471, -9.82] - }, - "properties": { - "name": "Ngiup", - "realm_idx": 5402, - "order": "The Order of Power", - "resources": ["Stone", "Silver", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.6801, -55.5996] - }, - "properties": { - "name": "Isho ni I", - "realm_idx": 5403, - "order": "The Order of the Twins", - "resources": [ - "Hartwood", - "Coal", - "Cold Iron", - "Wood", - "Stone", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.1801, 42.6004] - }, - "properties": { - "name": "Qjunjuqquj", - "realm_idx": 5404, - "order": "The Order of Anger", - "resources": ["Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.6471, 39.98] - }, - "properties": { - "name": "Smon Nen", - "realm_idx": 5405, - "order": "The Order of Skill", - "resources": ["Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.8471, 8.98] - }, - "properties": { - "name": "Tinman", - "realm_idx": 5406, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.58, -4.4997] - }, - "properties": { - "name": "Jojluq", - "realm_idx": 5407, - "order": "The Order of Reflection", - "resources": ["Diamonds", "Gold", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.4529, 6.28] - }, - "properties": { - "name": "Niemeameamea", - "realm_idx": 5408, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.8801, 28.5004] - }, - "properties": { - "name": "Tinnoln\u00ebnon", - "realm_idx": 5409, - "order": "The Order of Rage", - "resources": ["Coal", "Hartwood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.2471, 1.18] - }, - "properties": { - "name": "Imumis", - "realm_idx": 5410, - "order": "The Order of Brilliance", - "resources": ["Wood", "Cold Iron", "Copper", "Obsidian", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.6284, -11.0013] - }, - "properties": { - "name": "Fkukskoh", - "realm_idx": 5411, - "order": "The Order of Perfection", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.2626, 12.0522] - }, - "properties": { - "name": "Iktak", - "realm_idx": 5412, - "order": "The Order of Fury", - "resources": ["Wood", "Cold Iron", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.4471, -26.42] - }, - "properties": { - "name": "Non Nonpun", - "realm_idx": 5413, - "order": "The Order of Perfection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.1471, -38.32] - }, - "properties": { - "name": "Kaikaimoisou", - "realm_idx": 5414, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.3968, -13.7757] - }, - "properties": { - "name": "Beusmes", - "realm_idx": 5415, - "order": "The Order of Rage", - "resources": ["Obsidian", "Coal", "Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.9529, 47.98] - }, - "properties": { - "name": "Stussusnun", - "realm_idx": 5416, - "order": "The Order of Titans", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.8801, -51.4996] - }, - "properties": { - "name": "Pemhumsna", - "realm_idx": 5417, - "order": "The Order of the Twins", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.6529, 3.38] - }, - "properties": { - "name": "Sr\u00e2nsr\u00e2n", - "realm_idx": 5418, - "order": "The Order of Power", - "resources": ["Wood", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.2471, -35.02] - }, - "properties": { - "name": "leut Pip", - "realm_idx": 5419, - "order": "The Order of Giants", - "resources": ["Cold Iron", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.5801, -11.7996] - }, - "properties": { - "name": "Kilkakaklum", - "realm_idx": 5420, - "order": "The Order of Rage", - "resources": ["Ironwood", "Coal", "Wood", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.9471, 20.68] - }, - "properties": { - "name": "Kashshol", - "realm_idx": 5421, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Hartwood", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.6527, 51.7801] - }, - "properties": { - "name": "Hunhwehpyoh", - "realm_idx": 5422, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.6877, 34.4627] - }, - "properties": { - "name": "Lake Unle", - "realm_idx": 5423, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.3529, -9.42] - }, - "properties": { - "name": "Dotch Om", - "realm_idx": 5424, - "order": "The Order of the Fox", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.7801, 31.7004] - }, - "properties": { - "name": "Sviikmorkus", - "realm_idx": 5425, - "order": "The Order of Anger", - "resources": ["Silver", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.78, -8.3997] - }, - "properties": { - "name": "Kukuku", - "realm_idx": 5426, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.4454, -49.3342] - }, - "properties": { - "name": "Shrugg\u00far", - "realm_idx": 5427, - "order": "The Order of the Fox", - "resources": ["Wood", "Diamonds", "Twilight Quartz", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-41.1529, -10.62] - }, - "properties": { - "name": "Usutpi", - "realm_idx": 5428, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Stone", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.7471, 33.48] - }, - "properties": { - "name": "Skumskeku", - "realm_idx": 5429, - "order": "The Order of Titans", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.6471, -9.12] - }, - "properties": { - "name": "Mamusiki", - "realm_idx": 5430, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.08, -36.4997] - }, - "properties": { - "name": "W\u00e1\u2018sm\u00e1\u2018l\u00f3w", - "realm_idx": 5431, - "order": "The Order of the Fox", - "resources": ["Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.6471, -25.82] - }, - "properties": { - "name": "im Tun", - "realm_idx": 5432, - "order": "The Order of Perfection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.3471, 40.48] - }, - "properties": { - "name": "Nashloz", - "realm_idx": 5433, - "order": "The Order of Skill", - "resources": ["Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.5801, -52.3996] - }, - "properties": { - "name": "Tuptup", - "realm_idx": 5434, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "Coal", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.6507, -23.7568] - }, - "properties": { - "name": "Mek Uum", - "realm_idx": 5435, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.3529, 41.18] - }, - "properties": { - "name": "Kokshuk", - "realm_idx": 5436, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.4471, 37.98] - }, - "properties": { - "name": "Hlalwil Wluk", - "realm_idx": 5437, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.98, -4.6997] - }, - "properties": { - "name": "Lachash", - "realm_idx": 5438, - "order": "The Order of Reflection", - "resources": ["Silver", "Wood", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.9471, -36.82] - }, - "properties": { - "name": "D\u00ed\u00e1umam", - "realm_idx": 5439, - "order": "The Order of Giants", - "resources": ["Obsidian", "Stone", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.08, 35.2003] - }, - "properties": { - "name": "Ugintig", - "realm_idx": 5440, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.2672, -28.5945] - }, - "properties": { - "name": "Ekekum", - "realm_idx": 5441, - "order": "The Order of Protection", - "resources": ["Wood", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.68, -31.0997] - }, - "properties": { - "name": "Imemap", - "realm_idx": 5442, - "order": "The Order of Reflection", - "resources": ["Silver", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.4471, 47.68] - }, - "properties": { - "name": "Klunminsum", - "realm_idx": 5443, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.9801, -33.3996] - }, - "properties": { - "name": "Kl\u00e1ngkrim", - "realm_idx": 5444, - "order": "The Order of the Twins", - "resources": ["Copper", "Stone", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.6801, -54.0996] - }, - "properties": { - "name": "Ongeqongun", - "realm_idx": 5445, - "order": "The Order of the Twins", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.7471, 33.68] - }, - "properties": { - "name": "Kukiko", - "realm_idx": 5446, - "order": "The Order of Titans", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.5471, 1.18] - }, - "properties": { - "name": "Swoksh\u00fak", - "realm_idx": 5447, - "order": "The Order of Brilliance", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.98, 13.0003] - }, - "properties": { - "name": "Getget", - "realm_idx": 5448, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-78.6801, 43.9004] - }, - "properties": { - "name": "Miltmulm", - "realm_idx": 5449, - "order": "The Order of Anger", - "resources": ["Coal", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.3471, 37.88] - }, - "properties": { - "name": "Oonbemoke", - "realm_idx": 5450, - "order": "The Order of Skill", - "resources": ["Wood", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.3801, 46.7004] - }, - "properties": { - "name": "Anronem", - "realm_idx": 5451, - "order": "The Order of Anger", - "resources": [ - "Coal", - "Obsidian", - "Cold Iron", - "Stone", - "Wood", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.2309, 48.2957] - }, - "properties": { - "name": "Nangnun", - "realm_idx": 5452, - "order": "The Order of Anger", - "resources": ["Alchemical Silver", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.2527, 51.6801] - }, - "properties": { - "name": "Eltokok", - "realm_idx": 5453, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.4801, 48.7004] - }, - "properties": { - "name": "Nenkemtumken", - "realm_idx": 5454, - "order": "The Order of Anger", - "resources": ["Copper", "Coal", "Obsidian", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.4801, -38.8996] - }, - "properties": { - "name": "us-Ilup", - "realm_idx": 5455, - "order": "The Order of the Twins", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.7801, 17.9004] - }, - "properties": { - "name": "hat Timmen", - "realm_idx": 5456, - "order": "The Order of Rage", - "resources": ["Alchemical Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.5307, 11.0741] - }, - "properties": { - "name": "Shmemsnem", - "realm_idx": 5457, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.847, 0.98] - }, - "properties": { - "name": "T\u00e1\u0161betik\u00edr", - "realm_idx": 5458, - "order": "The Order of Perfection", - "resources": ["Copper", "Silver", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.3471, -0.32] - }, - "properties": { - "name": "Tumtuntom", - "realm_idx": 5459, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.7471, -32.12] - }, - "properties": { - "name": "Tauhiempau", - "realm_idx": 5460, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.9801, 25.6004] - }, - "properties": { - "name": "Newnua\u2018nem", - "realm_idx": 5461, - "order": "The Order of Rage", - "resources": ["Ironwood", "Copper", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.9529, -4.62] - }, - "properties": { - "name": "Ulmulmulm", - "realm_idx": 5462, - "order": "The Order of the Fox", - "resources": ["Ironwood", "True Ice", "Copper", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-78.98, -51.7996] - }, - "properties": { - "name": "Enkopen", - "realm_idx": 5463, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.7411, -19.8376] - }, - "properties": { - "name": "Xtunlinxtan", - "realm_idx": 5464, - "order": "The Order of Protection", - "resources": ["Coal", "Sapphire", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.4471, 14.78] - }, - "properties": { - "name": "lum Iu", - "realm_idx": 5465, - "order": "The Order of Protection", - "resources": ["Wood", "Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.5471, 38.08] - }, - "properties": { - "name": "Zubbatbudubo", - "realm_idx": 5466, - "order": "The Order of Skill", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.4529, 40.78] - }, - "properties": { - "name": "Hrenleppek", - "realm_idx": 5467, - "order": "The Order of Titans", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.7345, -17.7872] - }, - "properties": { - "name": "Muwksijk", - "realm_idx": 5468, - "order": "The Order of Protection", - "resources": ["Diamonds", "Wood", "Stone", "Obsidian", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.8529, 39.88] - }, - "properties": { - "name": "lu Tarepi", - "realm_idx": 5469, - "order": "The Order of Titans", - "resources": ["Stone", "Obsidian", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.4471, 15.18] - }, - "properties": { - "name": "Lin Tlittlit", - "realm_idx": 5470, - "order": "The Order of Brilliance", - "resources": ["Wood", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.8527, 51.0801] - }, - "properties": { - "name": "Ereg-Epepaj", - "realm_idx": 5471, - "order": "The Order of the Twins", - "resources": ["Stone", "Copper", "Hartwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.8529, 40.28] - }, - "properties": { - "name": "Nechnechmaj", - "realm_idx": 5472, - "order": "The Order of Vitriol", - "resources": ["Copper", "Ironwood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [27.9471, -22.62] - }, - "properties": { - "name": "Hanimim", - "realm_idx": 5473, - "order": "The Order of Giants", - "resources": ["Gold", "Wood", "Stone", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.4132, 52.1793] - }, - "properties": { - "name": "Ookaa Mono", - "realm_idx": 5474, - "order": "The Order of Fury", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.9471, 45.28] - }, - "properties": { - "name": "Seobrod", - "realm_idx": 5475, - "order": "The Order of Skill", - "resources": [ - "Ignium", - "Deep Crystal", - "Wood", - "Stone", - "Copper", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.2471, -14.42] - }, - "properties": { - "name": "Pog\u00eb Rip\u00ebg\u00ebp", - "realm_idx": 5476, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Ironwood", "Obsidian", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.5801, 5.7004] - }, - "properties": { - "name": "Nillup", - "realm_idx": 5477, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.3801, 47.5004] - }, - "properties": { - "name": "Lelpalklel", - "realm_idx": 5478, - "order": "The Order of Anger", - "resources": ["Copper", "Wood", "Coal", "Ironwood", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.8394, 18.7601] - }, - "properties": { - "name": "Sgisrili\u017e", - "realm_idx": 5479, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.2801, 46.2004] - }, - "properties": { - "name": "Tjult\u00e2k", - "realm_idx": 5480, - "order": "The Order of Anger", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.7471, 14.68] - }, - "properties": { - "name": "Smismi", - "realm_idx": 5481, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.3218, -26.4541] - }, - "properties": { - "name": "Xop-Met", - "realm_idx": 5482, - "order": "The Order of Protection", - "resources": ["Silver", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.6031, 45.5119] - }, - "properties": { - "name": "Konkon-Kom", - "realm_idx": 5483, - "order": "The Order of Anger", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.957, -18.2482] - }, - "properties": { - "name": "Zhudbuat", - "realm_idx": 5484, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.18, -50.9996] - }, - "properties": { - "name": "Ekunut", - "realm_idx": 5485, - "order": "The Order of the Fox", - "resources": ["Coal", "Hartwood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.08, 36.1003] - }, - "properties": { - "name": "Zuh siz W\u00e1n", - "realm_idx": 5486, - "order": "The Order of Fury", - "resources": ["Silver", "Copper", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.28, -43.0996] - }, - "properties": { - "name": "Soksmet Quy", - "realm_idx": 5487, - "order": "The Order of the Fox", - "resources": ["Wood", "Ironwood", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.98, 13.1003] - }, - "properties": { - "name": "Kaezrie", - "realm_idx": 5488, - "order": "The Order of Fury", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.18, -61.7996] - }, - "properties": { - "name": "Ilvurvusloq", - "realm_idx": 5489, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.1596, -21.6575] - }, - "properties": { - "name": "Wudbaswud", - "realm_idx": 5490, - "order": "The Order of Perfection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-113.174, 27.5248] - }, - "properties": { - "name": "Kipkip", - "realm_idx": 5491, - "order": "The Order of Reflection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.5921, -35.0402] - }, - "properties": { - "name": "Chlenn\u00f3nsp\u00fan", - "realm_idx": 5492, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Stone", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.28, 1.9003] - }, - "properties": { - "name": "kan Sunkum", - "realm_idx": 5493, - "order": "The Order of Detection", - "resources": ["Obsidian", "Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.7238, 44.1764] - }, - "properties": { - "name": "nul \u00c4lsult\u00e4l", - "realm_idx": 5494, - "order": "The Order of Anger", - "resources": ["Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.88, -47.7997] - }, - "properties": { - "name": "Sn\u00e9sn\u00e9", - "realm_idx": 5495, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.3471, 36.08] - }, - "properties": { - "name": "sol Kutsmup", - "realm_idx": 5496, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.9529, -6.52] - }, - "properties": { - "name": "Daninononin", - "realm_idx": 5497, - "order": "The Order of the Fox", - "resources": ["Wood", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.1471, 17.98] - }, - "properties": { - "name": "Gigevulng", - "realm_idx": 5498, - "order": "The Order of Skill", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.0471, -35.02] - }, - "properties": { - "name": "Spunswim", - "realm_idx": 5499, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.8471, 3.08] - }, - "properties": { - "name": "Kinban", - "realm_idx": 5500, - "order": "The Order of Brilliance", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.1801, 41.5004] - }, - "properties": { - "name": "Onwimninon", - "realm_idx": 5501, - "order": "The Order of Anger", - "resources": ["Silver", "Copper", "True Ice", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.4529, -38.62] - }, - "properties": { - "name": "Nginjin", - "realm_idx": 5502, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.38, -51.2996] - }, - "properties": { - "name": "Lasli", - "realm_idx": 5503, - "order": "The Order of the Fox", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.9471, 16.88] - }, - "properties": { - "name": "Mudg\u00e4dk\u00e4kog", - "realm_idx": 5504, - "order": "The Order of Skill", - "resources": ["Wood", "Sapphire", "Ignium", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.4801, 0.5004] - }, - "properties": { - "name": "Semkumpum", - "realm_idx": 5505, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.6801, 50.0004] - }, - "properties": { - "name": "Tuegea", - "realm_idx": 5506, - "order": "The Order of Anger", - "resources": ["Copper", "Cold Iron", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.0529, 14.08] - }, - "properties": { - "name": "Mautpinhak", - "realm_idx": 5507, - "order": "The Order of Vitriol", - "resources": [ - "Wood", - "Silver", - "Cold Iron", - "Diamonds", - "Coal", - "Stone", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.38, 16.4003] - }, - "properties": { - "name": "Nikkilnip", - "realm_idx": 5508, - "order": "The Order of Detection", - "resources": ["Coal", "Wood", "Copper", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.3527, 53.1801] - }, - "properties": { - "name": "Izizuz\u00f6suz", - "realm_idx": 5509, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal", "Ethereal Silica", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.7331, 10.8658] - }, - "properties": { - "name": "Nuchdech", - "realm_idx": 5510, - "order": "The Order of Protection", - "resources": ["Wood", "Hartwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.9471, 33.18] - }, - "properties": { - "name": "Kluhhluhohuk", - "realm_idx": 5511, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Coal", "Copper", "Stone", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.9529, 3.88] - }, - "properties": { - "name": "azh Ozh\u00e2mwp", - "realm_idx": 5512, - "order": "The Order of Power", - "resources": ["Coal", "Cold Iron", "Ethereal Silica", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.3471, 14.98] - }, - "properties": { - "name": "Ul\u00eallytmul", - "realm_idx": 5513, - "order": "The Order of Titans", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.7471, 9.58] - }, - "properties": { - "name": "Nunstapkut", - "realm_idx": 5514, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.3471, -4.72] - }, - "properties": { - "name": "Jamapwil", - "realm_idx": 5515, - "order": "The Order of Giants", - "resources": ["Silver", "Stone", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.58, 40.3003] - }, - "properties": { - "name": "Ittin", - "realm_idx": 5516, - "order": "The Order of Reflection", - "resources": ["Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-43.0529, 6.28] - }, - "properties": { - "name": "hook Uyk", - "realm_idx": 5517, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.0471, -29.42] - }, - "properties": { - "name": "Bis E\u010d", - "realm_idx": 5518, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Stone", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.38, -30.9997] - }, - "properties": { - "name": "Ini Iinikik", - "realm_idx": 5519, - "order": "The Order of Detection", - "resources": ["Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.2529, -16.32] - }, - "properties": { - "name": "geu Deoroen", - "realm_idx": 5520, - "order": "The Order of Power", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.78, -5.2997] - }, - "properties": { - "name": "Gualzaexbaux", - "realm_idx": 5521, - "order": "The Order of Reflection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.0199, -20.6847] - }, - "properties": { - "name": "Les-Luk", - "realm_idx": 5522, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.8476, -28.6757] - }, - "properties": { - "name": "Schersornur", - "realm_idx": 5523, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.8471, 7.28] - }, - "properties": { - "name": "N\u00e1sk\u00f3k", - "realm_idx": 5524, - "order": "The Order of Brilliance", - "resources": ["Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.9471, 57.08] - }, - "properties": { - "name": "L\u00ednt\u00edn", - "realm_idx": 5525, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Wood", "Stone", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.7086, 7.437] - }, - "properties": { - "name": "Hamhon", - "realm_idx": 5526, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Copper", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.8471, 58.48] - }, - "properties": { - "name": "Peksek", - "realm_idx": 5527, - "order": "The Order of Titans", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.9471, 2.08] - }, - "properties": { - "name": "Moezyouzhzeo", - "realm_idx": 5528, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Copper", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.4471, -2.52] - }, - "properties": { - "name": "Pulmulul", - "realm_idx": 5529, - "order": "The Order of Power", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [11.9471, -13.52] - }, - "properties": { - "name": "Isikisik", - "realm_idx": 5530, - "order": "The Order of Power", - "resources": ["Coal", "Obsidian", "Silver", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.0471, -48.02] - }, - "properties": { - "name": "Heihheihpae", - "realm_idx": 5531, - "order": "The Order of Giants", - "resources": ["Wood", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.38, -54.8996] - }, - "properties": { - "name": "Reramrwwmlus", - "realm_idx": 5532, - "order": "The Order of the Fox", - "resources": ["Ethereal Silica", "Ironwood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.7529, 49.88] - }, - "properties": { - "name": "Shkanslit", - "realm_idx": 5533, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.0471, 41.98] - }, - "properties": { - "name": "Glushnglush", - "realm_idx": 5534, - "order": "The Order of Skill", - "resources": ["Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.3801, -30.2996] - }, - "properties": { - "name": "Uk\u00famememek", - "realm_idx": 5535, - "order": "The Order of the Twins", - "resources": ["Wood", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.8801, 44.7004] - }, - "properties": { - "name": "Zuzisnu", - "realm_idx": 5536, - "order": "The Order of Anger", - "resources": [ - "Wood", - "Cold Iron", - "Coal", - "Obsidian", - "Stone", - "Diamonds" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.1471, 45.28] - }, - "properties": { - "name": "Swenmonfmun", - "realm_idx": 5537, - "order": "The Order of Titans", - "resources": ["Hartwood", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.9801, -54.6996] - }, - "properties": { - "name": "Dimgon", - "realm_idx": 5538, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Stone", "Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.3471, 30.18] - }, - "properties": { - "name": "Urtir", - "realm_idx": 5539, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Copper", "Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.9801, 24.2004] - }, - "properties": { - "name": "he Chichu", - "realm_idx": 5540, - "order": "The Order of Rage", - "resources": ["Coal", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.9844, 48.833] - }, - "properties": { - "name": "Gun kim Lub", - "realm_idx": 5541, - "order": "The Order of Anger", - "resources": ["Stone", "Obsidian", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.48, -10.6997] - }, - "properties": { - "name": "\u2018aunuakmiu", - "realm_idx": 5542, - "order": "The Order of Detection", - "resources": ["Coal", "Wood", "Copper", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.9602, 30.025] - }, - "properties": { - "name": "go Do", - "realm_idx": 5543, - "order": "The Order of Anger", - "resources": ["Coal", "Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.3471, -33.82] - }, - "properties": { - "name": "Nobchozho", - "realm_idx": 5544, - "order": "The Order of Giants", - "resources": ["Gold", "Coal", "Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.8801, -55.1996] - }, - "properties": { - "name": "Aupoopnauls", - "realm_idx": 5545, - "order": "The Order of the Twins", - "resources": ["Stone", "Coal", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.4471, 10.98] - }, - "properties": { - "name": "Kaauspulpais", - "realm_idx": 5546, - "order": "The Order of Protection", - "resources": ["Wood", "Silver", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.6471, -19.02] - }, - "properties": { - "name": "Oa-ot-Utotis", - "realm_idx": 5547, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.0471, 13.78] - }, - "properties": { - "name": "mia Meu", - "realm_idx": 5548, - "order": "The Order of Protection", - "resources": ["Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.6529, 15.18] - }, - "properties": { - "name": "Adoduzh", - "realm_idx": 5549, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.2471, 8.18] - }, - "properties": { - "name": "Rideqi", - "realm_idx": 5550, - "order": "The Order of Protection", - "resources": ["Copper", "Obsidian", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.5801, 3.9004] - }, - "properties": { - "name": "Kotlotsl\u00fam", - "realm_idx": 5551, - "order": "The Order of Rage", - "resources": ["Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.7471, -0.72] - }, - "properties": { - "name": "smes Chd\u00fad", - "realm_idx": 5552, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.7529, -22.82] - }, - "properties": { - "name": "Stennan", - "realm_idx": 5553, - "order": "The Order of Power", - "resources": ["Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.8529, 44.78] - }, - "properties": { - "name": "Awawewelik", - "realm_idx": 5554, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.4471, 8.18] - }, - "properties": { - "name": "Kumh\u00efntunn\u00efm", - "realm_idx": 5555, - "order": "The Order of Titans", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.2387, 23.6027] - }, - "properties": { - "name": "Upohumonuh", - "realm_idx": 5556, - "order": "The Order of Fury", - "resources": ["Wood", "True Ice", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.78, 36.4003] - }, - "properties": { - "name": "\u0160\u00ef\u0161\u00e4\u0161\u0161\u00ef\u0161\u00e4\u0161", - "realm_idx": 5557, - "order": "The Order of Fury", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.7471, -36.92] - }, - "properties": { - "name": "Lillem", - "realm_idx": 5558, - "order": "The Order of Giants", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.0529, 48.38] - }, - "properties": { - "name": "Sko\u0161kopuk", - "realm_idx": 5559, - "order": "The Order of Fury", - "resources": [ - "Ruby", - "Sapphire", - "Obsidian", - "Wood", - "Ironwood", - "Silver", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.8801, -53.2996] - }, - "properties": { - "name": "Tokmimilomi", - "realm_idx": 5560, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.6471, 32.88] - }, - "properties": { - "name": "Witwew", - "realm_idx": 5561, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.0471, -18.72] - }, - "properties": { - "name": "Imtonsenlan", - "realm_idx": 5562, - "order": "The Order of Power", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.18, -35.5997] - }, - "properties": { - "name": "Shiam", - "realm_idx": 5563, - "order": "The Order of Reflection", - "resources": ["Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.5801, 25.7004] - }, - "properties": { - "name": "Iltsirtsiln", - "realm_idx": 5564, - "order": "The Order of Anger", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.4801, -54.8996] - }, - "properties": { - "name": "Spilsmaksmup", - "realm_idx": 5565, - "order": "The Order of the Twins", - "resources": ["Stone", "Copper", "Gold", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.88, -28.1997] - }, - "properties": { - "name": "Pokpinpit", - "realm_idx": 5566, - "order": "The Order of Reflection", - "resources": ["Wood", "Gold", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.08, 14.7003] - }, - "properties": { - "name": "Ku-Okugen", - "realm_idx": 5567, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.18, -2.3997] - }, - "properties": { - "name": "lu Kipa", - "realm_idx": 5568, - "order": "The Order of Reflection", - "resources": ["Coal", "Silver", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.1102, -24.2929] - }, - "properties": { - "name": "as Eskuusum", - "realm_idx": 5569, - "order": "The Order of Perfection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.5529, -21.52] - }, - "properties": { - "name": "Manmimmantiz", - "realm_idx": 5570, - "order": "The Order of Power", - "resources": ["Silver", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.0471, 25.58] - }, - "properties": { - "name": "S\u00edmene", - "realm_idx": 5571, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Copper", "Ironwood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.1801, 14.8004] - }, - "properties": { - "name": "Nounlomnus", - "realm_idx": 5572, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.8801, 26.9004] - }, - "properties": { - "name": "Kekil", - "realm_idx": 5573, - "order": "The Order of Rage", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.1471, 3.68] - }, - "properties": { - "name": "Tupopotop\u00fctu", - "realm_idx": 5574, - "order": "The Order of Brilliance", - "resources": ["Silver", "Wood", "Deep Crystal", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.68, -52.3996] - }, - "properties": { - "name": "Ayuzhunuzhak", - "realm_idx": 5575, - "order": "The Order of the Fox", - "resources": ["Stone", "Ruby", "Cold Iron", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.1691, 47.0418] - }, - "properties": { - "name": "Urongujureg", - "realm_idx": 5576, - "order": "The Order of Anger", - "resources": ["Ignium", "Obsidian", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.7161, -50.066] - }, - "properties": { - "name": "Nisnis", - "realm_idx": 5577, - "order": "The Order of the Fox", - "resources": ["Silver", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.7471, -11.82] - }, - "properties": { - "name": "Pibzol", - "realm_idx": 5578, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.193, 48.4709] - }, - "properties": { - "name": "Tammaatmrim", - "realm_idx": 5579, - "order": "The Order of Anger", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.48, 30.2003] - }, - "properties": { - "name": "Ijsejtkin", - "realm_idx": 5580, - "order": "The Order of Fury", - "resources": ["Coal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.4801, 10.0004] - }, - "properties": { - "name": "Ipnutrit", - "realm_idx": 5581, - "order": "The Order of Rage", - "resources": ["Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-42.7529, 4.18] - }, - "properties": { - "name": "Meekirkmeepu", - "realm_idx": 5582, - "order": "The Order of Vitriol", - "resources": ["Gold", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.3801, 22.3004] - }, - "properties": { - "name": "Munmanman", - "realm_idx": 5583, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.0088, 43.4631] - }, - "properties": { - "name": "Ninnlanshlam", - "realm_idx": 5584, - "order": "The Order of Anger", - "resources": ["Hartwood", "Wood", "Obsidian", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.0471, 17.28] - }, - "properties": { - "name": "Titnumtit", - "realm_idx": 5585, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.18, -0.6997] - }, - "properties": { - "name": "Bluw Dob", - "realm_idx": 5586, - "order": "The Order of Detection", - "resources": ["Stone", "Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.38, 40.1003] - }, - "properties": { - "name": "L\u00e2lmylmylmyl", - "realm_idx": 5587, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Wood", "Hartwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.6002, -13.2811] - }, - "properties": { - "name": "Zhiszhis", - "realm_idx": 5588, - "order": "The Order of Perfection", - "resources": ["Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.9801, 47.0004] - }, - "properties": { - "name": "Lesjes", - "realm_idx": 5589, - "order": "The Order of Anger", - "resources": ["Coal", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.4471, 38.38] - }, - "properties": { - "name": "Nl\u00e9mdin", - "realm_idx": 5590, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.7471, 25.78] - }, - "properties": { - "name": "Ishesh", - "realm_idx": 5591, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.48, 33.3003] - }, - "properties": { - "name": "Ahipit", - "realm_idx": 5592, - "order": "The Order of Reflection", - "resources": ["Ethereal Silica", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.9805, 45.3382] - }, - "properties": { - "name": "Itukumum", - "realm_idx": 5593, - "order": "The Order of Anger", - "resources": ["Ironwood", "Ignium", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.7471, 50.38] - }, - "properties": { - "name": "\u00edn K\u00e9n Onon", - "realm_idx": 5594, - "order": "The Order of Titans", - "resources": ["Gold", "Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.68, -34.1997] - }, - "properties": { - "name": "Mrunvyingtis", - "realm_idx": 5595, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.5471, 31.98] - }, - "properties": { - "name": "Nyukpyun", - "realm_idx": 5596, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Copper", "Hartwood", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.5471, -35.32] - }, - "properties": { - "name": "T\u00edrern", - "realm_idx": 5597, - "order": "The Order of Giants", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.8471, 14.88] - }, - "properties": { - "name": "\u2018uj\u2018uwij", - "realm_idx": 5598, - "order": "The Order of Protection", - "resources": ["Stone", "Gold", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.0191, 34.1058] - }, - "properties": { - "name": "Poshtuzh", - "realm_idx": 5599, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.48, 14.4003] - }, - "properties": { - "name": "Miksmok", - "realm_idx": 5600, - "order": "The Order of Fury", - "resources": ["Stone", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.08, 6.2003] - }, - "properties": { - "name": "Mopmomlalmim", - "realm_idx": 5601, - "order": "The Order of Detection", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.3801, 26.9004] - }, - "properties": { - "name": "Ul-he-Helhel", - "realm_idx": 5602, - "order": "The Order of Rage", - "resources": ["Cold Iron", "Wood", "Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.8529, 6.38] - }, - "properties": { - "name": "Namet", - "realm_idx": 5603, - "order": "The Order of Vitriol", - "resources": ["Coal", "Diamonds", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.8471, 34.98] - }, - "properties": { - "name": "H\u00e1wma\u2018wun", - "realm_idx": 5604, - "order": "The Order of Skill", - "resources": ["Ironwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.8801, -14.7996] - }, - "properties": { - "name": "Sisiqoq", - "realm_idx": 5605, - "order": "The Order of Rage", - "resources": ["Copper", "Stone", "Diamonds", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.0529, -36.82] - }, - "properties": { - "name": "Spimslimpung", - "realm_idx": 5606, - "order": "The Order of Power", - "resources": ["Silver", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.7471, 47.88] - }, - "properties": { - "name": "Aunosedos", - "realm_idx": 5607, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.5471, 18.18] - }, - "properties": { - "name": "\u0160pum\u0161noqsu", - "realm_idx": 5608, - "order": "The Order of Skill", - "resources": [ - "Wood", - "Gold", - "Hartwood", - "Coal", - "Obsidian", - "Sapphire" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.98, 32.2003] - }, - "properties": { - "name": "Usomasasasas", - "realm_idx": 5609, - "order": "The Order of Fury", - "resources": ["Copper", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-127.08, -11.6997] - }, - "properties": { - "name": "Bungsunsun", - "realm_idx": 5610, - "order": "The Order of Detection", - "resources": ["Wood", "Obsidian", "Dragonhide", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.7529, -15.42] - }, - "properties": { - "name": "so Loqise", - "realm_idx": 5611, - "order": "The Order of Power", - "resources": ["Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [11.8471, 14.38] - }, - "properties": { - "name": "Kakskev", - "realm_idx": 5612, - "order": "The Order of Titans", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.7801, -38.7996] - }, - "properties": { - "name": "Mintan", - "realm_idx": 5613, - "order": "The Order of the Twins", - "resources": ["Coal", "Gold", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.6471, 38.28] - }, - "properties": { - "name": "Notsnos", - "realm_idx": 5614, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.4529, 0.68] - }, - "properties": { - "name": "Akinan", - "realm_idx": 5615, - "order": "The Order of Power", - "resources": ["Coal", "Stone", "Gold", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.7801, -8.2996] - }, - "properties": { - "name": "Dlitplan", - "realm_idx": 5616, - "order": "The Order of Rage", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.08, -45.0996] - }, - "properties": { - "name": "Iyt\u00e1w", - "realm_idx": 5617, - "order": "The Order of the Fox", - "resources": ["Coal", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.38, 12.5003] - }, - "properties": { - "name": "Pakmup", - "realm_idx": 5618, - "order": "The Order of Detection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.9801, 49.5004] - }, - "properties": { - "name": "Sbazsespos", - "realm_idx": 5619, - "order": "The Order of Anger", - "resources": ["Hartwood", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.7471, 22.68] - }, - "properties": { - "name": "Rurap\u00e1ra", - "realm_idx": 5620, - "order": "The Order of Skill", - "resources": ["Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.4471, 14.08] - }, - "properties": { - "name": "Etupup Otin", - "realm_idx": 5621, - "order": "The Order of Skill", - "resources": ["Obsidian", "Gold", "Wood", "Coal", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.3471, -34.62] - }, - "properties": { - "name": "Oponupet", - "realm_idx": 5622, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.8471, 11.68] - }, - "properties": { - "name": "Asipupas", - "realm_idx": 5623, - "order": "The Order of Skill", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.08, 34.9003] - }, - "properties": { - "name": "Shazkizkus", - "realm_idx": 5624, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone", "Silver", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.4471, 41.38] - }, - "properties": { - "name": "Maumuksaut", - "realm_idx": 5625, - "order": "The Order of Skill", - "resources": ["Silver", "Coal", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.2471, 7.58] - }, - "properties": { - "name": "Smotsmeh", - "realm_idx": 5626, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.454, 48.4735] - }, - "properties": { - "name": "Fpokshtilmol", - "realm_idx": 5627, - "order": "The Order of Fury", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.1172, -55.0135] - }, - "properties": { - "name": "T\u00fcskak", - "realm_idx": 5628, - "order": "The Order of the Twins", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.5471, 51.68] - }, - "properties": { - "name": "Umununrin", - "realm_idx": 5629, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Copper", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-78.1801, -35.0996] - }, - "properties": { - "name": "Nanlom", - "realm_idx": 5630, - "order": "The Order of the Twins", - "resources": ["Silver", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.48, 37.0003] - }, - "properties": { - "name": "Tiunluitluit", - "realm_idx": 5631, - "order": "The Order of Reflection", - "resources": ["Stone", "Ethereal Silica", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.6527, 51.3801] - }, - "properties": { - "name": "La\u0161tuztuzsi\u0161", - "realm_idx": 5632, - "order": "The Order of the Twins", - "resources": ["Copper", "Obsidian", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.2471, 30.48] - }, - "properties": { - "name": "Pullelpulem", - "realm_idx": 5633, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.2471, 9.08] - }, - "properties": { - "name": "Mehoma", - "realm_idx": 5634, - "order": "The Order of Brilliance", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.78, 9.3003] - }, - "properties": { - "name": "Mukurhmom", - "realm_idx": 5635, - "order": "The Order of Detection", - "resources": ["Wood", "Ethereal Silica", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.7097, -39.9011] - }, - "properties": { - "name": "Ch\u00e1msh\u00e9ir", - "realm_idx": 5636, - "order": "The Order of the Fox", - "resources": ["Hartwood", "Stone", "Coal", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.9471, 43.68] - }, - "properties": { - "name": "Mok H\u00fash\u00fas", - "realm_idx": 5637, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.6801, -36.3996] - }, - "properties": { - "name": "Tukelo", - "realm_idx": 5638, - "order": "The Order of the Twins", - "resources": ["Copper", "Cold Iron", "Diamonds", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.0387, 30.3432] - }, - "properties": { - "name": "Tyuuk", - "realm_idx": 5639, - "order": "The Order of Anger", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.989, -24.6593] - }, - "properties": { - "name": "Lortlort", - "realm_idx": 5640, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.8992, -14.259] - }, - "properties": { - "name": "Zultuw", - "realm_idx": 5641, - "order": "The Order of Rage", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.9529, 28.08] - }, - "properties": { - "name": "Nuyneythew", - "realm_idx": 5642, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.016, 40.0311] - }, - "properties": { - "name": "Esduqlaskem", - "realm_idx": 5643, - "order": "The Order of Anger", - "resources": ["Hartwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.6471, 22.18] - }, - "properties": { - "name": "Taliltulsh", - "realm_idx": 5644, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Wood", "Silver", "Ironwood", "Ignium", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.8801, -33.2996] - }, - "properties": { - "name": "Sushnil", - "realm_idx": 5645, - "order": "The Order of the Twins", - "resources": ["Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.036, -5.8711] - }, - "properties": { - "name": "Nilimin", - "realm_idx": 5646, - "order": "The Order of Reflection", - "resources": ["Wood", "Copper", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.0935, 40.3892] - }, - "properties": { - "name": "Kannin", - "realm_idx": 5647, - "order": "The Order of Fury", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.4068, 56.6477] - }, - "properties": { - "name": "Usaas", - "realm_idx": 5648, - "order": "The Order of Fury", - "resources": ["Copper", "Stone", "Obsidian", "Wood", "Coal", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.58, 37.4003] - }, - "properties": { - "name": "Ki\u00e1rlu\u00e1tk\u00faa", - "realm_idx": 5649, - "order": "The Order of Reflection", - "resources": ["Silver", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.9801, -36.5996] - }, - "properties": { - "name": "Leam in E", - "realm_idx": 5650, - "order": "The Order of the Twins", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.5471, 36.18] - }, - "properties": { - "name": "Ish\u00e1k\u00e1d\u00fad", - "realm_idx": 5651, - "order": "The Order of Skill", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.4801, 39.8004] - }, - "properties": { - "name": "Re-ki-Giron", - "realm_idx": 5652, - "order": "The Order of Anger", - "resources": ["Obsidian", "Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-78.8801, -14.5996] - }, - "properties": { - "name": "Rwsek", - "realm_idx": 5653, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "True Ice", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.4529, 50.08] - }, - "properties": { - "name": "Kinukin", - "realm_idx": 5654, - "order": "The Order of Vitriol", - "resources": ["Stone", "Ethereal Silica", "Silver", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.7471, 31.48] - }, - "properties": { - "name": "Tilsultil", - "realm_idx": 5655, - "order": "The Order of Skill", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.7471, -31.12] - }, - "properties": { - "name": "Wulh mol Uh", - "realm_idx": 5656, - "order": "The Order of Power", - "resources": ["Obsidian", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.9529, 23.18] - }, - "properties": { - "name": "Uyltitnuk", - "realm_idx": 5657, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Obsidian", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.68, -56.7996] - }, - "properties": { - "name": "Nuitmui", - "realm_idx": 5658, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.48, -28.9997] - }, - "properties": { - "name": "Bucha", - "realm_idx": 5659, - "order": "The Order of Reflection", - "resources": ["Coal", "Copper", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.4471, 27.68] - }, - "properties": { - "name": "Kohhamhon", - "realm_idx": 5660, - "order": "The Order of Enlightenment", - "resources": ["Hartwood", "Stone", "Cold Iron", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.4471, 13.18] - }, - "properties": { - "name": "Empiwkw\u00e4ww\u00e4w", - "realm_idx": 5661, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Coal", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.0471, -15.92] - }, - "properties": { - "name": "Sokmuuk", - "realm_idx": 5662, - "order": "The Order of Perfection", - "resources": ["Silver", "Cold Iron", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-42.1529, 52.38] - }, - "properties": { - "name": "Ponmom", - "realm_idx": 5663, - "order": "The Order of Fury", - "resources": ["Wood", "Ironwood", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.247, -1.32] - }, - "properties": { - "name": "Etunkuo", - "realm_idx": 5664, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.3628, 9.5965] - }, - "properties": { - "name": "Amik Imam", - "realm_idx": 5665, - "order": "The Order of Protection", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.08, 38.3003] - }, - "properties": { - "name": "Nukika", - "realm_idx": 5666, - "order": "The Order of Fury", - "resources": ["Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.78, -0.7997] - }, - "properties": { - "name": "Kon Zhin", - "realm_idx": 5667, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.2471, 18.48] - }, - "properties": { - "name": "Hikp\u00efk", - "realm_idx": 5668, - "order": "The Order of Brilliance", - "resources": ["Silver", "Gold", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.1471, 17.78] - }, - "properties": { - "name": "Linpenmim", - "realm_idx": 5669, - "order": "The Order of Brilliance", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.7471, 8.58] - }, - "properties": { - "name": "Tokko\u00e1s", - "realm_idx": 5670, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Stone", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.2516, -22.7366] - }, - "properties": { - "name": "\u00f6r-Mury", - "realm_idx": 5671, - "order": "The Order of Protection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.4471, 55.38] - }, - "properties": { - "name": "M\u00f6msosmu", - "realm_idx": 5672, - "order": "The Order of Skill", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.38, -61.4996] - }, - "properties": { - "name": "Noomamu", - "realm_idx": 5673, - "order": "The Order of the Fox", - "resources": ["Diamonds", "Stone", "Coal", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.8471, 51.88] - }, - "properties": { - "name": "ut-Ehek", - "realm_idx": 5674, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.0471, 10.78] - }, - "properties": { - "name": "Sanidgh\u00efsl\u00ef", - "realm_idx": 5675, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.2331, -35.9059] - }, - "properties": { - "name": "Jusirqekujuu", - "realm_idx": 5676, - "order": "The Order of Reflection", - "resources": ["Wood", "Silver", "Diamonds", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.5471, -18.12] - }, - "properties": { - "name": "\u00dalpralb", - "realm_idx": 5677, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.2409, 31.033] - }, - "properties": { - "name": "Stchyj", - "realm_idx": 5678, - "order": "The Order of Reflection", - "resources": ["Stone", "Silver", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.7471, -19.12] - }, - "properties": { - "name": "Duszu\u0161", - "realm_idx": 5679, - "order": "The Order of Power", - "resources": [ - "Ironwood", - "Stone", - "Deep Crystal", - "Coal", - "Adamantine", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.4471, 31.78] - }, - "properties": { - "name": "Salninken", - "realm_idx": 5680, - "order": "The Order of Titans", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.4471, 27.18] - }, - "properties": { - "name": "Biariokzhiop", - "realm_idx": 5681, - "order": "The Order of Skill", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.9527, 51.4801] - }, - "properties": { - "name": "Iypine\u2018", - "realm_idx": 5682, - "order": "The Order of the Twins", - "resources": ["Copper", "Sapphire", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.5527, 48.1801] - }, - "properties": { - "name": "Nommuln", - "realm_idx": 5683, - "order": "The Order of the Twins", - "resources": ["Hartwood", "Gold", "Obsidian", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.1677, -25.6943] - }, - "properties": { - "name": "Snisotno", - "realm_idx": 5684, - "order": "The Order of Protection", - "resources": ["Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.4529, 14.88] - }, - "properties": { - "name": "kun Onglun", - "realm_idx": 5685, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Sapphire", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.1471, 0.88] - }, - "properties": { - "name": "Slangsming", - "realm_idx": 5686, - "order": "The Order of Power", - "resources": ["Wood", "Silver", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.7471, 1.28] - }, - "properties": { - "name": "Rininbin", - "realm_idx": 5687, - "order": "The Order of Power", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.5744, 27.675] - }, - "properties": { - "name": "Muntintan", - "realm_idx": 5688, - "order": "The Order of Rage", - "resources": ["Obsidian", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.7801, -31.5996] - }, - "properties": { - "name": "tim Khrikh", - "realm_idx": 5689, - "order": "The Order of the Twins", - "resources": ["Gold", "Copper", "Ironwood", "Coal", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.6471, 9.48] - }, - "properties": { - "name": "M\u00eb\u00ebappi m\u00e4 \u00cb", - "realm_idx": 5690, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.3318, 8.7046] - }, - "properties": { - "name": "Muimmo", - "realm_idx": 5691, - "order": "The Order of Protection", - "resources": ["Wood", "Alchemical Silver", "Silver", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.0471, -45.42] - }, - "properties": { - "name": "Kiki Ghubu", - "realm_idx": 5692, - "order": "The Order of Giants", - "resources": ["Copper", "Gold", "Sapphire", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.2471, 9.58] - }, - "properties": { - "name": "Tinam", - "realm_idx": 5693, - "order": "The Order of Brilliance", - "resources": ["Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.645, -0.1304] - }, - "properties": { - "name": "Set Pun", - "realm_idx": 5694, - "order": "The Order of Reflection", - "resources": ["Stone", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.7529, 23.78] - }, - "properties": { - "name": "Lekolnleksum", - "realm_idx": 5695, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.9596, -23.3575] - }, - "properties": { - "name": "Okowen", - "realm_idx": 5696, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.5471, -44.02] - }, - "properties": { - "name": "J\u00edruvo", - "realm_idx": 5697, - "order": "The Order of Giants", - "resources": ["Stone", "Ironwood", "Coal", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.2468, 26.735] - }, - "properties": { - "name": "Janjun", - "realm_idx": 5698, - "order": "The Order of Fury", - "resources": ["Wood", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.0471, 6.48] - }, - "properties": { - "name": "l\u00e9 Tipito", - "realm_idx": 5699, - "order": "The Order of Titans", - "resources": ["Coal", "Copper", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.7208, 35.8786] - }, - "properties": { - "name": "Sikron", - "realm_idx": 5700, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.6801, 47.9004] - }, - "properties": { - "name": "Gh\u00ef\u00e4w Gho\u00e4", - "realm_idx": 5701, - "order": "The Order of Anger", - "resources": ["Silver", "Obsidian", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.7529, 49.68] - }, - "properties": { - "name": "Keulzu\u0161", - "realm_idx": 5702, - "order": "The Order of Titans", - "resources": ["Stone", "Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.5471, -30.12] - }, - "properties": { - "name": "W\u00e1\u017em\u00edzk\u00e1kez", - "realm_idx": 5703, - "order": "The Order of Giants", - "resources": [ - "Cold Iron", - "Wood", - "Obsidian", - "Copper", - "Ironwood", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-44.904, 51.3157] - }, - "properties": { - "name": "Liykukyargil", - "realm_idx": 5704, - "order": "The Order of Fury", - "resources": ["Hartwood", "Obsidian", "Stone", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.5529, -28.52] - }, - "properties": { - "name": "Mlos\u0161lo\u0161", - "realm_idx": 5705, - "order": "The Order of Power", - "resources": ["Copper", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.4471, 50.48] - }, - "properties": { - "name": "Si Kitti", - "realm_idx": 5706, - "order": "The Order of Enlightenment", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.0412, 44.3484] - }, - "properties": { - "name": "Chupchues", - "realm_idx": 5707, - "order": "The Order of Anger", - "resources": ["Copper", "Stone", "Obsidian", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [101.0471, 48.78] - }, - "properties": { - "name": "Marbaldeld", - "realm_idx": 5708, - "order": "The Order of Enlightenment", - "resources": [ - "Wood", - "Stone", - "Alchemical Silver", - "Obsidian", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.2578, -23.7371] - }, - "properties": { - "name": "N\u00e2msym", - "realm_idx": 5709, - "order": "The Order of Reflection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.08, -60.7996] - }, - "properties": { - "name": "Smilisi", - "realm_idx": 5710, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.0471, 36.38] - }, - "properties": { - "name": "Uchis", - "realm_idx": 5711, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.4529, 30.18] - }, - "properties": { - "name": "Numliskis", - "realm_idx": 5712, - "order": "The Order of Vitriol", - "resources": ["Wood", "Gold", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [131.7448, 9.6667] - }, - "properties": { - "name": "Kylnmylk\u00e2ls", - "realm_idx": 5713, - "order": "The Order of Protection", - "resources": ["Sapphire", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.8471, -38.42] - }, - "properties": { - "name": "Kinstansan", - "realm_idx": 5714, - "order": "The Order of Giants", - "resources": ["Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.0471, -19.82] - }, - "properties": { - "name": "Otopep", - "realm_idx": 5715, - "order": "The Order of Giants", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.18, 8.8003] - }, - "properties": { - "name": "Shgynsgymd\u00e2m", - "realm_idx": 5716, - "order": "The Order of Detection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [27.7471, 19.88] - }, - "properties": { - "name": "Lomkul", - "realm_idx": 5717, - "order": "The Order of Titans", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.1801, 26.1004] - }, - "properties": { - "name": "S\u00e9t-k\u00edk-P\u00e1t", - "realm_idx": 5718, - "order": "The Order of Rage", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.352, -34.9466] - }, - "properties": { - "name": "Kiove", - "realm_idx": 5719, - "order": "The Order of Reflection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.4471, 47.48] - }, - "properties": { - "name": "Uhuhuaih", - "realm_idx": 5720, - "order": "The Order of Titans", - "resources": ["Ruby", "Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.78, -5.1997] - }, - "properties": { - "name": "Mischzis", - "realm_idx": 5721, - "order": "The Order of Detection", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.6529, -22.22] - }, - "properties": { - "name": "T\u00f3linena", - "realm_idx": 5722, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Ruby", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.18, -33.5997] - }, - "properties": { - "name": "Pu\u2018-pu-Hehe", - "realm_idx": 5723, - "order": "The Order of Detection", - "resources": ["Coal", "Hartwood", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.78, 35.5003] - }, - "properties": { - "name": "Nirkirn", - "realm_idx": 5724, - "order": "The Order of Fury", - "resources": ["Obsidian", "Copper", "Ironwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.68, -43.4997] - }, - "properties": { - "name": "Ragingoojura", - "realm_idx": 5725, - "order": "The Order of the Fox", - "resources": [ - "Wood", - "Copper", - "Stone", - "Coal", - "Hartwood", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.7471, -35.82] - }, - "properties": { - "name": "Sienseen", - "realm_idx": 5726, - "order": "The Order of Giants", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.2471, -35.92] - }, - "properties": { - "name": "Passko", - "realm_idx": 5727, - "order": "The Order of Power", - "resources": ["Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.7471, 13.68] - }, - "properties": { - "name": "Muswk \u00d4sul\u00e2s", - "realm_idx": 5728, - "order": "The Order of Protection", - "resources": ["Wood", "Copper", "Silver", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.88, -50.0996] - }, - "properties": { - "name": "Qunsemtenpen", - "realm_idx": 5729, - "order": "The Order of the Fox", - "resources": ["Silver", "Coal", "Hartwood", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [107.347, -6.72] - }, - "properties": { - "name": "Kamschukam", - "realm_idx": 5730, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.5471, 40.48] - }, - "properties": { - "name": "Kitdip", - "realm_idx": 5731, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Sapphire", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.6529, 25.18] - }, - "properties": { - "name": "Akamulak", - "realm_idx": 5732, - "order": "The Order of Vitriol", - "resources": ["Hartwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.78, 28.7003] - }, - "properties": { - "name": "Lusonekulu", - "realm_idx": 5733, - "order": "The Order of Reflection", - "resources": ["Copper", "Cold Iron", "Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.0471, 43.38] - }, - "properties": { - "name": "Slenkrum", - "realm_idx": 5734, - "order": "The Order of Skill", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.9471, 13.58] - }, - "properties": { - "name": "Uqngiv", - "realm_idx": 5735, - "order": "The Order of Titans", - "resources": ["Copper", "Cold Iron", "Silver", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.7471, 20.18] - }, - "properties": { - "name": "Zozqi\u00fazh\u00faizh", - "realm_idx": 5736, - "order": "The Order of Titans", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.6471, 43.38] - }, - "properties": { - "name": "Sduschdud", - "realm_idx": 5737, - "order": "The Order of Enlightenment", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.1154, -15.6591] - }, - "properties": { - "name": "Triknrothron", - "realm_idx": 5738, - "order": "The Order of Protection", - "resources": ["Wood", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.7395, -7.1923] - }, - "properties": { - "name": "Mauktuitaun", - "realm_idx": 5739, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Ignium", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.7403, 36.671] - }, - "properties": { - "name": "Lashnlugdot", - "realm_idx": 5740, - "order": "The Order of Reflection", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.4801, -19.2996] - }, - "properties": { - "name": "Tilttutsi", - "realm_idx": 5741, - "order": "The Order of the Twins", - "resources": ["Coal", "Copper", "Hartwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.28, -44.7996] - }, - "properties": { - "name": "Kiktrukklik", - "realm_idx": 5742, - "order": "The Order of the Fox", - "resources": ["Silver", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.1471, -24.12] - }, - "properties": { - "name": "Pankenfnon", - "realm_idx": 5743, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.6471, -10.92] - }, - "properties": { - "name": "Stukbup", - "realm_idx": 5744, - "order": "The Order of Perfection", - "resources": ["Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.2471, 8.68] - }, - "properties": { - "name": "Ajep-as-T\u00e4n", - "realm_idx": 5745, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Coal", "Obsidian", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.7325, -16.6749] - }, - "properties": { - "name": "Tukmok", - "realm_idx": 5746, - "order": "The Order of Perfection", - "resources": [ - "Copper", - "Ethereal Silica", - "Coal", - "Gold", - "Wood", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [44.5471, -36.42] - }, - "properties": { - "name": "Pitt\u00ed\u00e1t", - "realm_idx": 5747, - "order": "The Order of Giants", - "resources": ["Obsidian", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.9471, 24.18] - }, - "properties": { - "name": "Nilgh", - "realm_idx": 5748, - "order": "The Order of Skill", - "resources": [ - "Stone", - "Wood", - "Obsidian", - "Cold Iron", - "Alchemical Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.38, -4.2997] - }, - "properties": { - "name": "Wemghimo", - "realm_idx": 5749, - "order": "The Order of Reflection", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.6801, -53.7996] - }, - "properties": { - "name": "K\u00fangk\u00fang\u00fang", - "realm_idx": 5750, - "order": "The Order of the Twins", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.7471, 39.38] - }, - "properties": { - "name": "Kumnoupmim", - "realm_idx": 5751, - "order": "The Order of Skill", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.4529, -15.52] - }, - "properties": { - "name": "Chazhlip", - "realm_idx": 5752, - "order": "The Order of Power", - "resources": ["Diamonds", "Gold", "Silver", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.3801, -29.4996] - }, - "properties": { - "name": "Yeiskaung", - "realm_idx": 5753, - "order": "The Order of the Twins", - "resources": ["Wood", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.2471, 13.08] - }, - "properties": { - "name": "M\u00f6kj\u00fc", - "realm_idx": 5754, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.5471, 47.78] - }, - "properties": { - "name": "ok Tot", - "realm_idx": 5755, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.0239, -41.9489] - }, - "properties": { - "name": "Kultimtal", - "realm_idx": 5756, - "order": "The Order of the Fox", - "resources": ["Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [14.9471, -13.42] - }, - "properties": { - "name": "Chadchad", - "realm_idx": 5757, - "order": "The Order of Power", - "resources": ["Obsidian", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.6969, 40.0611] - }, - "properties": { - "name": "Inunupam", - "realm_idx": 5758, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.6471, -8.92] - }, - "properties": { - "name": "Utinpino", - "realm_idx": 5759, - "order": "The Order of Power", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.4471, 15.58] - }, - "properties": { - "name": "Nenslenslun", - "realm_idx": 5760, - "order": "The Order of Skill", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.7529, 17.48] - }, - "properties": { - "name": "Slum\u0161hun", - "realm_idx": 5761, - "order": "The Order of Vitriol", - "resources": ["Coal", "Copper", "Wood", "Twilight Quartz", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.2471, 30.88] - }, - "properties": { - "name": "\u2018una Luhna", - "realm_idx": 5762, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Silver", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.9471, 6.08] - }, - "properties": { - "name": "Suttit", - "realm_idx": 5763, - "order": "The Order of Brilliance", - "resources": ["Copper", "Coal", "Ironwood", "Wood", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.9471, -49.62] - }, - "properties": { - "name": "Kaswmkani", - "realm_idx": 5764, - "order": "The Order of Giants", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.2116, 49.5572] - }, - "properties": { - "name": "Onen pen Pa", - "realm_idx": 5765, - "order": "The Order of Fury", - "resources": ["Silver", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.3801, 29.0004] - }, - "properties": { - "name": "Akunakak", - "realm_idx": 5766, - "order": "The Order of Anger", - "resources": ["Silver", "Copper", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.7471, 17.98] - }, - "properties": { - "name": "lojp Kek", - "realm_idx": 5767, - "order": "The Order of Skill", - "resources": ["Coal", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.08, -23.5997] - }, - "properties": { - "name": "Damdam\u010dum", - "realm_idx": 5768, - "order": "The Order of Detection", - "resources": ["Ignium", "Coal", "Copper", "Wood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [69.3471, -15.42] - }, - "properties": { - "name": "Klotmupetlon", - "realm_idx": 5769, - "order": "The Order of Perfection", - "resources": ["Stone", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.7529, 26.68] - }, - "properties": { - "name": "K\u00efpk\u00efp\u00efn", - "realm_idx": 5770, - "order": "The Order of Vitriol", - "resources": ["Stone", "Copper", "Silver", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.28, -5.4997] - }, - "properties": { - "name": "Lytytmun", - "realm_idx": 5771, - "order": "The Order of Detection", - "resources": ["Stone", "Copper", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.1527, 49.8801] - }, - "properties": { - "name": "Mai na\u00e2 M\u00f4o", - "realm_idx": 5772, - "order": "The Order of the Twins", - "resources": ["Hartwood", "Coal", "Silver", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-21.3529, 8.38] - }, - "properties": { - "name": "Wauunnuun", - "realm_idx": 5773, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.8471, 29.08] - }, - "properties": { - "name": "Tekme\u017e", - "realm_idx": 5774, - "order": "The Order of Vitriol", - "resources": ["Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.38, -31.5997] - }, - "properties": { - "name": "M\u00e4\u00fcn-He\u00fct", - "realm_idx": 5775, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-48.5975, 54.6508] - }, - "properties": { - "name": "Ihanuwumuw", - "realm_idx": 5776, - "order": "The Order of Fury", - "resources": ["Stone", "Silver", "Mithral", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.7801, 27.6004] - }, - "properties": { - "name": "Kukle Osni", - "realm_idx": 5777, - "order": "The Order of Rage", - "resources": ["Copper", "Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.9693, 43.6059] - }, - "properties": { - "name": "Qojvekmogpeq", - "realm_idx": 5778, - "order": "The Order of Anger", - "resources": ["Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.9721, -34.8055] - }, - "properties": { - "name": "Menslan", - "realm_idx": 5779, - "order": "The Order of Reflection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.4529, 8.68] - }, - "properties": { - "name": "Woekue\u2018wuop", - "realm_idx": 5780, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-77.98, -52.2996] - }, - "properties": { - "name": "Sweksem", - "realm_idx": 5781, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.7801, 15.0004] - }, - "properties": { - "name": "Eraras", - "realm_idx": 5782, - "order": "The Order of Rage", - "resources": ["Silver", "Ironwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.0452, -24.3096] - }, - "properties": { - "name": "Upamutalum", - "realm_idx": 5783, - "order": "The Order of Protection", - "resources": ["Silver", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.18, 0.0003] - }, - "properties": { - "name": "Ihpiphon", - "realm_idx": 5784, - "order": "The Order of Detection", - "resources": ["Obsidian", "Coal", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.8471, 28.38] - }, - "properties": { - "name": "Einolong", - "realm_idx": 5785, - "order": "The Order of Enlightenment", - "resources": ["Sapphire", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.2471, -14.32] - }, - "properties": { - "name": "Kokmik", - "realm_idx": 5786, - "order": "The Order of Power", - "resources": ["Stone", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.2471, -12.92] - }, - "properties": { - "name": "Manlon", - "realm_idx": 5787, - "order": "The Order of Perfection", - "resources": ["Coal", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.5529, -26.02] - }, - "properties": { - "name": "Kondl\u00e9nt\u00edn", - "realm_idx": 5788, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.5529, -7.12] - }, - "properties": { - "name": "Pitam\u00e2nypi", - "realm_idx": 5789, - "order": "The Order of the Fox", - "resources": ["Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.38, 8.2003] - }, - "properties": { - "name": "Tusmlik", - "realm_idx": 5790, - "order": "The Order of Detection", - "resources": ["Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.7471, 19.28] - }, - "properties": { - "name": "Amil it Usat", - "realm_idx": 5791, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Gold", "Coal", "Cold Iron", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.5801, -33.5996] - }, - "properties": { - "name": "\u0160em\u0161em\u0161et", - "realm_idx": 5792, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2801, 27.5004] - }, - "properties": { - "name": "T\u00e4kpilt\u00e4t", - "realm_idx": 5793, - "order": "The Order of Rage", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.18, -31.2997] - }, - "properties": { - "name": "Hoken", - "realm_idx": 5794, - "order": "The Order of Detection", - "resources": ["Ignium", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.8801, -36.2996] - }, - "properties": { - "name": "Paspas-N\u00e9les", - "realm_idx": 5795, - "order": "The Order of the Twins", - "resources": [ - "Coal", - "Deep Crystal", - "Wood", - "Ironwood", - "Stone", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.0471, 34.48] - }, - "properties": { - "name": "Kownkoyewk", - "realm_idx": 5796, - "order": "The Order of Skill", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [23.9471, 60.68] - }, - "properties": { - "name": "Benpongondum", - "realm_idx": 5797, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Gold", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.78, -1.9997] - }, - "properties": { - "name": "On\u00famaduk", - "realm_idx": 5798, - "order": "The Order of Detection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.1801, 9.7004] - }, - "properties": { - "name": "Fnumk\u00e1mpus", - "realm_idx": 5799, - "order": "The Order of Rage", - "resources": ["Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.6529, -7.52] - }, - "properties": { - "name": "Semspistap", - "realm_idx": 5800, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.3523, 39.2926] - }, - "properties": { - "name": "Gulsdultdult", - "realm_idx": 5801, - "order": "The Order of Fury", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.0471, -15.62] - }, - "properties": { - "name": "Nau\u017enau\u017emei\u017e", - "realm_idx": 5802, - "order": "The Order of Giants", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.9882, 4.2474] - }, - "properties": { - "name": "Tinnrumheng", - "realm_idx": 5803, - "order": "The Order of Protection", - "resources": ["Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.4471, 32.78] - }, - "properties": { - "name": "Tedreb", - "realm_idx": 5804, - "order": "The Order of Skill", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.9471, 36.48] - }, - "properties": { - "name": "Tojpkojm", - "realm_idx": 5805, - "order": "The Order of Skill", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.1471, 4.48] - }, - "properties": { - "name": "Noktluk", - "realm_idx": 5806, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.2471, 24.58] - }, - "properties": { - "name": "Ulstschulur", - "realm_idx": 5807, - "order": "The Order of Enlightenment", - "resources": ["Diamonds", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.98, 0.4003] - }, - "properties": { - "name": "Tunanan", - "realm_idx": 5808, - "order": "The Order of Detection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.48, -43.4996] - }, - "properties": { - "name": "Kunsasa", - "realm_idx": 5809, - "order": "The Order of the Fox", - "resources": ["Coal", "Copper", "Gold", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.1059, -13.2461] - }, - "properties": { - "name": "Menpunpa", - "realm_idx": 5810, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.5817, -19.0985] - }, - "properties": { - "name": "Hlaakuh Uh", - "realm_idx": 5811, - "order": "The Order of Protection", - "resources": ["Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.58, -31.5997] - }, - "properties": { - "name": "ti Pumlipsil", - "realm_idx": 5812, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.8471, 39.08] - }, - "properties": { - "name": "Minta", - "realm_idx": 5813, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.6801, 10.7004] - }, - "properties": { - "name": "Ukulazud", - "realm_idx": 5814, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Stone", "Copper", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.0471, 21.88] - }, - "properties": { - "name": "Remerenien", - "realm_idx": 5815, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.6471, -12.8825] - }, - "properties": { - "name": "Sn\u00e4pspis\u00e4pap", - "realm_idx": 5816, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.6529, -22.82] - }, - "properties": { - "name": "D\u00e9sh\u00eddsh\u00e9mo", - "realm_idx": 5817, - "order": "The Order of Power", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.6471, 8.48] - }, - "properties": { - "name": "Laertiz", - "realm_idx": 5818, - "order": "The Order of Brilliance", - "resources": ["Cold Iron", "Coal", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.6801, 46.4004] - }, - "properties": { - "name": "Wubiwawa", - "realm_idx": 5819, - "order": "The Order of Anger", - "resources": ["Coal", "Obsidian", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.18, -6.1997] - }, - "properties": { - "name": "sun Sessak", - "realm_idx": 5820, - "order": "The Order of Detection", - "resources": ["Wood", "Coal", "Copper", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.0822, -19.8224] - }, - "properties": { - "name": "Nwittjitsjup", - "realm_idx": 5821, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.1529, -27.62] - }, - "properties": { - "name": "Lullul", - "realm_idx": 5822, - "order": "The Order of Power", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.18, 32.5003] - }, - "properties": { - "name": "Piniwun U\u2018a", - "realm_idx": 5823, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.7471, -14.52] - }, - "properties": { - "name": "hu Tiwhaymi", - "realm_idx": 5824, - "order": "The Order of Power", - "resources": [ - "Obsidian", - "Cold Iron", - "Coal", - "Copper", - "Stone", - "Gold" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.6471, 14.48] - }, - "properties": { - "name": "Son Donumdon", - "realm_idx": 5825, - "order": "The Order of Protection", - "resources": ["Wood", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.1801, 10.5004] - }, - "properties": { - "name": "L\u00e1tn\u00e1tskut", - "realm_idx": 5826, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.1529, 47.38] - }, - "properties": { - "name": "Menin Gumken", - "realm_idx": 5827, - "order": "The Order of Fury", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.7801, 8.1004] - }, - "properties": { - "name": "Wlughbul", - "realm_idx": 5828, - "order": "The Order of Rage", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.5801, 11.2004] - }, - "properties": { - "name": "Qaepmiuq", - "realm_idx": 5829, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.6529, 54.78] - }, - "properties": { - "name": "ne Nukm\u00fanak", - "realm_idx": 5830, - "order": "The Order of Fury", - "resources": ["Copper", "Wood", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.8801, -38.6996] - }, - "properties": { - "name": "V\u00fangngutlu", - "realm_idx": 5831, - "order": "The Order of the Twins", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.5471, -14.02] - }, - "properties": { - "name": "Petag", - "realm_idx": 5832, - "order": "The Order of Giants", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.7801, 8.4004] - }, - "properties": { - "name": "Pishuge", - "realm_idx": 5833, - "order": "The Order of Rage", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.0471, 29.98] - }, - "properties": { - "name": "\u00cdk\u00e1k Ananak", - "realm_idx": 5834, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Obsidian", "Wood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.58, 29.9003] - }, - "properties": { - "name": "Kiilaalaamo", - "realm_idx": 5835, - "order": "The Order of Fury", - "resources": ["Silver", "Stone", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.5801, -33.2996] - }, - "properties": { - "name": "Khujyo", - "realm_idx": 5836, - "order": "The Order of the Twins", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.5471, 56.98] - }, - "properties": { - "name": "Nanmu", - "realm_idx": 5837, - "order": "The Order of Titans", - "resources": ["Silver", "Stone", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.3529, -24.92] - }, - "properties": { - "name": "Oniilneenet", - "realm_idx": 5838, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.1552, -19.9534] - }, - "properties": { - "name": "Pitpittepkon", - "realm_idx": 5839, - "order": "The Order of Protection", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.0801, 18.8004] - }, - "properties": { - "name": "Nomtetenlulu", - "realm_idx": 5840, - "order": "The Order of Rage", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.4529, -33.72] - }, - "properties": { - "name": "\u2018a\u2018 po\u2018 Ljo\u2018", - "realm_idx": 5841, - "order": "The Order of Power", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.691, -56.3351] - }, - "properties": { - "name": "Trunkun", - "realm_idx": 5842, - "order": "The Order of the Twins", - "resources": ["Ignium", "Gold", "Sapphire", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.18, -6.0997] - }, - "properties": { - "name": "Pilstul", - "realm_idx": 5843, - "order": "The Order of Detection", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.3801, 0.9004] - }, - "properties": { - "name": "Qeqepkupso", - "realm_idx": 5844, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.68, -35.8997] - }, - "properties": { - "name": "Uldsuldul", - "realm_idx": 5845, - "order": "The Order of Reflection", - "resources": ["Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.58, -44.5996] - }, - "properties": { - "name": "Arudlugduch", - "realm_idx": 5846, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Stone", "Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.1801, 27.3004] - }, - "properties": { - "name": "Og Donnekn\u00e9t", - "realm_idx": 5847, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.2801, -53.9996] - }, - "properties": { - "name": "Ipkes-Ibdik", - "realm_idx": 5848, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone", "Copper", "Ethereal Silica", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.6801, -16.8996] - }, - "properties": { - "name": "Omin \u00fcl \u00dct\u00fct", - "realm_idx": 5849, - "order": "The Order of Rage", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.7471, 10.98] - }, - "properties": { - "name": "Treltor", - "realm_idx": 5850, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.3801, 43.7004] - }, - "properties": { - "name": "Paltak", - "realm_idx": 5851, - "order": "The Order of Anger", - "resources": ["Stone", "Obsidian", "Coal", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.6529, 2.98] - }, - "properties": { - "name": "\u00dapil \u00fak Inel", - "realm_idx": 5852, - "order": "The Order of Power", - "resources": ["Stone", "Cold Iron", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.5471, 2.08] - }, - "properties": { - "name": "Pestlek-Qek", - "realm_idx": 5853, - "order": "The Order of Brilliance", - "resources": ["Silver", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.1801, -54.4996] - }, - "properties": { - "name": "Niuwh\u00e4\u00efthig", - "realm_idx": 5854, - "order": "The Order of the Twins", - "resources": ["Copper", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.9471, 19.48] - }, - "properties": { - "name": "Uyukutok", - "realm_idx": 5855, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.6801, 49.2004] - }, - "properties": { - "name": "Sotoposo", - "realm_idx": 5856, - "order": "The Order of Anger", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.2647, 13.3972] - }, - "properties": { - "name": "Oosiko", - "realm_idx": 5857, - "order": "The Order of Fury", - "resources": [ - "Coal", - "Obsidian", - "Diamonds", - "Stone", - "Cold Iron", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.3836, 28.3259] - }, - "properties": { - "name": "Ghuwwonuduy", - "realm_idx": 5858, - "order": "The Order of Anger", - "resources": ["Stone", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.4849, -20.3328] - }, - "properties": { - "name": "Prunmluntin", - "realm_idx": 5859, - "order": "The Order of Perfection", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.6471, -14.12] - }, - "properties": { - "name": "Vussnassgas", - "realm_idx": 5860, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.3801, -35.6996] - }, - "properties": { - "name": "Som Kang", - "realm_idx": 5861, - "order": "The Order of the Twins", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.1801, -49.2996] - }, - "properties": { - "name": "Nusnuskueg", - "realm_idx": 5862, - "order": "The Order of the Twins", - "resources": ["Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.6801, -27.5996] - }, - "properties": { - "name": "Moktu Mis", - "realm_idx": 5863, - "order": "The Order of the Twins", - "resources": ["Stone", "Ruby", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.78, -25.1997] - }, - "properties": { - "name": "Nlatlak", - "realm_idx": 5864, - "order": "The Order of Reflection", - "resources": ["Stone", "Silver", "Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.88, -33.4997] - }, - "properties": { - "name": "Qeklut", - "realm_idx": 5865, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.7529, 46.48] - }, - "properties": { - "name": "puk-Ukkis", - "realm_idx": 5866, - "order": "The Order of Fury", - "resources": [ - "Obsidian", - "Silver", - "Alchemical Silver", - "Stone", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.6471, 14.08] - }, - "properties": { - "name": "Sirkels", - "realm_idx": 5867, - "order": "The Order of Titans", - "resources": ["Ruby", "Ironwood", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.1801, 49.9004] - }, - "properties": { - "name": "Tichtach", - "realm_idx": 5868, - "order": "The Order of Anger", - "resources": ["Copper", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.28, 8.7003] - }, - "properties": { - "name": "Bolbol", - "realm_idx": 5869, - "order": "The Order of Detection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.6801, 46.7004] - }, - "properties": { - "name": "Pakrunpron", - "realm_idx": 5870, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.6476, -35.0388] - }, - "properties": { - "name": "Ghie un Bun", - "realm_idx": 5871, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Copper", "Silver", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.8471, 53.68] - }, - "properties": { - "name": "Shusril", - "realm_idx": 5872, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.48, 21.5003] - }, - "properties": { - "name": "Beken", - "realm_idx": 5873, - "order": "The Order of Fury", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.68, 0.3003] - }, - "properties": { - "name": "Munsumimpu", - "realm_idx": 5874, - "order": "The Order of Detection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.9471, 9.48] - }, - "properties": { - "name": "K\u00e1nkunm\u00e1", - "realm_idx": 5875, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.7801, 6.0004] - }, - "properties": { - "name": "Y\u00e1y\u00edsh\u00ed", - "realm_idx": 5876, - "order": "The Order of Rage", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.5471, 6.08] - }, - "properties": { - "name": "Nairoe", - "realm_idx": 5877, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.6471, 19.78] - }, - "properties": { - "name": "\u2018usm\u00e4pmi", - "realm_idx": 5878, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.7471, 58.18] - }, - "properties": { - "name": "Mlanmoonswin", - "realm_idx": 5879, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Copper", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.58, -39.7997] - }, - "properties": { - "name": "Yutyut", - "realm_idx": 5880, - "order": "The Order of the Fox", - "resources": ["Wood", "Copper", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.6801, 47.7004] - }, - "properties": { - "name": "K\u00eflkukkuk", - "realm_idx": 5881, - "order": "The Order of Anger", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.4529, 22.78] - }, - "properties": { - "name": "Ayung", - "realm_idx": 5882, - "order": "The Order of Vitriol", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.98, 27.8003] - }, - "properties": { - "name": "Kunnan", - "realm_idx": 5883, - "order": "The Order of Reflection", - "resources": ["Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.78, 9.5003] - }, - "properties": { - "name": "Hinhimantuln", - "realm_idx": 5884, - "order": "The Order of Detection", - "resources": ["Gold", "Copper", "Stone", "Coal", "Wood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.113, -25.6392] - }, - "properties": { - "name": "Sun Nus", - "realm_idx": 5885, - "order": "The Order of Protection", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.7238, -39.0121] - }, - "properties": { - "name": "Zhubuzh", - "realm_idx": 5886, - "order": "The Order of the Twins", - "resources": ["Stone", "Sapphire", "Obsidian", "Deep Crystal", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.0815, 25.2612] - }, - "properties": { - "name": "Nlenretel", - "realm_idx": 5887, - "order": "The Order of Titans", - "resources": ["Obsidian", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.0471, 43.98] - }, - "properties": { - "name": "Sum Men", - "realm_idx": 5888, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.98, -34.5997] - }, - "properties": { - "name": "\u00cdl\u00edrhm\u00e9r", - "realm_idx": 5889, - "order": "The Order of the Fox", - "resources": ["Hartwood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.0471, 45.68] - }, - "properties": { - "name": "\u00e4 Y\u00e4dy\u00e4d\u00e4b", - "realm_idx": 5890, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.0471, -42.62] - }, - "properties": { - "name": "quaq Tuktuk", - "realm_idx": 5891, - "order": "The Order of Giants", - "resources": ["Silver", "Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.7529, 40.58] - }, - "properties": { - "name": "Dlash", - "realm_idx": 5892, - "order": "The Order of Titans", - "resources": ["Stone", "Gold", "Obsidian", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.9471, 17.98] - }, - "properties": { - "name": "Pummim", - "realm_idx": 5893, - "order": "The Order of Brilliance", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.0471, 5.88] - }, - "properties": { - "name": "Sikusutu", - "realm_idx": 5894, - "order": "The Order of Protection", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.7324, -18.7151] - }, - "properties": { - "name": "Irbkorpuld", - "realm_idx": 5895, - "order": "The Order of Protection", - "resources": ["Diamonds", "Coal", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.78, -54.6996] - }, - "properties": { - "name": "Unr\u00edm", - "realm_idx": 5896, - "order": "The Order of the Fox", - "resources": [ - "Copper", - "Obsidian", - "Stone", - "Alchemical Silver", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.2529, -12.02] - }, - "properties": { - "name": "Ukikupukit", - "realm_idx": 5897, - "order": "The Order of Power", - "resources": [ - "Alchemical Silver", - "Stone", - "Ironwood", - "Coal", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.4529, 40.78] - }, - "properties": { - "name": "Scht\u00e4kschlig", - "realm_idx": 5898, - "order": "The Order of Titans", - "resources": ["Obsidian", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.9471, 18.38] - }, - "properties": { - "name": "Mukgus", - "realm_idx": 5899, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-42.8529, 3.88] - }, - "properties": { - "name": "Tauagauo\u0161oi", - "realm_idx": 5900, - "order": "The Order of Vitriol", - "resources": ["Stone", "Silver", "Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.0471, 40.88] - }, - "properties": { - "name": "Schkunnun", - "realm_idx": 5901, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Gold", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.88, 6.4003] - }, - "properties": { - "name": "Nonqan", - "realm_idx": 5902, - "order": "The Order of Detection", - "resources": ["Wood", "Coal", "Ignium", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.8471, 30.08] - }, - "properties": { - "name": "Wunku", - "realm_idx": 5903, - "order": "The Order of Vitriol", - "resources": ["Wood", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.8471, 10.38] - }, - "properties": { - "name": "Brinkrin", - "realm_idx": 5904, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.2801, -13.5996] - }, - "properties": { - "name": "Sremkel", - "realm_idx": 5905, - "order": "The Order of Rage", - "resources": ["Ironwood", "Stone", "Obsidian", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.1471, 47.98] - }, - "properties": { - "name": "Tuuk\u00e1", - "realm_idx": 5906, - "order": "The Order of Skill", - "resources": ["Gold", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.08, -52.9996] - }, - "properties": { - "name": "Nonson", - "realm_idx": 5907, - "order": "The Order of the Fox", - "resources": ["Wood", "Ironwood", "Copper", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [45.4471, -37.82] - }, - "properties": { - "name": "Imshunman", - "realm_idx": 5908, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Silver", "Hartwood", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.1801, 15.7004] - }, - "properties": { - "name": "Lalslelkok", - "realm_idx": 5909, - "order": "The Order of Rage", - "resources": ["Silver", "Ironwood", "Wood", "Obsidian", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.2471, -11.82] - }, - "properties": { - "name": "Chilsk\u00e1lk", - "realm_idx": 5910, - "order": "The Order of Power", - "resources": ["Cold Iron", "Obsidian", "Silver", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.7471, -7.62] - }, - "properties": { - "name": "Moetaemmie", - "realm_idx": 5911, - "order": "The Order of Perfection", - "resources": ["Stone", "Coal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.2529, 23.38] - }, - "properties": { - "name": "Liankeilian", - "realm_idx": 5912, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.097, 20.5513] - }, - "properties": { - "name": "Ykx\u00e2s", - "realm_idx": 5913, - "order": "The Order of Fury", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.1559, -23.8289] - }, - "properties": { - "name": "Qewkhumwos", - "realm_idx": 5914, - "order": "The Order of Perfection", - "resources": ["Wood", "Silver", "Ruby", "Hartwood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.0471, -17.82] - }, - "properties": { - "name": "Uwe Emwenle", - "realm_idx": 5915, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Wood", "Silver", "Gold", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.0471, 35.48] - }, - "properties": { - "name": "Luchulu ii A", - "realm_idx": 5916, - "order": "The Order of Skill", - "resources": ["Obsidian", "Copper", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.4246, 31.9896] - }, - "properties": { - "name": "Mrens\u00f6l", - "realm_idx": 5917, - "order": "The Order of Reflection", - "resources": ["Stone", "Copper", "True Ice", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.7471, -13.32] - }, - "properties": { - "name": "Tolek", - "realm_idx": 5918, - "order": "The Order of Perfection", - "resources": ["Wood", "Silver", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.8471, 6.38] - }, - "properties": { - "name": "Uwtschpusak", - "realm_idx": 5919, - "order": "The Order of Titans", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.0844, 33.571] - }, - "properties": { - "name": "uk-\u00dcl\u00fcg", - "realm_idx": 5920, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.78, 2.7003] - }, - "properties": { - "name": "Huuuukun", - "realm_idx": 5921, - "order": "The Order of Detection", - "resources": ["Wood", "Stone", "Copper", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.3471, 6.88] - }, - "properties": { - "name": "Liml\u00fciwmam", - "realm_idx": 5922, - "order": "The Order of Brilliance", - "resources": ["Coal", "Cold Iron", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.4471, -49.12] - }, - "properties": { - "name": "Semsnum", - "realm_idx": 5923, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.18, 19.4003] - }, - "properties": { - "name": "Schalmel", - "realm_idx": 5924, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.6529, 44.98] - }, - "properties": { - "name": "Dimniln", - "realm_idx": 5925, - "order": "The Order of Titans", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.1025, 5.2016] - }, - "properties": { - "name": "Monuz", - "realm_idx": 5926, - "order": "The Order of Protection", - "resources": ["Stone", "Silver", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.0471, 13.68] - }, - "properties": { - "name": "Atut Tukit", - "realm_idx": 5927, - "order": "The Order of Brilliance", - "resources": [ - "Stone", - "Cold Iron", - "Ignium", - "Wood", - "Obsidian", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.7059, 12.7388] - }, - "properties": { - "name": "Lupprihpraw", - "realm_idx": 5928, - "order": "The Order of Fury", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.5529, 49.98] - }, - "properties": { - "name": "Rinchingrun", - "realm_idx": 5929, - "order": "The Order of Fury", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.135, -22.1911] - }, - "properties": { - "name": "Hoswah\u2018e\u2018", - "realm_idx": 5930, - "order": "The Order of Perfection", - "resources": ["Wood", "Cold Iron", "Obsidian", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.3471, 23.68] - }, - "properties": { - "name": "Akololup", - "realm_idx": 5931, - "order": "The Order of Skill", - "resources": ["Obsidian", "Copper", "Silver", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.58, -32.1997] - }, - "properties": { - "name": "Pazhshusshus", - "realm_idx": 5932, - "order": "The Order of Detection", - "resources": ["Wood", "Copper", "Diamonds", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.9471, 27.88] - }, - "properties": { - "name": "Matu\u017eiki", - "realm_idx": 5933, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.8232, 20.5295] - }, - "properties": { - "name": "or Irerir", - "realm_idx": 5934, - "order": "The Order of Fury", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.8801, -5.3996] - }, - "properties": { - "name": "Mu\u00ebluos", - "realm_idx": 5935, - "order": "The Order of Rage", - "resources": ["Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.247, 0.38] - }, - "properties": { - "name": "\u00d6m\u00f6t\u00f6nos", - "realm_idx": 5936, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.18, -34.8949] - }, - "properties": { - "name": "Tinzhim", - "realm_idx": 5937, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.2954, -23.1415] - }, - "properties": { - "name": "Ghud\u00e1n", - "realm_idx": 5938, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.7801, 5.3004] - }, - "properties": { - "name": "ftik Pen", - "realm_idx": 5939, - "order": "The Order of Rage", - "resources": ["Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.28, -7.2997] - }, - "properties": { - "name": "K\u00e4ahk\u00e4u", - "realm_idx": 5940, - "order": "The Order of Detection", - "resources": ["Gold", "Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.5529, 32.28] - }, - "properties": { - "name": "Krusdlod", - "realm_idx": 5941, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Silver", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.7801, 14.4004] - }, - "properties": { - "name": "las Lus", - "realm_idx": 5942, - "order": "The Order of Rage", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.5471, 3.08] - }, - "properties": { - "name": "Kochk\u00e1", - "realm_idx": 5943, - "order": "The Order of Brilliance", - "resources": ["Copper", "Ironwood", "Sapphire", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.9527, 52.1801] - }, - "properties": { - "name": "muak Kei", - "realm_idx": 5944, - "order": "The Order of the Twins", - "resources": ["Hartwood", "Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.8471, 41.08] - }, - "properties": { - "name": "Natsuklak", - "realm_idx": 5945, - "order": "The Order of Skill", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.68, 38.0003] - }, - "properties": { - "name": "Pepoklupe", - "realm_idx": 5946, - "order": "The Order of Fury", - "resources": ["Ruby", "Wood", "Copper", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.7801, 23.8004] - }, - "properties": { - "name": "Gliltlovklel", - "realm_idx": 5947, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.6971, 42.658] - }, - "properties": { - "name": "Kidijb", - "realm_idx": 5948, - "order": "The Order of Anger", - "resources": ["Copper", "Wood", "Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.7471, 42.08] - }, - "properties": { - "name": "Khukhu", - "realm_idx": 5949, - "order": "The Order of Skill", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.18, 34.1003] - }, - "properties": { - "name": "Tasopsoplomu", - "realm_idx": 5950, - "order": "The Order of Fury", - "resources": ["Silver", "Stone", "Ironwood", "Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.9471, -26.92] - }, - "properties": { - "name": "Kapsulkkut", - "realm_idx": 5951, - "order": "The Order of Giants", - "resources": ["Ironwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.58, 31.5003] - }, - "properties": { - "name": "Sisim", - "realm_idx": 5952, - "order": "The Order of Detection", - "resources": ["Ironwood", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.18, 15.9003] - }, - "properties": { - "name": "Tilnol", - "realm_idx": 5953, - "order": "The Order of Detection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.1971, -13.5638] - }, - "properties": { - "name": "Tab\u0161at\u0161ri\u0161", - "realm_idx": 5954, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Silver", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.4471, 32.58] - }, - "properties": { - "name": "Lelnem", - "realm_idx": 5955, - "order": "The Order of Skill", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.9666, -7.8433] - }, - "properties": { - "name": "Salnes", - "realm_idx": 5956, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.9471, 25.08] - }, - "properties": { - "name": "Inamusan", - "realm_idx": 5957, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.9801, 18.1004] - }, - "properties": { - "name": "Kikmuh", - "realm_idx": 5958, - "order": "The Order of Rage", - "resources": ["Silver", "Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.2613, -27.7054] - }, - "properties": { - "name": "P\u00edt\u00eds\u00ednu", - "realm_idx": 5959, - "order": "The Order of Protection", - "resources": ["Silver", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.08, 34.4003] - }, - "properties": { - "name": "Onumemmon", - "realm_idx": 5960, - "order": "The Order of Fury", - "resources": ["Wood", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.08, -53.9996] - }, - "properties": { - "name": "Kamsh\u00edk\u00e1n", - "realm_idx": 5961, - "order": "The Order of the Fox", - "resources": ["Coal", "Silver", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.5713, 20.0787] - }, - "properties": { - "name": "Sissisnorsis", - "realm_idx": 5962, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Coal", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.2471, 35.68] - }, - "properties": { - "name": "N\u00e9hhl\u00edm", - "realm_idx": 5963, - "order": "The Order of Skill", - "resources": ["Wood", "Obsidian", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.3471, 25.58] - }, - "properties": { - "name": "Nabigu", - "realm_idx": 5964, - "order": "The Order of Skill", - "resources": ["Silver", "True Ice", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.4471, 19.78] - }, - "properties": { - "name": "Kolupaz", - "realm_idx": 5965, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.8529, -41.32] - }, - "properties": { - "name": "Didg\u00e4\u0161g\u00e4\u0161t\u00e4", - "realm_idx": 5966, - "order": "The Order of Power", - "resources": ["Silver", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.9471, 26.88] - }, - "properties": { - "name": "K\u00fauns\u00f3un\u00fa\u00e1", - "realm_idx": 5967, - "order": "The Order of Skill", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.2471, -13.62] - }, - "properties": { - "name": "Demschenden", - "realm_idx": 5968, - "order": "The Order of Perfection", - "resources": ["Stone", "Gold", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.7471, -40.92] - }, - "properties": { - "name": "Amt\u00e1nnin\u00e1n", - "realm_idx": 5969, - "order": "The Order of Giants", - "resources": ["Obsidian", "Wood", "Stone", "Coal", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.2529, 11.98] - }, - "properties": { - "name": "\u017eo Gerogo", - "realm_idx": 5970, - "order": "The Order of Vitriol", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.38, -49.7996] - }, - "properties": { - "name": "slen Bandwn", - "realm_idx": 5971, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.6801, 27.1004] - }, - "properties": { - "name": "W\u00e1mw\u00edwa", - "realm_idx": 5972, - "order": "The Order of Rage", - "resources": [ - "Copper", - "Ironwood", - "Adamantine", - "Silver", - "Cold Iron", - "Coal", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.7418, 45.3164] - }, - "properties": { - "name": "Enmus", - "realm_idx": 5973, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [13.7471, 14.18] - }, - "properties": { - "name": "Anopon", - "realm_idx": 5974, - "order": "The Order of Titans", - "resources": [ - "Wood", - "Stone", - "Coal", - "Cold Iron", - "Gold", - "Ethereal Silica" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-48.7974, 55.327] - }, - "properties": { - "name": "Dered", - "realm_idx": 5975, - "order": "The Order of Fury", - "resources": ["Wood", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.2529, -23.52] - }, - "properties": { - "name": "Milnnoyn", - "realm_idx": 5976, - "order": "The Order of Power", - "resources": ["Wood", "Ironwood", "Silver", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.5471, 10.08] - }, - "properties": { - "name": "she Shutiash", - "realm_idx": 5977, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.6365, -18.0182] - }, - "properties": { - "name": "Shguyuwishgi", - "realm_idx": 5978, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.9596, -21.3575] - }, - "properties": { - "name": "Manmongmong", - "realm_idx": 5979, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.1471, -16.72] - }, - "properties": { - "name": "Q\u00edmshlimn\u00e9m", - "realm_idx": 5980, - "order": "The Order of Power", - "resources": [ - "Copper", - "Wood", - "Diamonds", - "Cold Iron", - "Coal", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.78, 14.3003] - }, - "properties": { - "name": "P\u00fc\u2018\u2018ek\u2018alp\u00f6\u2018", - "realm_idx": 5981, - "order": "The Order of Detection", - "resources": ["Stone", "Deep Crystal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.4471, -15.72] - }, - "properties": { - "name": "Azhati", - "realm_idx": 5982, - "order": "The Order of Perfection", - "resources": ["Stone", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.8297, 28.3318] - }, - "properties": { - "name": "Dunginmun", - "realm_idx": 5983, - "order": "The Order of Anger", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.1471, -33.72] - }, - "properties": { - "name": "Almulpholal", - "realm_idx": 5984, - "order": "The Order of Giants", - "resources": ["Ironwood", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.1471, 8.28] - }, - "properties": { - "name": "Mirkernkern", - "realm_idx": 5985, - "order": "The Order of Titans", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.5801, 11.3004] - }, - "properties": { - "name": "ner-Kwrirgho", - "realm_idx": 5986, - "order": "The Order of Rage", - "resources": ["Hartwood", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.4471, 25.58] - }, - "properties": { - "name": "Yminhun Inon", - "realm_idx": 5987, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Wood", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.8801, -56.2996] - }, - "properties": { - "name": "Stemmintin", - "realm_idx": 5988, - "order": "The Order of the Twins", - "resources": ["Diamonds", "Wood", "Hartwood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.6471, 30.08] - }, - "properties": { - "name": "Nursiuk", - "realm_idx": 5989, - "order": "The Order of Skill", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.4801, 26.8004] - }, - "properties": { - "name": "\u00dcili \u00dck", - "realm_idx": 5990, - "order": "The Order of Rage", - "resources": ["Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.08, 21.3003] - }, - "properties": { - "name": "Pemtispem", - "realm_idx": 5991, - "order": "The Order of Fury", - "resources": ["Coal", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.9824, -25.9216] - }, - "properties": { - "name": "Ham\u2018ah", - "realm_idx": 5992, - "order": "The Order of Protection", - "resources": ["Coal", "Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.4529, 28.08] - }, - "properties": { - "name": "Spukgek", - "realm_idx": 5993, - "order": "The Order of Vitriol", - "resources": ["Wood", "Silver", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.58, 20.2003] - }, - "properties": { - "name": "Sisnakspok", - "realm_idx": 5994, - "order": "The Order of Detection", - "resources": ["Wood", "Gold", "Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.1695, -19.7557] - }, - "properties": { - "name": "Syundum", - "realm_idx": 5995, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.5471, 4.88] - }, - "properties": { - "name": "leng-Ying", - "realm_idx": 5996, - "order": "The Order of Brilliance", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.8471, 22.78] - }, - "properties": { - "name": "Isesepan", - "realm_idx": 5997, - "order": "The Order of Skill", - "resources": [ - "Ignium", - "Stone", - "Copper", - "Hartwood", - "Obsidian", - "Wood", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.4643, 41.1807] - }, - "properties": { - "name": "Ylinyunyun", - "realm_idx": 5998, - "order": "The Order of Anger", - "resources": ["Coal", "Cold Iron", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.6057, 30.6053] - }, - "properties": { - "name": "Akututan", - "realm_idx": 5999, - "order": "The Order of Anger", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.0529, 19.48] - }, - "properties": { - "name": "Ikamob", - "realm_idx": 6000, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.2471, 49.38] - }, - "properties": { - "name": "Surznalzer", - "realm_idx": 6001, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.6471, 15.28] - }, - "properties": { - "name": "Lienpan", - "realm_idx": 6002, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.8471, 10.58] - }, - "properties": { - "name": "Aaijusrub", - "realm_idx": 6003, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.18, -0.6997] - }, - "properties": { - "name": "\u2018el\u0161la\u0161la", - "realm_idx": 6004, - "order": "The Order of Detection", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.4529, 1.18] - }, - "properties": { - "name": "M\u00efumtap", - "realm_idx": 6005, - "order": "The Order of Power", - "resources": ["Diamonds", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.4471, 47.68] - }, - "properties": { - "name": "Tunpennimpom", - "realm_idx": 6006, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.1471, 11.08] - }, - "properties": { - "name": "Luisuos", - "realm_idx": 6007, - "order": "The Order of Protection", - "resources": ["Obsidian", "Deep Crystal", "Coal", "Wood", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.6801, -14.7996] - }, - "properties": { - "name": "Sesipemet", - "realm_idx": 6008, - "order": "The Order of Rage", - "resources": ["Gold", "Stone", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.08, -5.5997] - }, - "properties": { - "name": "M\u00e1tl\u00e1n", - "realm_idx": 6009, - "order": "The Order of Detection", - "resources": ["Silver", "Copper", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.4529, 47.18] - }, - "properties": { - "name": "K\u00fadg\u00fa\u0161m\u00fanso", - "realm_idx": 6010, - "order": "The Order of Titans", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.109, -28.9801] - }, - "properties": { - "name": "Katp\u00e4p", - "realm_idx": 6011, - "order": "The Order of Protection", - "resources": ["Obsidian", "Ethereal Silica", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.4471, 20.78] - }, - "properties": { - "name": "Zhe\u00e1naezhuiz", - "realm_idx": 6012, - "order": "The Order of Skill", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [24.5471, 54.48] - }, - "properties": { - "name": "Panpo", - "realm_idx": 6013, - "order": "The Order of Titans", - "resources": ["Coal", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.7471, 1.68] - }, - "properties": { - "name": "Zipzip", - "realm_idx": 6014, - "order": "The Order of Brilliance", - "resources": ["Twilight Quartz", "Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.0471, 14.78] - }, - "properties": { - "name": "Oum-Anooium", - "realm_idx": 6015, - "order": "The Order of Protection", - "resources": ["Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.2471, -36.02] - }, - "properties": { - "name": "Irerng", - "realm_idx": 6016, - "order": "The Order of Giants", - "resources": ["Gold", "Wood", "Obsidian", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [129.3676, 8.6847] - }, - "properties": { - "name": "Qagring", - "realm_idx": 6017, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [23.9471, 44.08] - }, - "properties": { - "name": "Lu-Mil", - "realm_idx": 6018, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "True Ice", "Copper", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [14.8471, 21.38] - }, - "properties": { - "name": "Mupmuma", - "realm_idx": 6019, - "order": "The Order of Titans", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.6347, -23.205] - }, - "properties": { - "name": "Ti\u017epe\u017eke\u017e", - "realm_idx": 6020, - "order": "The Order of Reflection", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.4801, 38.1004] - }, - "properties": { - "name": "Pol-iw-\u00dalpol", - "realm_idx": 6021, - "order": "The Order of Anger", - "resources": ["Stone", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.8554, 6.6414] - }, - "properties": { - "name": "\u2018emsne\u2018", - "realm_idx": 6022, - "order": "The Order of Protection", - "resources": ["Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.5601, 41.3291] - }, - "properties": { - "name": "Smussme", - "realm_idx": 6023, - "order": "The Order of Fury", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.5529, 26.48] - }, - "properties": { - "name": "Siallam", - "realm_idx": 6024, - "order": "The Order of Vitriol", - "resources": ["Stone", "Obsidian", "Silver", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.2801, 11.0004] - }, - "properties": { - "name": "Tiut-Kimtit", - "realm_idx": 6025, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.68, 30.0003] - }, - "properties": { - "name": "un Kanmukoin", - "realm_idx": 6026, - "order": "The Order of Fury", - "resources": ["Gold", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.1471, 13.68] - }, - "properties": { - "name": "Odok Imogog", - "realm_idx": 6027, - "order": "The Order of Protection", - "resources": ["Obsidian", "Wood", "Stone", "Diamonds", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.6471, 18.68] - }, - "properties": { - "name": "Ennum", - "realm_idx": 6028, - "order": "The Order of Brilliance", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.68, -44.2996] - }, - "properties": { - "name": "Kaneikauray", - "realm_idx": 6029, - "order": "The Order of the Fox", - "resources": ["Coal", "Silver", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.28, -47.2997] - }, - "properties": { - "name": "Keunoe", - "realm_idx": 6030, - "order": "The Order of the Fox", - "resources": ["Stone", "Coal", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.68, -52.2996] - }, - "properties": { - "name": "An-Ansans\u00e1m", - "realm_idx": 6031, - "order": "The Order of the Fox", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.3471, 19.58] - }, - "properties": { - "name": "Mlipnlup", - "realm_idx": 6032, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.8045, 16.8926] - }, - "properties": { - "name": "Eleshezhesh", - "realm_idx": 6033, - "order": "The Order of Fury", - "resources": ["Wood", "Gold", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.0529, -28.32] - }, - "properties": { - "name": "Makukmis", - "realm_idx": 6034, - "order": "The Order of Power", - "resources": ["Diamonds", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.4801, 40.1004] - }, - "properties": { - "name": "yim Mupnuk", - "realm_idx": 6035, - "order": "The Order of Anger", - "resources": ["Stone", "Coal", "Gold", "Silver", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.2471, -14.62] - }, - "properties": { - "name": "Piawnwswm", - "realm_idx": 6036, - "order": "The Order of Power", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.98, -51.6996] - }, - "properties": { - "name": "uzh-Uwigep", - "realm_idx": 6037, - "order": "The Order of the Fox", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.6471, 1.88] - }, - "properties": { - "name": "Xen-ken-Gun", - "realm_idx": 6038, - "order": "The Order of Brilliance", - "resources": ["Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.8471, 5.88] - }, - "properties": { - "name": "Guvay", - "realm_idx": 6039, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.8471, 7.68] - }, - "properties": { - "name": "Laewmai", - "realm_idx": 6040, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper", "Ironwood", "Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.1471, 20.88] - }, - "properties": { - "name": "Aukeit", - "realm_idx": 6041, - "order": "The Order of Skill", - "resources": ["Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.2877, 34.7627] - }, - "properties": { - "name": "Lutkeyssek", - "realm_idx": 6042, - "order": "The Order of Anger", - "resources": ["Silver", "Coal", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.1993, 25.8694] - }, - "properties": { - "name": "Sheim", - "realm_idx": 6043, - "order": "The Order of Fury", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.2801, 22.4004] - }, - "properties": { - "name": "\u010cli\u010d\u017eeb", - "realm_idx": 6044, - "order": "The Order of Rage", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.1471, 3.08] - }, - "properties": { - "name": "Moqunmumsun", - "realm_idx": 6045, - "order": "The Order of Brilliance", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.8432, 49.3323] - }, - "properties": { - "name": "Ukos ak Ok", - "realm_idx": 6046, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.8471, 1.78] - }, - "properties": { - "name": "K\u00e2lnkw L\u00f4", - "realm_idx": 6047, - "order": "The Order of Brilliance", - "resources": ["Hartwood", "Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.1471, 13.88] - }, - "properties": { - "name": "Chetleb", - "realm_idx": 6048, - "order": "The Order of Protection", - "resources": ["Copper", "Sapphire", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.3471, -18.32] - }, - "properties": { - "name": "uw-Uy", - "realm_idx": 6049, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.48, 40.1003] - }, - "properties": { - "name": "Lauttiam", - "realm_idx": 6050, - "order": "The Order of Reflection", - "resources": ["Stone", "Copper", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.7471, 50.58] - }, - "properties": { - "name": "Tlintlinman", - "realm_idx": 6051, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.7417, 3.6947] - }, - "properties": { - "name": "Numem", - "realm_idx": 6052, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.9777, 27.848] - }, - "properties": { - "name": "Lolo na Pemi", - "realm_idx": 6053, - "order": "The Order of Rage", - "resources": ["Coal", "Cold Iron", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.0608, -20.7664] - }, - "properties": { - "name": "Tiispaap", - "realm_idx": 6054, - "order": "The Order of Protection", - "resources": ["Silver", "Ironwood", "Wood", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.9914, 45.5059] - }, - "properties": { - "name": "il-Erouler", - "realm_idx": 6055, - "order": "The Order of Anger", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.3617, 45.5592] - }, - "properties": { - "name": "Sposma", - "realm_idx": 6056, - "order": "The Order of Fury", - "resources": ["Wood", "Diamonds", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.7801, -5.8996] - }, - "properties": { - "name": "Chutely", - "realm_idx": 6057, - "order": "The Order of Rage", - "resources": ["Stone", "Ironwood", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.9287, 3.6469] - }, - "properties": { - "name": "\u00danm\u00fam Ar", - "realm_idx": 6058, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.2173, 55.4071] - }, - "properties": { - "name": "spuz Noxnuzh", - "realm_idx": 6059, - "order": "The Order of Fury", - "resources": ["Diamonds", "Coal", "Stone", "Dragonhide", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.1471, -22.02] - }, - "properties": { - "name": "Musini", - "realm_idx": 6060, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.8273, 34.777] - }, - "properties": { - "name": "Tinsen", - "realm_idx": 6061, - "order": "The Order of Reflection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.6476, -35.5388] - }, - "properties": { - "name": "Tipshiskeske", - "realm_idx": 6062, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.0471, -45.72] - }, - "properties": { - "name": "Huhinteh", - "realm_idx": 6063, - "order": "The Order of Giants", - "resources": ["Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.2471, 40.58] - }, - "properties": { - "name": "neym-Ekhek", - "realm_idx": 6064, - "order": "The Order of Skill", - "resources": ["Obsidian", "Sapphire", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.3488, -17.2678] - }, - "properties": { - "name": "Ilan um Inun", - "realm_idx": 6065, - "order": "The Order of Perfection", - "resources": ["True Ice", "Sapphire", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.78, -53.3996] - }, - "properties": { - "name": "Cheuslajnaot", - "realm_idx": 6066, - "order": "The Order of the Fox", - "resources": ["Coal", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.8801, 21.8004] - }, - "properties": { - "name": "Telptet", - "realm_idx": 6067, - "order": "The Order of Rage", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.9471, 5.68] - }, - "properties": { - "name": "Ubalukulubun", - "realm_idx": 6068, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.7767, 29.5602] - }, - "properties": { - "name": "Possdebs\u010dut", - "realm_idx": 6069, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.0471, 10.18] - }, - "properties": { - "name": "Liieekmuiip", - "realm_idx": 6070, - "order": "The Order of Brilliance", - "resources": ["Mithral", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.6801, -28.1996] - }, - "properties": { - "name": "Gwwgidwgwg", - "realm_idx": 6071, - "order": "The Order of the Twins", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.38, -5.1997] - }, - "properties": { - "name": "Sq\u00edmsg\u00e1nsq\u00edm", - "realm_idx": 6072, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.2471, -30.42] - }, - "properties": { - "name": "Kilkil", - "realm_idx": 6073, - "order": "The Order of Giants", - "resources": ["Obsidian", "Stone", "Wood", "Ironwood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.7801, -19.9996] - }, - "properties": { - "name": "\u00c9ttuke", - "realm_idx": 6074, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.2237, 2.9753] - }, - "properties": { - "name": "Snizshkismis", - "realm_idx": 6075, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.5529, 27.78] - }, - "properties": { - "name": "lu Mollop", - "realm_idx": 6076, - "order": "The Order of Vitriol", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.7471, 43.08] - }, - "properties": { - "name": "Silkuls Uls", - "realm_idx": 6077, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.1471, 40.18] - }, - "properties": { - "name": "Schoureyzo\u00e2", - "realm_idx": 6078, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.7471, -6.62] - }, - "properties": { - "name": "Kuilmiok", - "realm_idx": 6079, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.9801, -22.1996] - }, - "properties": { - "name": "Ahakemok", - "realm_idx": 6080, - "order": "The Order of the Twins", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.3801, 5.8004] - }, - "properties": { - "name": "Zhik\u00fclrud", - "realm_idx": 6081, - "order": "The Order of Rage", - "resources": ["Coal", "Stone", "Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.7801, 10.7004] - }, - "properties": { - "name": "Soupmoussoup", - "realm_idx": 6082, - "order": "The Order of Rage", - "resources": ["Stone", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.8471, 20.98] - }, - "properties": { - "name": "Diudiuzsoi", - "realm_idx": 6083, - "order": "The Order of Skill", - "resources": ["Obsidian", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [10.4471, 14.08] - }, - "properties": { - "name": "Purmsar", - "realm_idx": 6084, - "order": "The Order of Titans", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.2471, -2.62] - }, - "properties": { - "name": "Oiyu-Viv", - "realm_idx": 6085, - "order": "The Order of Power", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.9471, -46.52] - }, - "properties": { - "name": "Shumshonkuku", - "realm_idx": 6086, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.5471, -33.42] - }, - "properties": { - "name": "Ulpalalal", - "realm_idx": 6087, - "order": "The Order of Power", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.5471, 31.28] - }, - "properties": { - "name": "S\u00e2gs\u00f4tamwn", - "realm_idx": 6088, - "order": "The Order of Skill", - "resources": ["Wood", "Gold", "Silver", "Ruby", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.2471, 31.38] - }, - "properties": { - "name": "Pamkum-Nung", - "realm_idx": 6089, - "order": "The Order of Skill", - "resources": ["Obsidian", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.3471, 44.88] - }, - "properties": { - "name": "Lanlemlon", - "realm_idx": 6090, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.2938, 9.6505] - }, - "properties": { - "name": "Lurnurparlir", - "realm_idx": 6091, - "order": "The Order of Protection", - "resources": ["Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.0471, 14.78] - }, - "properties": { - "name": "Sgagm\u00e4dsk\u00f6m", - "realm_idx": 6092, - "order": "The Order of Titans", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.4824, -10.8421] - }, - "properties": { - "name": "Puu-pa-Ami", - "realm_idx": 6093, - "order": "The Order of the Fox", - "resources": [ - "Wood", - "Copper", - "True Ice", - "Stone", - "Obsidian", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.5471, 37.98] - }, - "properties": { - "name": "Zhazzhezh", - "realm_idx": 6094, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Gold", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.1471, 4.28] - }, - "properties": { - "name": "Munenkun", - "realm_idx": 6095, - "order": "The Order of Titans", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.5471, -14.32] - }, - "properties": { - "name": "Lolkat Kat", - "realm_idx": 6096, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.0693, -24.8594] - }, - "properties": { - "name": "Shidshimgut", - "realm_idx": 6097, - "order": "The Order of Protection", - "resources": ["Wood", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.2471, 18.98] - }, - "properties": { - "name": "P\u00edsh\u00edzhb\u00e1s", - "realm_idx": 6098, - "order": "The Order of Brilliance", - "resources": ["Coal", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.0801, 38.0004] - }, - "properties": { - "name": "Muimluqngir", - "realm_idx": 6099, - "order": "The Order of Anger", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.5471, 5.38] - }, - "properties": { - "name": "P\u00edls\u00e1l", - "realm_idx": 6100, - "order": "The Order of Protection", - "resources": ["Diamonds", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.7471, 39.58] - }, - "properties": { - "name": "P\u00ednmenmim", - "realm_idx": 6101, - "order": "The Order of Skill", - "resources": ["Cold Iron", "Stone", "Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-44.2529, 11.68] - }, - "properties": { - "name": "Mramsunslus", - "realm_idx": 6102, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.98, 21.4003] - }, - "properties": { - "name": "Usuchad", - "realm_idx": 6103, - "order": "The Order of Detection", - "resources": ["Gold", "Stone", "Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.8471, -29.42] - }, - "properties": { - "name": "Onteimein", - "realm_idx": 6104, - "order": "The Order of Power", - "resources": [ - "Obsidian", - "Coal", - "Wood", - "Hartwood", - "Silver", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.7432, 32.7387] - }, - "properties": { - "name": "Alwolsolb", - "realm_idx": 6105, - "order": "The Order of Anger", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.4471, -35.12] - }, - "properties": { - "name": "Mimsmem", - "realm_idx": 6106, - "order": "The Order of Giants", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [69.3471, 49.18] - }, - "properties": { - "name": "Ronip", - "realm_idx": 6107, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.167, -33.4106] - }, - "properties": { - "name": "Gejdaw", - "realm_idx": 6108, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.3471, 25.58] - }, - "properties": { - "name": "Tonim", - "realm_idx": 6109, - "order": "The Order of Skill", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.2801, -25.2996] - }, - "properties": { - "name": "Lutkamlaltak", - "realm_idx": 6110, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.3471, -38.52] - }, - "properties": { - "name": "Ribdisler", - "realm_idx": 6111, - "order": "The Order of Giants", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.98, -4.1997] - }, - "properties": { - "name": "Uluttup", - "realm_idx": 6112, - "order": "The Order of Detection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.5801, -44.9996] - }, - "properties": { - "name": "Shishon", - "realm_idx": 6113, - "order": "The Order of the Twins", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.98, -50.2996] - }, - "properties": { - "name": "Kilmorlor", - "realm_idx": 6114, - "order": "The Order of the Fox", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.9527, 45.3801] - }, - "properties": { - "name": "Seumdigkeug", - "realm_idx": 6115, - "order": "The Order of the Twins", - "resources": ["Gold", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.0425, -19.6682] - }, - "properties": { - "name": "Upenon", - "realm_idx": 6116, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Adamantine", "Stone", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.8471, 48.78] - }, - "properties": { - "name": "Poelpipmip", - "realm_idx": 6117, - "order": "The Order of Skill", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.8801, 5.7004] - }, - "properties": { - "name": "Nokhak", - "realm_idx": 6118, - "order": "The Order of Rage", - "resources": [ - "Silver", - "Coal", - "Wood", - "Sapphire", - "Alchemical Silver", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.2246, -55.1812] - }, - "properties": { - "name": "Nelk nol Kul", - "realm_idx": 6119, - "order": "The Order of the Twins", - "resources": ["Wood", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.18, 39.0003] - }, - "properties": { - "name": "Snisbak", - "realm_idx": 6120, - "order": "The Order of Reflection", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.4394, 5.6785] - }, - "properties": { - "name": "\u2018oa Moukoa\u2018", - "realm_idx": 6121, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.4314, 27.9723] - }, - "properties": { - "name": "Rumsoklel", - "realm_idx": 6122, - "order": "The Order of Rage", - "resources": ["Alchemical Silver", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.28, 4.9003] - }, - "properties": { - "name": "Pimxkum", - "realm_idx": 6123, - "order": "The Order of Detection", - "resources": ["Stone", "Copper", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.8418, 45.0164] - }, - "properties": { - "name": "Liss\u00e4n", - "realm_idx": 6124, - "order": "The Order of Anger", - "resources": ["True Ice", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.7529, -33.52] - }, - "properties": { - "name": "Stcham", - "realm_idx": 6125, - "order": "The Order of Power", - "resources": ["Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.7814, 38.2364] - }, - "properties": { - "name": "Tunhuntunhap", - "realm_idx": 6126, - "order": "The Order of Reflection", - "resources": [ - "Twilight Quartz", - "Coal", - "Stone", - "Ethereal Silica", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.9529, -34.92] - }, - "properties": { - "name": "Muwewuyhuy", - "realm_idx": 6127, - "order": "The Order of Power", - "resources": ["Silver", "Gold", "Obsidian", "Wood", "Diamonds", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.3471, 42.28] - }, - "properties": { - "name": "Smutmom", - "realm_idx": 6128, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.7801, 46.1004] - }, - "properties": { - "name": "Nulul", - "realm_idx": 6129, - "order": "The Order of Anger", - "resources": [ - "Obsidian", - "Stone", - "Ignium", - "Wood", - "Copper", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.9801, 14.1004] - }, - "properties": { - "name": "Til-Mir", - "realm_idx": 6130, - "order": "The Order of Rage", - "resources": ["Obsidian", "Coal", "Ruby", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.8529, -7.92] - }, - "properties": { - "name": "Wiea\u017ewauu\u017e", - "realm_idx": 6131, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.4471, 32.58] - }, - "properties": { - "name": "Ipsi Ti", - "realm_idx": 6132, - "order": "The Order of Skill", - "resources": ["Wood", "Coal", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.2471, 10.68] - }, - "properties": { - "name": "Dyirdyag", - "realm_idx": 6133, - "order": "The Order of Brilliance", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.7471, -30.32] - }, - "properties": { - "name": "Chy\u00e2d", - "realm_idx": 6134, - "order": "The Order of Giants", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.596, -17.876] - }, - "properties": { - "name": "Skesskesh", - "realm_idx": 6135, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.4801, -53.1996] - }, - "properties": { - "name": "Sotpu", - "realm_idx": 6136, - "order": "The Order of the Twins", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.38, -59.8996] - }, - "properties": { - "name": "Tlektohoh", - "realm_idx": 6137, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Alchemical Silver", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.2529, 28.28] - }, - "properties": { - "name": "Shipzizduyp", - "realm_idx": 6138, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.0471, 60.98] - }, - "properties": { - "name": "Sismap", - "realm_idx": 6139, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.4805, -6.4355] - }, - "properties": { - "name": "Gegsbegeg", - "realm_idx": 6140, - "order": "The Order of Rage", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.3529, 17.68] - }, - "properties": { - "name": "Klien", - "realm_idx": 6141, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.9471, 1.08] - }, - "properties": { - "name": "Nikgichpyit", - "realm_idx": 6142, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Deep Crystal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.9438, 29.8375] - }, - "properties": { - "name": "Sn\u00edng\u00edgsbuz", - "realm_idx": 6143, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.4614, 14.1834] - }, - "properties": { - "name": "Sulslalslas", - "realm_idx": 6144, - "order": "The Order of Fury", - "resources": ["Copper", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.5471, 20.18] - }, - "properties": { - "name": "Aynuwsuws", - "realm_idx": 6145, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Stone", "Sapphire", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.3801, -33.0996] - }, - "properties": { - "name": "Samsman", - "realm_idx": 6146, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.9471, -16.42] - }, - "properties": { - "name": "Zh\u00faltsheln", - "realm_idx": 6147, - "order": "The Order of Power", - "resources": ["Copper", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [102.4471, 50.78] - }, - "properties": { - "name": "Loepiek", - "realm_idx": 6148, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Wood", "Ruby", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.9471, -13.02] - }, - "properties": { - "name": "Nungondonmim", - "realm_idx": 6149, - "order": "The Order of Giants", - "resources": ["Sapphire", "Hartwood", "Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.4567, 3.7543] - }, - "properties": { - "name": "om Kunkomun", - "realm_idx": 6150, - "order": "The Order of Perfection", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.08, -46.3996] - }, - "properties": { - "name": "Opanoses", - "realm_idx": 6151, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.3471, 22.48] - }, - "properties": { - "name": "at Urimulur", - "realm_idx": 6152, - "order": "The Order of Skill", - "resources": ["Stone", "Gold", "Silver", "Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.1279, 49.6633] - }, - "properties": { - "name": "Pesht\u00e1sh", - "realm_idx": 6153, - "order": "The Order of Anger", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.6529, 49.88] - }, - "properties": { - "name": "Sch\u00e1tsch\u00e1pu", - "realm_idx": 6154, - "order": "The Order of Vitriol", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.4471, -13.12] - }, - "properties": { - "name": "ghon Yen", - "realm_idx": 6155, - "order": "The Order of Giants", - "resources": ["Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.6471, -43.32] - }, - "properties": { - "name": "Hyyna Im", - "realm_idx": 6156, - "order": "The Order of Giants", - "resources": ["Wood", "Alchemical Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.4801, -54.8996] - }, - "properties": { - "name": "Ebusumurab", - "realm_idx": 6157, - "order": "The Order of the Twins", - "resources": [ - "Obsidian", - "Wood", - "Cold Iron", - "Coal", - "Stone", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.1471, 12.68] - }, - "properties": { - "name": "Tukul", - "realm_idx": 6158, - "order": "The Order of Brilliance", - "resources": [ - "Copper", - "Diamonds", - "Obsidian", - "Sapphire", - "Cold Iron", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.2471, -35.62] - }, - "properties": { - "name": "Kingin", - "realm_idx": 6159, - "order": "The Order of Power", - "resources": ["Coal", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.3471, 18.98] - }, - "properties": { - "name": "Ek\u00fchup", - "realm_idx": 6160, - "order": "The Order of Brilliance", - "resources": ["Stone", "Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.68, 15.0003] - }, - "properties": { - "name": "Dokduk", - "realm_idx": 6161, - "order": "The Order of Detection", - "resources": ["Diamonds", "Stone", "Coal", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.58, -51.4996] - }, - "properties": { - "name": "\u00cfmpum\u00e4spip", - "realm_idx": 6162, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Coal", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.1892, 38.2033] - }, - "properties": { - "name": "Pomsmongsong", - "realm_idx": 6163, - "order": "The Order of Fury", - "resources": ["Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.8471, 48.58] - }, - "properties": { - "name": "Uruzhuqix", - "realm_idx": 6164, - "order": "The Order of Skill", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.4801, 27.0004] - }, - "properties": { - "name": "ak Yk", - "realm_idx": 6165, - "order": "The Order of Rage", - "resources": ["Obsidian", "Wood", "Coal", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.0659, -14.2673] - }, - "properties": { - "name": "St\u00efnsmapn\u00efs", - "realm_idx": 6166, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.5801, -30.5996] - }, - "properties": { - "name": "Aliyiyivivul", - "realm_idx": 6167, - "order": "The Order of the Twins", - "resources": ["Stone", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.4801, -27.8996] - }, - "properties": { - "name": "Nitnik", - "realm_idx": 6168, - "order": "The Order of the Twins", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.18, 30.7003] - }, - "properties": { - "name": "ko-Monkamkum", - "realm_idx": 6169, - "order": "The Order of Fury", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.4529, -21.32] - }, - "properties": { - "name": "Ekuiupek", - "realm_idx": 6170, - "order": "The Order of Power", - "resources": ["Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.1455, 11.7031] - }, - "properties": { - "name": "Toyngq\u00edwr", - "realm_idx": 6171, - "order": "The Order of Protection", - "resources": ["Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.2529, -34.82] - }, - "properties": { - "name": "Qayetuke", - "realm_idx": 6172, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.8471, 23.58] - }, - "properties": { - "name": "Luzhlizh", - "realm_idx": 6173, - "order": "The Order of Skill", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.58, -11.7997] - }, - "properties": { - "name": "Ingaking", - "realm_idx": 6174, - "order": "The Order of Detection", - "resources": ["Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.1529, 29.28] - }, - "properties": { - "name": "Pirtkorkhork", - "realm_idx": 6175, - "order": "The Order of Vitriol", - "resources": ["Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.7471, 12.38] - }, - "properties": { - "name": "\u0160uddlen", - "realm_idx": 6176, - "order": "The Order of Skill", - "resources": ["Cold Iron", "Wood", "Coal", "Silver", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [126.1471, 11.68] - }, - "properties": { - "name": "Ma-Tin", - "realm_idx": 6177, - "order": "The Order of Protection", - "resources": ["Hartwood", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.48, -7.9997] - }, - "properties": { - "name": "Kilbkilsqilk", - "realm_idx": 6178, - "order": "The Order of Reflection", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.1529, 12.28] - }, - "properties": { - "name": "Dinkendinzem", - "realm_idx": 6179, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.3529, -33.82] - }, - "properties": { - "name": "\u2018immewpem", - "realm_idx": 6180, - "order": "The Order of Power", - "resources": ["Gold", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.7471, 15.28] - }, - "properties": { - "name": "N\u00e4lt\u00e4ln", - "realm_idx": 6181, - "order": "The Order of Titans", - "resources": ["Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.5527, 49.3801] - }, - "properties": { - "name": "Unusem", - "realm_idx": 6182, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.6529, 13.28] - }, - "properties": { - "name": "Nouptetkaon", - "realm_idx": 6183, - "order": "The Order of Vitriol", - "resources": ["Stone", "Copper", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.28, -27.8997] - }, - "properties": { - "name": "Zhuzhad", - "realm_idx": 6184, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal", "Obsidian", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.8471, 49.68] - }, - "properties": { - "name": "Usalalumul", - "realm_idx": 6185, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.9659, -25.57] - }, - "properties": { - "name": "Nimhlaphloh", - "realm_idx": 6186, - "order": "The Order of Perfection", - "resources": ["Hartwood", "Silver", "Gold", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [130.7776, 8.5914] - }, - "properties": { - "name": "Tashguttuk", - "realm_idx": 6187, - "order": "The Order of Protection", - "resources": ["Coal", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.0529, 29.48] - }, - "properties": { - "name": "Initir", - "realm_idx": 6188, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.2471, -1.62] - }, - "properties": { - "name": "Epatekepel", - "realm_idx": 6189, - "order": "The Order of Power", - "resources": ["Coal", "Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.9801, -47.2996] - }, - "properties": { - "name": "Ko zhom Ansu", - "realm_idx": 6190, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.5801, -38.6996] - }, - "properties": { - "name": "Tchipoz", - "realm_idx": 6191, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.2656, 38.777] - }, - "properties": { - "name": "Sensi", - "realm_idx": 6192, - "order": "The Order of Anger", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.1801, 47.3004] - }, - "properties": { - "name": "neln Wlnlals", - "realm_idx": 6193, - "order": "The Order of Anger", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.3529, 9.78] - }, - "properties": { - "name": "Onepuk", - "realm_idx": 6194, - "order": "The Order of Vitriol", - "resources": ["Sapphire", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.5471, 9.28] - }, - "properties": { - "name": "Lelalemetin", - "realm_idx": 6195, - "order": "The Order of Titans", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.8471, 7.18] - }, - "properties": { - "name": "Shmunpin", - "realm_idx": 6196, - "order": "The Order of Brilliance", - "resources": ["Wood", "Silver", "Ruby", "Obsidian", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.8471, -33.92] - }, - "properties": { - "name": "Schinsrim", - "realm_idx": 6197, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.6529, 51.18] - }, - "properties": { - "name": "Pusune", - "realm_idx": 6198, - "order": "The Order of Fury", - "resources": ["Cold Iron", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-48.1529, 49.78] - }, - "properties": { - "name": "Luzle\u0161", - "realm_idx": 6199, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.88, 38.0003] - }, - "properties": { - "name": "Sdimmig\u0161m\u00fcg", - "realm_idx": 6200, - "order": "The Order of Reflection", - "resources": ["Wood", "Obsidian", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.5529, 54.68] - }, - "properties": { - "name": "Peerpeertor", - "realm_idx": 6201, - "order": "The Order of Fury", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.9267, -17.0886] - }, - "properties": { - "name": "Punlen", - "realm_idx": 6202, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.6471, -50.62] - }, - "properties": { - "name": "Khuene I", - "realm_idx": 6203, - "order": "The Order of Giants", - "resources": [ - "Wood", - "Cold Iron", - "Stone", - "Coal", - "Twilight Quartz", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.3471, -13.72] - }, - "properties": { - "name": "Mliklinlol", - "realm_idx": 6204, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.6596, -23.0575] - }, - "properties": { - "name": "Mukmupepe", - "realm_idx": 6205, - "order": "The Order of Perfection", - "resources": ["Wood", "True Ice", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.6471, 34.18] - }, - "properties": { - "name": "wu\u2018 Inam", - "realm_idx": 6206, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.3471, -30.32] - }, - "properties": { - "name": "S\u00efm\u00efm\u00ef", - "realm_idx": 6207, - "order": "The Order of Giants", - "resources": ["Stone", "Ruby", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.4801, 43.2004] - }, - "properties": { - "name": "Anow-Pakow", - "realm_idx": 6208, - "order": "The Order of Anger", - "resources": ["Coal", "Stone", "Wood", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.2221, 42.1744] - }, - "properties": { - "name": "Punmopnaet", - "realm_idx": 6209, - "order": "The Order of Fury", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.1801, -22.8996] - }, - "properties": { - "name": "Nrilutok", - "realm_idx": 6210, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.0471, 5.78] - }, - "properties": { - "name": "Ni\u017eg\u00ed\u0161\u017eome\u017e", - "realm_idx": 6211, - "order": "The Order of Brilliance", - "resources": ["Copper", "Coal", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.3471, 30.08] - }, - "properties": { - "name": "Muk Ak", - "realm_idx": 6212, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Silver", "Copper", "Stone", "Dragonhide"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.7471, 26.18] - }, - "properties": { - "name": "n\u00faek K\u00fas", - "realm_idx": 6213, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.4471, 20.08] - }, - "properties": { - "name": "Atschwibwib", - "realm_idx": 6214, - "order": "The Order of Brilliance", - "resources": ["Wood", "Obsidian", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.7471, -13.32] - }, - "properties": { - "name": "Huzfhuw", - "realm_idx": 6215, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.1529, 36.88] - }, - "properties": { - "name": "Luwishu", - "realm_idx": 6216, - "order": "The Order of Titans", - "resources": ["Silver", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.28, -30.9997] - }, - "properties": { - "name": "Uss\u00efsmasik", - "realm_idx": 6217, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.0639, 44.3127] - }, - "properties": { - "name": "vin Yenkon", - "realm_idx": 6218, - "order": "The Order of Anger", - "resources": ["Ironwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.5801, -14.3996] - }, - "properties": { - "name": "Lualkai", - "realm_idx": 6219, - "order": "The Order of Rage", - "resources": ["Copper", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.1471, -16.92] - }, - "properties": { - "name": "Tusch", - "realm_idx": 6220, - "order": "The Order of Perfection", - "resources": ["Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.1801, -54.1996] - }, - "properties": { - "name": "Dokhqegh", - "realm_idx": 6221, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-48.6529, 49.28] - }, - "properties": { - "name": "Iv\u00edmil\u00e1v", - "realm_idx": 6222, - "order": "The Order of Fury", - "resources": ["Silver", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.8471, 6.18] - }, - "properties": { - "name": "us Lillillan", - "realm_idx": 6223, - "order": "The Order of Brilliance", - "resources": ["Diamonds", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.2801, -53.5996] - }, - "properties": { - "name": "Ekesoo Kes", - "realm_idx": 6224, - "order": "The Order of the Twins", - "resources": ["Copper", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-41.4529, -11.22] - }, - "properties": { - "name": "Gutchotchogu", - "realm_idx": 6225, - "order": "The Order of the Fox", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.1529, 25.28] - }, - "properties": { - "name": "Suslussukpuk", - "realm_idx": 6226, - "order": "The Order of Vitriol", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.18, -2.6997] - }, - "properties": { - "name": "Ilnmal", - "realm_idx": 6227, - "order": "The Order of Detection", - "resources": ["Stone", "Sapphire", "Obsidian", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.2387, 24.0027] - }, - "properties": { - "name": "Sunyasyas", - "realm_idx": 6228, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.6471, 3.68] - }, - "properties": { - "name": "Mukike", - "realm_idx": 6229, - "order": "The Order of Brilliance", - "resources": [ - "Obsidian", - "Copper", - "Hartwood", - "Ruby", - "Wood", - "Mithral" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.2856, 45.4271] - }, - "properties": { - "name": "Uk tus Kek", - "realm_idx": 6230, - "order": "The Order of Anger", - "resources": ["Gold", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.98, 21.7003] - }, - "properties": { - "name": "tuh Snapnun", - "realm_idx": 6231, - "order": "The Order of Detection", - "resources": ["Copper", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.3742, 4.4434] - }, - "properties": { - "name": "dis Nuna", - "realm_idx": 6232, - "order": "The Order of Protection", - "resources": ["Stone", "Coal", "Silver", "Wood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.18, -4.8997] - }, - "properties": { - "name": "Nes\u00e1elult\u00fa", - "realm_idx": 6233, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.38, 36.7003] - }, - "properties": { - "name": "Shessemrot", - "realm_idx": 6234, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.08, -43.6996] - }, - "properties": { - "name": "Pimmunhuk", - "realm_idx": 6235, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.9529, 5.48] - }, - "properties": { - "name": "lel Miemmiop", - "realm_idx": 6236, - "order": "The Order of Vitriol", - "resources": ["Copper", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.6471, -18.12] - }, - "properties": { - "name": "Kuses-Onmos", - "realm_idx": 6237, - "order": "The Order of Giants", - "resources": ["Cold Iron", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.7529, 15.58] - }, - "properties": { - "name": "Niupuatuan", - "realm_idx": 6238, - "order": "The Order of Vitriol", - "resources": ["Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.0529, 11.28] - }, - "properties": { - "name": "Om in Un", - "realm_idx": 6239, - "order": "The Order of Titans", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.0527, 51.1801] - }, - "properties": { - "name": "Uminumlingu", - "realm_idx": 6240, - "order": "The Order of the Twins", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.1471, 12.38] - }, - "properties": { - "name": "vrin-Qliig", - "realm_idx": 6241, - "order": "The Order of Protection", - "resources": ["Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.5801, 38.9004] - }, - "properties": { - "name": "Tupuuepla", - "realm_idx": 6242, - "order": "The Order of Anger", - "resources": ["Wood", "Ironwood", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.4379, -18.9416] - }, - "properties": { - "name": "Hanhonom", - "realm_idx": 6243, - "order": "The Order of Perfection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.0471, 39.98] - }, - "properties": { - "name": "Oa ok Esekak", - "realm_idx": 6244, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.9471, 51.08] - }, - "properties": { - "name": "Ikisan", - "realm_idx": 6245, - "order": "The Order of Skill", - "resources": ["Stone", "Hartwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.9861, -12.7117] - }, - "properties": { - "name": "Lil\u2018ilal", - "realm_idx": 6246, - "order": "The Order of Rage", - "resources": ["Stone", "Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.4471, 25.78] - }, - "properties": { - "name": "Ositos", - "realm_idx": 6247, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.6471, 35.48] - }, - "properties": { - "name": "S\u00fannon", - "realm_idx": 6248, - "order": "The Order of Skill", - "resources": ["Sapphire", "Stone", "Gold", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.8471, 41.88] - }, - "properties": { - "name": "Dadmor", - "realm_idx": 6249, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Obsidian", "Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.9324, -12.2037] - }, - "properties": { - "name": "Nunpan Uman", - "realm_idx": 6250, - "order": "The Order of Perfection", - "resources": ["Stone", "Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.3801, 29.1004] - }, - "properties": { - "name": "Kinsonten", - "realm_idx": 6251, - "order": "The Order of Rage", - "resources": ["Copper", "Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.78, -48.3996] - }, - "properties": { - "name": "Iyssiwm", - "realm_idx": 6252, - "order": "The Order of the Fox", - "resources": ["Stone", "Silver", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.9471, -22.52] - }, - "properties": { - "name": "Sungung", - "realm_idx": 6253, - "order": "The Order of Giants", - "resources": ["Copper", "Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.58, -23.0997] - }, - "properties": { - "name": "Dun\u00e1n", - "realm_idx": 6254, - "order": "The Order of Reflection", - "resources": ["Wood", "Cold Iron", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.4529, 47.58] - }, - "properties": { - "name": "Pingtimnang", - "realm_idx": 6255, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.3031, -13.1978] - }, - "properties": { - "name": "Am-Ash", - "realm_idx": 6256, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.7471, 10.28] - }, - "properties": { - "name": "Moskusnusnos", - "realm_idx": 6257, - "order": "The Order of Brilliance", - "resources": [ - "Hartwood", - "Wood", - "Coal", - "Obsidian", - "Silver", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.9471, 5.58] - }, - "properties": { - "name": "Mangyun", - "realm_idx": 6258, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.1801, -39.9996] - }, - "properties": { - "name": "Enpeng", - "realm_idx": 6259, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone", "Obsidian", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.88, 2.1003] - }, - "properties": { - "name": "mum Puittuk", - "realm_idx": 6260, - "order": "The Order of Detection", - "resources": [ - "Wood", - "Coal", - "Copper", - "Alchemical Silver", - "Obsidian", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.1527, 45.0801] - }, - "properties": { - "name": "\u00dak\u00fapt\u00e1sal", - "realm_idx": 6261, - "order": "The Order of the Twins", - "resources": ["Wood", "Copper", "Stone", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.0365, -30.1811] - }, - "properties": { - "name": "Kauzizh", - "realm_idx": 6262, - "order": "The Order of Reflection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.2801, 27.8004] - }, - "properties": { - "name": "Peelospeel", - "realm_idx": 6263, - "order": "The Order of Rage", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.5471, 46.88] - }, - "properties": { - "name": "Zasw\u00ebzpikw\u00ebz", - "realm_idx": 6264, - "order": "The Order of Skill", - "resources": ["Copper", "Ignium", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.5471, 11.28] - }, - "properties": { - "name": "Ilutak", - "realm_idx": 6265, - "order": "The Order of Brilliance", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.0471, 21.08] - }, - "properties": { - "name": "Niymaw", - "realm_idx": 6266, - "order": "The Order of Skill", - "resources": ["Obsidian", "Silver", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.18, -13.6997] - }, - "properties": { - "name": "Sossossnos", - "realm_idx": 6267, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.5471, 6.08] - }, - "properties": { - "name": "Sasat", - "realm_idx": 6268, - "order": "The Order of Brilliance", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.7471, 17.58] - }, - "properties": { - "name": "Mitin", - "realm_idx": 6269, - "order": "The Order of Brilliance", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-26.7529, 27.38] - }, - "properties": { - "name": "K\u00e1ninn\u00ed", - "realm_idx": 6270, - "order": "The Order of Vitriol", - "resources": ["Wood", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.2471, -1.82] - }, - "properties": { - "name": "Nu-Mukeknu", - "realm_idx": 6271, - "order": "The Order of Giants", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.8269, -24.5169] - }, - "properties": { - "name": "Bek\u0161ekqos", - "realm_idx": 6272, - "order": "The Order of Reflection", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.3529, 48.98] - }, - "properties": { - "name": "Momen", - "realm_idx": 6273, - "order": "The Order of Fury", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.7471, 0.88] - }, - "properties": { - "name": "Am Amamhun", - "realm_idx": 6274, - "order": "The Order of Brilliance", - "resources": ["Hartwood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.6529, -4.12] - }, - "properties": { - "name": "Irsurkurk", - "realm_idx": 6275, - "order": "The Order of Power", - "resources": [ - "Wood", - "Obsidian", - "Ethereal Silica", - "Cold Iron", - "Hartwood", - "Gold" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.6801, 4.4004] - }, - "properties": { - "name": "Kinslisp\u00efs", - "realm_idx": 6276, - "order": "The Order of Rage", - "resources": ["Stone", "Copper", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.7801, 48.2004] - }, - "properties": { - "name": "M\u00e2rskalsmils", - "realm_idx": 6277, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Obsidian", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.2424, -10.7825] - }, - "properties": { - "name": "Inilaghib", - "realm_idx": 6278, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.7471, 50.18] - }, - "properties": { - "name": "K\u00fal-P\u00falt\u00fals", - "realm_idx": 6279, - "order": "The Order of Skill", - "resources": ["Stone", "Ironwood", "Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.5529, -25.32] - }, - "properties": { - "name": "Mupol", - "realm_idx": 6280, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.5529, -1.62] - }, - "properties": { - "name": "Murpooksjuk", - "realm_idx": 6281, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.6471, 7.78] - }, - "properties": { - "name": "Kokkolken", - "realm_idx": 6282, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.9529, 23.58] - }, - "properties": { - "name": "\u2018upch\u2018u\u2018ch\u2018i", - "realm_idx": 6283, - "order": "The Order of Vitriol", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.18, -30.5997] - }, - "properties": { - "name": "Xunwun", - "realm_idx": 6284, - "order": "The Order of Detection", - "resources": ["Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.9471, 40.68] - }, - "properties": { - "name": "Jarulnjar", - "realm_idx": 6285, - "order": "The Order of Titans", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [103.8471, -11.02] - }, - "properties": { - "name": "Drengr\u00f6ng", - "realm_idx": 6286, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.8471, 30.48] - }, - "properties": { - "name": "Totchbotch", - "realm_idx": 6287, - "order": "The Order of Skill", - "resources": ["Coal", "Stone", "Copper", "Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.5509, -25.1787] - }, - "properties": { - "name": "Hehun", - "realm_idx": 6288, - "order": "The Order of Protection", - "resources": ["Cold Iron", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.88, 32.2003] - }, - "properties": { - "name": "Lanlamkrin", - "realm_idx": 6289, - "order": "The Order of Reflection", - "resources": ["Diamonds", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [102.0689, -11.9026] - }, - "properties": { - "name": "Zhantom", - "realm_idx": 6290, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.4471, -25.22] - }, - "properties": { - "name": "Nakhat", - "realm_idx": 6291, - "order": "The Order of Giants", - "resources": ["Sapphire", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.58, -31.0997] - }, - "properties": { - "name": "Chpinchpum", - "realm_idx": 6292, - "order": "The Order of the Fox", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.0471, 28.78] - }, - "properties": { - "name": "Tuipaummius", - "realm_idx": 6293, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.0031, 13.1926] - }, - "properties": { - "name": "Benemmun", - "realm_idx": 6294, - "order": "The Order of Fury", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.9801, -36.3996] - }, - "properties": { - "name": "Uvmruv", - "realm_idx": 6295, - "order": "The Order of the Twins", - "resources": ["Stone", "True Ice", "Copper", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.4471, -11.32] - }, - "properties": { - "name": "Peikkuek", - "realm_idx": 6296, - "order": "The Order of Perfection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.6077, 11.9295] - }, - "properties": { - "name": "Pah\u017eenuz\u017ee", - "realm_idx": 6297, - "order": "The Order of Fury", - "resources": ["Stone", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.924, 29.4125] - }, - "properties": { - "name": "Lolpisal", - "realm_idx": 6298, - "order": "The Order of Anger", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [101.6471, 49.48] - }, - "properties": { - "name": "Mjes Pis", - "realm_idx": 6299, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.3471, 32.08] - }, - "properties": { - "name": "Muknip-Kuis", - "realm_idx": 6300, - "order": "The Order of Skill", - "resources": ["Copper", "Obsidian", "Stone", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.8471, 36.08] - }, - "properties": { - "name": "Elaln\u00fclm\u00fclm", - "realm_idx": 6301, - "order": "The Order of Titans", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.6471, 37.58] - }, - "properties": { - "name": "Luiluihai", - "realm_idx": 6302, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.5471, -8.42] - }, - "properties": { - "name": "Nus Snitsku", - "realm_idx": 6303, - "order": "The Order of Power", - "resources": ["Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.1471, 8.28] - }, - "properties": { - "name": "\u00d3nz\u00f3n", - "realm_idx": 6304, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.8471, -40.52] - }, - "properties": { - "name": "Lum\u00e1tolul\u00e1", - "realm_idx": 6305, - "order": "The Order of Giants", - "resources": ["Coal", "Stone", "Wood", "Obsidian", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.9471, -19.12] - }, - "properties": { - "name": "Kokzhas", - "realm_idx": 6306, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.3529, 49.88] - }, - "properties": { - "name": "Baysh\u00e4qnrish", - "realm_idx": 6307, - "order": "The Order of Fury", - "resources": ["Wood", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.3801, 8.5004] - }, - "properties": { - "name": "Nenkutties", - "realm_idx": 6308, - "order": "The Order of Rage", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.9471, 37.48] - }, - "properties": { - "name": "Kalkulk", - "realm_idx": 6309, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.5471, -10.52] - }, - "properties": { - "name": "Soso Koko", - "realm_idx": 6310, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.3471, 42.18] - }, - "properties": { - "name": "Gugevo", - "realm_idx": 6311, - "order": "The Order of Skill", - "resources": ["Wood", "Ironwood", "Alchemical Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.5785, 29.993] - }, - "properties": { - "name": "Kaddun", - "realm_idx": 6312, - "order": "The Order of Anger", - "resources": ["Ruby", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.7471, 25.58] - }, - "properties": { - "name": "G\u00e4\u0161m\u00e4tg\u00e4g", - "realm_idx": 6313, - "order": "The Order of Skill", - "resources": [ - "Ironwood", - "Deep Crystal", - "Wood", - "Obsidian", - "Coal", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.8529, -40.42] - }, - "properties": { - "name": "Pietiekpie", - "realm_idx": 6314, - "order": "The Order of Power", - "resources": ["Wood", "Stone", "Twilight Quartz", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.0801, -34.0996] - }, - "properties": { - "name": "Umazi\u017eotez", - "realm_idx": 6315, - "order": "The Order of the Twins", - "resources": ["Copper", "Sapphire", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.2529, 47.78] - }, - "properties": { - "name": "Glizh", - "realm_idx": 6316, - "order": "The Order of Titans", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.5324, 25.6511] - }, - "properties": { - "name": "S\u00f4ss\u00f4ss\u00f4s", - "realm_idx": 6317, - "order": "The Order of Fury", - "resources": ["Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.6471, 44.78] - }, - "properties": { - "name": "Zinsi", - "realm_idx": 6318, - "order": "The Order of Skill", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.88, -20.9997] - }, - "properties": { - "name": "Hokhus", - "realm_idx": 6319, - "order": "The Order of Detection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [131.2849, 9.511] - }, - "properties": { - "name": "Sint\u00e9tsin", - "realm_idx": 6320, - "order": "The Order of Protection", - "resources": ["Obsidian", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.38, 20.8003] - }, - "properties": { - "name": "Lup-Pillan", - "realm_idx": 6321, - "order": "The Order of Fury", - "resources": ["Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.6471, -17.92] - }, - "properties": { - "name": "il Shar", - "realm_idx": 6322, - "order": "The Order of Giants", - "resources": ["Stone", "Ignium", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.48, 10.6003] - }, - "properties": { - "name": "il Apuk", - "realm_idx": 6323, - "order": "The Order of Fury", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.1801, 47.1004] - }, - "properties": { - "name": "Chiug", - "realm_idx": 6324, - "order": "The Order of Anger", - "resources": [ - "Coal", - "Gold", - "Cold Iron", - "Stone", - "Silver", - "Copper", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.68, 12.8003] - }, - "properties": { - "name": "tol Umal", - "realm_idx": 6325, - "order": "The Order of Detection", - "resources": ["Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.4471, 32.38] - }, - "properties": { - "name": "Tin\u00fatiy", - "realm_idx": 6326, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Obsidian", "Sapphire", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.5801, -52.6996] - }, - "properties": { - "name": "Spoke", - "realm_idx": 6327, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.98, -36.8997] - }, - "properties": { - "name": "Meilsiu", - "realm_idx": 6328, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.0801, -29.6996] - }, - "properties": { - "name": "uy Muykuwnoy", - "realm_idx": 6329, - "order": "The Order of the Twins", - "resources": ["Gold", "Coal", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.2471, -19.92] - }, - "properties": { - "name": "Iritu\u010dep", - "realm_idx": 6330, - "order": "The Order of Perfection", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.2566, -34.6731] - }, - "properties": { - "name": "Mikmikmik", - "realm_idx": 6331, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.2471, 19.78] - }, - "properties": { - "name": "Ressoksrom", - "realm_idx": 6332, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.3801, -50.1996] - }, - "properties": { - "name": "Guslek", - "realm_idx": 6333, - "order": "The Order of the Twins", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [71.2471, -26.72] - }, - "properties": { - "name": "pos Woos", - "realm_idx": 6334, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.2529, -28.52] - }, - "properties": { - "name": "Koo\u017etoz", - "realm_idx": 6335, - "order": "The Order of Power", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.6441, -10.6556] - }, - "properties": { - "name": "sa-Nam\u00eana", - "realm_idx": 6336, - "order": "The Order of Reflection", - "resources": ["Coal", "Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.1471, 33.28] - }, - "properties": { - "name": "Ha\u2018ule\u2018u", - "realm_idx": 6337, - "order": "The Order of Skill", - "resources": [ - "Copper", - "Obsidian", - "Deep Crystal", - "Gold", - "Twilight Quartz" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.3801, 21.1004] - }, - "properties": { - "name": "Ikupinutil", - "realm_idx": 6338, - "order": "The Order of Rage", - "resources": ["Obsidian", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.1801, 13.5004] - }, - "properties": { - "name": "Kankanfkok", - "realm_idx": 6339, - "order": "The Order of Rage", - "resources": ["Copper", "Wood", "Diamonds", "Silver", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.0471, 32.38] - }, - "properties": { - "name": "Tenmerptuhom", - "realm_idx": 6340, - "order": "The Order of Enlightenment", - "resources": ["Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.68, -0.8997] - }, - "properties": { - "name": "il-Imik", - "realm_idx": 6341, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.8471, 36.58] - }, - "properties": { - "name": "si-Mani-Niti", - "realm_idx": 6342, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.9264, -35.2973] - }, - "properties": { - "name": "Drunbim", - "realm_idx": 6343, - "order": "The Order of Reflection", - "resources": ["Coal", "Obsidian", "Wood", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [11.5471, 14.28] - }, - "properties": { - "name": "T\u00farrerlet", - "realm_idx": 6344, - "order": "The Order of Titans", - "resources": ["Hartwood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.5504, 35.3488] - }, - "properties": { - "name": "Ersulk", - "realm_idx": 6345, - "order": "The Order of Anger", - "resources": ["Coal", "Cold Iron", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.3471, 41.18] - }, - "properties": { - "name": "Skossn\u00fa", - "realm_idx": 6346, - "order": "The Order of Skill", - "resources": ["Silver", "Wood", "Diamonds", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.1801, -57.0996] - }, - "properties": { - "name": "Amlemlum", - "realm_idx": 6347, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.6383, 27.4385] - }, - "properties": { - "name": "Limsinnung", - "realm_idx": 6348, - "order": "The Order of Anger", - "resources": [ - "Ethereal Silica", - "Coal", - "Stone", - "Ironwood", - "Cold Iron", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.2471, 21.08] - }, - "properties": { - "name": "S\u00ea\u0161\u00eas\u00e2\u017e", - "realm_idx": 6349, - "order": "The Order of Titans", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.4801, 41.2004] - }, - "properties": { - "name": "Swuknus", - "realm_idx": 6350, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "Silver", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.2801, 42.9004] - }, - "properties": { - "name": "Zheshchozgu", - "realm_idx": 6351, - "order": "The Order of Anger", - "resources": ["Ironwood", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.7471, -0.72] - }, - "properties": { - "name": "Qosrekkhib", - "realm_idx": 6352, - "order": "The Order of Brilliance", - "resources": ["Wood", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.28, 14.6003] - }, - "properties": { - "name": "Samsittoot", - "realm_idx": 6353, - "order": "The Order of Fury", - "resources": ["Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.1529, 3.08] - }, - "properties": { - "name": "Toknismiknuk", - "realm_idx": 6354, - "order": "The Order of Power", - "resources": ["Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.5471, 8.48] - }, - "properties": { - "name": "\u2018ul Luln", - "realm_idx": 6355, - "order": "The Order of Protection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.5801, 13.1004] - }, - "properties": { - "name": "Kumpir", - "realm_idx": 6356, - "order": "The Order of Rage", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.08, 13.9003] - }, - "properties": { - "name": "Lunomnun", - "realm_idx": 6357, - "order": "The Order of Fury", - "resources": ["Coal", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.4471, 39.18] - }, - "properties": { - "name": "mut Nunshop", - "realm_idx": 6358, - "order": "The Order of Skill", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.3471, -21.92] - }, - "properties": { - "name": "Sollulssolte", - "realm_idx": 6359, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.88, 15.9003] - }, - "properties": { - "name": "Maaaq", - "realm_idx": 6360, - "order": "The Order of Detection", - "resources": [ - "Wood", - "Stone", - "Hartwood", - "Twilight Quartz", - "Silver", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.4801, 24.9004] - }, - "properties": { - "name": "Nimaumanimtu", - "realm_idx": 6361, - "order": "The Order of Rage", - "resources": ["Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.6471, 52.18] - }, - "properties": { - "name": "Xhumxlan", - "realm_idx": 6362, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.0801, -57.6996] - }, - "properties": { - "name": "Timdogsgud", - "realm_idx": 6363, - "order": "The Order of the Twins", - "resources": ["Gold", "Stone", "Coal", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.9529, -24.82] - }, - "properties": { - "name": "Pumlumsun", - "realm_idx": 6364, - "order": "The Order of Power", - "resources": ["Stone", "Adamantine", "Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.1529, -5.02] - }, - "properties": { - "name": "Kierpierwuh", - "realm_idx": 6365, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.9968, 29.5281] - }, - "properties": { - "name": "Paklos", - "realm_idx": 6366, - "order": "The Order of Reflection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.3471, 42.18] - }, - "properties": { - "name": "sos Gum Kak", - "realm_idx": 6367, - "order": "The Order of Titans", - "resources": ["Coal", "Copper", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.6801, -46.8996] - }, - "properties": { - "name": "Loslela", - "realm_idx": 6368, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.68, -0.4997] - }, - "properties": { - "name": "Dieesdom", - "realm_idx": 6369, - "order": "The Order of Detection", - "resources": ["Hartwood", "Wood", "Copper", "Silver", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [69.7471, -26.32] - }, - "properties": { - "name": "Chpathuphat", - "realm_idx": 6370, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.8471, -24.82] - }, - "properties": { - "name": "Liokeuk Mio", - "realm_idx": 6371, - "order": "The Order of Power", - "resources": ["Gold", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.5471, 17.48] - }, - "properties": { - "name": "nyrn-Nur", - "realm_idx": 6372, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.6529, 36.88] - }, - "properties": { - "name": "san Nan", - "realm_idx": 6373, - "order": "The Order of Titans", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.88, 8.7003] - }, - "properties": { - "name": "Ikumikolom", - "realm_idx": 6374, - "order": "The Order of Detection", - "resources": ["Wood", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.3031, -12.7978] - }, - "properties": { - "name": "Gamhon", - "realm_idx": 6375, - "order": "The Order of Perfection", - "resources": ["Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.9471, 10.08] - }, - "properties": { - "name": "ngun Tam", - "realm_idx": 6376, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper", "Silver", "Mithral", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.9471, 14.68] - }, - "properties": { - "name": "T\u00e4nnit", - "realm_idx": 6377, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Stone", "Ironwood", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.9207, 27.4317] - }, - "properties": { - "name": "\u0160uilialluam", - "realm_idx": 6378, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.1527, 52.0801] - }, - "properties": { - "name": "Ubkhuum", - "realm_idx": 6379, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Wood", "Stone", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.6529, -41.72] - }, - "properties": { - "name": "Laenpeamnao", - "realm_idx": 6380, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.3801, 4.7004] - }, - "properties": { - "name": "Suqboy", - "realm_idx": 6381, - "order": "The Order of Rage", - "resources": ["Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.8801, -55.6996] - }, - "properties": { - "name": "Kezgep-Mas", - "realm_idx": 6382, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.8471, -12.72] - }, - "properties": { - "name": "Ch\u00fasb\u00e1kt\u00f3k", - "realm_idx": 6383, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.2118, -22.8534] - }, - "properties": { - "name": "Stuksvijke", - "realm_idx": 6384, - "order": "The Order of Perfection", - "resources": ["Copper", "Wood", "Stone", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.0471, 10.38] - }, - "properties": { - "name": "Umepetep", - "realm_idx": 6385, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.5471, 3.18] - }, - "properties": { - "name": "Unnumpim", - "realm_idx": 6386, - "order": "The Order of Brilliance", - "resources": ["Diamonds", "Wood", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.8553, 30.5372] - }, - "properties": { - "name": "Kuk\u2018ukkuk", - "realm_idx": 6387, - "order": "The Order of Fury", - "resources": [ - "Silver", - "Copper", - "Ignium", - "Cold Iron", - "Stone", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.6801, -54.3996] - }, - "properties": { - "name": "Pumnimmapmut", - "realm_idx": 6388, - "order": "The Order of the Twins", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.9801, 5.6004] - }, - "properties": { - "name": "Tunna", - "realm_idx": 6389, - "order": "The Order of Rage", - "resources": ["Ironwood", "Silver", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.58, 13.2003] - }, - "properties": { - "name": "Taltettlut", - "realm_idx": 6390, - "order": "The Order of Detection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.2801, 42.0004] - }, - "properties": { - "name": "Okokoket", - "realm_idx": 6391, - "order": "The Order of Anger", - "resources": ["Wood", "Copper", "Stone", "Coal", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.3471, 46.78] - }, - "properties": { - "name": "Ininni", - "realm_idx": 6392, - "order": "The Order of Enlightenment", - "resources": [ - "Deep Crystal", - "Gold", - "Ignium", - "Stone", - "Silver", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.7471, 14.58] - }, - "properties": { - "name": "Shmenet", - "realm_idx": 6393, - "order": "The Order of Skill", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.08, 12.7003] - }, - "properties": { - "name": "Resoyrgiws", - "realm_idx": 6394, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.0471, 3.48] - }, - "properties": { - "name": "Unupunaputap", - "realm_idx": 6395, - "order": "The Order of Brilliance", - "resources": ["Wood", "Alchemical Silver", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [69.5471, -15.52] - }, - "properties": { - "name": "Snamnunu", - "realm_idx": 6396, - "order": "The Order of Perfection", - "resources": [ - "Wood", - "Obsidian", - "Coal", - "Ethereal Silica", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.5471, 41.08] - }, - "properties": { - "name": "\u00cfgg\u00e4g\u00efsch", - "realm_idx": 6397, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.9801, 23.9004] - }, - "properties": { - "name": "Ql\u00e4mngak", - "realm_idx": 6398, - "order": "The Order of Rage", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.4471, 26.38] - }, - "properties": { - "name": "Urntulkurn", - "realm_idx": 6399, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Ironwood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.7471, -14.82] - }, - "properties": { - "name": "Nennenaj", - "realm_idx": 6400, - "order": "The Order of Giants", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.18, -49.1996] - }, - "properties": { - "name": "Ipumaw", - "realm_idx": 6401, - "order": "The Order of the Fox", - "resources": ["Wood", "Ironwood", "Ethereal Silica", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.2471, 9.48] - }, - "properties": { - "name": "ut Unikokuk", - "realm_idx": 6402, - "order": "The Order of Brilliance", - "resources": ["Coal", "Sapphire", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.3529, 24.78] - }, - "properties": { - "name": "Uhqaniiz", - "realm_idx": 6403, - "order": "The Order of Vitriol", - "resources": ["Wood", "Obsidian", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-125.98, -3.8997] - }, - "properties": { - "name": "It\u00e2k\u00e2k\u00e2kuk\u00f4n", - "realm_idx": 6404, - "order": "The Order of Detection", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.2529, 4.98] - }, - "properties": { - "name": "Tchujisilu", - "realm_idx": 6405, - "order": "The Order of Power", - "resources": ["Stone", "Copper", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.4805, 45.9352] - }, - "properties": { - "name": "Kokstik", - "realm_idx": 6406, - "order": "The Order of Anger", - "resources": ["Gold", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.3471, 51.78] - }, - "properties": { - "name": "Ulusam", - "realm_idx": 6407, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.5529, 17.08] - }, - "properties": { - "name": "Tazunuperz", - "realm_idx": 6408, - "order": "The Order of Vitriol", - "resources": ["Copper", "Ruby", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.5529, 0.38] - }, - "properties": { - "name": "Maumwupwup", - "realm_idx": 6409, - "order": "The Order of Vitriol", - "resources": ["Wood", "True Ice", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.8471, 9.18] - }, - "properties": { - "name": "Pomskuptol", - "realm_idx": 6410, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.2502, 41.8137] - }, - "properties": { - "name": "Madorxxuxmok", - "realm_idx": 6411, - "order": "The Order of Fury", - "resources": ["Wood", "Obsidian", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.8468, -17.5641] - }, - "properties": { - "name": "Nukpim-Nit", - "realm_idx": 6412, - "order": "The Order of Protection", - "resources": ["Stone", "Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.0131, 42.4428] - }, - "properties": { - "name": "Kemkesmol", - "realm_idx": 6413, - "order": "The Order of Anger", - "resources": ["Coal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.7471, -29.32] - }, - "properties": { - "name": "Iup kuk Te", - "realm_idx": 6414, - "order": "The Order of Power", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.6801, -31.4996] - }, - "properties": { - "name": "Mimmo", - "realm_idx": 6415, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Mithral", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.0098, -20.3888] - }, - "properties": { - "name": "Mo\u00ed Soimmo\u00ed", - "realm_idx": 6416, - "order": "The Order of Perfection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.3801, -57.6996] - }, - "properties": { - "name": "Ansem", - "realm_idx": 6417, - "order": "The Order of the Twins", - "resources": ["Stone", "Coal", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.2471, 28.58] - }, - "properties": { - "name": "Koyaro", - "realm_idx": 6418, - "order": "The Order of Skill", - "resources": ["Coal", "Hartwood", "Gold", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.4723, 30.8776] - }, - "properties": { - "name": "Niesaitios", - "realm_idx": 6419, - "order": "The Order of Anger", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.3471, 6.58] - }, - "properties": { - "name": "Nonnootnop", - "realm_idx": 6420, - "order": "The Order of Protection", - "resources": ["Copper", "Wood", "Gold", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.0471, 33.18] - }, - "properties": { - "name": "Oetoto", - "realm_idx": 6421, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.8471, 0.78] - }, - "properties": { - "name": "gu Qak", - "realm_idx": 6422, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Copper", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.7529, 25.18] - }, - "properties": { - "name": "Ukd\u00e1k Shukok", - "realm_idx": 6423, - "order": "The Order of Vitriol", - "resources": ["Hartwood", "Diamonds", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.2529, 13.58] - }, - "properties": { - "name": "Ikak-Ismik", - "realm_idx": 6424, - "order": "The Order of Vitriol", - "resources": ["Copper", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.0471, -20.32] - }, - "properties": { - "name": "Moslu", - "realm_idx": 6425, - "order": "The Order of Power", - "resources": ["Obsidian", "Silver", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.4471, -9.62] - }, - "properties": { - "name": "Ilunnwosles", - "realm_idx": 6426, - "order": "The Order of Giants", - "resources": ["Silver", "Stone", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.88, -59.9996] - }, - "properties": { - "name": "Rwwghoj", - "realm_idx": 6427, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-39.5527, 50.7801] - }, - "properties": { - "name": "Kinlen", - "realm_idx": 6428, - "order": "The Order of the Twins", - "resources": ["Diamonds", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.0365, 7.8821] - }, - "properties": { - "name": "Mor\u00fcmo", - "realm_idx": 6429, - "order": "The Order of Protection", - "resources": ["Ironwood", "Stone", "Wood", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.9471, 42.18] - }, - "properties": { - "name": "Enenashik", - "realm_idx": 6430, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.3471, -23.92] - }, - "properties": { - "name": "Lokpool", - "realm_idx": 6431, - "order": "The Order of Power", - "resources": ["Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.1979, 10.68] - }, - "properties": { - "name": "\u00c1luupa\u00e1nun", - "realm_idx": 6432, - "order": "The Order of Protection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.8801, 3.4004] - }, - "properties": { - "name": "Shnillel", - "realm_idx": 6433, - "order": "The Order of Rage", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.2295, 40.0717] - }, - "properties": { - "name": "Atimutos", - "realm_idx": 6434, - "order": "The Order of Anger", - "resources": ["Wood", "Hartwood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.6801, 5.8004] - }, - "properties": { - "name": "Puessesmes", - "realm_idx": 6435, - "order": "The Order of Rage", - "resources": [ - "Coal", - "Gold", - "Ethereal Silica", - "Stone", - "Wood", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.2801, 3.8004] - }, - "properties": { - "name": "Sikkekngo", - "realm_idx": 6436, - "order": "The Order of Rage", - "resources": ["Wood", "Gold", "Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.9529, 25.98] - }, - "properties": { - "name": "Miltalt", - "realm_idx": 6437, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.4471, 14.28] - }, - "properties": { - "name": "Sekkis", - "realm_idx": 6438, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [18.8471, 52.88] - }, - "properties": { - "name": "\u00dakulsap\u00fak", - "realm_idx": 6439, - "order": "The Order of Titans", - "resources": ["Obsidian", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.48, 17.8003] - }, - "properties": { - "name": "Aryiy", - "realm_idx": 6440, - "order": "The Order of Detection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.3471, 1.18] - }, - "properties": { - "name": "Khekhano", - "realm_idx": 6441, - "order": "The Order of Brilliance", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.6471, 52.68] - }, - "properties": { - "name": "Nugnan", - "realm_idx": 6442, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Ironwood", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.98, 30.5003] - }, - "properties": { - "name": "Bisigi", - "realm_idx": 6443, - "order": "The Order of Fury", - "resources": ["Hartwood", "Copper", "Wood", "Adamantine", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.491, -10.8775] - }, - "properties": { - "name": "Swomsmo\u017ekoz", - "realm_idx": 6444, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.2471, 11.48] - }, - "properties": { - "name": "Elepep", - "realm_idx": 6445, - "order": "The Order of Titans", - "resources": ["Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.2201, 44.9164] - }, - "properties": { - "name": "ze Don", - "realm_idx": 6446, - "order": "The Order of Anger", - "resources": ["Wood", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.0471, -12.62] - }, - "properties": { - "name": "Nazhkei", - "realm_idx": 6447, - "order": "The Order of Perfection", - "resources": ["Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.4529, -9.52] - }, - "properties": { - "name": "Luotea", - "realm_idx": 6448, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.0471, -29.32] - }, - "properties": { - "name": "Gotgengokog", - "realm_idx": 6449, - "order": "The Order of Giants", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.3801, 35.1004] - }, - "properties": { - "name": "Kontinow", - "realm_idx": 6450, - "order": "The Order of Anger", - "resources": ["Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.3513, 10.8067] - }, - "properties": { - "name": "Ikihum", - "realm_idx": 6451, - "order": "The Order of Protection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.7471, -19.02] - }, - "properties": { - "name": "\u00d3ranan", - "realm_idx": 6452, - "order": "The Order of Perfection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.611, 31.1797] - }, - "properties": { - "name": "Adusuwwd", - "realm_idx": 6453, - "order": "The Order of Reflection", - "resources": ["Ruby", "Obsidian", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.08, -5.9997] - }, - "properties": { - "name": "Ypysonesemem", - "realm_idx": 6454, - "order": "The Order of Reflection", - "resources": [ - "Stone", - "Ironwood", - "Cold Iron", - "Coal", - "Wood", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.9848, -42.248] - }, - "properties": { - "name": "Mimpup", - "realm_idx": 6455, - "order": "The Order of the Fox", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.3529, -28.42] - }, - "properties": { - "name": "Sualuis", - "realm_idx": 6456, - "order": "The Order of Power", - "resources": ["Ironwood", "Coal", "Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.2471, 45.08] - }, - "properties": { - "name": "Ponmamahon", - "realm_idx": 6457, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.2801, -18.3996] - }, - "properties": { - "name": "smuzh Baz", - "realm_idx": 6458, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.7471, 35.88] - }, - "properties": { - "name": "ta Quk\u00e4k\u00e4", - "realm_idx": 6459, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.8471, 47.68] - }, - "properties": { - "name": "sg\u00e1h Tetsg\u00e1w", - "realm_idx": 6460, - "order": "The Order of Skill", - "resources": ["Gold", "Wood", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.9367, -19.6141] - }, - "properties": { - "name": "Tussilsilsul", - "realm_idx": 6461, - "order": "The Order of Protection", - "resources": ["Stone", "Ethereal Silica", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.109, 29.2137] - }, - "properties": { - "name": "Pummem", - "realm_idx": 6462, - "order": "The Order of Anger", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.2801, 9.7004] - }, - "properties": { - "name": "Kikitolemrun", - "realm_idx": 6463, - "order": "The Order of Rage", - "resources": ["Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.38, 29.7003] - }, - "properties": { - "name": "Nosne", - "realm_idx": 6464, - "order": "The Order of Reflection", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.2471, -44.02] - }, - "properties": { - "name": "Yewiqiqwyuw", - "realm_idx": 6465, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.8801, 3.1004] - }, - "properties": { - "name": "Mulmulkissum", - "realm_idx": 6466, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.7529, 47.58] - }, - "properties": { - "name": "Ataatatak", - "realm_idx": 6467, - "order": "The Order of Titans", - "resources": ["Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.9801, 27.1004] - }, - "properties": { - "name": "Kommonmon", - "realm_idx": 6468, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "True Ice", "Gold", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.3801, -55.5996] - }, - "properties": { - "name": "Oggur Ogetet", - "realm_idx": 6469, - "order": "The Order of the Twins", - "resources": ["Silver", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.9529, 47.38] - }, - "properties": { - "name": "Kachs\u00e9z\u00e1s", - "realm_idx": 6470, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.3529, 0.48] - }, - "properties": { - "name": "Sbim\u0161i\u0161skhi", - "realm_idx": 6471, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.1053, 39.7379] - }, - "properties": { - "name": "Kiekkuak", - "realm_idx": 6472, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [130.6459, 5.7632] - }, - "properties": { - "name": "\u0160uediu\u0161", - "realm_idx": 6473, - "order": "The Order of Protection", - "resources": ["Silver", "Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.3801, 45.5004] - }, - "properties": { - "name": "Hl\u00e1hkakmlum", - "realm_idx": 6474, - "order": "The Order of Anger", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.8492, -52.0027] - }, - "properties": { - "name": "\u0160nin\u0161la", - "realm_idx": 6475, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.6177, -26.6128] - }, - "properties": { - "name": "Uhaakenut", - "realm_idx": 6476, - "order": "The Order of Protection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.6471, 50.88] - }, - "properties": { - "name": "Illitilannop", - "realm_idx": 6477, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.0801, 13.9004] - }, - "properties": { - "name": "Kultkult", - "realm_idx": 6478, - "order": "The Order of Rage", - "resources": ["Coal", "Twilight Quartz", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.9471, 55.38] - }, - "properties": { - "name": "Ulaljl\u00f3lp", - "realm_idx": 6479, - "order": "The Order of Titans", - "resources": ["Hartwood", "Wood", "Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.3627, 40.7775] - }, - "properties": { - "name": "N\u00e1nwumwum", - "realm_idx": 6480, - "order": "The Order of Anger", - "resources": ["Obsidian", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.48, 18.1003] - }, - "properties": { - "name": "Sten-lem-Nun", - "realm_idx": 6481, - "order": "The Order of Detection", - "resources": ["Coal", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.08, 23.4003] - }, - "properties": { - "name": "bo Y\u00f3h\u00e1homi", - "realm_idx": 6482, - "order": "The Order of Fury", - "resources": ["Coal", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.6801, 26.0004] - }, - "properties": { - "name": "Kas Susmos", - "realm_idx": 6483, - "order": "The Order of Rage", - "resources": ["Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.98, -57.9996] - }, - "properties": { - "name": "Lasqis", - "realm_idx": 6484, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.2801, 49.5004] - }, - "properties": { - "name": "Kongku", - "realm_idx": 6485, - "order": "The Order of Anger", - "resources": ["Silver", "Ironwood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.4471, 38.68] - }, - "properties": { - "name": "Nurmum", - "realm_idx": 6486, - "order": "The Order of Enlightenment", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.3471, -37.12] - }, - "properties": { - "name": "Wiloon", - "realm_idx": 6487, - "order": "The Order of Giants", - "resources": ["Silver", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.4471, 17.28] - }, - "properties": { - "name": "Chidchilchid", - "realm_idx": 6488, - "order": "The Order of Brilliance", - "resources": ["Alchemical Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.7909, -11.8325] - }, - "properties": { - "name": "Srungmong", - "realm_idx": 6489, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.58, -55.6996] - }, - "properties": { - "name": "E du Daga", - "realm_idx": 6490, - "order": "The Order of the Fox", - "resources": ["True Ice", "Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.7471, 22.68] - }, - "properties": { - "name": "Upluh\u2018olhuh", - "realm_idx": 6491, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.48, -51.3996] - }, - "properties": { - "name": "Tohomo", - "realm_idx": 6492, - "order": "The Order of the Fox", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.78, -55.2996] - }, - "properties": { - "name": "Sn\u00fckit", - "realm_idx": 6493, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.1735, 31.7384] - }, - "properties": { - "name": "Du\u00e4zh", - "realm_idx": 6494, - "order": "The Order of Reflection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.9529, 3.58] - }, - "properties": { - "name": "Olloluppim", - "realm_idx": 6495, - "order": "The Order of Power", - "resources": ["Diamonds", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.9801, -16.0996] - }, - "properties": { - "name": "Zhouhtiu", - "realm_idx": 6496, - "order": "The Order of Rage", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.0148, 13.4739] - }, - "properties": { - "name": "Kumintalin", - "realm_idx": 6497, - "order": "The Order of Protection", - "resources": ["Ruby", "Wood", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.6471, -15.72] - }, - "properties": { - "name": "Topseke", - "realm_idx": 6498, - "order": "The Order of Giants", - "resources": ["Ignium", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.78, 28.4003] - }, - "properties": { - "name": "Uusenzonou", - "realm_idx": 6499, - "order": "The Order of Reflection", - "resources": ["Cold Iron", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.9906, 44.4231] - }, - "properties": { - "name": "N\u00f3ntiknlun", - "realm_idx": 6500, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.58, 16.2003] - }, - "properties": { - "name": "Nurun Qepon", - "realm_idx": 6501, - "order": "The Order of Fury", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.0471, 40.78] - }, - "properties": { - "name": "Usnoioo u Os", - "realm_idx": 6502, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.1217, 35.1372] - }, - "properties": { - "name": "Tlirpintuy", - "realm_idx": 6503, - "order": "The Order of Fury", - "resources": ["Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.28, -42.7996] - }, - "properties": { - "name": "Tysit", - "realm_idx": 6504, - "order": "The Order of the Fox", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.38, -48.7996] - }, - "properties": { - "name": "Up-noy-Ub", - "realm_idx": 6505, - "order": "The Order of the Fox", - "resources": ["Coal", "Obsidian", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.5471, -11.82] - }, - "properties": { - "name": "Umasapumen", - "realm_idx": 6506, - "order": "The Order of Perfection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.5471, 12.88] - }, - "properties": { - "name": "Nitpamtut", - "realm_idx": 6507, - "order": "The Order of Brilliance", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.3471, 27.38] - }, - "properties": { - "name": "Suzhsuzh", - "realm_idx": 6508, - "order": "The Order of Vitriol", - "resources": ["Wood", "Obsidian", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.2215, -19.0812] - }, - "properties": { - "name": "Sannglan", - "realm_idx": 6509, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.8801, -5.4996] - }, - "properties": { - "name": "\u2018uhki\u2018pi\u2018", - "realm_idx": 6510, - "order": "The Order of Rage", - "resources": ["Silver", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.0471, -42.22] - }, - "properties": { - "name": "Ru\u2018ronw\u00e1nrum", - "realm_idx": 6511, - "order": "The Order of Giants", - "resources": ["Hartwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.28, 28.5003] - }, - "properties": { - "name": "ot Ootoozos", - "realm_idx": 6512, - "order": "The Order of Fury", - "resources": ["Deep Crystal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.0471, -19.22] - }, - "properties": { - "name": "Tummentinl\u00e1m", - "realm_idx": 6513, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.6471, 6.18] - }, - "properties": { - "name": "Usutukup", - "realm_idx": 6514, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.7529, 15.28] - }, - "properties": { - "name": "Tiw\u00fck", - "realm_idx": 6515, - "order": "The Order of Vitriol", - "resources": ["Stone", "Copper", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.0471, 24.18] - }, - "properties": { - "name": "Otsch\u00far\u00e1z", - "realm_idx": 6516, - "order": "The Order of Skill", - "resources": ["Wood", "Obsidian", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.7801, 44.7004] - }, - "properties": { - "name": "H\u00e4hp\u00e4tt\u00e4htun", - "realm_idx": 6517, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.7801, -37.4996] - }, - "properties": { - "name": "Umiwumiw", - "realm_idx": 6518, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.0471, 10.68] - }, - "properties": { - "name": "Ninlen", - "realm_idx": 6519, - "order": "The Order of Titans", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.4471, 13.58] - }, - "properties": { - "name": "Kum\u2018ukaunien", - "realm_idx": 6520, - "order": "The Order of Protection", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.88, 33.8003] - }, - "properties": { - "name": "Imnimta Mata", - "realm_idx": 6521, - "order": "The Order of Fury", - "resources": ["Wood", "Ironwood", "Stone", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.9471, 40.58] - }, - "properties": { - "name": "\u00c1mmemp\u00e9tmi", - "realm_idx": 6522, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Obsidian", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.5471, 18.98] - }, - "properties": { - "name": "kih Tah", - "realm_idx": 6523, - "order": "The Order of Skill", - "resources": ["Gold", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.3471, 13.78] - }, - "properties": { - "name": "Orebuk", - "realm_idx": 6524, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.6801, 11.0004] - }, - "properties": { - "name": "Henkimtun", - "realm_idx": 6525, - "order": "The Order of Rage", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.4471, 37.88] - }, - "properties": { - "name": "Moshshe", - "realm_idx": 6526, - "order": "The Order of Skill", - "resources": ["Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.6471, -5.32] - }, - "properties": { - "name": "Trorkiev", - "realm_idx": 6527, - "order": "The Order of Brilliance", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.7425, -13.6719] - }, - "properties": { - "name": "Laazh", - "realm_idx": 6528, - "order": "The Order of Perfection", - "resources": ["Deep Crystal", "Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.9498, -21.9833] - }, - "properties": { - "name": "Nuegk\u00eb\u00efs", - "realm_idx": 6529, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.4471, -32.42] - }, - "properties": { - "name": "Toks\u00efsp\u00ebss\u00efs", - "realm_idx": 6530, - "order": "The Order of Giants", - "resources": ["Ironwood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.5529, 45.58] - }, - "properties": { - "name": "Aj\u2018aajl \u2018ajm", - "realm_idx": 6531, - "order": "The Order of Fury", - "resources": ["Dragonhide"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.4627, -21.1012] - }, - "properties": { - "name": "Pokpokshuk", - "realm_idx": 6532, - "order": "The Order of Perfection", - "resources": ["Stone", "Cold Iron", "Coal", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [10.2471, 46.28] - }, - "properties": { - "name": "Ookzloowliw", - "realm_idx": 6533, - "order": "The Order of Titans", - "resources": ["Copper", "Stone", "Deep Crystal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.6471, -35.22] - }, - "properties": { - "name": "Pimkinsontin", - "realm_idx": 6534, - "order": "The Order of Power", - "resources": ["Copper", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.7801, 26.3004] - }, - "properties": { - "name": "des Seddot", - "realm_idx": 6535, - "order": "The Order of Rage", - "resources": ["Stone", "Cold Iron", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.2687, 13.7325] - }, - "properties": { - "name": "Pej Sojltojl", - "realm_idx": 6536, - "order": "The Order of Fury", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.0471, -6.92] - }, - "properties": { - "name": "Hihproh", - "realm_idx": 6537, - "order": "The Order of Power", - "resources": ["Stone", "Gold", "Wood", "Ironwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.8801, 48.5004] - }, - "properties": { - "name": "P\u00fcnp\u00fcnm\u00f6n", - "realm_idx": 6538, - "order": "The Order of Anger", - "resources": ["Stone", "Diamonds", "Wood", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.9471, 43.68] - }, - "properties": { - "name": "Zrimdumch\u00e9n", - "realm_idx": 6539, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.1801, 26.8004] - }, - "properties": { - "name": "Pessemsos", - "realm_idx": 6540, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.68, -12.3997] - }, - "properties": { - "name": "Monon", - "realm_idx": 6541, - "order": "The Order of Detection", - "resources": ["Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.98, 5.1003] - }, - "properties": { - "name": "Qinnwiq", - "realm_idx": 6542, - "order": "The Order of Detection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.7471, -11.72] - }, - "properties": { - "name": "Nenmenmam", - "realm_idx": 6543, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.3801, 30.2004] - }, - "properties": { - "name": "Ysmralsrik", - "realm_idx": 6544, - "order": "The Order of Anger", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.9564, -17.823] - }, - "properties": { - "name": "Etmelkepkon", - "realm_idx": 6545, - "order": "The Order of Perfection", - "resources": ["Wood", "Diamonds", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.1471, 40.48] - }, - "properties": { - "name": "Susmush", - "realm_idx": 6546, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.4769, -6.1059] - }, - "properties": { - "name": "Num-Ulnnup", - "realm_idx": 6547, - "order": "The Order of Detection", - "resources": ["Wood", "Stone", "Ironwood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.3529, 53.98] - }, - "properties": { - "name": "Su\u00edsu\u00edri\u00edn\u00ed\u00e1", - "realm_idx": 6548, - "order": "The Order of Fury", - "resources": ["True Ice", "Wood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-131.68, 1.0003] - }, - "properties": { - "name": "Urbl\u00fal", - "realm_idx": 6549, - "order": "The Order of Detection", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.68, -50.8996] - }, - "properties": { - "name": "pult-Mopmop", - "realm_idx": 6550, - "order": "The Order of the Fox", - "resources": ["Gold", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.0092, 25.411] - }, - "properties": { - "name": "se\u017e La\u017ea\u0161", - "realm_idx": 6551, - "order": "The Order of Fury", - "resources": ["Wood", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.38, 20.5003] - }, - "properties": { - "name": "Arurusilar", - "realm_idx": 6552, - "order": "The Order of Detection", - "resources": ["Wood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.08, -1.1997] - }, - "properties": { - "name": "Ouoa-Juu", - "realm_idx": 6553, - "order": "The Order of Detection", - "resources": ["Wood", "Coal", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.6801, 37.4004] - }, - "properties": { - "name": "kuk Pek", - "realm_idx": 6554, - "order": "The Order of Anger", - "resources": ["Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.7471, 28.48] - }, - "properties": { - "name": "Maarkiym", - "realm_idx": 6555, - "order": "The Order of Titans", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.6801, 23.3004] - }, - "properties": { - "name": "Qon\u00fap", - "realm_idx": 6556, - "order": "The Order of Rage", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.1704, 9.6513] - }, - "properties": { - "name": "Nulalul", - "realm_idx": 6557, - "order": "The Order of Protection", - "resources": ["Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.4471, 48.48] - }, - "properties": { - "name": "\u00cfh\u00e4k\u00eft\u00efm\u00e4k", - "realm_idx": 6558, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.9801, -47.2996] - }, - "properties": { - "name": "Melnmolulm", - "realm_idx": 6559, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.1471, 38.18] - }, - "properties": { - "name": "tau Piu", - "realm_idx": 6560, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.28, -7.6997] - }, - "properties": { - "name": "Notchogobolu", - "realm_idx": 6561, - "order": "The Order of Detection", - "resources": ["Coal", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.3154, 17.1572] - }, - "properties": { - "name": "Sumiminu", - "realm_idx": 6562, - "order": "The Order of Fury", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.88, -46.0996] - }, - "properties": { - "name": "T\u00f4tvitvrey", - "realm_idx": 6563, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Wood", "Hartwood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.1471, 6.88] - }, - "properties": { - "name": "Emotininupem", - "realm_idx": 6564, - "order": "The Order of Brilliance", - "resources": ["Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.98, 5.3003] - }, - "properties": { - "name": "Yayak", - "realm_idx": 6565, - "order": "The Order of Detection", - "resources": ["Deep Crystal", "Gold", "Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.4471, 14.28] - }, - "properties": { - "name": "Ilitusup", - "realm_idx": 6566, - "order": "The Order of Protection", - "resources": ["Copper", "Stone", "Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.7471, 34.48] - }, - "properties": { - "name": "Huk\u00eanu", - "realm_idx": 6567, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.8471, 5.88] - }, - "properties": { - "name": "Keohaek", - "realm_idx": 6568, - "order": "The Order of Titans", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.18, 2.3003] - }, - "properties": { - "name": "Noukluontuel", - "realm_idx": 6569, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Wood", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.3471, -14.12] - }, - "properties": { - "name": "E Debo", - "realm_idx": 6570, - "order": "The Order of Giants", - "resources": ["Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.98, 13.6003] - }, - "properties": { - "name": "Ittardunit", - "realm_idx": 6571, - "order": "The Order of Detection", - "resources": ["Coal", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.4471, -16.22] - }, - "properties": { - "name": "Al\u2018 Pirk", - "realm_idx": 6572, - "order": "The Order of Power", - "resources": ["Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.5529, -31.72] - }, - "properties": { - "name": "Lwila ul Emi", - "realm_idx": 6573, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.0471, 46.68] - }, - "properties": { - "name": "Dy\u00e1msy\u00e1m\u00e1sh", - "realm_idx": 6574, - "order": "The Order of Skill", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.1471, -33.72] - }, - "properties": { - "name": "Ketegken", - "realm_idx": 6575, - "order": "The Order of Power", - "resources": ["Coal", "Copper", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.8471, 5.98] - }, - "properties": { - "name": "Lun-n\u00edp-L\u00ed\u00e1l", - "realm_idx": 6576, - "order": "The Order of Brilliance", - "resources": ["Coal", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.6471, 29.68] - }, - "properties": { - "name": "Ukamukam", - "realm_idx": 6577, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.9529, 39.28] - }, - "properties": { - "name": "N\u00edbuk", - "realm_idx": 6578, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.08, -44.8996] - }, - "properties": { - "name": "Kitsr\u00e4gsr\u00e4g", - "realm_idx": 6579, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.38, 14.1003] - }, - "properties": { - "name": "ki Mihiminu", - "realm_idx": 6580, - "order": "The Order of Detection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.0801, 48.5004] - }, - "properties": { - "name": "Pultoltnol", - "realm_idx": 6581, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.1471, -49.62] - }, - "properties": { - "name": "Ukakolukam", - "realm_idx": 6582, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.8352, -24.4049] - }, - "properties": { - "name": "N\u00e1r\u00e9chun", - "realm_idx": 6583, - "order": "The Order of Perfection", - "resources": ["Silver", "Copper", "Wood", "Diamonds", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.5801, -35.6996] - }, - "properties": { - "name": "Munkunhaan", - "realm_idx": 6584, - "order": "The Order of the Twins", - "resources": ["Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.28, 12.3003] - }, - "properties": { - "name": "Poka as Okne", - "realm_idx": 6585, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.2471, 4.18] - }, - "properties": { - "name": "Sanipinpin", - "realm_idx": 6586, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.1471, 20.78] - }, - "properties": { - "name": "tin-Pin", - "realm_idx": 6587, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.5471, 1.08] - }, - "properties": { - "name": "ko \u2018em\u2018emme\u2018", - "realm_idx": 6588, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.88, -51.6996] - }, - "properties": { - "name": "Kankanpenun", - "realm_idx": 6589, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.28, 18.3003] - }, - "properties": { - "name": "Murtolg", - "realm_idx": 6590, - "order": "The Order of Fury", - "resources": ["Obsidian", "Wood", "Ruby", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [69.0471, 49.28] - }, - "properties": { - "name": "En-Om", - "realm_idx": 6591, - "order": "The Order of Skill", - "resources": ["Stone", "True Ice", "Gold", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.58, 17.0003] - }, - "properties": { - "name": "M\u00e9lslel", - "realm_idx": 6592, - "order": "The Order of Detection", - "resources": ["Copper", "Cold Iron", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.08, 12.1003] - }, - "properties": { - "name": "Uchagustan", - "realm_idx": 6593, - "order": "The Order of Fury", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.38, -23.4997] - }, - "properties": { - "name": "Kujm\u010du\u017eiwk", - "realm_idx": 6594, - "order": "The Order of Reflection", - "resources": ["Stone", "Silver", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.3801, -29.1996] - }, - "properties": { - "name": "Ruchusot", - "realm_idx": 6595, - "order": "The Order of the Twins", - "resources": ["Copper", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.78, -21.3997] - }, - "properties": { - "name": "Snegnomsnad", - "realm_idx": 6596, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.7801, 49.8004] - }, - "properties": { - "name": "Tuzluz", - "realm_idx": 6597, - "order": "The Order of Anger", - "resources": ["Copper", "Wood", "Stone", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.177, -18.7539] - }, - "properties": { - "name": "K\u00f6nqlon\u0161r\u00f6d", - "realm_idx": 6598, - "order": "The Order of Protection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.0546, -16.4437] - }, - "properties": { - "name": "Powppauyp", - "realm_idx": 6599, - "order": "The Order of Perfection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.9529, 0.48] - }, - "properties": { - "name": "R\u00e2rm\u00e2mr\u00e2r", - "realm_idx": 6600, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.3849, 11.4403] - }, - "properties": { - "name": "Kipom Pomki", - "realm_idx": 6601, - "order": "The Order of Protection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.58, -42.5996] - }, - "properties": { - "name": "Imot\u00e1mat", - "realm_idx": 6602, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Stone", "Cold Iron", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.0471, -29.62] - }, - "properties": { - "name": "Nr\u00efnl\u00e4t", - "realm_idx": 6603, - "order": "The Order of Giants", - "resources": ["Obsidian", "Cold Iron", "Wood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.1471, 21.58] - }, - "properties": { - "name": "R\u00edzibir\u00ed", - "realm_idx": 6604, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.88, 8.6003] - }, - "properties": { - "name": "Unam\u00fasem", - "realm_idx": 6605, - "order": "The Order of Detection", - "resources": [ - "Stone", - "Wood", - "Copper", - "Ethereal Silica", - "Silver", - "Gold" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.2471, 8.78] - }, - "properties": { - "name": "Guzunwun", - "realm_idx": 6606, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [125.1432, -18.477] - }, - "properties": { - "name": "Shirn", - "realm_idx": 6607, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.9529, 25.08] - }, - "properties": { - "name": "Ad\u00ea-\u00ca\u00eanr\u00ean", - "realm_idx": 6608, - "order": "The Order of Vitriol", - "resources": ["Diamonds", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.6471, 25.08] - }, - "properties": { - "name": "Kusbiiktuk", - "realm_idx": 6609, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.58, -55.3996] - }, - "properties": { - "name": "Adugopotsch", - "realm_idx": 6610, - "order": "The Order of the Fox", - "resources": ["Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.0471, 25.38] - }, - "properties": { - "name": "Kehnat", - "realm_idx": 6611, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Ironwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.6471, 19.28] - }, - "properties": { - "name": "Buzhdeek", - "realm_idx": 6612, - "order": "The Order of Brilliance", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.3529, 39.68] - }, - "properties": { - "name": "Udlegonug", - "realm_idx": 6613, - "order": "The Order of Vitriol", - "resources": ["Silver", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.2529, 3.48] - }, - "properties": { - "name": "Iliililal", - "realm_idx": 6614, - "order": "The Order of Power", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.3471, 9.38] - }, - "properties": { - "name": "N\u00e1yht\u00e9yt", - "realm_idx": 6615, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.3471, 7.58] - }, - "properties": { - "name": "\u00d4n\u00f4nguv", - "realm_idx": 6616, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.6529, -9.92] - }, - "properties": { - "name": "L\u00f3ngsemsem", - "realm_idx": 6617, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.1471, -17.22] - }, - "properties": { - "name": "Bi mun Mim", - "realm_idx": 6618, - "order": "The Order of Giants", - "resources": ["Hartwood", "Copper", "Wood", "Silver", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.2227, -14.7522] - }, - "properties": { - "name": "Nuune", - "realm_idx": 6619, - "order": "The Order of Rage", - "resources": ["Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.98, 18.6003] - }, - "properties": { - "name": "Sozhtui", - "realm_idx": 6620, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Silver", "Copper", "Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.2396, -20.5256] - }, - "properties": { - "name": "Nwnamhe", - "realm_idx": 6621, - "order": "The Order of Protection", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.1471, 23.68] - }, - "properties": { - "name": "Mezadoo Zaza", - "realm_idx": 6622, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.78, -24.7997] - }, - "properties": { - "name": "Usdu\u017e Do\u017e", - "realm_idx": 6623, - "order": "The Order of Reflection", - "resources": ["Coal", "Copper", "Wood", "Gold", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.3471, 18.68] - }, - "properties": { - "name": "Tonupo", - "realm_idx": 6624, - "order": "The Order of Skill", - "resources": ["Ironwood", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.7529, 27.28] - }, - "properties": { - "name": "Miykmiykpook", - "realm_idx": 6625, - "order": "The Order of Vitriol", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [71.2471, -27.12] - }, - "properties": { - "name": "Idimashim", - "realm_idx": 6626, - "order": "The Order of Perfection", - "resources": ["Wood", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.8471, -15.92] - }, - "properties": { - "name": "Kursunut", - "realm_idx": 6627, - "order": "The Order of Perfection", - "resources": ["Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.9879, -12.9379] - }, - "properties": { - "name": "Muopuo", - "realm_idx": 6628, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Diamonds", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-44.7529, 6.28] - }, - "properties": { - "name": "Sewokra", - "realm_idx": 6629, - "order": "The Order of Vitriol", - "resources": [ - "Alchemical Silver", - "Cold Iron", - "Coal", - "Copper", - "Wood", - "Twilight Quartz" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.4471, -16.92] - }, - "properties": { - "name": "Modnud", - "realm_idx": 6630, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Diamonds", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.3284, -11.1013] - }, - "properties": { - "name": "Qunumen", - "realm_idx": 6631, - "order": "The Order of Perfection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.9529, 23.18] - }, - "properties": { - "name": "Om\u017eesso\u010d", - "realm_idx": 6632, - "order": "The Order of Vitriol", - "resources": ["Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [44.9471, -37.52] - }, - "properties": { - "name": "Puno Tol", - "realm_idx": 6633, - "order": "The Order of Giants", - "resources": ["Obsidian", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.1816, -23.9177] - }, - "properties": { - "name": "Zenkemspem", - "realm_idx": 6634, - "order": "The Order of Protection", - "resources": ["Ignium", "Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.9471, -13.02] - }, - "properties": { - "name": "Besessesszhu", - "realm_idx": 6635, - "order": "The Order of Power", - "resources": ["Silver", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.5471, 49.68] - }, - "properties": { - "name": "Siginestit", - "realm_idx": 6636, - "order": "The Order of Skill", - "resources": ["Coal", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.6661, -20.28] - }, - "properties": { - "name": "Bazbazt\u00e1bp\u00e1m", - "realm_idx": 6637, - "order": "The Order of Perfection", - "resources": [ - "Coal", - "Ironwood", - "Obsidian", - "Mithral", - "Diamonds", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.6471, -0.02] - }, - "properties": { - "name": "Ilnilnirs", - "realm_idx": 6638, - "order": "The Order of Power", - "resources": ["Ruby", "Stone", "Coal", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.1471, 0.58] - }, - "properties": { - "name": "Kimkummi", - "realm_idx": 6639, - "order": "The Order of Power", - "resources": ["Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.1471, 11.78] - }, - "properties": { - "name": "Temi-kem-Ned", - "realm_idx": 6640, - "order": "The Order of Brilliance", - "resources": ["Coal", "Stone", "Wood", "Obsidian", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.1471, 41.68] - }, - "properties": { - "name": "Wakwulnul", - "realm_idx": 6641, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.9471, -42.52] - }, - "properties": { - "name": "Ri\u0161po\u0161luzmus", - "realm_idx": 6642, - "order": "The Order of Giants", - "resources": ["Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.3471, 38.58] - }, - "properties": { - "name": "Pussok", - "realm_idx": 6643, - "order": "The Order of Skill", - "resources": ["Coal", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.0801, -33.6996] - }, - "properties": { - "name": "Jem\u017ele\u017egeg", - "realm_idx": 6644, - "order": "The Order of the Twins", - "resources": ["Stone", "Deep Crystal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.58, 21.3003] - }, - "properties": { - "name": "Ulchnor", - "realm_idx": 6645, - "order": "The Order of Detection", - "resources": ["Wood", "Gold", "Stone", "Diamonds", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.6471, 52.68] - }, - "properties": { - "name": "Tosiit", - "realm_idx": 6646, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.48, -41.5996] - }, - "properties": { - "name": "Pet Momok", - "realm_idx": 6647, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.3529, -5.22] - }, - "properties": { - "name": "Kangnunpa", - "realm_idx": 6648, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.801, -22.7049] - }, - "properties": { - "name": "Null\u00e1s\u00e1", - "realm_idx": 6649, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.18, -36.2997] - }, - "properties": { - "name": "um Aka", - "realm_idx": 6650, - "order": "The Order of the Fox", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.1471, 26.08] - }, - "properties": { - "name": "Tokkuk", - "realm_idx": 6651, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.8801, 30.1004] - }, - "properties": { - "name": "Nolilaluta", - "realm_idx": 6652, - "order": "The Order of Anger", - "resources": ["Copper", "Stone", "Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.1471, 30.28] - }, - "properties": { - "name": "Ilbilnilbild", - "realm_idx": 6653, - "order": "The Order of Skill", - "resources": ["Wood", "Cold Iron", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.4801, 46.2004] - }, - "properties": { - "name": "Apapnimmukak", - "realm_idx": 6654, - "order": "The Order of Anger", - "resources": ["Ironwood", "Wood", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.5471, 31.58] - }, - "properties": { - "name": "Disnen", - "realm_idx": 6655, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.2471, -26.22] - }, - "properties": { - "name": "Wunno", - "realm_idx": 6656, - "order": "The Order of Perfection", - "resources": ["Wood", "Ruby", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.9801, -33.9996] - }, - "properties": { - "name": "Mulmmulm", - "realm_idx": 6657, - "order": "The Order of the Twins", - "resources": [ - "Copper", - "Wood", - "Cold Iron", - "Stone", - "Hartwood", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.8529, 13.48] - }, - "properties": { - "name": "Giegwauazh", - "realm_idx": 6658, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.0801, 4.4004] - }, - "properties": { - "name": "Tummemmach", - "realm_idx": 6659, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.1805, 45.9352] - }, - "properties": { - "name": "Nostolal", - "realm_idx": 6660, - "order": "The Order of Anger", - "resources": ["Stone", "Coal", "Wood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.2529, -19.52] - }, - "properties": { - "name": "Huknushuk", - "realm_idx": 6661, - "order": "The Order of Power", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.2471, -17.92] - }, - "properties": { - "name": "Sn\u00e4nt\u00fcn", - "realm_idx": 6662, - "order": "The Order of Giants", - "resources": ["Copper", "Wood", "Alchemical Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.78, -39.0997] - }, - "properties": { - "name": "Tek Dikkad", - "realm_idx": 6663, - "order": "The Order of the Fox", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.8801, 7.4004] - }, - "properties": { - "name": "Kautnuah", - "realm_idx": 6664, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.8672, 41.4995] - }, - "properties": { - "name": "Oememtu", - "realm_idx": 6665, - "order": "The Order of Fury", - "resources": ["Silver", "Wood", "Twilight Quartz", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.5801, -15.5996] - }, - "properties": { - "name": "Ahit\u00efs", - "realm_idx": 6666, - "order": "The Order of Rage", - "resources": ["Ironwood", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.0471, -20.42] - }, - "properties": { - "name": "U-la-Summel", - "realm_idx": 6667, - "order": "The Order of Giants", - "resources": ["Stone", "Diamonds", "Wood", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.38, -6.3997] - }, - "properties": { - "name": "\u2018emi\u2018e\u2018e\u2018en", - "realm_idx": 6668, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.28, -4.1997] - }, - "properties": { - "name": "Sapukup\u00e1", - "realm_idx": 6669, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.78, 32.1003] - }, - "properties": { - "name": "Lololel", - "realm_idx": 6670, - "order": "The Order of Fury", - "resources": ["Stone", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.1529, 56.48] - }, - "properties": { - "name": "uw Huhwuw", - "realm_idx": 6671, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.9471, 18.38] - }, - "properties": { - "name": "Ewunun", - "realm_idx": 6672, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.1471, 8.68] - }, - "properties": { - "name": "Soslok", - "realm_idx": 6673, - "order": "The Order of Brilliance", - "resources": ["Copper", "Wood", "Stone", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-44.6529, 5.98] - }, - "properties": { - "name": "Kiogkuo", - "realm_idx": 6674, - "order": "The Order of Vitriol", - "resources": ["Wood", "Ironwood", "Copper", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.5471, 12.48] - }, - "properties": { - "name": "Kooaurrauum", - "realm_idx": 6675, - "order": "The Order of Protection", - "resources": ["Gold", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.3891, -23.9343] - }, - "properties": { - "name": "Misni", - "realm_idx": 6676, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.2471, 40.98] - }, - "properties": { - "name": "Chuchchuch", - "realm_idx": 6677, - "order": "The Order of Skill", - "resources": ["Cold Iron", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.48, -25.6997] - }, - "properties": { - "name": "\u0160ko\u017e\u0161\u010daz", - "realm_idx": 6678, - "order": "The Order of Detection", - "resources": ["Stone", "Coal", "Copper", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.9394, 3.0847] - }, - "properties": { - "name": "Anip Mirkal", - "realm_idx": 6679, - "order": "The Order of Reflection", - "resources": ["Coal", "Copper", "Silver", "Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.8578, 40.1675] - }, - "properties": { - "name": "Koselkol", - "realm_idx": 6680, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Copper", "Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.6801, 11.1004] - }, - "properties": { - "name": "Anbam", - "realm_idx": 6681, - "order": "The Order of Rage", - "resources": ["Diamonds", "Silver", "Sapphire", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.6529, -19.92] - }, - "properties": { - "name": "Ekgu Zae", - "realm_idx": 6682, - "order": "The Order of Power", - "resources": ["Coal", "Copper", "Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.7801, -13.0996] - }, - "properties": { - "name": "Nonson", - "realm_idx": 6683, - "order": "The Order of Rage", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.5801, -14.7996] - }, - "properties": { - "name": "Rilzo", - "realm_idx": 6684, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.8801, 26.7004] - }, - "properties": { - "name": "Lonotototom", - "realm_idx": 6685, - "order": "The Order of Rage", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.3527, 44.9801] - }, - "properties": { - "name": "\u00fan S\u00f3n B\u00e1n", - "realm_idx": 6686, - "order": "The Order of the Twins", - "resources": ["Hartwood", "Gold", "Stone", "True Ice", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-84.8801, 28.8004] - }, - "properties": { - "name": "Liuk u Pui", - "realm_idx": 6687, - "order": "The Order of Anger", - "resources": ["Dragonhide", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.372, -21.4764] - }, - "properties": { - "name": "Mumpin", - "realm_idx": 6688, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Silver", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.4471, 50.28] - }, - "properties": { - "name": "Esmrelrep", - "realm_idx": 6689, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.68, -20.0997] - }, - "properties": { - "name": "\u2018okhol", - "realm_idx": 6690, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.7471, 8.68] - }, - "properties": { - "name": "zur Suzit", - "realm_idx": 6691, - "order": "The Order of Protection", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.4529, 18.68] - }, - "properties": { - "name": "Luklokla", - "realm_idx": 6692, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.2471, 16.28] - }, - "properties": { - "name": "Sanukomkanan", - "realm_idx": 6693, - "order": "The Order of Titans", - "resources": ["Silver", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.4529, 23.18] - }, - "properties": { - "name": "Nono Kudomo", - "realm_idx": 6694, - "order": "The Order of Vitriol", - "resources": ["Coal", "Ironwood", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.3471, 29.28] - }, - "properties": { - "name": "suk-Peknluk", - "realm_idx": 6695, - "order": "The Order of Titans", - "resources": ["Obsidian", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.6529, 16.78] - }, - "properties": { - "name": "\u00efh Ulul", - "realm_idx": 6696, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Wood", "Coal", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.8801, 40.2004] - }, - "properties": { - "name": "Enitet", - "realm_idx": 6697, - "order": "The Order of Anger", - "resources": ["Wood", "Stone", "Obsidian", "Sapphire", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.0801, 4.7004] - }, - "properties": { - "name": "Nuhizhnu", - "realm_idx": 6698, - "order": "The Order of Rage", - "resources": ["Obsidian", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.18, 5.8003] - }, - "properties": { - "name": "k\u00e1n-N\u00ed\u00e1np\u00e9\u00e1k", - "realm_idx": 6699, - "order": "The Order of Detection", - "resources": ["Wood", "Coal", "Stone", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.5471, -26.12] - }, - "properties": { - "name": "Ojsojssejn", - "realm_idx": 6700, - "order": "The Order of Perfection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.8471, 16.88] - }, - "properties": { - "name": "T\u00e2ynniyniy", - "realm_idx": 6701, - "order": "The Order of Skill", - "resources": ["Wood", "Copper", "Ironwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.9529, 10.48] - }, - "properties": { - "name": "Ossodkolgh", - "realm_idx": 6702, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.0471, -12.62] - }, - "properties": { - "name": "Mi\u00e9m\u00e9a", - "realm_idx": 6703, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Gold", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.2471, 31.68] - }, - "properties": { - "name": "Nromnrom", - "realm_idx": 6704, - "order": "The Order of Titans", - "resources": ["Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.8976, -16.1153] - }, - "properties": { - "name": "lan Nilkak", - "realm_idx": 6705, - "order": "The Order of Protection", - "resources": ["Ironwood", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2801, -45.6996] - }, - "properties": { - "name": "Kramsroskak", - "realm_idx": 6706, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.48, -13.5997] - }, - "properties": { - "name": "mw Tosetusa", - "realm_idx": 6707, - "order": "The Order of Detection", - "resources": ["Copper", "Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.98, 11.8003] - }, - "properties": { - "name": "Hikummim-Upu", - "realm_idx": 6708, - "order": "The Order of Detection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.48, -5.8997] - }, - "properties": { - "name": "ok Tesnikik", - "realm_idx": 6709, - "order": "The Order of Detection", - "resources": ["Coal", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.7529, 6.28] - }, - "properties": { - "name": "Shomnonumdon", - "realm_idx": 6710, - "order": "The Order of Titans", - "resources": ["Silver", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.7471, -16.52] - }, - "properties": { - "name": "Utud Aud", - "realm_idx": 6711, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.9471, -26.42] - }, - "properties": { - "name": "ut Umumus", - "realm_idx": 6712, - "order": "The Order of Giants", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.5529, -10.42] - }, - "properties": { - "name": "Amklukep", - "realm_idx": 6713, - "order": "The Order of the Fox", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.4891, 40.8809] - }, - "properties": { - "name": "Ikk\u00e1sus", - "realm_idx": 6714, - "order": "The Order of Anger", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.9801, 16.1004] - }, - "properties": { - "name": "Yenggi", - "realm_idx": 6715, - "order": "The Order of Rage", - "resources": ["Copper", "Obsidian", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.08, -60.6996] - }, - "properties": { - "name": "bik \u00c1s", - "realm_idx": 6716, - "order": "The Order of the Fox", - "resources": ["Stone", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.7471, 33.38] - }, - "properties": { - "name": "Lozhisen", - "realm_idx": 6717, - "order": "The Order of Titans", - "resources": ["Coal", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.3471, 8.78] - }, - "properties": { - "name": "N\u00e1k p\u00fak H\u00fas", - "realm_idx": 6718, - "order": "The Order of Titans", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.4471, 14.38] - }, - "properties": { - "name": "Tukitko", - "realm_idx": 6719, - "order": "The Order of Titans", - "resources": [ - "Wood", - "Silver", - "Cold Iron", - "Coal", - "Diamonds", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.48, -50.7996] - }, - "properties": { - "name": "Nomnaaekken", - "realm_idx": 6720, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.4801, 50.3004] - }, - "properties": { - "name": "Gugklugjluk", - "realm_idx": 6721, - "order": "The Order of Anger", - "resources": ["Coal", "Obsidian", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.2529, -6.12] - }, - "properties": { - "name": "Spimryn", - "realm_idx": 6722, - "order": "The Order of the Fox", - "resources": ["Ruby", "Coal", "Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.88, 31.8003] - }, - "properties": { - "name": "Uau-ei-Sies", - "realm_idx": 6723, - "order": "The Order of Reflection", - "resources": ["Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.18, 9.1003] - }, - "properties": { - "name": "L\u00e9lkilnolp", - "realm_idx": 6724, - "order": "The Order of Detection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.2471, 44.08] - }, - "properties": { - "name": "Stespoknune", - "realm_idx": 6725, - "order": "The Order of Enlightenment", - "resources": ["Ruby", "Hartwood", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.3801, 40.9004] - }, - "properties": { - "name": "Olnnum", - "realm_idx": 6726, - "order": "The Order of Anger", - "resources": ["Gold", "Ignium", "Copper", "Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.9471, -13.22] - }, - "properties": { - "name": "Narmarn-Marp", - "realm_idx": 6727, - "order": "The Order of Perfection", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.8471, 49.58] - }, - "properties": { - "name": "Inunip", - "realm_idx": 6728, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.5471, 15.88] - }, - "properties": { - "name": "Skiebchub", - "realm_idx": 6729, - "order": "The Order of Brilliance", - "resources": [ - "Diamonds", - "Coal", - "Copper", - "Stone", - "Cold Iron", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.78, -32.2997] - }, - "properties": { - "name": "Tramm\u00fcn", - "realm_idx": 6730, - "order": "The Order of Detection", - "resources": ["Hartwood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.8471, -12.92] - }, - "properties": { - "name": "T\u00efn T\u00efnj\u00e4n", - "realm_idx": 6731, - "order": "The Order of Perfection", - "resources": ["Copper", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.6801, -19.3996] - }, - "properties": { - "name": "Ghumghunghin", - "realm_idx": 6732, - "order": "The Order of the Twins", - "resources": ["Silver", "Coal", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.2471, -27.42] - }, - "properties": { - "name": "n\u00ef-Mas\u00e4", - "realm_idx": 6733, - "order": "The Order of Giants", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.5471, 20.18] - }, - "properties": { - "name": "Lukrulkro\u2018", - "realm_idx": 6734, - "order": "The Order of Brilliance", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.0529, 24.98] - }, - "properties": { - "name": "Loosikaushu", - "realm_idx": 6735, - "order": "The Order of Vitriol", - "resources": ["Copper", "Wood", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.5529, 49.38] - }, - "properties": { - "name": "Kukpok", - "realm_idx": 6736, - "order": "The Order of Fury", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.9471, -37.22] - }, - "properties": { - "name": "Nepin", - "realm_idx": 6737, - "order": "The Order of Giants", - "resources": ["Obsidian", "Coal", "Copper", "Ironwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.7606, -18.8576] - }, - "properties": { - "name": "Kiykiypach", - "realm_idx": 6738, - "order": "The Order of Protection", - "resources": ["Stone", "Copper", "Silver", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.8471, 16.08] - }, - "properties": { - "name": "Tritklet Nek", - "realm_idx": 6739, - "order": "The Order of Titans", - "resources": [ - "Wood", - "Gold", - "Silver", - "Deep Crystal", - "Cold Iron", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.2471, 23.88] - }, - "properties": { - "name": "is Oqew", - "realm_idx": 6740, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.1554, 11.4097] - }, - "properties": { - "name": "K\u00ebnka\u00efs", - "realm_idx": 6741, - "order": "The Order of Protection", - "resources": ["Silver", "Wood", "Ruby", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.0801, 48.9004] - }, - "properties": { - "name": "S\u00fas\u00faati", - "realm_idx": 6742, - "order": "The Order of Anger", - "resources": ["Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.5841, 10.582] - }, - "properties": { - "name": "\u00dcqowuluq", - "realm_idx": 6743, - "order": "The Order of Protection", - "resources": ["Dragonhide"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.7781, 41.4525] - }, - "properties": { - "name": "S\u00edml\u00edn Men", - "realm_idx": 6744, - "order": "The Order of Fury", - "resources": ["Copper", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.7801, -19.1996] - }, - "properties": { - "name": "Pitmunulpit", - "realm_idx": 6745, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.8801, 38.2004] - }, - "properties": { - "name": "Ngu-Versu", - "realm_idx": 6746, - "order": "The Order of Anger", - "resources": ["Wood", "Silver", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.5154, 16.9572] - }, - "properties": { - "name": "Loltolt", - "realm_idx": 6747, - "order": "The Order of Fury", - "resources": ["Stone", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.5471, 9.88] - }, - "properties": { - "name": "saus Nunu", - "realm_idx": 6748, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.6471, 11.18] - }, - "properties": { - "name": "Kuekpuen", - "realm_idx": 6749, - "order": "The Order of Titans", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.28, -15.2997] - }, - "properties": { - "name": "mul-Talhum", - "realm_idx": 6750, - "order": "The Order of Reflection", - "resources": ["Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.1471, 30.58] - }, - "properties": { - "name": "Les-Kikayuki", - "realm_idx": 6751, - "order": "The Order of Titans", - "resources": ["Stone", "Silver", "Wood", "Sapphire", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.0471, -18.92] - }, - "properties": { - "name": "Pakuknirk", - "realm_idx": 6752, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Wood", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.0801, -31.8996] - }, - "properties": { - "name": "Ipakom", - "realm_idx": 6753, - "order": "The Order of the Twins", - "resources": ["Gold", "Obsidian", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.4529, 37.48] - }, - "properties": { - "name": "Sdi\u017esrasu\u0161", - "realm_idx": 6754, - "order": "The Order of Titans", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.9471, -32.72] - }, - "properties": { - "name": "won-Panu", - "realm_idx": 6755, - "order": "The Order of Giants", - "resources": ["Wood", "Copper", "Ironwood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.68, -3.2997] - }, - "properties": { - "name": "At\u00edlusal", - "realm_idx": 6756, - "order": "The Order of Detection", - "resources": ["Copper", "Ruby", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-131.48, -6.7997] - }, - "properties": { - "name": "Tunitamitu", - "realm_idx": 6757, - "order": "The Order of Detection", - "resources": ["Coal", "Obsidian", "Stone", "Wood", "Copper", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-77.6801, -16.0996] - }, - "properties": { - "name": "Sl\u00f3kpuk", - "realm_idx": 6758, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.4471, 6.18] - }, - "properties": { - "name": "Hun\u2018um", - "realm_idx": 6759, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.2529, 26.58] - }, - "properties": { - "name": "Supsdul", - "realm_idx": 6760, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-26.6529, 43.88] - }, - "properties": { - "name": "Melkon", - "realm_idx": 6761, - "order": "The Order of Vitriol", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.1529, 9.58] - }, - "properties": { - "name": "Iis ni Ika", - "realm_idx": 6762, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.5529, 18.58] - }, - "properties": { - "name": "Upululizhul", - "realm_idx": 6763, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.98, -49.0997] - }, - "properties": { - "name": "Tunan Su", - "realm_idx": 6764, - "order": "The Order of the Fox", - "resources": ["Wood", "Dragonhide", "Ethereal Silica", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.1026, -12.6428] - }, - "properties": { - "name": "Shkukmuk", - "realm_idx": 6765, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.8471, 19.88] - }, - "properties": { - "name": "Tipiinetiku", - "realm_idx": 6766, - "order": "The Order of Skill", - "resources": ["Ironwood", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.9471, 7.28] - }, - "properties": { - "name": "Lorm\u2018a", - "realm_idx": 6767, - "order": "The Order of Protection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.0512, -18.4727] - }, - "properties": { - "name": "S\u00efikkeinsa\u00eb", - "realm_idx": 6768, - "order": "The Order of Protection", - "resources": ["Wood", "Gold", "Coal", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.5471, 46.98] - }, - "properties": { - "name": "Shpub", - "realm_idx": 6769, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Copper", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.5471, 44.88] - }, - "properties": { - "name": "Elhmonulk", - "realm_idx": 6770, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.7968, -14.1757] - }, - "properties": { - "name": "Mumumqunumum", - "realm_idx": 6771, - "order": "The Order of Rage", - "resources": ["Wood", "Obsidian", "Ironwood", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.8801, 42.8004] - }, - "properties": { - "name": "Krinmin Mrun", - "realm_idx": 6772, - "order": "The Order of Anger", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.08, 28.3003] - }, - "properties": { - "name": "Ihigubu\u010d", - "realm_idx": 6773, - "order": "The Order of Fury", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.18, -7.6997] - }, - "properties": { - "name": "Kommrikam", - "realm_idx": 6774, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.2801, 6.8004] - }, - "properties": { - "name": "Kiknet", - "realm_idx": 6775, - "order": "The Order of Rage", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.2801, 20.6004] - }, - "properties": { - "name": "Ninu-la-Unil", - "realm_idx": 6776, - "order": "The Order of Rage", - "resources": ["Obsidian", "Copper", "Stone", "Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.7801, 7.1004] - }, - "properties": { - "name": "Pullom", - "realm_idx": 6777, - "order": "The Order of Rage", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.4801, 10.8004] - }, - "properties": { - "name": "En\u00e1s\u00e1l", - "realm_idx": 6778, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.8471, 18.28] - }, - "properties": { - "name": "Lakhalibone", - "realm_idx": 6779, - "order": "The Order of Brilliance", - "resources": ["Copper", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.9471, -34.42] - }, - "properties": { - "name": "Haetheip-Mue", - "realm_idx": 6780, - "order": "The Order of Giants", - "resources": ["Silver", "Stone", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.4436, 45.7383] - }, - "properties": { - "name": "Lawki\u2018kipnil", - "realm_idx": 6781, - "order": "The Order of Anger", - "resources": ["Ironwood", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [107.8471, 41.88] - }, - "properties": { - "name": "Zlutbl\u00fcs", - "realm_idx": 6782, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.8831, 2.9503] - }, - "properties": { - "name": "Iqatikoz", - "realm_idx": 6783, - "order": "The Order of Reflection", - "resources": ["Coal", "Obsidian", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.3529, 47.18] - }, - "properties": { - "name": "Uses Upup", - "realm_idx": 6784, - "order": "The Order of Fury", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.8471, -5.52] - }, - "properties": { - "name": "Po\u010dzusedodo", - "realm_idx": 6785, - "order": "The Order of Giants", - "resources": ["Copper", "Ironwood", "Coal", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.0471, 8.48] - }, - "properties": { - "name": "Tiokai", - "realm_idx": 6786, - "order": "The Order of Brilliance", - "resources": ["Wood", "Sapphire", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.6471, -40.42] - }, - "properties": { - "name": "\u00d3s\u00f3kt\u00e1n", - "realm_idx": 6787, - "order": "The Order of Giants", - "resources": ["Coal", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [17.3471, 19.98] - }, - "properties": { - "name": "mik Uttan", - "realm_idx": 6788, - "order": "The Order of Titans", - "resources": ["Coal", "Adamantine", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.4471, 30.18] - }, - "properties": { - "name": "Teiedeio", - "realm_idx": 6789, - "order": "The Order of Skill", - "resources": ["Copper", "Ironwood", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-126.08, -11.4997] - }, - "properties": { - "name": "Klalkluk", - "realm_idx": 6790, - "order": "The Order of Detection", - "resources": [ - "Wood", - "Ethereal Silica", - "Copper", - "Deep Crystal", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.5471, 11.78] - }, - "properties": { - "name": "Uponeken", - "realm_idx": 6791, - "order": "The Order of Brilliance", - "resources": ["Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.58, 12.6003] - }, - "properties": { - "name": "\u017dems\u017eet", - "realm_idx": 6792, - "order": "The Order of Detection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.3529, -25.22] - }, - "properties": { - "name": "Langtum", - "realm_idx": 6793, - "order": "The Order of Power", - "resources": ["Gold", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.0471, 28.98] - }, - "properties": { - "name": "plan Nlom", - "realm_idx": 6794, - "order": "The Order of Titans", - "resources": [ - "Twilight Quartz", - "Stone", - "Hartwood", - "Ironwood", - "Wood", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.18, -51.3996] - }, - "properties": { - "name": "\u00dc-Uk\u00e4m", - "realm_idx": 6795, - "order": "The Order of the Fox", - "resources": ["Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.1801, -13.4996] - }, - "properties": { - "name": "Hwinkim", - "realm_idx": 6796, - "order": "The Order of Rage", - "resources": ["Ironwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.3471, -45.92] - }, - "properties": { - "name": "Snektosnek", - "realm_idx": 6797, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.1471, 41.18] - }, - "properties": { - "name": "Atuk Tanim", - "realm_idx": 6798, - "order": "The Order of Skill", - "resources": ["Copper", "Silver", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [10.2471, -36.82] - }, - "properties": { - "name": "Yuwramweh", - "realm_idx": 6799, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.5529, 23.98] - }, - "properties": { - "name": "\u00c1l\u00e1lok", - "realm_idx": 6800, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.7529, -23.92] - }, - "properties": { - "name": "Svunspan", - "realm_idx": 6801, - "order": "The Order of Power", - "resources": ["Stone", "Hartwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.0471, -16.22] - }, - "properties": { - "name": "H\u00edan\u00e1a", - "realm_idx": 6802, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.6529, 46.08] - }, - "properties": { - "name": "Landan", - "realm_idx": 6803, - "order": "The Order of Fury", - "resources": ["Cold Iron", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.6801, -15.7996] - }, - "properties": { - "name": "Noknoklak", - "realm_idx": 6804, - "order": "The Order of Rage", - "resources": ["Wood", "Copper", "Obsidian", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.48, -11.5997] - }, - "properties": { - "name": "\u00d3n S\u00f3pses", - "realm_idx": 6805, - "order": "The Order of Detection", - "resources": ["Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.0801, 9.2004] - }, - "properties": { - "name": "G\u00efyoba", - "realm_idx": 6806, - "order": "The Order of Rage", - "resources": ["Wood", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.0529, 22.38] - }, - "properties": { - "name": "Ridgarrid", - "realm_idx": 6807, - "order": "The Order of Vitriol", - "resources": ["Ruby", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.7471, -33.52] - }, - "properties": { - "name": "Mujkumkum", - "realm_idx": 6808, - "order": "The Order of Power", - "resources": ["Wood", "Hartwood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.9471, -40.52] - }, - "properties": { - "name": "Distak", - "realm_idx": 6809, - "order": "The Order of Giants", - "resources": ["Wood", "Ruby", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.3801, 26.1004] - }, - "properties": { - "name": "lon Kenwnwn", - "realm_idx": 6810, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.5567, -24.6268] - }, - "properties": { - "name": "\u00cflir\u00eflg", - "realm_idx": 6811, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.9529, 54.78] - }, - "properties": { - "name": "Ushuzhus", - "realm_idx": 6812, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.0438, 30.1375] - }, - "properties": { - "name": "Shzhik", - "realm_idx": 6813, - "order": "The Order of Anger", - "resources": ["Wood", "Cold Iron", "Copper", "Silver", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.68, -1.2997] - }, - "properties": { - "name": "Imtaamintan", - "realm_idx": 6814, - "order": "The Order of Reflection", - "resources": ["Coal", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [108.5848, -4.4716] - }, - "properties": { - "name": "S\u00e4nn\u00efm\u00ef", - "realm_idx": 6815, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Ironwood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.08, 10.8003] - }, - "properties": { - "name": "Mok Seykum", - "realm_idx": 6816, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Coal", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.6471, 38.38] - }, - "properties": { - "name": "Xeoraodxeo", - "realm_idx": 6817, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Diamonds", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.78, -22.4997] - }, - "properties": { - "name": "Ooniniham", - "realm_idx": 6818, - "order": "The Order of Reflection", - "resources": ["Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.5471, -13.62] - }, - "properties": { - "name": "Sepnostus", - "realm_idx": 6819, - "order": "The Order of Perfection", - "resources": ["Copper", "Ironwood", "Ethereal Silica", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.1471, 50.48] - }, - "properties": { - "name": "trit Uup", - "realm_idx": 6820, - "order": "The Order of Skill", - "resources": ["Wood", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.5471, 44.38] - }, - "properties": { - "name": "Vurivu", - "realm_idx": 6821, - "order": "The Order of Enlightenment", - "resources": ["Twilight Quartz", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.28, -50.9996] - }, - "properties": { - "name": "Tek-Im", - "realm_idx": 6822, - "order": "The Order of the Fox", - "resources": ["Stone", "Obsidian", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.18, 7.6003] - }, - "properties": { - "name": "Elelonil", - "realm_idx": 6823, - "order": "The Order of Detection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.1471, -5.92] - }, - "properties": { - "name": "Kalnik", - "realm_idx": 6824, - "order": "The Order of Power", - "resources": ["Gold", "Cold Iron", "Mithral", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.8801, -31.2996] - }, - "properties": { - "name": "Koilkoi", - "realm_idx": 6825, - "order": "The Order of the Twins", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.1471, 54.98] - }, - "properties": { - "name": "Bitchpippip", - "realm_idx": 6826, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.6471, 33.28] - }, - "properties": { - "name": "Gopgab", - "realm_idx": 6827, - "order": "The Order of Titans", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.6801, -12.2996] - }, - "properties": { - "name": "Suradunn\u00fa", - "realm_idx": 6828, - "order": "The Order of Rage", - "resources": ["Coal", "Wood", "Silver", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.1539, -35.8227] - }, - "properties": { - "name": "Namkenhumm\u00fck", - "realm_idx": 6829, - "order": "The Order of the Twins", - "resources": ["Silver", "Twilight Quartz", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.0327, -18.1144] - }, - "properties": { - "name": "Sje\u0161qowewre", - "realm_idx": 6830, - "order": "The Order of Protection", - "resources": ["Coal", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.4661, -17.4059] - }, - "properties": { - "name": "Omubuk", - "realm_idx": 6831, - "order": "The Order of Protection", - "resources": ["Silver", "Wood", "Stone", "Sapphire", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.58, 32.0003] - }, - "properties": { - "name": "Pulep", - "realm_idx": 6832, - "order": "The Order of Fury", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.4471, -35.82] - }, - "properties": { - "name": "Olulmalm", - "realm_idx": 6833, - "order": "The Order of Giants", - "resources": ["Coal", "Hartwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.6471, -16.92] - }, - "properties": { - "name": "eh Un", - "realm_idx": 6834, - "order": "The Order of Perfection", - "resources": ["Stone", "Copper", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.78, -61.2996] - }, - "properties": { - "name": "Xmumsan", - "realm_idx": 6835, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.9801, 13.1004] - }, - "properties": { - "name": "Bozazhobo", - "realm_idx": 6836, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.48, -8.7997] - }, - "properties": { - "name": "Ruma Amanipu", - "realm_idx": 6837, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Ironwood", "Stone", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.7471, -37.72] - }, - "properties": { - "name": "Schiuk", - "realm_idx": 6838, - "order": "The Order of Power", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.5674, 35.809] - }, - "properties": { - "name": "Hikini-Hazki", - "realm_idx": 6839, - "order": "The Order of Anger", - "resources": [ - "Cold Iron", - "Ironwood", - "Obsidian", - "Wood", - "Coal", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.5801, -19.3996] - }, - "properties": { - "name": "Wshamwmish", - "realm_idx": 6840, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.3471, -14.42] - }, - "properties": { - "name": "Lolswal", - "realm_idx": 6841, - "order": "The Order of Giants", - "resources": ["Alchemical Silver", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.4801, -20.6996] - }, - "properties": { - "name": "Achach", - "realm_idx": 6842, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.0471, -12.92] - }, - "properties": { - "name": "Lol\u0161nunlolko", - "realm_idx": 6843, - "order": "The Order of Power", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.4471, -18.32] - }, - "properties": { - "name": "pult-Utut", - "realm_idx": 6844, - "order": "The Order of Power", - "resources": ["Wood", "Copper", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.2471, 4.88] - }, - "properties": { - "name": "Kelmkelm", - "realm_idx": 6845, - "order": "The Order of Titans", - "resources": ["Silver", "Stone", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.8471, 16.98] - }, - "properties": { - "name": "Kinb\u00f6n", - "realm_idx": 6846, - "order": "The Order of Brilliance", - "resources": ["Stone", "Obsidian", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.3471, 40.88] - }, - "properties": { - "name": "Kodkyat", - "realm_idx": 6847, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Stone", "Coal", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.8471, 3.48] - }, - "properties": { - "name": "Triplum", - "realm_idx": 6848, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Ironwood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.7471, -12.12] - }, - "properties": { - "name": "N\u00e1nkw\u00e1t", - "realm_idx": 6849, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.3801, 23.1004] - }, - "properties": { - "name": "Tutnastumset", - "realm_idx": 6850, - "order": "The Order of Rage", - "resources": ["Wood", "Stone", "Coal", "Gold", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.9471, -20.92] - }, - "properties": { - "name": "Yonoyoloqon", - "realm_idx": 6851, - "order": "The Order of Giants", - "resources": ["Obsidian", "Stone", "Gold", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.7529, -19.02] - }, - "properties": { - "name": "Immoipempi", - "realm_idx": 6852, - "order": "The Order of Power", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.3801, 6.0004] - }, - "properties": { - "name": "Menonas", - "realm_idx": 6853, - "order": "The Order of Rage", - "resources": ["Ironwood", "Coal", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.98, -34.1997] - }, - "properties": { - "name": "pat Lignluy", - "realm_idx": 6854, - "order": "The Order of the Fox", - "resources": ["Stone", "Obsidian", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.0471, 6.78] - }, - "properties": { - "name": "Z\u00e1yolpuls", - "realm_idx": 6855, - "order": "The Order of Brilliance", - "resources": ["Silver", "Twilight Quartz", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.5529, 25.68] - }, - "properties": { - "name": "L\u00e4kirn\u0161\u00fck", - "realm_idx": 6856, - "order": "The Order of Vitriol", - "resources": ["Stone", "Wood", "Obsidian", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.7801, -15.6996] - }, - "properties": { - "name": "Muramedi", - "realm_idx": 6857, - "order": "The Order of Rage", - "resources": ["Coal", "Obsidian", "Wood", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.9256, 33.6575] - }, - "properties": { - "name": "Sisiku", - "realm_idx": 6858, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal", "Gold", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.7529, 4.38] - }, - "properties": { - "name": "Iliqoy", - "realm_idx": 6859, - "order": "The Order of Vitriol", - "resources": ["Wood", "Hartwood", "Stone", "Copper", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.6478, 4.0017] - }, - "properties": { - "name": "Kigh\u00e1seboda", - "realm_idx": 6860, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.4801, 23.3004] - }, - "properties": { - "name": "Wunnunpan", - "realm_idx": 6861, - "order": "The Order of Rage", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.1529, 2.48] - }, - "properties": { - "name": "Nenkin", - "realm_idx": 6862, - "order": "The Order of Vitriol", - "resources": ["Coal", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.5722, -45.4708] - }, - "properties": { - "name": "Primwun", - "realm_idx": 6863, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Silver", "Sapphire", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [107.3471, 52.88] - }, - "properties": { - "name": "Tettom", - "realm_idx": 6864, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Ironwood", "Copper", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.18, -50.9996] - }, - "properties": { - "name": "N\u00fas\u00fakos", - "realm_idx": 6865, - "order": "The Order of the Fox", - "resources": ["Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.3471, 32.68] - }, - "properties": { - "name": "Zhuoreo", - "realm_idx": 6866, - "order": "The Order of Skill", - "resources": ["Deep Crystal", "Stone", "Wood", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.7707, -19.9554] - }, - "properties": { - "name": "Ka Unka", - "realm_idx": 6867, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.1471, 27.98] - }, - "properties": { - "name": "Geuktuodeo", - "realm_idx": 6868, - "order": "The Order of Vitriol", - "resources": ["Gold", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.6529, -19.22] - }, - "properties": { - "name": "Luptun", - "realm_idx": 6869, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.2801, 40.8004] - }, - "properties": { - "name": "Lonnenlunpem", - "realm_idx": 6870, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.1471, 30.58] - }, - "properties": { - "name": "Gishnon", - "realm_idx": 6871, - "order": "The Order of Titans", - "resources": ["Wood", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.1098, 12.109] - }, - "properties": { - "name": "\u00ebv-Vuvov", - "realm_idx": 6872, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.1529, 24.48] - }, - "properties": { - "name": "San lum K\u00edm", - "realm_idx": 6873, - "order": "The Order of Vitriol", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [13.7471, -37.02] - }, - "properties": { - "name": "Kelchalel", - "realm_idx": 6874, - "order": "The Order of Power", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.073, 47.4515] - }, - "properties": { - "name": "Ponngolm", - "realm_idx": 6875, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.1471, 54.48] - }, - "properties": { - "name": "Kuwtmiy", - "realm_idx": 6876, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.18, -25.5997] - }, - "properties": { - "name": "Mormimmorm", - "realm_idx": 6877, - "order": "The Order of Detection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.8801, 31.7004] - }, - "properties": { - "name": "Olholm", - "realm_idx": 6878, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.3471, 39.08] - }, - "properties": { - "name": "lin Iwlal", - "realm_idx": 6879, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.8471, 7.58] - }, - "properties": { - "name": "Mosamsas", - "realm_idx": 6880, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.0471, 7.88] - }, - "properties": { - "name": "Mlimmlimpr\u00fan", - "realm_idx": 6881, - "order": "The Order of Brilliance", - "resources": [ - "Alchemical Silver", - "Silver", - "Coal", - "Ethereal Silica", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.3801, 10.5004] - }, - "properties": { - "name": "Gak\u00edm K\u00edmko", - "realm_idx": 6882, - "order": "The Order of Rage", - "resources": ["Copper", "Stone", "Silver", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.7471, 30.28] - }, - "properties": { - "name": "Otimusul", - "realm_idx": 6883, - "order": "The Order of Skill", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.0471, 49.48] - }, - "properties": { - "name": "Sloch", - "realm_idx": 6884, - "order": "The Order of Skill", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.98, 36.6003] - }, - "properties": { - "name": "Mosloklos", - "realm_idx": 6885, - "order": "The Order of Fury", - "resources": ["Gold", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.3471, 21.78] - }, - "properties": { - "name": "Sj\u00efnsb\u00efnj\u00e4n", - "realm_idx": 6886, - "order": "The Order of Skill", - "resources": [ - "Copper", - "Ethereal Silica", - "Wood", - "Stone", - "Coal", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.7471, -18.52] - }, - "properties": { - "name": "Is\u00edl\u00e1silin", - "realm_idx": 6887, - "order": "The Order of Giants", - "resources": ["Copper", "Cold Iron", "Coal", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.9529, -25.42] - }, - "properties": { - "name": "Kuepoenpia", - "realm_idx": 6888, - "order": "The Order of Power", - "resources": [ - "Coal", - "Silver", - "Diamonds", - "Hartwood", - "Ethereal Silica" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.1376, -19.1019] - }, - "properties": { - "name": "Lonkun", - "realm_idx": 6889, - "order": "The Order of Perfection", - "resources": ["Stone", "Copper", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.2529, 53.78] - }, - "properties": { - "name": "Wunnin", - "realm_idx": 6890, - "order": "The Order of Fury", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.68, -34.7997] - }, - "properties": { - "name": "m\u00fczh Pizhk\u00e4z", - "realm_idx": 6891, - "order": "The Order of Detection", - "resources": ["Gold", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.6471, 42.98] - }, - "properties": { - "name": "Sjonbjursju\u0161", - "realm_idx": 6892, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.1471, 13.58] - }, - "properties": { - "name": "Linmaun", - "realm_idx": 6893, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.3529, -0.82] - }, - "properties": { - "name": "Hepano", - "realm_idx": 6894, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.88, -24.1997] - }, - "properties": { - "name": "Nanhen", - "realm_idx": 6895, - "order": "The Order of Detection", - "resources": ["Ironwood", "Gold", "Stone", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-42.9529, 10.88] - }, - "properties": { - "name": "Slonnen", - "realm_idx": 6896, - "order": "The Order of Vitriol", - "resources": ["Silver", "Wood", "Obsidian", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.4471, 21.98] - }, - "properties": { - "name": "Hlimt\u00e1ng", - "realm_idx": 6897, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.68, -29.8997] - }, - "properties": { - "name": "Kakekso-Mol", - "realm_idx": 6898, - "order": "The Order of Reflection", - "resources": ["Copper", "Obsidian", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.3068, -16.8975] - }, - "properties": { - "name": "H\u00e2kum\u00e2mirh", - "realm_idx": 6899, - "order": "The Order of Perfection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.7127, 30.8062] - }, - "properties": { - "name": "Kuksnikskak", - "realm_idx": 6900, - "order": "The Order of Anger", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.0936, 33.3347] - }, - "properties": { - "name": "Tel Tat", - "realm_idx": 6901, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.8471, 11.48] - }, - "properties": { - "name": "Tumn\u00fans\u00e1m", - "realm_idx": 6902, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Coal", "Hartwood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.18, -30.8997] - }, - "properties": { - "name": "Snolskubskoz", - "realm_idx": 6903, - "order": "The Order of Detection", - "resources": ["Ruby", "Obsidian", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.8471, 7.18] - }, - "properties": { - "name": "Ikokipim", - "realm_idx": 6904, - "order": "The Order of Brilliance", - "resources": ["Gold", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.3117, -21.854] - }, - "properties": { - "name": "Satk\u00edtsattit", - "realm_idx": 6905, - "order": "The Order of Protection", - "resources": ["Wood", "Copper", "Coal", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.2471, -21.12] - }, - "properties": { - "name": "Opimin", - "realm_idx": 6906, - "order": "The Order of Perfection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.0836, 28.6259] - }, - "properties": { - "name": "Nokishosha", - "realm_idx": 6907, - "order": "The Order of Anger", - "resources": ["Wood", "Gold", "Obsidian", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.28, 0.2003] - }, - "properties": { - "name": "S\u00e9kshon", - "realm_idx": 6908, - "order": "The Order of Reflection", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.1252, 44.7689] - }, - "properties": { - "name": "Kut Du\u0161", - "realm_idx": 6909, - "order": "The Order of Anger", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [24.1471, 60.88] - }, - "properties": { - "name": "Mapmumnum", - "realm_idx": 6910, - "order": "The Order of Titans", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.6529, 29.08] - }, - "properties": { - "name": "Udturk", - "realm_idx": 6911, - "order": "The Order of Vitriol", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.1508, 27.9719] - }, - "properties": { - "name": "Kinpun", - "realm_idx": 6912, - "order": "The Order of Rage", - "resources": ["Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-41.1529, 5.18] - }, - "properties": { - "name": "Frakfbos", - "realm_idx": 6913, - "order": "The Order of Vitriol", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.6471, 46.78] - }, - "properties": { - "name": "Lirnmir", - "realm_idx": 6914, - "order": "The Order of Titans", - "resources": ["Silver", "Copper", "Gold", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.08, 36.5003] - }, - "properties": { - "name": "Mom Tamom", - "realm_idx": 6915, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.5529, 27.68] - }, - "properties": { - "name": "Zh\u00edzhm\u00edzhal", - "realm_idx": 6916, - "order": "The Order of Vitriol", - "resources": ["Diamonds", "Ironwood", "Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-48.4529, 54.48] - }, - "properties": { - "name": "Nuinnuin", - "realm_idx": 6917, - "order": "The Order of Fury", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.6262, 29.9539] - }, - "properties": { - "name": "Iyvuy", - "realm_idx": 6918, - "order": "The Order of Anger", - "resources": [ - "Wood", - "Gold", - "Cold Iron", - "Stone", - "Deep Crystal", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.8596, -21.2575] - }, - "properties": { - "name": "Minhinmlin", - "realm_idx": 6919, - "order": "The Order of Perfection", - "resources": ["Wood", "Obsidian", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.3471, -35.62] - }, - "properties": { - "name": "Hrizhraz", - "realm_idx": 6920, - "order": "The Order of Giants", - "resources": ["Coal", "Wood", "Diamonds", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.3471, -7.62] - }, - "properties": { - "name": "Tititoknipus", - "realm_idx": 6921, - "order": "The Order of Brilliance", - "resources": ["Silver", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.58, -35.2997] - }, - "properties": { - "name": "Mjes\u0161os", - "realm_idx": 6922, - "order": "The Order of Reflection", - "resources": ["Deep Crystal", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.5529, -0.42] - }, - "properties": { - "name": "Misin", - "realm_idx": 6923, - "order": "The Order of Vitriol", - "resources": [ - "Stone", - "Copper", - "Wood", - "Gold", - "Cold Iron", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.6572, -18.1629] - }, - "properties": { - "name": "Wl\u00fadjlitlir", - "realm_idx": 6924, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.4471, 1.18] - }, - "properties": { - "name": "Kaisrus", - "realm_idx": 6925, - "order": "The Order of Titans", - "resources": ["Obsidian", "Hartwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.9471, 44.68] - }, - "properties": { - "name": "Sultisnu", - "realm_idx": 6926, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.5801, 40.4004] - }, - "properties": { - "name": "wur-Ziwurb", - "realm_idx": 6927, - "order": "The Order of Anger", - "resources": ["Obsidian", "Coal", "Cold Iron", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.4471, 41.18] - }, - "properties": { - "name": "Tananu", - "realm_idx": 6928, - "order": "The Order of Skill", - "resources": ["Hartwood", "Wood", "True Ice", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.6471, 7.18] - }, - "properties": { - "name": "Zhom-Olsoch", - "realm_idx": 6929, - "order": "The Order of Brilliance", - "resources": ["Sapphire", "Coal", "Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.4471, 48.08] - }, - "properties": { - "name": "Nukplek", - "realm_idx": 6930, - "order": "The Order of Skill", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.3529, 1.18] - }, - "properties": { - "name": "Aghaghluq", - "realm_idx": 6931, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.7801, 11.3004] - }, - "properties": { - "name": "Nussmujs\u2018us", - "realm_idx": 6932, - "order": "The Order of Rage", - "resources": ["Wood", "Coal", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.3471, -22.42] - }, - "properties": { - "name": "Nuhosh", - "realm_idx": 6933, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.1471, 6.08] - }, - "properties": { - "name": "P\u00e2pese Lumy", - "realm_idx": 6934, - "order": "The Order of Brilliance", - "resources": ["Copper", "Stone", "Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-24.1529, -9.12] - }, - "properties": { - "name": "G\u00e2w\u00e2m\u00e2g\u00e2s\u00e2", - "realm_idx": 6935, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.5471, -39.12] - }, - "properties": { - "name": "Supu Tisupu", - "realm_idx": 6936, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Gold", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.2801, -36.6996] - }, - "properties": { - "name": "Lillii\u2018iiw", - "realm_idx": 6937, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Stone", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.8471, 15.48] - }, - "properties": { - "name": "Susskultum", - "realm_idx": 6938, - "order": "The Order of Titans", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.0471, -8.32] - }, - "properties": { - "name": "K\u00fatisk\u00fa", - "realm_idx": 6939, - "order": "The Order of Power", - "resources": ["Ironwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.8471, 41.18] - }, - "properties": { - "name": "\u00c1mewewim", - "realm_idx": 6940, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.0471, 5.98] - }, - "properties": { - "name": "T\u00e9n\u00edkeke", - "realm_idx": 6941, - "order": "The Order of Titans", - "resources": ["Coal", "Ironwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.38, 29.9003] - }, - "properties": { - "name": "Chliek", - "realm_idx": 6942, - "order": "The Order of Reflection", - "resources": ["Hartwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.2529, 20.48] - }, - "properties": { - "name": "Paikniapaik", - "realm_idx": 6943, - "order": "The Order of Vitriol", - "resources": ["Diamonds", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.5529, -32.42] - }, - "properties": { - "name": "Ingtaku", - "realm_idx": 6944, - "order": "The Order of Power", - "resources": [ - "Wood", - "Coal", - "Ironwood", - "Ethereal Silica", - "Stone", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.847, -2.92] - }, - "properties": { - "name": "\u00c1 k\u00edh \u00c1ak", - "realm_idx": 6945, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.5471, -47.22] - }, - "properties": { - "name": "Punw\u00e1nb\u00e1n", - "realm_idx": 6946, - "order": "The Order of Giants", - "resources": ["Wood", "Copper", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.58, 14.6003] - }, - "properties": { - "name": "Sessest\u00ebs", - "realm_idx": 6947, - "order": "The Order of Fury", - "resources": ["Wood", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.88, -46.4996] - }, - "properties": { - "name": "Zhazhegod", - "realm_idx": 6948, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Coal", "Stone", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.7594, 4.2581] - }, - "properties": { - "name": "Xtupspum", - "realm_idx": 6949, - "order": "The Order of Protection", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.58, 29.7003] - }, - "properties": { - "name": "Maoheutniap", - "realm_idx": 6950, - "order": "The Order of Reflection", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.2272, -24.4337] - }, - "properties": { - "name": "ar-Arberkirk", - "realm_idx": 6951, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone", "Copper", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.5844, -8.0789] - }, - "properties": { - "name": "on Unou", - "realm_idx": 6952, - "order": "The Order of Reflection", - "resources": ["Wood", "Hartwood", "Ruby", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.0801, -27.7996] - }, - "properties": { - "name": "N\u00falnalm\u00faltol", - "realm_idx": 6953, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Mithral", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.2463, 39.515] - }, - "properties": { - "name": "Imbezommi\u010d", - "realm_idx": 6954, - "order": "The Order of Anger", - "resources": ["Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.5801, 4.9004] - }, - "properties": { - "name": "Kihtohhuhtop", - "realm_idx": 6955, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.4801, -21.0996] - }, - "properties": { - "name": "Sum Mun", - "realm_idx": 6956, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [49.6471, -26.62] - }, - "properties": { - "name": "Yietuagkoit", - "realm_idx": 6957, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.956, 56.9385] - }, - "properties": { - "name": "Tetkistoktes", - "realm_idx": 6958, - "order": "The Order of Fury", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.3801, 43.8004] - }, - "properties": { - "name": "Ososipip", - "realm_idx": 6959, - "order": "The Order of Anger", - "resources": ["Wood", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.1529, 5.28] - }, - "properties": { - "name": "Tutup Tatu", - "realm_idx": 6960, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.6801, -37.1996] - }, - "properties": { - "name": "D\u00faish\u00fao D\u00fai", - "realm_idx": 6961, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.2471, 27.88] - }, - "properties": { - "name": "Lazsa\u017e\u017eruz", - "realm_idx": 6962, - "order": "The Order of Titans", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.2471, 15.98] - }, - "properties": { - "name": "Meosososo", - "realm_idx": 6963, - "order": "The Order of Brilliance", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.3471, 51.88] - }, - "properties": { - "name": "Ruxrugqaqrur", - "realm_idx": 6964, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.88, -42.0996] - }, - "properties": { - "name": "Puniw", - "realm_idx": 6965, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.9529, -8.32] - }, - "properties": { - "name": "Nolpetlies", - "realm_idx": 6966, - "order": "The Order of the Fox", - "resources": ["Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.5471, -14.42] - }, - "properties": { - "name": "Shehen", - "realm_idx": 6967, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Wood", "Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.2471, 48.38] - }, - "properties": { - "name": "Huinua", - "realm_idx": 6968, - "order": "The Order of Skill", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.1471, 17.08] - }, - "properties": { - "name": "Schmimschmum", - "realm_idx": 6969, - "order": "The Order of Protection", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.38, -29.6997] - }, - "properties": { - "name": "Limlim", - "realm_idx": 6970, - "order": "The Order of the Fox", - "resources": ["Coal", "Ignium", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.7471, -8.82] - }, - "properties": { - "name": "Yiii Tilighu", - "realm_idx": 6971, - "order": "The Order of Power", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.9801, 35.0004] - }, - "properties": { - "name": "\u00dakhoqoqad", - "realm_idx": 6972, - "order": "The Order of Anger", - "resources": ["Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.4529, 0.28] - }, - "properties": { - "name": "Pumnuumpum", - "realm_idx": 6973, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-110.18, 27.9824] - }, - "properties": { - "name": "N\u00edken-K\u00e9nme", - "realm_idx": 6974, - "order": "The Order of Reflection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.7471, 48.18] - }, - "properties": { - "name": "Atat A", - "realm_idx": 6975, - "order": "The Order of Titans", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [51.5471, -36.62] - }, - "properties": { - "name": "Chunskin", - "realm_idx": 6976, - "order": "The Order of Giants", - "resources": ["Coal", "Obsidian", "Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.1529, -18.92] - }, - "properties": { - "name": "Nutututo", - "realm_idx": 6977, - "order": "The Order of Power", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.68, -49.6996] - }, - "properties": { - "name": "Urkurkir", - "realm_idx": 6978, - "order": "The Order of the Fox", - "resources": ["Stone", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.8471, 26.88] - }, - "properties": { - "name": "sk\u00e4l Stasg\u00e4\u0161", - "realm_idx": 6979, - "order": "The Order of Enlightenment", - "resources": ["Ethereal Silica", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.0801, 7.2004] - }, - "properties": { - "name": "lam-Enket", - "realm_idx": 6980, - "order": "The Order of Rage", - "resources": ["Ignium", "Wood", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.8471, 23.88] - }, - "properties": { - "name": "Hukopi\u2018unu", - "realm_idx": 6981, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.4471, 31.98] - }, - "properties": { - "name": "Nin sun Skun", - "realm_idx": 6982, - "order": "The Order of Skill", - "resources": ["Deep Crystal", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.6801, 9.8004] - }, - "properties": { - "name": "Ileltil", - "realm_idx": 6983, - "order": "The Order of Rage", - "resources": ["Wood", "Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.9319, -18.6333] - }, - "properties": { - "name": "Polstel", - "realm_idx": 6984, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Ironwood", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.9529, 52.48] - }, - "properties": { - "name": "Limpini", - "realm_idx": 6985, - "order": "The Order of Fury", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.5471, 8.48] - }, - "properties": { - "name": "Nil Tuik", - "realm_idx": 6986, - "order": "The Order of Protection", - "resources": ["Copper", "Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.2996, -30.3757] - }, - "properties": { - "name": "U Pim\u00f4t", - "realm_idx": 6987, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.3136, 50.9999] - }, - "properties": { - "name": "Entloollok", - "realm_idx": 6988, - "order": "The Order of Fury", - "resources": ["Copper", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.0801, 31.6004] - }, - "properties": { - "name": "Raaiir", - "realm_idx": 6989, - "order": "The Order of Anger", - "resources": ["Wood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.58, -43.5997] - }, - "properties": { - "name": "gin-Synp\u00e2m", - "realm_idx": 6990, - "order": "The Order of the Fox", - "resources": ["Coal", "Silver", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.5529, -19.02] - }, - "properties": { - "name": "Seona", - "realm_idx": 6991, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.3801, 7.7004] - }, - "properties": { - "name": "U\u0161anenod", - "realm_idx": 6992, - "order": "The Order of Rage", - "resources": ["Obsidian", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.6801, -20.9996] - }, - "properties": { - "name": "Puamsusnun", - "realm_idx": 6993, - "order": "The Order of the Twins", - "resources": ["Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.3471, -13.02] - }, - "properties": { - "name": "Temsk\u00fcm", - "realm_idx": 6994, - "order": "The Order of Giants", - "resources": ["Coal", "Copper", "Ruby", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.4801, 10.2004] - }, - "properties": { - "name": "Keken\u00edmn\u00edm", - "realm_idx": 6995, - "order": "The Order of Rage", - "resources": [ - "Hartwood", - "Coal", - "Obsidian", - "Silver", - "Wood", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.08, -12.6997] - }, - "properties": { - "name": "Ninnin", - "realm_idx": 6996, - "order": "The Order of Detection", - "resources": ["Copper", "Sapphire", "Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.2471, 18.78] - }, - "properties": { - "name": "I\u017e taz A\u017ehu\u017e", - "realm_idx": 6997, - "order": "The Order of Brilliance", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.3471, 35.68] - }, - "properties": { - "name": "Buzsib", - "realm_idx": 6998, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.1471, 18.48] - }, - "properties": { - "name": "Nednesh", - "realm_idx": 6999, - "order": "The Order of Brilliance", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.68, 9.3003] - }, - "properties": { - "name": "P\u00edunvi\u00edmaig", - "realm_idx": 7000, - "order": "The Order of Detection", - "resources": ["Silver", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.7471, 43.98] - }, - "properties": { - "name": "Rudzug", - "realm_idx": 7001, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Stone", "Ruby", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.4471, 39.28] - }, - "properties": { - "name": "Fzhankom", - "realm_idx": 7002, - "order": "The Order of Enlightenment", - "resources": ["Ironwood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.2527, 49.1801] - }, - "properties": { - "name": "Takpita", - "realm_idx": 7003, - "order": "The Order of the Twins", - "resources": ["Copper", "Cold Iron", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.6471, -14.62] - }, - "properties": { - "name": "Koplom", - "realm_idx": 7004, - "order": "The Order of Perfection", - "resources": ["Gold", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.5862, 10.3551] - }, - "properties": { - "name": "Onggequ", - "realm_idx": 7005, - "order": "The Order of Protection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.28, -5.8997] - }, - "properties": { - "name": "Wttettwkkit", - "realm_idx": 7006, - "order": "The Order of Detection", - "resources": ["Wood", "Diamonds", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.8471, -6.82] - }, - "properties": { - "name": "Slangl\u00edng", - "realm_idx": 7007, - "order": "The Order of Brilliance", - "resources": ["Copper", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.48, -50.5996] - }, - "properties": { - "name": "Chuzchanlud", - "realm_idx": 7008, - "order": "The Order of the Fox", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.98, 29.2003] - }, - "properties": { - "name": "Kimkin", - "realm_idx": 7009, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Hartwood", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.3801, -36.0996] - }, - "properties": { - "name": "Ubikizh", - "realm_idx": 7010, - "order": "The Order of the Twins", - "resources": ["Wood", "Gold", "Ruby", "Obsidian", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.2471, 4.08] - }, - "properties": { - "name": "Algzhulw", - "realm_idx": 7011, - "order": "The Order of Titans", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.6471, 26.48] - }, - "properties": { - "name": "Entot", - "realm_idx": 7012, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Sapphire", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.2742, 46.4057] - }, - "properties": { - "name": "\u2018olalw\u00e9rw\u00e9lh", - "realm_idx": 7013, - "order": "The Order of Anger", - "resources": ["Stone", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.18, -7.0997] - }, - "properties": { - "name": "Yewkenyuhken", - "realm_idx": 7014, - "order": "The Order of Detection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.5471, 49.68] - }, - "properties": { - "name": "Apupik", - "realm_idx": 7015, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.88, 30.9003] - }, - "properties": { - "name": "Olh\u00edlm\u00edlp El", - "realm_idx": 7016, - "order": "The Order of Fury", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.3471, 33.38] - }, - "properties": { - "name": "Upheg\u00e1yzud", - "realm_idx": 7017, - "order": "The Order of Skill", - "resources": ["Ethereal Silica", "Wood", "Ironwood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.4801, 41.8004] - }, - "properties": { - "name": "Hirpalwp\u00eflp", - "realm_idx": 7018, - "order": "The Order of Anger", - "resources": ["Ironwood", "Silver", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.6529, 49.88] - }, - "properties": { - "name": "Sdustischozh", - "realm_idx": 7019, - "order": "The Order of Vitriol", - "resources": ["Gold", "Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.9201, 33.2973] - }, - "properties": { - "name": "Sesnok", - "realm_idx": 7020, - "order": "The Order of Anger", - "resources": ["Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.48, 35.6003] - }, - "properties": { - "name": "L\u00e9 ni Sim", - "realm_idx": 7021, - "order": "The Order of Reflection", - "resources": ["Wood", "Silver", "Stone", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.8801, 49.5004] - }, - "properties": { - "name": "um Momissheg", - "realm_idx": 7022, - "order": "The Order of Anger", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.4471, 13.58] - }, - "properties": { - "name": "Nokba\u010d", - "realm_idx": 7023, - "order": "The Order of Protection", - "resources": ["Silver", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.8471, 11.48] - }, - "properties": { - "name": "Lijpu", - "realm_idx": 7024, - "order": "The Order of Skill", - "resources": ["Cold Iron", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.1471, -2.42] - }, - "properties": { - "name": "K\u00efmlink\u00efmk\u00efm", - "realm_idx": 7025, - "order": "The Order of Power", - "resources": ["Coal", "Ethereal Silica", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.7801, 48.1004] - }, - "properties": { - "name": "L\u00e9nuti", - "realm_idx": 7026, - "order": "The Order of Anger", - "resources": ["Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.1471, -18.42] - }, - "properties": { - "name": "Urdalh", - "realm_idx": 7027, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.2471, 7.78] - }, - "properties": { - "name": "Mununpimm\u00f4m", - "realm_idx": 7028, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.18, -31.5997] - }, - "properties": { - "name": "um Kunop", - "realm_idx": 7029, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.48, 35.9003] - }, - "properties": { - "name": "K\u00fcsh\u00fck\u00fcsh", - "realm_idx": 7030, - "order": "The Order of Fury", - "resources": ["Coal", "Stone", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.9471, -23.72] - }, - "properties": { - "name": "Danemqundan", - "realm_idx": 7031, - "order": "The Order of Perfection", - "resources": ["Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.7471, -13.82] - }, - "properties": { - "name": "Lechdij", - "realm_idx": 7032, - "order": "The Order of Perfection", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.4801, 23.6004] - }, - "properties": { - "name": "Lorr\u00ear", - "realm_idx": 7033, - "order": "The Order of Rage", - "resources": ["Copper", "Coal", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.3529, -7.72] - }, - "properties": { - "name": "Nguschpuzvus", - "realm_idx": 7034, - "order": "The Order of Power", - "resources": ["Silver", "Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.0801, -24.4996] - }, - "properties": { - "name": "Ikesilok", - "realm_idx": 7035, - "order": "The Order of the Twins", - "resources": ["Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.3471, 52.68] - }, - "properties": { - "name": "Laiiliak", - "realm_idx": 7036, - "order": "The Order of Enlightenment", - "resources": ["Adamantine", "Wood", "Gold", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.8471, 38.08] - }, - "properties": { - "name": "Suesgue", - "realm_idx": 7037, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.3477, 41.3727] - }, - "properties": { - "name": "Tongsalvol", - "realm_idx": 7038, - "order": "The Order of Anger", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.6471, -24.62] - }, - "properties": { - "name": "M\u00e9lin", - "realm_idx": 7039, - "order": "The Order of Perfection", - "resources": [ - "Diamonds", - "Wood", - "Coal", - "Ironwood", - "Copper", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.0269, -21.2948] - }, - "properties": { - "name": "Nangpen", - "realm_idx": 7040, - "order": "The Order of Perfection", - "resources": ["Coal", "Ruby", "Sapphire", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.204, 10.0169] - }, - "properties": { - "name": "Smimton", - "realm_idx": 7041, - "order": "The Order of Protection", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.4801, 7.1004] - }, - "properties": { - "name": "Isiil I\u017ea", - "realm_idx": 7042, - "order": "The Order of Rage", - "resources": ["Silver", "Twilight Quartz", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.6801, 24.4004] - }, - "properties": { - "name": "Haznesh", - "realm_idx": 7043, - "order": "The Order of Rage", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.48, 7.4003] - }, - "properties": { - "name": "Idiri\u017e", - "realm_idx": 7044, - "order": "The Order of Detection", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.3801, -26.7996] - }, - "properties": { - "name": "Nalnumnal", - "realm_idx": 7045, - "order": "The Order of the Twins", - "resources": ["Stone", "Silver", "Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.9529, 56.98] - }, - "properties": { - "name": "Lemsman", - "realm_idx": 7046, - "order": "The Order of Fury", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.58, -11.2997] - }, - "properties": { - "name": "N\u00eddima\u00e1n", - "realm_idx": 7047, - "order": "The Order of Detection", - "resources": ["Wood", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.6529, 49.58] - }, - "properties": { - "name": "Tokeklusnuk", - "realm_idx": 7048, - "order": "The Order of Vitriol", - "resources": [ - "Coal", - "Hartwood", - "Twilight Quartz", - "Copper", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.7801, 51.3004] - }, - "properties": { - "name": "Tazhanitschu", - "realm_idx": 7049, - "order": "The Order of Anger", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.9197, -22.8369] - }, - "properties": { - "name": "Nissossnuk", - "realm_idx": 7050, - "order": "The Order of Protection", - "resources": ["Wood", "Copper", "Coal", "Obsidian", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.2471, 25.48] - }, - "properties": { - "name": "Akkis", - "realm_idx": 7051, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.5471, -18.82] - }, - "properties": { - "name": "kaul Nuamsim", - "realm_idx": 7052, - "order": "The Order of Power", - "resources": ["Obsidian", "Coal", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.4801, 19.0004] - }, - "properties": { - "name": "Slukudigli", - "realm_idx": 7053, - "order": "The Order of Rage", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.68, -21.2997] - }, - "properties": { - "name": "Techi", - "realm_idx": 7054, - "order": "The Order of Detection", - "resources": ["Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.38, -3.3997] - }, - "properties": { - "name": "gu Sud", - "realm_idx": 7055, - "order": "The Order of Detection", - "resources": [ - "Obsidian", - "Ironwood", - "Coal", - "Copper", - "Silver", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.6801, 38.4004] - }, - "properties": { - "name": "soet Seupkos", - "realm_idx": 7056, - "order": "The Order of Anger", - "resources": ["Wood", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [105.9471, 40.98] - }, - "properties": { - "name": "Uwiyewseyt", - "realm_idx": 7057, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Ruby", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.0471, 31.18] - }, - "properties": { - "name": "Bakbus", - "realm_idx": 7058, - "order": "The Order of Titans", - "resources": ["Coal", "Cold Iron", "Diamonds", "True Ice", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.5529, -41.42] - }, - "properties": { - "name": "Zilzilrul", - "realm_idx": 7059, - "order": "The Order of Power", - "resources": ["Cold Iron", "Coal", "Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.5942, 4.2602] - }, - "properties": { - "name": "Gobinrem", - "realm_idx": 7060, - "order": "The Order of Protection", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.88, -35.1997] - }, - "properties": { - "name": "Noimoa", - "realm_idx": 7061, - "order": "The Order of the Fox", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.2471, 24.08] - }, - "properties": { - "name": "Pomuznomo", - "realm_idx": 7062, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.9527, 49.5801] - }, - "properties": { - "name": "Schn\u00fcn\u00fcn", - "realm_idx": 7063, - "order": "The Order of the Twins", - "resources": ["Copper", "Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.9471, 20.88] - }, - "properties": { - "name": "Osolat", - "realm_idx": 7064, - "order": "The Order of Skill", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.7786, -4.2765] - }, - "properties": { - "name": "\u2018o\u2018lup\u2018o\u2018\u2018o\u2018", - "realm_idx": 7065, - "order": "The Order of Reflection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.88, -37.2997] - }, - "properties": { - "name": "Amuenan Unan", - "realm_idx": 7066, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.5471, 19.78] - }, - "properties": { - "name": "kub-Ar", - "realm_idx": 7067, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.1801, -34.0996] - }, - "properties": { - "name": "Pustumslul", - "realm_idx": 7068, - "order": "The Order of the Twins", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.2529, 6.48] - }, - "properties": { - "name": "Tscho", - "realm_idx": 7069, - "order": "The Order of Titans", - "resources": ["Copper", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.2471, 47.58] - }, - "properties": { - "name": "Yeyidayezi", - "realm_idx": 7070, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.8471, 38.78] - }, - "properties": { - "name": "Nejnejawm", - "realm_idx": 7071, - "order": "The Order of Skill", - "resources": ["Copper", "Stone", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.9471, 42.48] - }, - "properties": { - "name": "T\u00edn\u00edlnsin", - "realm_idx": 7072, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.4801, -35.6996] - }, - "properties": { - "name": "Nosob-Ru", - "realm_idx": 7073, - "order": "The Order of the Twins", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.3529, 24.18] - }, - "properties": { - "name": "Utschekek", - "realm_idx": 7074, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal", "Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.6188, -24.2357] - }, - "properties": { - "name": "Ulngarolpul", - "realm_idx": 7075, - "order": "The Order of Protection", - "resources": [ - "Stone", - "Obsidian", - "Twilight Quartz", - "Cold Iron", - "Coal", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.4471, 15.68] - }, - "properties": { - "name": "Setilullunlu", - "realm_idx": 7076, - "order": "The Order of Titans", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.18, 11.1003] - }, - "properties": { - "name": "Aommuhuukmoo", - "realm_idx": 7077, - "order": "The Order of Detection", - "resources": ["Diamonds", "Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.38, -35.1997] - }, - "properties": { - "name": "Waduwke", - "realm_idx": 7078, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.3527, 50.4801] - }, - "properties": { - "name": "\u0161ang Minnung", - "realm_idx": 7079, - "order": "The Order of the Twins", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.4529, 2.68] - }, - "properties": { - "name": "Nuezauliur", - "realm_idx": 7080, - "order": "The Order of Power", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.7471, 9.68] - }, - "properties": { - "name": "Ngevyursteg", - "realm_idx": 7081, - "order": "The Order of Protection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.1529, 56.78] - }, - "properties": { - "name": "Ersirker", - "realm_idx": 7082, - "order": "The Order of Fury", - "resources": ["Stone", "Sapphire", "Obsidian", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.4529, 50.48] - }, - "properties": { - "name": "Luasausmaus", - "realm_idx": 7083, - "order": "The Order of Fury", - "resources": ["Stone", "Wood", "Coal", "True Ice", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.0801, -19.2996] - }, - "properties": { - "name": "Mukdutiddut", - "realm_idx": 7084, - "order": "The Order of the Twins", - "resources": ["Wood", "Obsidian", "Silver", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.0363, 27.4873] - }, - "properties": { - "name": "Chagu Guak", - "realm_idx": 7085, - "order": "The Order of Rage", - "resources": ["Twilight Quartz", "Stone", "Wood", "Gold", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.98, -36.2997] - }, - "properties": { - "name": "Sipil", - "realm_idx": 7086, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Coal", "Wood", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [8.3471, 48.38] - }, - "properties": { - "name": "Mezhozchnoz", - "realm_idx": 7087, - "order": "The Order of Titans", - "resources": ["Wood", "Ironwood", "Gold", "Coal", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.5801, -54.2996] - }, - "properties": { - "name": "Tes\u00edm\u00ed", - "realm_idx": 7088, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.263, 18.7387] - }, - "properties": { - "name": "Ong sa Emouu", - "realm_idx": 7089, - "order": "The Order of Fury", - "resources": ["Silver", "Ironwood", "Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.4471, 45.78] - }, - "properties": { - "name": "Lillellal", - "realm_idx": 7090, - "order": "The Order of Enlightenment", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.5471, -6.12] - }, - "properties": { - "name": "Orlorkalk", - "realm_idx": 7091, - "order": "The Order of Brilliance", - "resources": ["Wood", "Ethereal Silica", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.6529, 47.38] - }, - "properties": { - "name": "Nwupnrol", - "realm_idx": 7092, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.5471, 24.58] - }, - "properties": { - "name": "Tuntaktun", - "realm_idx": 7093, - "order": "The Order of Titans", - "resources": ["Wood", "Gold", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.58, -0.5997] - }, - "properties": { - "name": "Stitat", - "realm_idx": 7094, - "order": "The Order of Detection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.3368, 21.7479] - }, - "properties": { - "name": "Pettes", - "realm_idx": 7095, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.3529, 16.78] - }, - "properties": { - "name": "Ghamung", - "realm_idx": 7096, - "order": "The Order of Vitriol", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.0801, 41.4004] - }, - "properties": { - "name": "Ekiisiijiid", - "realm_idx": 7097, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.08, 34.7003] - }, - "properties": { - "name": "Sheksmuk", - "realm_idx": 7098, - "order": "The Order of Reflection", - "resources": ["Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.0066, 37.5335] - }, - "properties": { - "name": "Mahu Puhutut", - "realm_idx": 7099, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Cold Iron", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.1385, 20.8758] - }, - "properties": { - "name": "Miammiam", - "realm_idx": 7100, - "order": "The Order of Fury", - "resources": ["Copper", "Ethereal Silica", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.4471, 52.18] - }, - "properties": { - "name": "Nuzfpushfgiz", - "realm_idx": 7101, - "order": "The Order of Skill", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.1109, 37.8035] - }, - "properties": { - "name": "\u0160\u010dassik", - "realm_idx": 7102, - "order": "The Order of Anger", - "resources": ["Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.1801, -33.2996] - }, - "properties": { - "name": "Neslek", - "realm_idx": 7103, - "order": "The Order of the Twins", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.7471, -51.32] - }, - "properties": { - "name": "Hooetooitiat", - "realm_idx": 7104, - "order": "The Order of Giants", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.9801, 42.2004] - }, - "properties": { - "name": "Nuslusko", - "realm_idx": 7105, - "order": "The Order of Anger", - "resources": [ - "Copper", - "Sapphire", - "Ironwood", - "Gold", - "Wood", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [126.216, 8.8577] - }, - "properties": { - "name": "Nugshulzi", - "realm_idx": 7106, - "order": "The Order of Protection", - "resources": ["Obsidian", "Ironwood", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.6441, 45.4318] - }, - "properties": { - "name": "Lukhshwoqwen", - "realm_idx": 7107, - "order": "The Order of Anger", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.68, -6.6997] - }, - "properties": { - "name": "Bressrok", - "realm_idx": 7108, - "order": "The Order of Detection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.9801, 3.9004] - }, - "properties": { - "name": "Onnen", - "realm_idx": 7109, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.58, -53.2996] - }, - "properties": { - "name": "\u0160ni\u0161kudmu\u0161ge", - "realm_idx": 7110, - "order": "The Order of the Fox", - "resources": ["Wood", "Hartwood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.8471, 19.68] - }, - "properties": { - "name": "Nonn\u00e1h", - "realm_idx": 7111, - "order": "The Order of Skill", - "resources": ["Coal", "Adamantine", "Silver", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.326, -24.1781] - }, - "properties": { - "name": "Lomlot", - "realm_idx": 7112, - "order": "The Order of Protection", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.5801, -33.8996] - }, - "properties": { - "name": "Sylsalmyktu", - "realm_idx": 7113, - "order": "The Order of the Twins", - "resources": [ - "Obsidian", - "Stone", - "Wood", - "Coal", - "Alchemical Silver", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.6801, 20.1004] - }, - "properties": { - "name": "Slisgii", - "realm_idx": 7114, - "order": "The Order of Rage", - "resources": ["Cold Iron", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.3471, 20.48] - }, - "properties": { - "name": "P\u00ed\u00e1b\u00e1\u00edba\u00edga\u00ed", - "realm_idx": 7115, - "order": "The Order of Brilliance", - "resources": [ - "Copper", - "Wood", - "Hartwood", - "Cold Iron", - "Stone", - "Coal", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.2711, 42.5738] - }, - "properties": { - "name": "Lokanillenil", - "realm_idx": 7116, - "order": "The Order of Anger", - "resources": ["Coal", "Copper", "Ruby", "Ironwood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.6626, -27.7507] - }, - "properties": { - "name": "Iyqy\u00fawkh", - "realm_idx": 7117, - "order": "The Order of Reflection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.4471, 35.68] - }, - "properties": { - "name": "Loluzho", - "realm_idx": 7118, - "order": "The Order of Skill", - "resources": ["Stone", "Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.28, 34.6003] - }, - "properties": { - "name": "Ki\u00e1kk\u00e1\u2018", - "realm_idx": 7119, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.8471, 49.28] - }, - "properties": { - "name": "Illirn Il", - "realm_idx": 7120, - "order": "The Order of Skill", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.6811, -20.0506] - }, - "properties": { - "name": "Konpin", - "realm_idx": 7121, - "order": "The Order of Protection", - "resources": ["Gold", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [12.9471, -37.92] - }, - "properties": { - "name": "Alarbolzh", - "realm_idx": 7122, - "order": "The Order of Power", - "resources": ["Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.78, 20.0003] - }, - "properties": { - "name": "Kikika", - "realm_idx": 7123, - "order": "The Order of Detection", - "resources": ["Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.6471, 6.98] - }, - "properties": { - "name": "Min\u0161raun", - "realm_idx": 7124, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.4471, 37.98] - }, - "properties": { - "name": "Ehe\u017e \u017dezdi\u017e", - "realm_idx": 7125, - "order": "The Order of Titans", - "resources": ["Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.5471, 32.18] - }, - "properties": { - "name": "Ok\u00e1n il \u00c9sun", - "realm_idx": 7126, - "order": "The Order of Titans", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.7471, 34.78] - }, - "properties": { - "name": "Nak Kulpauk", - "realm_idx": 7127, - "order": "The Order of Enlightenment", - "resources": [ - "Wood", - "Silver", - "Stone", - "Obsidian", - "Ethereal Silica", - "Coal" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.28, -6.9997] - }, - "properties": { - "name": "Mlismo\u0161", - "realm_idx": 7128, - "order": "The Order of Reflection", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.58, -42.2996] - }, - "properties": { - "name": "Koko Hunno", - "realm_idx": 7129, - "order": "The Order of the Fox", - "resources": ["Stone", "Obsidian", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.2471, 7.78] - }, - "properties": { - "name": "Kinuipmah", - "realm_idx": 7130, - "order": "The Order of Protection", - "resources": ["Coal", "Wood", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [130.7154, 6.2008] - }, - "properties": { - "name": "Rozmros", - "realm_idx": 7131, - "order": "The Order of Protection", - "resources": ["Obsidian", "Ironwood", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.3801, -47.6996] - }, - "properties": { - "name": "Sunpunsun", - "realm_idx": 7132, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.9056, -48.9952] - }, - "properties": { - "name": "av Geiyngag", - "realm_idx": 7133, - "order": "The Order of the Fox", - "resources": ["Stone", "Copper", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.3891, -17.9146] - }, - "properties": { - "name": "dirm-Elt", - "realm_idx": 7134, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.3801, 43.7004] - }, - "properties": { - "name": "Wwidazww", - "realm_idx": 7135, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.9801, 38.9004] - }, - "properties": { - "name": "ruh Ih", - "realm_idx": 7136, - "order": "The Order of Anger", - "resources": ["Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [74.7471, -25.52] - }, - "properties": { - "name": "Keot Puem", - "realm_idx": 7137, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Wood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.3471, 19.08] - }, - "properties": { - "name": "Nlamk\u00e1s", - "realm_idx": 7138, - "order": "The Order of Skill", - "resources": ["Copper", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.68, -21.8997] - }, - "properties": { - "name": "Sonnin", - "realm_idx": 7139, - "order": "The Order of Detection", - "resources": ["Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [71.5471, -13.52] - }, - "properties": { - "name": "Epan\u00fam", - "realm_idx": 7140, - "order": "The Order of Perfection", - "resources": ["Wood", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.3039, -31.7323] - }, - "properties": { - "name": "Tuurs", - "realm_idx": 7141, - "order": "The Order of the Fox", - "resources": [ - "Hartwood", - "Wood", - "Ironwood", - "Coal", - "True Ice", - "Sapphire", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.4801, 27.8004] - }, - "properties": { - "name": "Poasoussous", - "realm_idx": 7142, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Coal", "Diamonds", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.6529, 14.78] - }, - "properties": { - "name": "Ekumot", - "realm_idx": 7143, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.78, -45.4996] - }, - "properties": { - "name": "Stumsk\u00ef", - "realm_idx": 7144, - "order": "The Order of the Fox", - "resources": ["Copper", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.38, -2.9997] - }, - "properties": { - "name": "Pipnumnal", - "realm_idx": 7145, - "order": "The Order of Detection", - "resources": ["Ignium", "Wood", "Silver", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.4529, 23.88] - }, - "properties": { - "name": "lon-Skonman", - "realm_idx": 7146, - "order": "The Order of Vitriol", - "resources": ["Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.9339, 20.0542] - }, - "properties": { - "name": "Owkej", - "realm_idx": 7147, - "order": "The Order of Fury", - "resources": ["Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.1471, 3.38] - }, - "properties": { - "name": "Lumpun", - "realm_idx": 7148, - "order": "The Order of Brilliance", - "resources": ["Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.1394, -34.2712] - }, - "properties": { - "name": "\u2018emnomhem", - "realm_idx": 7149, - "order": "The Order of Reflection", - "resources": ["Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.3236, 50.7482] - }, - "properties": { - "name": "Fl\u00faf\u2018\u00fakm\u00fam", - "realm_idx": 7150, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.7471, 6.58] - }, - "properties": { - "name": "ke Mipleno", - "realm_idx": 7151, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.2529, 49.28] - }, - "properties": { - "name": "Lautyout", - "realm_idx": 7152, - "order": "The Order of Fury", - "resources": ["Gold", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.7471, -26.32] - }, - "properties": { - "name": "Juwigig", - "realm_idx": 7153, - "order": "The Order of Giants", - "resources": ["Copper", "Wood", "True Ice", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.98, -35.0997] - }, - "properties": { - "name": "Totloptotmu", - "realm_idx": 7154, - "order": "The Order of Reflection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.0529, 5.88] - }, - "properties": { - "name": "Lipipali", - "realm_idx": 7155, - "order": "The Order of Vitriol", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [53.6471, 42.98] - }, - "properties": { - "name": "S\u00f3ss\u00f3s Slos", - "realm_idx": 7156, - "order": "The Order of Skill", - "resources": ["Obsidian", "Copper", "Coal", "Cold Iron", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.7293, -53.2982] - }, - "properties": { - "name": "Awshzhiwl", - "realm_idx": 7157, - "order": "The Order of the Twins", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.6471, 9.38] - }, - "properties": { - "name": "Uyequngumum", - "realm_idx": 7158, - "order": "The Order of Brilliance", - "resources": ["Silver", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.6176, 41.4311] - }, - "properties": { - "name": "rin Nilunung", - "realm_idx": 7159, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.48, -45.2996] - }, - "properties": { - "name": "Ukepugeg", - "realm_idx": 7160, - "order": "The Order of the Fox", - "resources": ["Gold", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.68, 29.1003] - }, - "properties": { - "name": "W\u00fakw\u00fas", - "realm_idx": 7161, - "order": "The Order of Fury", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.2471, -27.02] - }, - "properties": { - "name": "Neldteils", - "realm_idx": 7162, - "order": "The Order of Giants", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.2772, 52.8418] - }, - "properties": { - "name": "Bulm\u00edlyk\u00edr", - "realm_idx": 7163, - "order": "The Order of Fury", - "resources": ["Hartwood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.6801, 29.4004] - }, - "properties": { - "name": "\u00d4shunti\u00f4nna", - "realm_idx": 7164, - "order": "The Order of Rage", - "resources": ["Obsidian", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.8471, 25.38] - }, - "properties": { - "name": "Pepmike", - "realm_idx": 7165, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.9471, -40.92] - }, - "properties": { - "name": "Nagyasing", - "realm_idx": 7166, - "order": "The Order of Giants", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-49.8529, 49.08] - }, - "properties": { - "name": "Urpnakirmnap", - "realm_idx": 7167, - "order": "The Order of Fury", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.2471, 28.28] - }, - "properties": { - "name": "Gistwl", - "realm_idx": 7168, - "order": "The Order of Vitriol", - "resources": ["Coal", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.2471, -3.02] - }, - "properties": { - "name": "Etetan", - "realm_idx": 7169, - "order": "The Order of Power", - "resources": ["Hartwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-41.8529, 52.98] - }, - "properties": { - "name": "X\u00f6kniz", - "realm_idx": 7170, - "order": "The Order of Fury", - "resources": ["Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.5731, -17.4136] - }, - "properties": { - "name": "Laulkun", - "realm_idx": 7171, - "order": "The Order of Perfection", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.7529, 0.38] - }, - "properties": { - "name": "Siltak", - "realm_idx": 7172, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.2471, 49.98] - }, - "properties": { - "name": "K\u00e1zsmochm\u00e1ch", - "realm_idx": 7173, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.6883, -17.7524] - }, - "properties": { - "name": "Senluplup", - "realm_idx": 7174, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.3529, -0.02] - }, - "properties": { - "name": "Ubikh\u00fas", - "realm_idx": 7175, - "order": "The Order of Vitriol", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.3801, 4.8004] - }, - "properties": { - "name": "Obutob", - "realm_idx": 7176, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Coal", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.3801, 6.3004] - }, - "properties": { - "name": "Hiukhiuk", - "realm_idx": 7177, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.0801, 36.9004] - }, - "properties": { - "name": "Mulspol", - "realm_idx": 7178, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.0529, 5.58] - }, - "properties": { - "name": "Kene Onnunu", - "realm_idx": 7179, - "order": "The Order of Titans", - "resources": ["Stone", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.4471, 37.88] - }, - "properties": { - "name": "lim Nana", - "realm_idx": 7180, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.8529, -10.42] - }, - "properties": { - "name": "Tuzrizh", - "realm_idx": 7181, - "order": "The Order of the Fox", - "resources": ["Coal", "Stone", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-113.08, 10.8003] - }, - "properties": { - "name": "Krenkronprom", - "realm_idx": 7182, - "order": "The Order of Detection", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.4471, -22.12] - }, - "properties": { - "name": "El\u00e4momek\u00e4m", - "realm_idx": 7183, - "order": "The Order of Power", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.18, 17.5003] - }, - "properties": { - "name": "Kauqkaokqeq", - "realm_idx": 7184, - "order": "The Order of Fury", - "resources": ["Gold", "Wood", "Copper", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.8801, 30.9004] - }, - "properties": { - "name": "Kinton", - "realm_idx": 7185, - "order": "The Order of Anger", - "resources": ["Ironwood", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.1471, -41.62] - }, - "properties": { - "name": "Mautaemmai", - "realm_idx": 7186, - "order": "The Order of Giants", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.78, -33.6997] - }, - "properties": { - "name": "Anuwupumum", - "realm_idx": 7187, - "order": "The Order of Reflection", - "resources": ["Silver", "Copper", "Stone", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.0078, 50.2104] - }, - "properties": { - "name": "Hauknonlon", - "realm_idx": 7188, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.38, -2.4997] - }, - "properties": { - "name": "Anuhputuh", - "realm_idx": 7189, - "order": "The Order of Detection", - "resources": ["Silver", "True Ice", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.5471, 12.28] - }, - "properties": { - "name": "Tschedhud", - "realm_idx": 7190, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.5801, 26.3004] - }, - "properties": { - "name": "Kakioeki", - "realm_idx": 7191, - "order": "The Order of Rage", - "resources": ["Hartwood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.3471, 18.28] - }, - "properties": { - "name": "Iekeideidob", - "realm_idx": 7192, - "order": "The Order of Brilliance", - "resources": ["Stone", "Gold", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.6801, -29.1996] - }, - "properties": { - "name": "Hyukhyukpuum", - "realm_idx": 7193, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Wood", "Gold", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.3471, -12.42] - }, - "properties": { - "name": "Smanminkiin", - "realm_idx": 7194, - "order": "The Order of Power", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.1801, 4.1004] - }, - "properties": { - "name": "Eletupup", - "realm_idx": 7195, - "order": "The Order of Rage", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.6471, -20.02] - }, - "properties": { - "name": "Lurmel", - "realm_idx": 7196, - "order": "The Order of Perfection", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.1801, 16.8004] - }, - "properties": { - "name": "Tururar", - "realm_idx": 7197, - "order": "The Order of Rage", - "resources": ["Hartwood", "Cold Iron", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.3529, 31.48] - }, - "properties": { - "name": "shlum Dad", - "realm_idx": 7198, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.9529, 11.78] - }, - "properties": { - "name": "Shnunhum", - "realm_idx": 7199, - "order": "The Order of Vitriol", - "resources": ["Copper", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.9801, -13.3996] - }, - "properties": { - "name": "Ruzsu", - "realm_idx": 7200, - "order": "The Order of Rage", - "resources": ["Coal", "Stone", "Copper", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.6081, 1.3222] - }, - "properties": { - "name": "\u0160\u017ee\u017e\u0161zus", - "realm_idx": 7201, - "order": "The Order of Reflection", - "resources": ["Coal", "Deep Crystal", "Stone", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.9115, -22.3068] - }, - "properties": { - "name": "Itik Ih\u00e1tik", - "realm_idx": 7202, - "order": "The Order of Perfection", - "resources": ["Wood", "Gold", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.2801, 11.4004] - }, - "properties": { - "name": "Shgush", - "realm_idx": 7203, - "order": "The Order of Rage", - "resources": ["Stone", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.6554, -23.5155] - }, - "properties": { - "name": "Saansliin", - "realm_idx": 7204, - "order": "The Order of Protection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.9045, 27.9708] - }, - "properties": { - "name": "Nom-Pumon", - "realm_idx": 7205, - "order": "The Order of Fury", - "resources": ["Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.4801, -31.6996] - }, - "properties": { - "name": "Uh\u00ebtom\u00efpim", - "realm_idx": 7206, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.9471, 21.58] - }, - "properties": { - "name": "Hekine\u2018uk", - "realm_idx": 7207, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Sapphire", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [60.6471, 9.48] - }, - "properties": { - "name": "Tunnrunnrun", - "realm_idx": 7208, - "order": "The Order of Brilliance", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [58.7471, 25.28] - }, - "properties": { - "name": "Kentim", - "realm_idx": 7209, - "order": "The Order of Skill", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.9471, 3.58] - }, - "properties": { - "name": "Tini-Tusi", - "realm_idx": 7210, - "order": "The Order of Brilliance", - "resources": ["Stone", "Obsidian", "Wood", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.947, -1.62] - }, - "properties": { - "name": "Roxadimro", - "realm_idx": 7211, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.28, 8.9003] - }, - "properties": { - "name": "Mehakham", - "realm_idx": 7212, - "order": "The Order of Detection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.2471, 5.18] - }, - "properties": { - "name": "Gi \u00edn Gu", - "realm_idx": 7213, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Wood", "Silver", "Coal", "Gold", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.3801, 17.9004] - }, - "properties": { - "name": "ma-D\u00edsh", - "realm_idx": 7214, - "order": "The Order of Rage", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.2471, 37.88] - }, - "properties": { - "name": "Sgovstug", - "realm_idx": 7215, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-8.4529, -27.32] - }, - "properties": { - "name": "Wazhchezh", - "realm_idx": 7216, - "order": "The Order of Power", - "resources": ["Copper", "Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.8471, 23.48] - }, - "properties": { - "name": "Lilluk", - "realm_idx": 7217, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Ironwood", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.8471, -8.32] - }, - "properties": { - "name": "Laskuk", - "realm_idx": 7218, - "order": "The Order of Giants", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.0564, 8.0861] - }, - "properties": { - "name": "Paohpaoh", - "realm_idx": 7219, - "order": "The Order of Protection", - "resources": ["Copper", "Silver", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.4801, 10.2004] - }, - "properties": { - "name": "Talsitut", - "realm_idx": 7220, - "order": "The Order of Rage", - "resources": ["Wood", "Coal", "Ironwood", "Copper", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [88.2471, 1.28] - }, - "properties": { - "name": "\u00c4nin\u00ebman", - "realm_idx": 7221, - "order": "The Order of Brilliance", - "resources": ["Silver", "Wood", "Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-113.68, 38.9003] - }, - "properties": { - "name": "Geksnes", - "realm_idx": 7222, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Ruby", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-44.7051, 51.3833] - }, - "properties": { - "name": "Enemman", - "realm_idx": 7223, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.9471, 17.88] - }, - "properties": { - "name": "Shwen", - "realm_idx": 7224, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.7471, 24.08] - }, - "properties": { - "name": "Nutnutmet", - "realm_idx": 7225, - "order": "The Order of Skill", - "resources": ["Gold", "Ethereal Silica", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.8529, 28.28] - }, - "properties": { - "name": "mir-Lizhbeb", - "realm_idx": 7226, - "order": "The Order of Vitriol", - "resources": ["Sapphire", "Stone", "Copper", "Coal", "Ruby", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.6471, 21.48] - }, - "properties": { - "name": "Oyoyelel", - "realm_idx": 7227, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.7471, 32.28] - }, - "properties": { - "name": "Wonhan", - "realm_idx": 7228, - "order": "The Order of Skill", - "resources": ["Coal", "Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.9801, 43.1004] - }, - "properties": { - "name": "Waw\u00edliyw", - "realm_idx": 7229, - "order": "The Order of Anger", - "resources": ["Wood", "Obsidian", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.7471, -18.62] - }, - "properties": { - "name": "W\u00e1wwam", - "realm_idx": 7230, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.8471, 48.98] - }, - "properties": { - "name": "pjik Kas", - "realm_idx": 7231, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [114.2471, 35.28] - }, - "properties": { - "name": "Seipmul", - "realm_idx": 7232, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.5816, 29.74] - }, - "properties": { - "name": "pom Kah", - "realm_idx": 7233, - "order": "The Order of Reflection", - "resources": [ - "Obsidian", - "Coal", - "Copper", - "Gold", - "Hartwood", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.7471, -27.02] - }, - "properties": { - "name": "Kukutek", - "realm_idx": 7234, - "order": "The Order of Giants", - "resources": ["Wood", "Silver", "Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.5471, 28.48] - }, - "properties": { - "name": "Nonsom", - "realm_idx": 7235, - "order": "The Order of Skill", - "resources": ["Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.3924, 33.8741] - }, - "properties": { - "name": "Rekik", - "realm_idx": 7236, - "order": "The Order of Fury", - "resources": ["Wood", "Coal", "Hartwood", "Ironwood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.2793, 32.098] - }, - "properties": { - "name": "Tiutchham", - "realm_idx": 7237, - "order": "The Order of Anger", - "resources": ["Wood", "Ironwood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.5298, 2.6328] - }, - "properties": { - "name": "Nrumnlontun", - "realm_idx": 7238, - "order": "The Order of Reflection", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.2471, 6.18] - }, - "properties": { - "name": "Odkren", - "realm_idx": 7239, - "order": "The Order of Titans", - "resources": ["Stone", "Coal", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.58, -6.6997] - }, - "properties": { - "name": "Kunkan", - "realm_idx": 7240, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.38, -6.8997] - }, - "properties": { - "name": "Sdozskoso", - "realm_idx": 7241, - "order": "The Order of Reflection", - "resources": ["Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.1471, 49.78] - }, - "properties": { - "name": "T\u00edjara", - "realm_idx": 7242, - "order": "The Order of Enlightenment", - "resources": ["Cold Iron", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.18, 26.5003] - }, - "properties": { - "name": "Odzhuoe", - "realm_idx": 7243, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.4529, 11.78] - }, - "properties": { - "name": "Kupnep", - "realm_idx": 7244, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.1471, 11.38] - }, - "properties": { - "name": "Pangnring", - "realm_idx": 7245, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.18, 12.1003] - }, - "properties": { - "name": "M\u00f4ngm\u00f4ngon", - "realm_idx": 7246, - "order": "The Order of Detection", - "resources": ["Wood", "Ironwood", "Copper", "Stone", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.6654, -24.0565] - }, - "properties": { - "name": "Nrohnanpin", - "realm_idx": 7247, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [101.8471, 49.28] - }, - "properties": { - "name": "put-Kokmon\u00fa", - "realm_idx": 7248, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Ironwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.8081, 39.0297] - }, - "properties": { - "name": "Panampan", - "realm_idx": 7249, - "order": "The Order of Fury", - "resources": ["Ironwood", "Wood", "Coal", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.98, -48.3997] - }, - "properties": { - "name": "Qeqaawu", - "realm_idx": 7250, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.8471, -14.12] - }, - "properties": { - "name": "Krumqlimngen", - "realm_idx": 7251, - "order": "The Order of Perfection", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.7529, 10.28] - }, - "properties": { - "name": "Mungpyang", - "realm_idx": 7252, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.18, 34.9003] - }, - "properties": { - "name": "Skanskin", - "realm_idx": 7253, - "order": "The Order of Reflection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.4772, 52.4704] - }, - "properties": { - "name": "Lowhe\u2018", - "realm_idx": 7254, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.4801, 49.2004] - }, - "properties": { - "name": "Lenuklempin", - "realm_idx": 7255, - "order": "The Order of Anger", - "resources": ["Coal", "Wood", "Gold", "Stone", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.2471, 3.98] - }, - "properties": { - "name": "S\u00e9snis\u0161kil", - "realm_idx": 7256, - "order": "The Order of Titans", - "resources": ["Coal", "Sapphire", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.8801, 39.9004] - }, - "properties": { - "name": "Bobpizzhas", - "realm_idx": 7257, - "order": "The Order of Anger", - "resources": ["Wood", "Diamonds", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.0471, 58.78] - }, - "properties": { - "name": "Morirkeirs", - "realm_idx": 7258, - "order": "The Order of Titans", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.7938, 43.1004] - }, - "properties": { - "name": "Mejmijt", - "realm_idx": 7259, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.0193, -16.4548] - }, - "properties": { - "name": "Naklimmusnis", - "realm_idx": 7260, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.48, -44.3997] - }, - "properties": { - "name": "Gingkinngi", - "realm_idx": 7261, - "order": "The Order of the Fox", - "resources": ["Stone", "Copper", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.4156, -15.7004] - }, - "properties": { - "name": "Shuggusnit", - "realm_idx": 7262, - "order": "The Order of Protection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.5471, 41.68] - }, - "properties": { - "name": "Seghosiwo", - "realm_idx": 7263, - "order": "The Order of Skill", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.6801, -31.2996] - }, - "properties": { - "name": "Gh\u00edm\u00e9nan", - "realm_idx": 7264, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Wood", "Obsidian", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.8801, 40.4004] - }, - "properties": { - "name": "Sutsut", - "realm_idx": 7265, - "order": "The Order of Anger", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.591, -10.7509] - }, - "properties": { - "name": "Emonek", - "realm_idx": 7266, - "order": "The Order of the Fox", - "resources": ["Copper", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.78, -57.6996] - }, - "properties": { - "name": "Naamesilak", - "realm_idx": 7267, - "order": "The Order of the Fox", - "resources": ["Coal", "Stone", "Ruby", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.1471, -12.92] - }, - "properties": { - "name": "Lungg\u00edng", - "realm_idx": 7268, - "order": "The Order of Giants", - "resources": ["Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.8471, -38.62] - }, - "properties": { - "name": "Kalnipirh", - "realm_idx": 7269, - "order": "The Order of Giants", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.9381, -21.7693] - }, - "properties": { - "name": "Telskelk", - "realm_idx": 7270, - "order": "The Order of Protection", - "resources": ["Stone", "Copper", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.0529, 17.78] - }, - "properties": { - "name": "Nanpinpen\u2018im", - "realm_idx": 7271, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-21.8529, 42.08] - }, - "properties": { - "name": "Ak\u00e2kk\u00e2ktys", - "realm_idx": 7272, - "order": "The Order of Vitriol", - "resources": ["Stone", "Obsidian", "Hartwood", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.98, 19.0003] - }, - "properties": { - "name": "Luyud", - "realm_idx": 7273, - "order": "The Order of Detection", - "resources": ["Wood", "Coal", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.58, -31.8997] - }, - "properties": { - "name": "Miminmimkan", - "realm_idx": 7274, - "order": "The Order of Detection", - "resources": [ - "Cold Iron", - "Ignium", - "Stone", - "Copper", - "Coal", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.9884, 4.4116] - }, - "properties": { - "name": "Gazmoz Kuzh", - "realm_idx": 7275, - "order": "The Order of Protection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.6801, 39.6004] - }, - "properties": { - "name": "Koiskakkek", - "realm_idx": 7276, - "order": "The Order of Anger", - "resources": ["Ironwood", "Coal", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.1596, -22.5575] - }, - "properties": { - "name": "Lurul", - "realm_idx": 7277, - "order": "The Order of Perfection", - "resources": ["Silver", "Copper", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.4529, -6.02] - }, - "properties": { - "name": "Nasustikakus", - "realm_idx": 7278, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Coal", "Copper", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.6471, 34.08] - }, - "properties": { - "name": "Not\u00fanot\u00fa", - "realm_idx": 7279, - "order": "The Order of Skill", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.4471, 47.78] - }, - "properties": { - "name": "Paw\u00e1p\u00e9pawk\u00e9\u00e9", - "realm_idx": 7280, - "order": "The Order of Skill", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.8471, -13.32] - }, - "properties": { - "name": "Sonpon Ens\u00edn", - "realm_idx": 7281, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.7801, 8.4004] - }, - "properties": { - "name": "Kymi-T\u00eakwug", - "realm_idx": 7282, - "order": "The Order of Rage", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.2801, -31.9996] - }, - "properties": { - "name": "Qutastas", - "realm_idx": 7283, - "order": "The Order of the Twins", - "resources": ["Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.38, -27.5997] - }, - "properties": { - "name": "Zullels", - "realm_idx": 7284, - "order": "The Order of Reflection", - "resources": ["Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.6471, 39.58] - }, - "properties": { - "name": "Luylhiwl\u2018aw", - "realm_idx": 7285, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.3529, -30.02] - }, - "properties": { - "name": "Nwonsunlun", - "realm_idx": 7286, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.28, 12.1003] - }, - "properties": { - "name": "Golng", - "realm_idx": 7287, - "order": "The Order of Fury", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [8.4471, 27.58] - }, - "properties": { - "name": "Tie Tieho\u00fa", - "realm_idx": 7288, - "order": "The Order of Titans", - "resources": ["Silver", "Gold", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.6359, -18.5408] - }, - "properties": { - "name": "s\u00e1t Kok", - "realm_idx": 7289, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.3471, 10.68] - }, - "properties": { - "name": "Chorzzor", - "realm_idx": 7290, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.5801, -52.8996] - }, - "properties": { - "name": "Okb\u00edd L\u00edm", - "realm_idx": 7291, - "order": "The Order of the Twins", - "resources": ["Coal", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.6339, 20.3542] - }, - "properties": { - "name": "Frobyuuyuu", - "realm_idx": 7292, - "order": "The Order of Fury", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.7963, 47.5777] - }, - "properties": { - "name": "Tututuh\u00e4pt\u00efk", - "realm_idx": 7293, - "order": "The Order of Fury", - "resources": ["Ethereal Silica", "Gold", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.68, 27.8003] - }, - "properties": { - "name": "Symtan", - "realm_idx": 7294, - "order": "The Order of Fury", - "resources": ["Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.2471, 10.88] - }, - "properties": { - "name": "Wispaa\u2018spu\u2018", - "realm_idx": 7295, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.3801, 46.1004] - }, - "properties": { - "name": "Olotep", - "realm_idx": 7296, - "order": "The Order of Anger", - "resources": ["Gold", "Wood", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [44.4471, -38.22] - }, - "properties": { - "name": "Smatzaza", - "realm_idx": 7297, - "order": "The Order of Giants", - "resources": ["Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.5471, 33.28] - }, - "properties": { - "name": "Tienhaun", - "realm_idx": 7298, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Obsidian", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.5471, -34.22] - }, - "properties": { - "name": "T\u00f3lsalt", - "realm_idx": 7299, - "order": "The Order of Giants", - "resources": ["Obsidian", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.5731, 37.5253] - }, - "properties": { - "name": "Muk\u00ef lan M\u00e4n", - "realm_idx": 7300, - "order": "The Order of Fury", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.4471, 27.48] - }, - "properties": { - "name": "Rieduk", - "realm_idx": 7301, - "order": "The Order of Skill", - "resources": ["Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.2801, 46.0004] - }, - "properties": { - "name": "Umap Amum", - "realm_idx": 7302, - "order": "The Order of Anger", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.8471, -13.82] - }, - "properties": { - "name": "Idtlor", - "realm_idx": 7303, - "order": "The Order of Perfection", - "resources": ["Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.08, -43.3997] - }, - "properties": { - "name": "Kuokuo", - "realm_idx": 7304, - "order": "The Order of the Fox", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.7471, -1.32] - }, - "properties": { - "name": "Ashsos", - "realm_idx": 7305, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-113.28, 38.6003] - }, - "properties": { - "name": "Nomnonnonnon", - "realm_idx": 7306, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood", "Silver", "Twilight Quartz", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.5992, -22.6716] - }, - "properties": { - "name": "Anchimbon", - "realm_idx": 7307, - "order": "The Order of Protection", - "resources": ["Wood", "Hartwood", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.2471, -34.82] - }, - "properties": { - "name": "Ischmik", - "realm_idx": 7308, - "order": "The Order of Giants", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.1471, -7.82] - }, - "properties": { - "name": "Mutusu", - "realm_idx": 7309, - "order": "The Order of Giants", - "resources": ["Silver", "Deep Crystal", "Obsidian", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.18, 30.8003] - }, - "properties": { - "name": "Dinnlan\u0161lin", - "realm_idx": 7310, - "order": "The Order of Fury", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.1239, -17.3734] - }, - "properties": { - "name": "ri-Kotukoke", - "realm_idx": 7311, - "order": "The Order of Perfection", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.4471, 3.28] - }, - "properties": { - "name": "ma\u2018 Pipmi", - "realm_idx": 7312, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.6801, 30.1004] - }, - "properties": { - "name": "Mlotchmratch", - "realm_idx": 7313, - "order": "The Order of Anger", - "resources": ["Silver", "Wood", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.8532, 6.8683] - }, - "properties": { - "name": "Rou\u010dp\u00e4\u017eleul", - "realm_idx": 7314, - "order": "The Order of Protection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.4471, 22.58] - }, - "properties": { - "name": "\u0160\u00fangrung", - "realm_idx": 7315, - "order": "The Order of Skill", - "resources": ["Obsidian", "Coal", "Cold Iron", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.9461, 43.751] - }, - "properties": { - "name": "Puopkokk\u00f4t", - "realm_idx": 7316, - "order": "The Order of Anger", - "resources": ["Wood", "Ignium", "Deep Crystal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.2471, 13.08] - }, - "properties": { - "name": "Koniklik", - "realm_idx": 7317, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-127.98, -12.3997] - }, - "properties": { - "name": "Pe\u0161a Za\u017eisa", - "realm_idx": 7318, - "order": "The Order of Detection", - "resources": ["Ironwood", "Stone", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.4801, -23.1996] - }, - "properties": { - "name": "Linlinluk", - "realm_idx": 7319, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.5356, -16.7769] - }, - "properties": { - "name": "Sas Amsus", - "realm_idx": 7320, - "order": "The Order of Protection", - "resources": ["Copper", "Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.3899, 47.579] - }, - "properties": { - "name": "Khemkhomda", - "realm_idx": 7321, - "order": "The Order of Fury", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.0215, -20.8928] - }, - "properties": { - "name": "Snansnan", - "realm_idx": 7322, - "order": "The Order of Reflection", - "resources": ["Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.9471, -47.62] - }, - "properties": { - "name": "Iraarpsars", - "realm_idx": 7323, - "order": "The Order of Giants", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.8837, -14.2465] - }, - "properties": { - "name": "Glogpleywus", - "realm_idx": 7324, - "order": "The Order of Perfection", - "resources": [ - "Stone", - "Cold Iron", - "Wood", - "Coal", - "Silver", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.58, -44.8996] - }, - "properties": { - "name": "Intin", - "realm_idx": 7325, - "order": "The Order of the Fox", - "resources": ["Hartwood", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.88, -16.3997] - }, - "properties": { - "name": "Meumousch", - "realm_idx": 7326, - "order": "The Order of Detection", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.9801, -22.1996] - }, - "properties": { - "name": "Usilmumis", - "realm_idx": 7327, - "order": "The Order of the Twins", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.7471, -19.52] - }, - "properties": { - "name": "Qwzh\u00f4", - "realm_idx": 7328, - "order": "The Order of Giants", - "resources": ["Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.0801, 23.3004] - }, - "properties": { - "name": "Kibukzahe", - "realm_idx": 7329, - "order": "The Order of Rage", - "resources": ["Obsidian", "Cold Iron", "Hartwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.0471, 48.78] - }, - "properties": { - "name": "Sannis", - "realm_idx": 7330, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Ignium", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [47.4471, -28.22] - }, - "properties": { - "name": "Shnonskomnon", - "realm_idx": 7331, - "order": "The Order of Giants", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.58, 9.7003] - }, - "properties": { - "name": "pu-Muhmuh", - "realm_idx": 7332, - "order": "The Order of Detection", - "resources": ["Twilight Quartz", "Gold", "Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.4551, -41.4777] - }, - "properties": { - "name": "zhl\u00e4n Mlan", - "realm_idx": 7333, - "order": "The Order of the Fox", - "resources": ["Coal", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.5107, -22.5602] - }, - "properties": { - "name": "Nianauook", - "realm_idx": 7334, - "order": "The Order of Protection", - "resources": ["Stone", "Wood", "Coal", "Gold", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.7801, -53.4996] - }, - "properties": { - "name": "Nyutnammyis", - "realm_idx": 7335, - "order": "The Order of the Twins", - "resources": ["Stone", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.78, 30.2003] - }, - "properties": { - "name": "M\u00efnnenlunm\u00ebs", - "realm_idx": 7336, - "order": "The Order of Fury", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.4471, 13.48] - }, - "properties": { - "name": "Onsunem", - "realm_idx": 7337, - "order": "The Order of Brilliance", - "resources": ["Stone", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [22.0471, 59.08] - }, - "properties": { - "name": "Aakookekumek", - "realm_idx": 7338, - "order": "The Order of Titans", - "resources": ["Wood", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.0529, -5.92] - }, - "properties": { - "name": "Moup\u2018ao\u2018ao", - "realm_idx": 7339, - "order": "The Order of the Fox", - "resources": ["Stone", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.38, -7.4997] - }, - "properties": { - "name": "Imkon pun Un", - "realm_idx": 7340, - "order": "The Order of Reflection", - "resources": ["Wood", "Cold Iron", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.6325, 4.324] - }, - "properties": { - "name": "Notnumkimtah", - "realm_idx": 7341, - "order": "The Order of Protection", - "resources": ["Stone", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.7529, 37.38] - }, - "properties": { - "name": "T\u00edmp\u00edp", - "realm_idx": 7342, - "order": "The Order of Vitriol", - "resources": ["Stone", "Copper", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.9471, 35.18] - }, - "properties": { - "name": "Niniton", - "realm_idx": 7343, - "order": "The Order of Skill", - "resources": ["Ethereal Silica", "Obsidian", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.1471, -1.22] - }, - "properties": { - "name": "Vanelva", - "realm_idx": 7344, - "order": "The Order of Giants", - "resources": ["Silver", "Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.4485, -28.8584] - }, - "properties": { - "name": "Ftipshtu", - "realm_idx": 7345, - "order": "The Order of Protection", - "resources": ["Copper", "Stone", "Coal", "Ignium", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.2471, 35.08] - }, - "properties": { - "name": "Semsem", - "realm_idx": 7346, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Wood", "Cold Iron", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.58, -16.4997] - }, - "properties": { - "name": "Mr\u00e9nlip", - "realm_idx": 7347, - "order": "The Order of Reflection", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.7471, -39.72] - }, - "properties": { - "name": "Mipukmiknik", - "realm_idx": 7348, - "order": "The Order of Giants", - "resources": ["Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.78, -33.7997] - }, - "properties": { - "name": "Keuptottot", - "realm_idx": 7349, - "order": "The Order of the Fox", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.6471, 2.48] - }, - "properties": { - "name": "Usukek", - "realm_idx": 7350, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.9529, -40.12] - }, - "properties": { - "name": "Kudooklashe", - "realm_idx": 7351, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.88, -41.6996] - }, - "properties": { - "name": "Shzhen", - "realm_idx": 7352, - "order": "The Order of the Fox", - "resources": [ - "Stone", - "Ethereal Silica", - "Ironwood", - "Twilight Quartz", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.3529, 9.98] - }, - "properties": { - "name": "Ar-Ulk", - "realm_idx": 7353, - "order": "The Order of Vitriol", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.5529, -6.82] - }, - "properties": { - "name": "os Tekok", - "realm_idx": 7354, - "order": "The Order of the Fox", - "resources": ["Silver", "Wood", "Gold", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.18, -49.8997] - }, - "properties": { - "name": "kih Kakak", - "realm_idx": 7355, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Wood", "Stone", "Sapphire", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.7471, 48.58] - }, - "properties": { - "name": "Ekenenapohem", - "realm_idx": 7356, - "order": "The Order of Skill", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.9471, 9.18] - }, - "properties": { - "name": "Stes Snoo\u017e", - "realm_idx": 7357, - "order": "The Order of Protection", - "resources": ["Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.5471, 17.58] - }, - "properties": { - "name": "Hakha", - "realm_idx": 7358, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.1529, -40.32] - }, - "properties": { - "name": "Lotslesghagh", - "realm_idx": 7359, - "order": "The Order of Power", - "resources": [ - "Cold Iron", - "Silver", - "Gold", - "Wood", - "Alchemical Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.9918, -24.0914] - }, - "properties": { - "name": "Saunnrung", - "realm_idx": 7360, - "order": "The Order of Perfection", - "resources": ["Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-15.9529, -24.42] - }, - "properties": { - "name": "Erq ig Xird", - "realm_idx": 7361, - "order": "The Order of Power", - "resources": ["Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.0471, 1.28] - }, - "properties": { - "name": "me Kotlou", - "realm_idx": 7362, - "order": "The Order of Brilliance", - "resources": ["Coal", "Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.7471, 24.08] - }, - "properties": { - "name": "\u2018e\u2018onpuy\u2018", - "realm_idx": 7363, - "order": "The Order of Titans", - "resources": ["Stone", "True Ice", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.98, 33.8003] - }, - "properties": { - "name": "Lul Ekullul", - "realm_idx": 7364, - "order": "The Order of Reflection", - "resources": ["Diamonds", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.2801, 18.4004] - }, - "properties": { - "name": "Inikam", - "realm_idx": 7365, - "order": "The Order of Rage", - "resources": ["Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.68, 8.7003] - }, - "properties": { - "name": "Oskam", - "realm_idx": 7366, - "order": "The Order of Detection", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.0471, 17.08] - }, - "properties": { - "name": "Tonnun", - "realm_idx": 7367, - "order": "The Order of Protection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.9801, -19.0996] - }, - "properties": { - "name": "Normnor\u2018irw", - "realm_idx": 7368, - "order": "The Order of the Twins", - "resources": ["Gold", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.3529, -24.12] - }, - "properties": { - "name": "Senonekpam", - "realm_idx": 7369, - "order": "The Order of Power", - "resources": ["Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.98, -23.8997] - }, - "properties": { - "name": "Tulituli", - "realm_idx": 7370, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Gold", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.4446, -23.5298] - }, - "properties": { - "name": "Zhuchnet", - "realm_idx": 7371, - "order": "The Order of Protection", - "resources": ["Silver", "Cold Iron", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.08, -11.6997] - }, - "properties": { - "name": "Biz Tej", - "realm_idx": 7372, - "order": "The Order of Detection", - "resources": ["Mithral", "Coal", "Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.0471, 15.78] - }, - "properties": { - "name": "Mulmolnap", - "realm_idx": 7373, - "order": "The Order of Skill", - "resources": ["Coal", "Ironwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.9529, -22.52] - }, - "properties": { - "name": "Ghoghis", - "realm_idx": 7374, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.88, -1.4997] - }, - "properties": { - "name": "Tuitmait", - "realm_idx": 7375, - "order": "The Order of Detection", - "resources": ["Ironwood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.58, -33.0997] - }, - "properties": { - "name": "Neowleum", - "realm_idx": 7376, - "order": "The Order of the Fox", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.1471, -1.52] - }, - "properties": { - "name": "L\u00e1n \u00c1nanun", - "realm_idx": 7377, - "order": "The Order of Brilliance", - "resources": ["Coal", "Copper", "Gold", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.7471, -29.22] - }, - "properties": { - "name": "\u0160langnengong", - "realm_idx": 7378, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.9529, -10.52] - }, - "properties": { - "name": "h\u00e4\u2018 P\u00eb\u2018l\u00eb\u2018", - "realm_idx": 7379, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Gold", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.5529, 44.58] - }, - "properties": { - "name": "Un\u00e4kh\u00efl", - "realm_idx": 7380, - "order": "The Order of Fury", - "resources": ["Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.0471, 11.48] - }, - "properties": { - "name": "Nunsendun", - "realm_idx": 7381, - "order": "The Order of Brilliance", - "resources": ["Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.1338, -17.6968] - }, - "properties": { - "name": "Bughi", - "realm_idx": 7382, - "order": "The Order of Protection", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.4471, 40.28] - }, - "properties": { - "name": "Um Momngum", - "realm_idx": 7383, - "order": "The Order of Skill", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.492, 39.4172] - }, - "properties": { - "name": "Omon-Nosotus", - "realm_idx": 7384, - "order": "The Order of Anger", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.6529, -34.42] - }, - "properties": { - "name": "Snonnussek", - "realm_idx": 7385, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.047, -2.42] - }, - "properties": { - "name": "Migiltpiq", - "realm_idx": 7386, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.9471, -50.92] - }, - "properties": { - "name": "Bazpibsdit", - "realm_idx": 7387, - "order": "The Order of Giants", - "resources": ["Twilight Quartz", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.68, -9.2449] - }, - "properties": { - "name": "Tettet", - "realm_idx": 7388, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [68.7471, -16.12] - }, - "properties": { - "name": "\u0160mo\u0161mej", - "realm_idx": 7389, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.88, -31.3997] - }, - "properties": { - "name": "Tulunsa", - "realm_idx": 7390, - "order": "The Order of the Fox", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.5471, 16.48] - }, - "properties": { - "name": "Mehhopheh", - "realm_idx": 7391, - "order": "The Order of Protection", - "resources": ["Wood", "Obsidian", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.6801, 42.0004] - }, - "properties": { - "name": "Wrinpin", - "realm_idx": 7392, - "order": "The Order of Anger", - "resources": [ - "Wood", - "Stone", - "Silver", - "Obsidian", - "Twilight Quartz", - "Coal", - "Gold" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.4801, -36.2996] - }, - "properties": { - "name": "M\u00e2kp\u00e2kw\u00e2k", - "realm_idx": 7393, - "order": "The Order of the Twins", - "resources": ["Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.1471, 17.28] - }, - "properties": { - "name": "Desosdedolt", - "realm_idx": 7394, - "order": "The Order of Skill", - "resources": ["Wood", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.847, -4.62] - }, - "properties": { - "name": "Teknisduk", - "realm_idx": 7395, - "order": "The Order of Perfection", - "resources": ["Sapphire", "Ironwood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.3527, 49.8801] - }, - "properties": { - "name": "Hiumau\u2018\u00e2un", - "realm_idx": 7396, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.3471, 49.58] - }, - "properties": { - "name": "Numnumul", - "realm_idx": 7397, - "order": "The Order of Skill", - "resources": ["Silver", "Stone", "Obsidian", "Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.4801, 4.0004] - }, - "properties": { - "name": "Iiduiid", - "realm_idx": 7398, - "order": "The Order of Rage", - "resources": ["Coal", "Copper", "Gold", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.8381, 13.4556] - }, - "properties": { - "name": "\u010c\u00efnenn\u00e4k", - "realm_idx": 7399, - "order": "The Order of Fury", - "resources": ["Wood", "Gold", "Alchemical Silver", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.1201, 32.6049] - }, - "properties": { - "name": "Zhumrozhkel", - "realm_idx": 7400, - "order": "The Order of Anger", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.78, 9.1003] - }, - "properties": { - "name": "Deensaas", - "realm_idx": 7401, - "order": "The Order of Detection", - "resources": ["Stone", "Copper", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.2801, 25.6004] - }, - "properties": { - "name": "Empenemusmel", - "realm_idx": 7402, - "order": "The Order of Rage", - "resources": ["Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [84.8981, -22.0294] - }, - "properties": { - "name": "Slichdis", - "realm_idx": 7403, - "order": "The Order of Perfection", - "resources": [ - "Copper", - "Diamonds", - "Wood", - "Cold Iron", - "Coal", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [10.7471, 45.48] - }, - "properties": { - "name": "Nar lim Mis", - "realm_idx": 7404, - "order": "The Order of Titans", - "resources": ["Coal", "Wood", "Deep Crystal", "Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.6471, -11.42] - }, - "properties": { - "name": "Tornlilqmel", - "realm_idx": 7405, - "order": "The Order of Perfection", - "resources": ["Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.08, 28.0003] - }, - "properties": { - "name": "Dinskintyn", - "realm_idx": 7406, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.0471, 9.38] - }, - "properties": { - "name": "\u00c2lilh", - "realm_idx": 7407, - "order": "The Order of Protection", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.8471, 14.28] - }, - "properties": { - "name": "Kekxix", - "realm_idx": 7408, - "order": "The Order of Titans", - "resources": ["Wood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.4471, -49.72] - }, - "properties": { - "name": "Ikemilum", - "realm_idx": 7409, - "order": "The Order of Giants", - "resources": ["Obsidian", "Diamonds", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.9471, -42.32] - }, - "properties": { - "name": "Selnalal", - "realm_idx": 7410, - "order": "The Order of Giants", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.8801, 17.1004] - }, - "properties": { - "name": "Sukiki", - "realm_idx": 7411, - "order": "The Order of Rage", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.4471, 27.38] - }, - "properties": { - "name": "Hl\u00efklwihhu\u2018", - "realm_idx": 7412, - "order": "The Order of Titans", - "resources": ["Hartwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.2471, 28.18] - }, - "properties": { - "name": "Shtippitstok", - "realm_idx": 7413, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Coal", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.6529, -7.42] - }, - "properties": { - "name": "Uludjun", - "realm_idx": 7414, - "order": "The Order of the Fox", - "resources": ["Copper", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.701, 18.3246] - }, - "properties": { - "name": "Noekk\u00e9onio", - "realm_idx": 7415, - "order": "The Order of Protection", - "resources": ["Wood", "Ironwood", "Obsidian", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.4471, 34.28] - }, - "properties": { - "name": "Nuemoe", - "realm_idx": 7416, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Coal", "Copper", "Stone", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.6471, 51.28] - }, - "properties": { - "name": "P\u00e9 Chla", - "realm_idx": 7417, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Copper", "Hartwood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.88, 12.6003] - }, - "properties": { - "name": "Kenlumngum", - "realm_idx": 7418, - "order": "The Order of Fury", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.0529, 54.48] - }, - "properties": { - "name": "Ch\u00e4ynbokom", - "realm_idx": 7419, - "order": "The Order of Fury", - "resources": [ - "Ironwood", - "Alchemical Silver", - "Wood", - "Copper", - "Silver", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.0442, 51.394] - }, - "properties": { - "name": "Irtp\u00edrn", - "realm_idx": 7420, - "order": "The Order of Fury", - "resources": ["Adamantine", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.1471, 32.28] - }, - "properties": { - "name": "in Onim", - "realm_idx": 7421, - "order": "The Order of Skill", - "resources": ["Stone", "Hartwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.4471, 19.28] - }, - "properties": { - "name": "Skak M\u00fapm\u00e1k", - "realm_idx": 7422, - "order": "The Order of Brilliance", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.7529, -33.32] - }, - "properties": { - "name": "U\u010d\u00fapub\u00f3l\u00e1p\u00e1b", - "realm_idx": 7423, - "order": "The Order of Power", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.8801, 43.8004] - }, - "properties": { - "name": "Urmip", - "realm_idx": 7424, - "order": "The Order of Anger", - "resources": ["Stone", "Coal", "Deep Crystal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.2471, 6.98] - }, - "properties": { - "name": "Hanmummin", - "realm_idx": 7425, - "order": "The Order of Titans", - "resources": ["Obsidian", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.9471, 52.48] - }, - "properties": { - "name": "\u00c2kostak", - "realm_idx": 7426, - "order": "The Order of Titans", - "resources": ["Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.68, 32.9003] - }, - "properties": { - "name": "Silkenmen", - "realm_idx": 7427, - "order": "The Order of Reflection", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.38, -46.4996] - }, - "properties": { - "name": "S\u00e1lru", - "realm_idx": 7428, - "order": "The Order of the Fox", - "resources": ["Coal", "Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.4477, -18.8036] - }, - "properties": { - "name": "Kilkokk\u00faik", - "realm_idx": 7429, - "order": "The Order of Perfection", - "resources": ["Copper", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.4529, -7.42] - }, - "properties": { - "name": "Potopen", - "realm_idx": 7430, - "order": "The Order of the Fox", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.1471, -29.52] - }, - "properties": { - "name": "Chobsichmem", - "realm_idx": 7431, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "True Ice", "Silver", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.6471, 7.38] - }, - "properties": { - "name": "Pepstutmok", - "realm_idx": 7432, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Cold Iron", "Dragonhide"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.58, -41.2997] - }, - "properties": { - "name": "Sri\u0161kratra\u0161", - "realm_idx": 7433, - "order": "The Order of the Fox", - "resources": ["Coal", "Ironwood", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.9961, 43.1301] - }, - "properties": { - "name": "Lamnoasnol", - "realm_idx": 7434, - "order": "The Order of Anger", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.3471, 9.08] - }, - "properties": { - "name": "L\u00e9\u00e1pl\u00e1plu\u2018", - "realm_idx": 7435, - "order": "The Order of Titans", - "resources": ["Stone", "Silver", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.0801, 5.0004] - }, - "properties": { - "name": "e\u010d \u00da\u010d\u00f3\u0161", - "realm_idx": 7436, - "order": "The Order of Rage", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [100.4471, 49.08] - }, - "properties": { - "name": "Onnelnelin", - "realm_idx": 7437, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [11.2471, 14.18] - }, - "properties": { - "name": "Purkurtkurn", - "realm_idx": 7438, - "order": "The Order of Titans", - "resources": ["Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.1681, -35.8159] - }, - "properties": { - "name": "pon Snonsnon", - "realm_idx": 7439, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.0471, 9.78] - }, - "properties": { - "name": "Ebesheshaq", - "realm_idx": 7440, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.8647, -16.8631] - }, - "properties": { - "name": "Kethumhum", - "realm_idx": 7441, - "order": "The Order of Perfection", - "resources": ["Stone", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.88, 35.1003] - }, - "properties": { - "name": "Meelititi", - "realm_idx": 7442, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [13.5471, -37.62] - }, - "properties": { - "name": "Zishi", - "realm_idx": 7443, - "order": "The Order of Power", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.88, 21.0003] - }, - "properties": { - "name": "Kuksnot", - "realm_idx": 7444, - "order": "The Order of Detection", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.1062, 34.7741] - }, - "properties": { - "name": "N\u00fap\u00fam", - "realm_idx": 7445, - "order": "The Order of Fury", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.5471, -15.12] - }, - "properties": { - "name": "Nudshad", - "realm_idx": 7446, - "order": "The Order of Giants", - "resources": ["Diamonds", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [80.0203, -18.9577] - }, - "properties": { - "name": "Ningsungwang", - "realm_idx": 7447, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.0566, -39.9309] - }, - "properties": { - "name": "h\u00e4at H\u00e4ihu\u00e4h", - "realm_idx": 7448, - "order": "The Order of the Fox", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.8626, -27.9507] - }, - "properties": { - "name": "Nanul", - "realm_idx": 7449, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone", "Cold Iron", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.3979, 45.5949] - }, - "properties": { - "name": "\u2018\u00faspoz", - "realm_idx": 7450, - "order": "The Order of Anger", - "resources": ["Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.1801, 8.5004] - }, - "properties": { - "name": "Outpau Oo", - "realm_idx": 7451, - "order": "The Order of Rage", - "resources": ["Wood", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.5471, 32.68] - }, - "properties": { - "name": "Ongdengdeng", - "realm_idx": 7452, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Cold Iron", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.8801, 0.1004] - }, - "properties": { - "name": "Ninlin", - "realm_idx": 7453, - "order": "The Order of Rage", - "resources": ["Silver", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.2566, 2.6642] - }, - "properties": { - "name": "Wali\u2018anhuwo", - "realm_idx": 7454, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [126.0471, 11.78] - }, - "properties": { - "name": "schko Moton", - "realm_idx": 7455, - "order": "The Order of Protection", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.6529, -6.02] - }, - "properties": { - "name": "Pilin", - "realm_idx": 7456, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.08, 34.5003] - }, - "properties": { - "name": "Usitikis", - "realm_idx": 7457, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Wood", "Hartwood", "Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.9471, 8.88] - }, - "properties": { - "name": "Orul Pelul", - "realm_idx": 7458, - "order": "The Order of Brilliance", - "resources": ["Coal", "Wood", "Stone", "Obsidian", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.4471, 40.08] - }, - "properties": { - "name": "Bun\u00e2nbun", - "realm_idx": 7459, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone", "Copper", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.3471, -10.22] - }, - "properties": { - "name": "T\u00edinnum", - "realm_idx": 7460, - "order": "The Order of Giants", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.5529, 26.38] - }, - "properties": { - "name": "Pintat", - "realm_idx": 7461, - "order": "The Order of Vitriol", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.3801, 14.3004] - }, - "properties": { - "name": "Ukiknihukin", - "realm_idx": 7462, - "order": "The Order of Rage", - "resources": ["Stone", "Coal", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.6471, 13.58] - }, - "properties": { - "name": "Momnaknihhan", - "realm_idx": 7463, - "order": "The Order of Protection", - "resources": ["Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.58, 0.0003] - }, - "properties": { - "name": "Bikiso", - "realm_idx": 7464, - "order": "The Order of Detection", - "resources": ["Copper", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.9529, 25.58] - }, - "properties": { - "name": "Pik \u2018op Pip", - "realm_idx": 7465, - "order": "The Order of Vitriol", - "resources": ["Copper", "Obsidian", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-16.6529, -24.12] - }, - "properties": { - "name": "J\u00e1\u00eds\u00edikaur", - "realm_idx": 7466, - "order": "The Order of Power", - "resources": ["Wood", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.4471, -10.82] - }, - "properties": { - "name": "Hopp\u00fczchuzh", - "realm_idx": 7467, - "order": "The Order of Power", - "resources": ["Deep Crystal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.8209, 37.2799] - }, - "properties": { - "name": "Nolnolkurp", - "realm_idx": 7468, - "order": "The Order of Fury", - "resources": ["Deep Crystal", "Coal", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.7471, 40.08] - }, - "properties": { - "name": "Pononunwom", - "realm_idx": 7469, - "order": "The Order of Skill", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.8471, 8.48] - }, - "properties": { - "name": "N\u00e2zhdyzh", - "realm_idx": 7470, - "order": "The Order of Titans", - "resources": ["Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.0529, 3.28] - }, - "properties": { - "name": "Lanlonsyan", - "realm_idx": 7471, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-29.5527, 51.0801] - }, - "properties": { - "name": "Toetlouttut", - "realm_idx": 7472, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.1471, 20.18] - }, - "properties": { - "name": "Zrizzib", - "realm_idx": 7473, - "order": "The Order of Enlightenment", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.4801, -14.4996] - }, - "properties": { - "name": "Zhushruzhosh", - "realm_idx": 7474, - "order": "The Order of Rage", - "resources": ["Stone", "Copper", "Coal", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.0471, -14.52] - }, - "properties": { - "name": "Tuknakmis", - "realm_idx": 7475, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Copper", "Coal", "Gold", "Ruby", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.7529, 56.88] - }, - "properties": { - "name": "Uli o Almok", - "realm_idx": 7476, - "order": "The Order of Fury", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.9529, 19.38] - }, - "properties": { - "name": "Kiz\u2018oz", - "realm_idx": 7477, - "order": "The Order of Vitriol", - "resources": ["Silver", "Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.4471, 18.68] - }, - "properties": { - "name": "swyn Swymtun", - "realm_idx": 7478, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Gold", "Coal", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.8471, 4.48] - }, - "properties": { - "name": "Nugumuse", - "realm_idx": 7479, - "order": "The Order of Brilliance", - "resources": ["Copper", "Coal", "Wood", "Ironwood", "Ethereal Silica"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.0801, -26.3996] - }, - "properties": { - "name": "Pumpuhsnut", - "realm_idx": 7480, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.58, 30.1003] - }, - "properties": { - "name": "Ekakin Inek", - "realm_idx": 7481, - "order": "The Order of Reflection", - "resources": ["Copper", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.9471, -15.62] - }, - "properties": { - "name": "La\u0161\u0161eb", - "realm_idx": 7482, - "order": "The Order of Perfection", - "resources": ["Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-0.4529, 47.68] - }, - "properties": { - "name": "Lessak Es", - "realm_idx": 7483, - "order": "The Order of Titans", - "resources": ["Wood", "Deep Crystal", "Diamonds", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.88, -4.2997] - }, - "properties": { - "name": "Skummansmon", - "realm_idx": 7484, - "order": "The Order of Reflection", - "resources": ["Wood", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.8471, 14.38] - }, - "properties": { - "name": "Kutkek", - "realm_idx": 7485, - "order": "The Order of Protection", - "resources": ["Wood", "Silver", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.7371, -16.0009] - }, - "properties": { - "name": "Ski Masti", - "realm_idx": 7486, - "order": "The Order of Protection", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [5.9471, 3.88] - }, - "properties": { - "name": "Hanninmap", - "realm_idx": 7487, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.08, -3.1997] - }, - "properties": { - "name": "Omnutlakop", - "realm_idx": 7488, - "order": "The Order of Detection", - "resources": ["Wood", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.88, -12.6997] - }, - "properties": { - "name": "Ukpwk", - "realm_idx": 7489, - "order": "The Order of Detection", - "resources": ["Copper", "Stone", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.6471, -18.62] - }, - "properties": { - "name": "Rogvovo", - "realm_idx": 7490, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal", "Diamonds", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.5529, 46.58] - }, - "properties": { - "name": "pus Mim", - "realm_idx": 7491, - "order": "The Order of Titans", - "resources": ["Stone", "Coal", "Dragonhide", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.5529, 6.68] - }, - "properties": { - "name": "Ruchluchgib", - "realm_idx": 7492, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.08, -47.5996] - }, - "properties": { - "name": "Snukpit", - "realm_idx": 7493, - "order": "The Order of the Fox", - "resources": ["Wood", "Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.58, 27.1003] - }, - "properties": { - "name": "Manomemeno", - "realm_idx": 7494, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.6471, 4.98] - }, - "properties": { - "name": "Tulelel", - "realm_idx": 7495, - "order": "The Order of Brilliance", - "resources": ["Ironwood", "Silver", "Wood", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.0471, 43.98] - }, - "properties": { - "name": "Isomingot", - "realm_idx": 7496, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Wood", "Ruby", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-46.4529, 10.58] - }, - "properties": { - "name": "Iklurtulum", - "realm_idx": 7497, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.7471, 11.28] - }, - "properties": { - "name": "Tinpin", - "realm_idx": 7498, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [70.5471, -27.32] - }, - "properties": { - "name": "Ekekomi\u017e", - "realm_idx": 7499, - "order": "The Order of Perfection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.3529, -20.82] - }, - "properties": { - "name": "Tisupaka", - "realm_idx": 7500, - "order": "The Order of Power", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.8348, -35.9096] - }, - "properties": { - "name": "Lal W\u00f3\u00fa\u2018\u2018\u00f3uw", - "realm_idx": 7501, - "order": "The Order of Reflection", - "resources": ["Diamonds", "Stone", "Copper", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.9471, 1.38] - }, - "properties": { - "name": "Qam Yam", - "realm_idx": 7502, - "order": "The Order of Brilliance", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.2801, -9.8996] - }, - "properties": { - "name": "Tumum", - "realm_idx": 7503, - "order": "The Order of Rage", - "resources": ["Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.4207, -21.0949] - }, - "properties": { - "name": "Neznisnasnis", - "realm_idx": 7504, - "order": "The Order of the Twins", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.8471, 49.68] - }, - "properties": { - "name": "M\u00falmmel", - "realm_idx": 7505, - "order": "The Order of Titans", - "resources": ["Obsidian", "Ruby", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.4471, -19.82] - }, - "properties": { - "name": "Zhiesnoiguo", - "realm_idx": 7506, - "order": "The Order of Giants", - "resources": ["Coal", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.68, 33.6003] - }, - "properties": { - "name": "Sponpumpum", - "realm_idx": 7507, - "order": "The Order of Fury", - "resources": ["Ignium", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.6529, -7.72] - }, - "properties": { - "name": "Milpmis", - "realm_idx": 7508, - "order": "The Order of the Fox", - "resources": ["Ironwood", "Obsidian", "Ruby", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.7471, -9.42] - }, - "properties": { - "name": "Ilewil", - "realm_idx": 7509, - "order": "The Order of Giants", - "resources": ["Coal", "Obsidian", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.1471, -32.42] - }, - "properties": { - "name": "\u2018lun\u2018ruhuk", - "realm_idx": 7510, - "order": "The Order of Giants", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.5884, -28.8378] - }, - "properties": { - "name": "Enlinanlin", - "realm_idx": 7511, - "order": "The Order of Protection", - "resources": ["Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.28, 11.9003] - }, - "properties": { - "name": "Tutoltitpum", - "realm_idx": 7512, - "order": "The Order of Fury", - "resources": ["Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-98.4625, 49.0281] - }, - "properties": { - "name": "Seljil", - "realm_idx": 7513, - "order": "The Order of Anger", - "resources": ["Wood", "Stone", "Obsidian", "Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [123.4931, 4.0664] - }, - "properties": { - "name": "Hujuw", - "realm_idx": 7514, - "order": "The Order of Protection", - "resources": ["Wood", "Silver", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.3471, 52.48] - }, - "properties": { - "name": "Qoknl\u00faqnl\u00faq", - "realm_idx": 7515, - "order": "The Order of Skill", - "resources": ["Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.78, -46.9996] - }, - "properties": { - "name": "Zhwezhtuzh", - "realm_idx": 7516, - "order": "The Order of the Fox", - "resources": [ - "Obsidian", - "Coal", - "True Ice", - "Wood", - "Alchemical Silver", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.8471, 5.38] - }, - "properties": { - "name": "Nrikyikrak", - "realm_idx": 7517, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.0471, 20.88] - }, - "properties": { - "name": "Ramok", - "realm_idx": 7518, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.8471, -23.02] - }, - "properties": { - "name": "Umun in Upan", - "realm_idx": 7519, - "order": "The Order of Giants", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.6471, -15.72] - }, - "properties": { - "name": "Numsu", - "realm_idx": 7520, - "order": "The Order of Perfection", - "resources": [ - "Coal", - "Obsidian", - "Cold Iron", - "Hartwood", - "Wood", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.1529, 11.58] - }, - "properties": { - "name": "Muutkaamtook", - "realm_idx": 7521, - "order": "The Order of Vitriol", - "resources": ["Obsidian", "Coal", "Diamonds", "Cold Iron", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.9471, 53.58] - }, - "properties": { - "name": "N\u00edt\u00e1nl\u00e9s\u00edn", - "realm_idx": 7522, - "order": "The Order of Skill", - "resources": [ - "Silver", - "Coal", - "Obsidian", - "Ironwood", - "Wood", - "Cold Iron" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.9471, -19.72] - }, - "properties": { - "name": "Akapan", - "realm_idx": 7523, - "order": "The Order of Perfection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.1471, 30.68] - }, - "properties": { - "name": "Ujniw", - "realm_idx": 7524, - "order": "The Order of Skill", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.9801, -53.8996] - }, - "properties": { - "name": "Idotonot", - "realm_idx": 7525, - "order": "The Order of the Twins", - "resources": ["Wood", "Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.9801, 38.2004] - }, - "properties": { - "name": "Nutneum", - "realm_idx": 7526, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.7471, 51.28] - }, - "properties": { - "name": "Pitpitmirn", - "realm_idx": 7527, - "order": "The Order of Enlightenment", - "resources": ["Gold", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.0801, -22.9996] - }, - "properties": { - "name": "Dlinmlon", - "realm_idx": 7528, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [40.0471, -8.62] - }, - "properties": { - "name": "Saellue", - "realm_idx": 7529, - "order": "The Order of Giants", - "resources": ["Silver", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.68, -29.1997] - }, - "properties": { - "name": "Eko\u017eidid", - "realm_idx": 7530, - "order": "The Order of Detection", - "resources": ["Obsidian", "Cold Iron", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.6801, 17.4004] - }, - "properties": { - "name": "Tisumumtim", - "realm_idx": 7531, - "order": "The Order of Rage", - "resources": [ - "Silver", - "Stone", - "Coal", - "True Ice", - "Wood", - "Ethereal Silica" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.2529, 5.98] - }, - "properties": { - "name": "Nuklup", - "realm_idx": 7532, - "order": "The Order of Vitriol", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.0801, 26.5004] - }, - "properties": { - "name": "Pulhu", - "realm_idx": 7533, - "order": "The Order of Rage", - "resources": ["Coal", "Obsidian", "Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.58, 14.2003] - }, - "properties": { - "name": "Kirk-Ar", - "realm_idx": 7534, - "order": "The Order of Detection", - "resources": ["Diamonds", "Stone", "Gold", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.5529, -20.92] - }, - "properties": { - "name": "Oenon", - "realm_idx": 7535, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.4801, -55.8996] - }, - "properties": { - "name": "Tiztuztuxpus", - "realm_idx": 7536, - "order": "The Order of the Twins", - "resources": ["Copper", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [36.7471, 14.88] - }, - "properties": { - "name": "Piahpamkip", - "realm_idx": 7537, - "order": "The Order of Titans", - "resources": ["Silver", "Wood", "Diamonds", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.68, -35.8997] - }, - "properties": { - "name": "Tulslut", - "realm_idx": 7538, - "order": "The Order of Reflection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.3435, 40.895] - }, - "properties": { - "name": "Sumsumtenmu", - "realm_idx": 7539, - "order": "The Order of Fury", - "resources": ["Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.9551, 42.2963] - }, - "properties": { - "name": "Soptuotnouk", - "realm_idx": 7540, - "order": "The Order of Fury", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.445, -21.8928] - }, - "properties": { - "name": "Shmasmessel", - "realm_idx": 7541, - "order": "The Order of Perfection", - "resources": ["Wood", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-20.1529, 42.48] - }, - "properties": { - "name": "Naapeetschaa", - "realm_idx": 7542, - "order": "The Order of Vitriol", - "resources": ["Diamonds", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.18, -28.1997] - }, - "properties": { - "name": "Gagnun", - "realm_idx": 7543, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Obsidian", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.2471, 14.68] - }, - "properties": { - "name": "Gepog", - "realm_idx": 7544, - "order": "The Order of Brilliance", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.2801, -15.3996] - }, - "properties": { - "name": "Nienniendun", - "realm_idx": 7545, - "order": "The Order of Rage", - "resources": ["Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [130.4955, 7.3805] - }, - "properties": { - "name": "Mlitgju\u017e", - "realm_idx": 7546, - "order": "The Order of Protection", - "resources": ["Copper", "Cold Iron", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-69.88, -57.4996] - }, - "properties": { - "name": "Q\u00e4nq\u00e4n", - "realm_idx": 7547, - "order": "The Order of the Fox", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.0034, -47.8723] - }, - "properties": { - "name": "R\u00fchluk", - "realm_idx": 7548, - "order": "The Order of the Fox", - "resources": ["Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.4801, -23.4996] - }, - "properties": { - "name": "kis Susa", - "realm_idx": 7549, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.8529, 32.18] - }, - "properties": { - "name": "Mimitumo", - "realm_idx": 7550, - "order": "The Order of Vitriol", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.2348, 17.7985] - }, - "properties": { - "name": "Mlim\u2018olmim", - "realm_idx": 7551, - "order": "The Order of Protection", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.7801, -26.1996] - }, - "properties": { - "name": "Ovoremegem", - "realm_idx": 7552, - "order": "The Order of the Twins", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.9471, 37.58] - }, - "properties": { - "name": "Emonulon On", - "realm_idx": 7553, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.9471, 48.28] - }, - "properties": { - "name": "Eshashem", - "realm_idx": 7554, - "order": "The Order of Skill", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-129.68, -13.7997] - }, - "properties": { - "name": "Mipmipstik", - "realm_idx": 7555, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.5486, 9.8846] - }, - "properties": { - "name": "Urnglulgjuv", - "realm_idx": 7556, - "order": "The Order of Protection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.996, -20.6146] - }, - "properties": { - "name": "On-Amghun", - "realm_idx": 7557, - "order": "The Order of Perfection", - "resources": ["Wood", "Copper", "Sapphire", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [81.6471, 24.38] - }, - "properties": { - "name": "T\u00edam\u00e1ika\u00edn", - "realm_idx": 7558, - "order": "The Order of Skill", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.48, -43.7996] - }, - "properties": { - "name": "Lo Lop", - "realm_idx": 7559, - "order": "The Order of the Fox", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.1801, -33.1996] - }, - "properties": { - "name": "Immommememo", - "realm_idx": 7560, - "order": "The Order of the Twins", - "resources": ["Coal", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.5471, -31.32] - }, - "properties": { - "name": "N\u00e4dshr\u00efsh", - "realm_idx": 7561, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.8801, 14.6004] - }, - "properties": { - "name": "Rawnad", - "realm_idx": 7562, - "order": "The Order of Rage", - "resources": ["Wood", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.7527, 49.4801] - }, - "properties": { - "name": "Konsunsunmen", - "realm_idx": 7563, - "order": "The Order of the Twins", - "resources": ["Silver", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.0471, -11.32] - }, - "properties": { - "name": "Purangulu", - "realm_idx": 7564, - "order": "The Order of Power", - "resources": ["Obsidian", "Gold", "Silver", "Wood", "Ignium", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [35.2471, -33.82] - }, - "properties": { - "name": "Wikwikkhik", - "realm_idx": 7565, - "order": "The Order of Giants", - "resources": ["Obsidian", "Ruby", "Stone", "Wood", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.48, 38.4003] - }, - "properties": { - "name": "K\u00e4nuh\u00e4h\u00fc", - "realm_idx": 7566, - "order": "The Order of Fury", - "resources": ["Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.8471, 4.78] - }, - "properties": { - "name": "Zubzub", - "realm_idx": 7567, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.7801, 41.1004] - }, - "properties": { - "name": "Laulzosh", - "realm_idx": 7568, - "order": "The Order of Anger", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.0801, -0.4996] - }, - "properties": { - "name": "Sijpsat", - "realm_idx": 7569, - "order": "The Order of Rage", - "resources": ["Wood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.08, 33.0003] - }, - "properties": { - "name": "Azhubuep", - "realm_idx": 7570, - "order": "The Order of Fury", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.6471, -16.02] - }, - "properties": { - "name": "Pamin", - "realm_idx": 7571, - "order": "The Order of Perfection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-38.9529, 6.78] - }, - "properties": { - "name": "Okompolen", - "realm_idx": 7572, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.6529, 6.88] - }, - "properties": { - "name": "Zatdor", - "realm_idx": 7573, - "order": "The Order of Titans", - "resources": [ - "Stone", - "Copper", - "Alchemical Silver", - "Coal", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.5801, -15.9996] - }, - "properties": { - "name": "Nizhwz Twsh", - "realm_idx": 7574, - "order": "The Order of Rage", - "resources": ["Silver", "Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.6801, -52.6996] - }, - "properties": { - "name": "Tonzot", - "realm_idx": 7575, - "order": "The Order of the Twins", - "resources": ["Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.6471, 23.98] - }, - "properties": { - "name": "Nooknookloin", - "realm_idx": 7576, - "order": "The Order of Vitriol", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-51.3529, 54.38] - }, - "properties": { - "name": "Mepgos", - "realm_idx": 7577, - "order": "The Order of Fury", - "resources": ["Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.58, -46.6996] - }, - "properties": { - "name": "Husbe", - "realm_idx": 7578, - "order": "The Order of the Fox", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [98.0025, 10.1123] - }, - "properties": { - "name": "Usut Uquniik", - "realm_idx": 7579, - "order": "The Order of Protection", - "resources": ["Coal", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.5801, -22.6996] - }, - "properties": { - "name": "Hwenkjomkwum", - "realm_idx": 7580, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.8801, -31.0996] - }, - "properties": { - "name": "Emeqengin", - "realm_idx": 7581, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [130.9583, 7.2336] - }, - "properties": { - "name": "Tulotulnut", - "realm_idx": 7582, - "order": "The Order of Protection", - "resources": ["Coal", "Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.18, -1.3997] - }, - "properties": { - "name": "Lonpin", - "realm_idx": 7583, - "order": "The Order of Detection", - "resources": ["Cold Iron", "Silver", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.1801, 42.4004] - }, - "properties": { - "name": "suun-Luuet", - "realm_idx": 7584, - "order": "The Order of Anger", - "resources": ["Wood", "Deep Crystal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.7801, 28.0004] - }, - "properties": { - "name": "Wosnukkos", - "realm_idx": 7585, - "order": "The Order of Rage", - "resources": ["Obsidian", "Wood", "Silver", "Coal", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [71.1471, -14.12] - }, - "properties": { - "name": "Tlaspezhqizh", - "realm_idx": 7586, - "order": "The Order of Perfection", - "resources": ["Coal", "Silver", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.8937, -28.1373] - }, - "properties": { - "name": "Nilquye", - "realm_idx": 7587, - "order": "The Order of Protection", - "resources": ["Stone", "Copper", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.5471, 38.58] - }, - "properties": { - "name": "Liekngak", - "realm_idx": 7588, - "order": "The Order of Titans", - "resources": ["Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.0412, 44.1484] - }, - "properties": { - "name": "B\u00edabb\u00edebo\u00ed", - "realm_idx": 7589, - "order": "The Order of Anger", - "resources": ["Stone", "Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.7801, 6.9004] - }, - "properties": { - "name": "Ep\u00f6s-on-Ukut", - "realm_idx": 7590, - "order": "The Order of Rage", - "resources": ["Ironwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.3801, -36.9996] - }, - "properties": { - "name": "Nlel Nlip", - "realm_idx": 7591, - "order": "The Order of the Twins", - "resources": ["Coal", "Copper", "Adamantine", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.1529, -10.62] - }, - "properties": { - "name": "Numpu", - "realm_idx": 7592, - "order": "The Order of the Fox", - "resources": ["Gold", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-72.1801, 40.1004] - }, - "properties": { - "name": "Sputs\u00fat", - "realm_idx": 7593, - "order": "The Order of Anger", - "resources": ["Coal", "Obsidian", "Gold", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.3471, 17.78] - }, - "properties": { - "name": "ik-Yl\u00e2n\u00ea\u2018", - "realm_idx": 7594, - "order": "The Order of Titans", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.28, -31.9997] - }, - "properties": { - "name": "Kroksralplik", - "realm_idx": 7595, - "order": "The Order of Detection", - "resources": ["Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.1471, 25.08] - }, - "properties": { - "name": "Snotstik", - "realm_idx": 7596, - "order": "The Order of Vitriol", - "resources": ["Copper", "Coal", "Deep Crystal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [131.078, 7.0128] - }, - "properties": { - "name": "Ugibuzub", - "realm_idx": 7597, - "order": "The Order of Protection", - "resources": ["Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.6999, 35.3003] - }, - "properties": { - "name": "Tontonku", - "realm_idx": 7598, - "order": "The Order of Fury", - "resources": ["Cold Iron", "Stone", "Wood", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.08, -26.7997] - }, - "properties": { - "name": "Jorirng", - "realm_idx": 7599, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.9471, -22.02] - }, - "properties": { - "name": "korn-Ormun", - "realm_idx": 7600, - "order": "The Order of Giants", - "resources": ["Wood", "Coal", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.38, -39.1997] - }, - "properties": { - "name": "Moszek", - "realm_idx": 7601, - "order": "The Order of Reflection", - "resources": ["Stone", "Wood", "Copper", "Silver", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [48.0471, -41.82] - }, - "properties": { - "name": "Keeaa", - "realm_idx": 7602, - "order": "The Order of Giants", - "resources": ["Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.2471, -24.02] - }, - "properties": { - "name": "Luptep", - "realm_idx": 7603, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-126.18, 3.9003] - }, - "properties": { - "name": "Wmomumalwn", - "realm_idx": 7604, - "order": "The Order of Detection", - "resources": [ - "Ironwood", - "Alchemical Silver", - "Wood", - "Obsidian", - "Cold Iron", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.2529, 50.18] - }, - "properties": { - "name": "Teeninisaami", - "realm_idx": 7605, - "order": "The Order of Fury", - "resources": ["Cold Iron", "Stone", "Wood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [110.4241, 7.497] - }, - "properties": { - "name": "Fmimfzun", - "realm_idx": 7606, - "order": "The Order of Protection", - "resources": ["Copper", "Cold Iron", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.38, 30.2003] - }, - "properties": { - "name": "Tidtid", - "realm_idx": 7607, - "order": "The Order of Reflection", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-109.6801, 11.2004] - }, - "properties": { - "name": "Nunnom", - "realm_idx": 7608, - "order": "The Order of Rage", - "resources": ["Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.6471, 49.88] - }, - "properties": { - "name": "Aulaur", - "realm_idx": 7609, - "order": "The Order of Enlightenment", - "resources": ["Hartwood", "Coal", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.2529, 44.78] - }, - "properties": { - "name": "Ogglog", - "realm_idx": 7610, - "order": "The Order of Titans", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [6.3471, 4.68] - }, - "properties": { - "name": "Ni\u0161mi\u0161", - "realm_idx": 7611, - "order": "The Order of Titans", - "resources": ["Coal", "Gold", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.7471, -6.42] - }, - "properties": { - "name": "Onjunninon", - "realm_idx": 7612, - "order": "The Order of Brilliance", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.5471, 36.38] - }, - "properties": { - "name": "Utalan", - "realm_idx": 7613, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Coal", "Copper", "Wood", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.68, -16.6997] - }, - "properties": { - "name": "S\u00f6msemum", - "realm_idx": 7614, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.3471, 50.38] - }, - "properties": { - "name": "Bulidu", - "realm_idx": 7615, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Twilight Quartz", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.4471, -14.32] - }, - "properties": { - "name": "Swemswemswew", - "realm_idx": 7616, - "order": "The Order of Perfection", - "resources": ["Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.4529, -19.52] - }, - "properties": { - "name": "Olmulsorsal", - "realm_idx": 7617, - "order": "The Order of Power", - "resources": ["Hartwood", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.1801, -23.9996] - }, - "properties": { - "name": "Buksruk", - "realm_idx": 7618, - "order": "The Order of the Twins", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-85.9801, -53.4996] - }, - "properties": { - "name": "Tek\u0161uk", - "realm_idx": 7619, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.2801, 5.0004] - }, - "properties": { - "name": "S\u00e1sm\u00e1ssis", - "realm_idx": 7620, - "order": "The Order of Rage", - "resources": ["Dragonhide"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.2026, 14.2047] - }, - "properties": { - "name": "T\u00efpipot\u00efp\u00e4", - "realm_idx": 7621, - "order": "The Order of Protection", - "resources": ["Obsidian", "Alchemical Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [19.5471, -27.92] - }, - "properties": { - "name": "Shpumspih", - "realm_idx": 7622, - "order": "The Order of Power", - "resources": ["Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-126.78, 4.7003] - }, - "properties": { - "name": "Oopolin", - "realm_idx": 7623, - "order": "The Order of Detection", - "resources": ["Wood", "Stone", "Copper", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.5471, 27.98] - }, - "properties": { - "name": "Utul \u00d3sp\u00f3t", - "realm_idx": 7624, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Wood", "Hartwood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.3529, 0.38] - }, - "properties": { - "name": "Samospe", - "realm_idx": 7625, - "order": "The Order of Power", - "resources": ["Wood", "Coal", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [33.3471, -35.12] - }, - "properties": { - "name": "Mrutlehtum", - "realm_idx": 7626, - "order": "The Order of Giants", - "resources": ["Coal", "Wood", "Stone", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.2144, -8.5028] - }, - "properties": { - "name": "Makh\u00edrawukh\u00e1", - "realm_idx": 7627, - "order": "The Order of Reflection", - "resources": ["Stone", "Diamonds", "Copper", "Twilight Quartz"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.8471, -12.62] - }, - "properties": { - "name": "Snantym", - "realm_idx": 7628, - "order": "The Order of Power", - "resources": ["Wood", "Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.4529, -11.72] - }, - "properties": { - "name": "Anasanoo", - "realm_idx": 7629, - "order": "The Order of Power", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.08, -6.0997] - }, - "properties": { - "name": "Musanustusna", - "realm_idx": 7630, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone", "Sapphire", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.1027, 43.0154] - }, - "properties": { - "name": "nriz \u010cres\u017eep", - "realm_idx": 7631, - "order": "The Order of Anger", - "resources": ["Coal", "Copper", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [44.8471, 13.18] - }, - "properties": { - "name": "Otupas", - "realm_idx": 7632, - "order": "The Order of Titans", - "resources": ["Coal", "Stone", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.6529, -16.82] - }, - "properties": { - "name": "Etezh Etep", - "realm_idx": 7633, - "order": "The Order of Power", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.543, 46.8525] - }, - "properties": { - "name": "Rigrubpeb", - "realm_idx": 7634, - "order": "The Order of Anger", - "resources": ["Sapphire", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.872, 10.1252] - }, - "properties": { - "name": "Nusnop", - "realm_idx": 7635, - "order": "The Order of Protection", - "resources": ["Stone", "Obsidian", "Ignium", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.18, -54.7996] - }, - "properties": { - "name": "Tahpwim", - "realm_idx": 7636, - "order": "The Order of the Fox", - "resources": ["Gold", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.6471, -23.92] - }, - "properties": { - "name": "Eskukes", - "realm_idx": 7637, - "order": "The Order of Giants", - "resources": ["Wood", "Hartwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-33.4529, -4.32] - }, - "properties": { - "name": "Minshk\u00fcms\u00fct", - "realm_idx": 7638, - "order": "The Order of the Fox", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.2485, 2.8484] - }, - "properties": { - "name": "Z\u00e1dbe\u00e1zzuy", - "realm_idx": 7639, - "order": "The Order of Reflection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.88, -33.7997] - }, - "properties": { - "name": "Keplork", - "realm_idx": 7640, - "order": "The Order of Detection", - "resources": ["Sapphire", "Diamonds", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.4471, 7.68] - }, - "properties": { - "name": "la\u00fcn Sue", - "realm_idx": 7641, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.8471, -17.02] - }, - "properties": { - "name": "Tupmiy", - "realm_idx": 7642, - "order": "The Order of Giants", - "resources": ["Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.1529, -16.02] - }, - "properties": { - "name": "J\u00ebrb\u00ebtsch", - "realm_idx": 7643, - "order": "The Order of Power", - "resources": ["Stone", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.68, -35.1997] - }, - "properties": { - "name": "Isaes", - "realm_idx": 7644, - "order": "The Order of Reflection", - "resources": ["Sapphire", "Stone", "Copper", "Ironwood", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [10.8471, -12.72] - }, - "properties": { - "name": "po Sop", - "realm_idx": 7645, - "order": "The Order of Power", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.3599, 9.899] - }, - "properties": { - "name": "Mi-Ua", - "realm_idx": 7646, - "order": "The Order of Protection", - "resources": ["Silver", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.6529, 26.98] - }, - "properties": { - "name": "Gh\u00edkmuch", - "realm_idx": 7647, - "order": "The Order of Vitriol", - "resources": ["Ignium", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-36.1527, 50.0801] - }, - "properties": { - "name": "Chikshros", - "realm_idx": 7648, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.1471, 36.88] - }, - "properties": { - "name": "Uk Mukpun", - "realm_idx": 7649, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.7678, -12.7918] - }, - "properties": { - "name": "Ommom", - "realm_idx": 7650, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.7529, 51.08] - }, - "properties": { - "name": "Kunmengmen", - "realm_idx": 7651, - "order": "The Order of Fury", - "resources": ["Copper", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.48, 24.0003] - }, - "properties": { - "name": "Taor-Korjen", - "realm_idx": 7652, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [64.8318, -20.7376] - }, - "properties": { - "name": "P\u00f3nglun", - "realm_idx": 7653, - "order": "The Order of Perfection", - "resources": ["Wood", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [122.6016, -26.4128] - }, - "properties": { - "name": "Ungtchaan", - "realm_idx": 7654, - "order": "The Order of Protection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.1471, 49.28] - }, - "properties": { - "name": "Ruxrottakhuq", - "realm_idx": 7655, - "order": "The Order of Skill", - "resources": ["Copper", "Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.58, -2.0997] - }, - "properties": { - "name": "stiq Sch\u00e9", - "realm_idx": 7656, - "order": "The Order of Detection", - "resources": ["Ethereal Silica", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.9514, 53.0559] - }, - "properties": { - "name": "Al\u00e4rp", - "realm_idx": 7657, - "order": "The Order of Fury", - "resources": ["Wood", "Gold", "Copper", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.7929, 57.0538] - }, - "properties": { - "name": "N\u00e4mnungcheng", - "realm_idx": 7658, - "order": "The Order of Fury", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.8471, 25.38] - }, - "properties": { - "name": "Ymmemk\u00e2k", - "realm_idx": 7659, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.1801, 35.1004] - }, - "properties": { - "name": "Vemsmel", - "realm_idx": 7660, - "order": "The Order of Anger", - "resources": ["Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.7471, 34.58] - }, - "properties": { - "name": "Nommonkumhun", - "realm_idx": 7661, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Coal", "Cold Iron", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.8471, 55.58] - }, - "properties": { - "name": "Sounluolkeut", - "realm_idx": 7662, - "order": "The Order of Titans", - "resources": ["Gold", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.4471, 54.28] - }, - "properties": { - "name": "Elkul", - "realm_idx": 7663, - "order": "The Order of Titans", - "resources": ["True Ice", "Stone", "Copper", "Ruby", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.9076, 47.1708] - }, - "properties": { - "name": "T\u00fazand\u00fa", - "realm_idx": 7664, - "order": "The Order of Fury", - "resources": ["Stone", "Ironwood", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.5471, 9.28] - }, - "properties": { - "name": "Su\u00fak\u00faur", - "realm_idx": 7665, - "order": "The Order of Titans", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [73.4034, -25.9013] - }, - "properties": { - "name": "Utov-Ovil", - "realm_idx": 7666, - "order": "The Order of Perfection", - "resources": [ - "Ruby", - "Stone", - "Wood", - "Twilight Quartz", - "Obsidian", - "Silver", - "Ironwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-59.4529, 44.98] - }, - "properties": { - "name": "Sniksuk", - "realm_idx": 7667, - "order": "The Order of Fury", - "resources": ["True Ice", "Stone", "Wood", "Hartwood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.2801, 15.3004] - }, - "properties": { - "name": "Dizizagizdiz", - "realm_idx": 7668, - "order": "The Order of Rage", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.9529, 16.78] - }, - "properties": { - "name": "Lemalki", - "realm_idx": 7669, - "order": "The Order of Vitriol", - "resources": ["Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.2471, 3.28] - }, - "properties": { - "name": "Nushn\u00fashnush", - "realm_idx": 7670, - "order": "The Order of Perfection", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [20.4471, 56.18] - }, - "properties": { - "name": "Alpirm", - "realm_idx": 7671, - "order": "The Order of Titans", - "resources": ["Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.98, -28.1997] - }, - "properties": { - "name": "Metmeh", - "realm_idx": 7672, - "order": "The Order of Reflection", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-130.58, -9.2997] - }, - "properties": { - "name": "Tidumali", - "realm_idx": 7673, - "order": "The Order of Detection", - "resources": ["Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.7471, 49.38] - }, - "properties": { - "name": "Akik\u00fckol", - "realm_idx": 7674, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [78.2471, 48.18] - }, - "properties": { - "name": "Klusjuktrus", - "realm_idx": 7675, - "order": "The Order of Skill", - "resources": ["Wood", "Gold", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.8801, 34.4004] - }, - "properties": { - "name": "Klinmim", - "realm_idx": 7676, - "order": "The Order of Anger", - "resources": ["Ironwood", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.38, -54.2996] - }, - "properties": { - "name": "Didet\u00e1chech", - "realm_idx": 7677, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.7471, 1.48] - }, - "properties": { - "name": "Elnalmilim", - "realm_idx": 7678, - "order": "The Order of Brilliance", - "resources": ["Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.7471, 19.58] - }, - "properties": { - "name": "Nin-Mam", - "realm_idx": 7679, - "order": "The Order of Brilliance", - "resources": ["Copper", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.5471, -15.72] - }, - "properties": { - "name": "Ketlelsu", - "realm_idx": 7680, - "order": "The Order of Power", - "resources": ["Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.5471, -17.92] - }, - "properties": { - "name": "Muimmaimmaim", - "realm_idx": 7681, - "order": "The Order of Giants", - "resources": ["Coal", "Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.68, 32.8003] - }, - "properties": { - "name": "Jolabi", - "realm_idx": 7682, - "order": "The Order of Fury", - "resources": ["Coal", "Obsidian", "Silver", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [93.0471, 45.98] - }, - "properties": { - "name": "Ulmkulsel", - "realm_idx": 7683, - "order": "The Order of Enlightenment", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-119.48, 16.4003] - }, - "properties": { - "name": "Qomnogho", - "realm_idx": 7684, - "order": "The Order of Detection", - "resources": ["Adamantine", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [27.1471, 22.68] - }, - "properties": { - "name": "Konloon", - "realm_idx": 7685, - "order": "The Order of Titans", - "resources": ["Obsidian", "Wood", "Stone", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.1529, 45.48] - }, - "properties": { - "name": "Rirniltil", - "realm_idx": 7686, - "order": "The Order of Titans", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.0471, 46.78] - }, - "properties": { - "name": "Kukdos", - "realm_idx": 7687, - "order": "The Order of Titans", - "resources": ["Wood", "Obsidian", "Stone", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.0565, -21.1679] - }, - "properties": { - "name": "Gapbagum-Ig", - "realm_idx": 7688, - "order": "The Order of Perfection", - "resources": ["Ethereal Silica", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.7471, 31.08] - }, - "properties": { - "name": "Ajulok", - "realm_idx": 7689, - "order": "The Order of Skill", - "resources": ["Deep Crystal", "Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [41.1471, 12.28] - }, - "properties": { - "name": "Nwtetenune", - "realm_idx": 7690, - "order": "The Order of Titans", - "resources": [ - "Wood", - "Hartwood", - "Obsidian", - "Copper", - "Silver", - "Stone" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-14.2529, 49.58] - }, - "properties": { - "name": "Linimaplas", - "realm_idx": 7691, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.9801, 2.4004] - }, - "properties": { - "name": "Jinr\u00efn", - "realm_idx": 7692, - "order": "The Order of Rage", - "resources": ["Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.9471, 6.58] - }, - "properties": { - "name": "Ilshm\u00e1wr", - "realm_idx": 7693, - "order": "The Order of Brilliance", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.4529, 5.48] - }, - "properties": { - "name": "Nenun", - "realm_idx": 7694, - "order": "The Order of Titans", - "resources": ["Obsidian", "Wood", "Stone", "Copper", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [25.1471, 30.08] - }, - "properties": { - "name": "pez Ngazhqiz", - "realm_idx": 7695, - "order": "The Order of Titans", - "resources": ["Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.1801, -33.2996] - }, - "properties": { - "name": "Ku\u2018ka", - "realm_idx": 7696, - "order": "The Order of the Twins", - "resources": ["Stone", "Silver", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.58, 28.5003] - }, - "properties": { - "name": "Heiw Tchout", - "realm_idx": 7697, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.0471, 20.98] - }, - "properties": { - "name": "\u00c4miv\u00e4s", - "realm_idx": 7698, - "order": "The Order of Skill", - "resources": [ - "Copper", - "Gold", - "Ignium", - "Stone", - "Diamonds", - "Coal", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-6.9529, 26.98] - }, - "properties": { - "name": "Tlamkat", - "realm_idx": 7699, - "order": "The Order of Vitriol", - "resources": [ - "Ironwood", - "Obsidian", - "Wood", - "Cold Iron", - "Stone", - "Copper" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.3412, 5.2785] - }, - "properties": { - "name": "Almpolm", - "realm_idx": 7700, - "order": "The Order of Protection", - "resources": ["Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.4529, 6.98] - }, - "properties": { - "name": "Ze\u010d\u017ein", - "realm_idx": 7701, - "order": "The Order of Vitriol", - "resources": ["Cold Iron", "Wood", "Obsidian", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.38, 22.3003] - }, - "properties": { - "name": "T\u00edst\u00e9nmun", - "realm_idx": 7702, - "order": "The Order of Detection", - "resources": ["Wood", "Gold", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [23.2471, 44.68] - }, - "properties": { - "name": "seq Nliq", - "realm_idx": 7703, - "order": "The Order of Titans", - "resources": ["Copper", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.1019, 2.5222] - }, - "properties": { - "name": "Unolel", - "realm_idx": 7704, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.3471, 51.18] - }, - "properties": { - "name": "Norbumol", - "realm_idx": 7705, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.1801, 43.9004] - }, - "properties": { - "name": "Op Tut", - "realm_idx": 7706, - "order": "The Order of Anger", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.3471, -14.52] - }, - "properties": { - "name": "Benben", - "realm_idx": 7707, - "order": "The Order of Giants", - "resources": ["Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.4471, 27.58] - }, - "properties": { - "name": "Kotkikpop", - "realm_idx": 7708, - "order": "The Order of Skill", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.4471, 16.88] - }, - "properties": { - "name": "Kwimtwip", - "realm_idx": 7709, - "order": "The Order of Skill", - "resources": ["Stone", "Wood", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.28, -4.4997] - }, - "properties": { - "name": "Primj\u00fah", - "realm_idx": 7710, - "order": "The Order of Reflection", - "resources": ["Wood", "Copper", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.7801, -31.2996] - }, - "properties": { - "name": "Sakkuk", - "realm_idx": 7711, - "order": "The Order of the Twins", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.747, -2.22] - }, - "properties": { - "name": "Munumu", - "realm_idx": 7712, - "order": "The Order of Perfection", - "resources": ["Wood", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.616, 48.6088] - }, - "properties": { - "name": "tum-Ban-Lan", - "realm_idx": 7713, - "order": "The Order of Anger", - "resources": ["Copper", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.98, 37.8003] - }, - "properties": { - "name": "Kenken", - "realm_idx": 7714, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.28, 0.3003] - }, - "properties": { - "name": "ub-Inokhin", - "realm_idx": 7715, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [21.8471, 17.08] - }, - "properties": { - "name": "Neshnesh", - "realm_idx": 7716, - "order": "The Order of Titans", - "resources": ["Copper", "Stone", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-42.5529, 6.08] - }, - "properties": { - "name": "Akg\u00fck", - "realm_idx": 7717, - "order": "The Order of Vitriol", - "resources": ["Stone", "Copper", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-67.9801, 28.1004] - }, - "properties": { - "name": "Kauknit", - "realm_idx": 7718, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.4529, 12.38] - }, - "properties": { - "name": "Kukluehhouk", - "realm_idx": 7719, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-2.0529, 47.48] - }, - "properties": { - "name": "Tostostos", - "realm_idx": 7720, - "order": "The Order of Titans", - "resources": ["Stone", "Silver", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [28.8471, -30.12] - }, - "properties": { - "name": "Woikuew", - "realm_idx": 7721, - "order": "The Order of Giants", - "resources": ["Ironwood", "Wood", "Copper", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.9801, 51.1004] - }, - "properties": { - "name": "Otpeptot", - "realm_idx": 7722, - "order": "The Order of Anger", - "resources": ["Wood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.447, -3.12] - }, - "properties": { - "name": "\u00c2ssyt", - "realm_idx": 7723, - "order": "The Order of Perfection", - "resources": ["Wood", "Gold", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.78, -53.3996] - }, - "properties": { - "name": "Koknos", - "realm_idx": 7724, - "order": "The Order of the Fox", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.5471, 3.98] - }, - "properties": { - "name": "Ighejeq", - "realm_idx": 7725, - "order": "The Order of Brilliance", - "resources": ["Wood", "Alchemical Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-17.6529, 11.88] - }, - "properties": { - "name": "Ommanlimon", - "realm_idx": 7726, - "order": "The Order of Vitriol", - "resources": ["Ironwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.3471, 41.98] - }, - "properties": { - "name": "Stumtinkin", - "realm_idx": 7727, - "order": "The Order of Skill", - "resources": ["Wood", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.6529, -23.12] - }, - "properties": { - "name": "Autalaut", - "realm_idx": 7728, - "order": "The Order of Power", - "resources": ["Ruby", "Wood", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.2471, 32.78] - }, - "properties": { - "name": "Maimsuimlius", - "realm_idx": 7729, - "order": "The Order of Skill", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [50.0471, -33.32] - }, - "properties": { - "name": "Taktas", - "realm_idx": 7730, - "order": "The Order of Giants", - "resources": ["Sapphire", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.4727, 44.7583] - }, - "properties": { - "name": "Klukkluk", - "realm_idx": 7731, - "order": "The Order of Fury", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.98, -2.7997] - }, - "properties": { - "name": "Tam\u00eanging", - "realm_idx": 7732, - "order": "The Order of Detection", - "resources": ["Wood", "Coal", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [62.4471, 31.68] - }, - "properties": { - "name": "Mooks\u00f3k-Os\u00fa", - "realm_idx": 7733, - "order": "The Order of Skill", - "resources": ["Copper", "Wood", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [34.0471, -15.12] - }, - "properties": { - "name": "Giudpudshan", - "realm_idx": 7734, - "order": "The Order of Giants", - "resources": [ - "Obsidian", - "Coal", - "Ironwood", - "Stone", - "Silver", - "Wood", - "Hartwood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [8.9471, -35.12] - }, - "properties": { - "name": "Pinkinim", - "realm_idx": 7735, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.1471, 32.68] - }, - "properties": { - "name": "Ch\u00fang Skim", - "realm_idx": 7736, - "order": "The Order of Skill", - "resources": ["Gold", "Copper", "Sapphire", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.08, -7.0997] - }, - "properties": { - "name": "Ponan", - "realm_idx": 7737, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal", "Twilight Quartz", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.2529, -38.02] - }, - "properties": { - "name": "Turnketurnma", - "realm_idx": 7738, - "order": "The Order of Power", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [46.7471, 3.88] - }, - "properties": { - "name": "Pyinkam", - "realm_idx": 7739, - "order": "The Order of Brilliance", - "resources": ["Coal", "Ignium", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.2191, 34.0058] - }, - "properties": { - "name": "Sitnir", - "realm_idx": 7740, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.0215, -21.0928] - }, - "properties": { - "name": "Miusiawuidia", - "realm_idx": 7741, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.28, 6.0003] - }, - "properties": { - "name": "Orporp", - "realm_idx": 7742, - "order": "The Order of Detection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [65.5594, -21.6289] - }, - "properties": { - "name": "Lallow", - "realm_idx": 7743, - "order": "The Order of Perfection", - "resources": ["Sapphire", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-81.9801, -35.0996] - }, - "properties": { - "name": "Littustim", - "realm_idx": 7744, - "order": "The Order of the Twins", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.7801, -34.4996] - }, - "properties": { - "name": "Tubtren", - "realm_idx": 7745, - "order": "The Order of the Twins", - "resources": ["Wood", "Obsidian", "Sapphire", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.9471, 28.68] - }, - "properties": { - "name": "Intom", - "realm_idx": 7746, - "order": "The Order of Skill", - "resources": ["Hartwood", "Coal", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.6133, 19.9896] - }, - "properties": { - "name": "Ormreshin", - "realm_idx": 7747, - "order": "The Order of Brilliance", - "resources": ["Silver", "Stone", "Hartwood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-22.6529, -0.62] - }, - "properties": { - "name": "Pongnunpin", - "realm_idx": 7748, - "order": "The Order of Vitriol", - "resources": ["Ruby", "Gold", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.88, -54.4996] - }, - "properties": { - "name": "Soeso", - "realm_idx": 7749, - "order": "The Order of the Fox", - "resources": [ - "Silver", - "Obsidian", - "Coal", - "Stone", - "Wood", - "Twilight Quartz" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.5471, 30.68] - }, - "properties": { - "name": "Skhun", - "realm_idx": 7750, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.1471, -25.52] - }, - "properties": { - "name": "Lilmmolel", - "realm_idx": 7751, - "order": "The Order of Giants", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-1.0529, 47.38] - }, - "properties": { - "name": "Nupshgu", - "realm_idx": 7752, - "order": "The Order of Titans", - "resources": ["Wood", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-106.4306, 35.9498] - }, - "properties": { - "name": "Musdon", - "realm_idx": 7753, - "order": "The Order of Reflection", - "resources": ["Coal", "Stone", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [24.1471, -7.82] - }, - "properties": { - "name": "Kromkankren", - "realm_idx": 7754, - "order": "The Order of Power", - "resources": ["Stone", "Wood", "Copper", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.0801, -22.9996] - }, - "properties": { - "name": "ro\u2018 Wek", - "realm_idx": 7755, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood", "Obsidian", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.3471, 40.88] - }, - "properties": { - "name": "\u0160bur\u0161bi\u010dsik", - "realm_idx": 7756, - "order": "The Order of Skill", - "resources": ["Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.8471, 39.98] - }, - "properties": { - "name": "Siysrig", - "realm_idx": 7757, - "order": "The Order of Skill", - "resources": ["Coal", "Copper", "Wood", "Hartwood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-13.7529, 20.68] - }, - "properties": { - "name": "Lopospen", - "realm_idx": 7758, - "order": "The Order of Vitriol", - "resources": ["Ruby", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-62.5529, 48.18] - }, - "properties": { - "name": "K\u00e1apumaw", - "realm_idx": 7759, - "order": "The Order of Fury", - "resources": ["Silver", "Ignium", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.4471, 2.08] - }, - "properties": { - "name": "Puzh\u00ed", - "realm_idx": 7760, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.7801, 39.9004] - }, - "properties": { - "name": "Moonqoun", - "realm_idx": 7761, - "order": "The Order of Anger", - "resources": ["Wood", "Coal", "Silver", "Copper", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.6529, 21.48] - }, - "properties": { - "name": "Opesumesesak", - "realm_idx": 7762, - "order": "The Order of Vitriol", - "resources": ["Gold", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.0471, 25.18] - }, - "properties": { - "name": "Pyu\u2018lwaw", - "realm_idx": 7763, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Coal", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.0529, 49.88] - }, - "properties": { - "name": "Oyloyl", - "realm_idx": 7764, - "order": "The Order of Vitriol", - "resources": ["Wood", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [59.4471, 7.98] - }, - "properties": { - "name": "Munlum", - "realm_idx": 7765, - "order": "The Order of Brilliance", - "resources": ["Silver", "Stone", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.1471, 6.18] - }, - "properties": { - "name": "Tuslu n\u00e1 Sn\u00e1", - "realm_idx": 7766, - "order": "The Order of Brilliance", - "resources": ["Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.3801, 42.9004] - }, - "properties": { - "name": "hip-Pitaha", - "realm_idx": 7767, - "order": "The Order of Anger", - "resources": ["Adamantine", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.78, 36.9003] - }, - "properties": { - "name": "Kiiyniiy", - "realm_idx": 7768, - "order": "The Order of Reflection", - "resources": ["Diamonds", "Silver", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-104.08, -35.8997] - }, - "properties": { - "name": "Nannin", - "realm_idx": 7769, - "order": "The Order of Reflection", - "resources": ["Gold", "Stone", "Alchemical Silver", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.9527, -51.5606] - }, - "properties": { - "name": "Epuzukuk", - "realm_idx": 7770, - "order": "The Order of the Fox", - "resources": ["Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.9801, 40.3004] - }, - "properties": { - "name": "Rem nom Amen", - "realm_idx": 7771, - "order": "The Order of Anger", - "resources": ["Copper", "Ironwood", "Coal", "Stone", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-42.1529, 53.18] - }, - "properties": { - "name": "Enuk Okik", - "realm_idx": 7772, - "order": "The Order of Fury", - "resources": ["Copper", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.48, -37.8997] - }, - "properties": { - "name": "Hruntinhrin", - "realm_idx": 7773, - "order": "The Order of Reflection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-131.58, -6.4997] - }, - "properties": { - "name": "N\u00f6n\u00f6zh\u00f6\u00fc", - "realm_idx": 7774, - "order": "The Order of Detection", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-94.0274, 34.3004] - }, - "properties": { - "name": "ba Shishishi", - "realm_idx": 7775, - "order": "The Order of Anger", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-4.5529, 37.48] - }, - "properties": { - "name": "Ilnmikilk", - "realm_idx": 7776, - "order": "The Order of Vitriol", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-52.28, -43.4997] - }, - "properties": { - "name": "Shmun", - "realm_idx": 7777, - "order": "The Order of the Fox", - "resources": [ - "Stone", - "Gold", - "Wood", - "Cold Iron", - "True Ice", - "Silver" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.4471, 37.68] - }, - "properties": { - "name": "Alikupal", - "realm_idx": 7778, - "order": "The Order of Skill", - "resources": [ - "Stone", - "Wood", - "Cold Iron", - "Coal", - "Gold", - "Ethereal Silica" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-18.5529, 13.58] - }, - "properties": { - "name": "Pezhkoz", - "realm_idx": 7779, - "order": "The Order of Vitriol", - "resources": ["Cold Iron", "Gold", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.3471, 0.08] - }, - "properties": { - "name": "Po\u0161nez", - "realm_idx": 7780, - "order": "The Order of Brilliance", - "resources": ["Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.78, -55.1996] - }, - "properties": { - "name": "S\u00e4kstis", - "realm_idx": 7781, - "order": "The Order of the Fox", - "resources": ["Wood", "Stone", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.252, 29.3938] - }, - "properties": { - "name": "Molslummo", - "realm_idx": 7782, - "order": "The Order of Anger", - "resources": ["Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-11.8529, 45.48] - }, - "properties": { - "name": "Unsak", - "realm_idx": 7783, - "order": "The Order of Titans", - "resources": ["Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.8471, 11.88] - }, - "properties": { - "name": "Ihuhehepepep", - "realm_idx": 7784, - "order": "The Order of Brilliance", - "resources": ["Wood", "Copper", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.5471, 25.48] - }, - "properties": { - "name": "Aarhulpiil", - "realm_idx": 7785, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Ironwood", "Coal", "Stone", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.3471, -26.82] - }, - "properties": { - "name": "Mam\u00e1siko", - "realm_idx": 7786, - "order": "The Order of Giants", - "resources": ["Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.9456, -5.6503] - }, - "properties": { - "name": "Zhizhgazh", - "realm_idx": 7787, - "order": "The Order of Reflection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.0801, -33.9996] - }, - "properties": { - "name": "Manu Skuspat", - "realm_idx": 7788, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.9471, 5.88] - }, - "properties": { - "name": "Lal mit Nit", - "realm_idx": 7789, - "order": "The Order of Brilliance", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.2471, 44.68] - }, - "properties": { - "name": "Shekhtuysray", - "realm_idx": 7790, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Obsidian", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.2471, 3.58] - }, - "properties": { - "name": "Keknuktumnuk", - "realm_idx": 7791, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.2471, 21.78] - }, - "properties": { - "name": "u\u2018 Umamuloh", - "realm_idx": 7792, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Cold Iron", "Silver", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.5801, -35.6996] - }, - "properties": { - "name": "Bar\u00f3ba", - "realm_idx": 7793, - "order": "The Order of the Twins", - "resources": ["Wood", "Stone", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.18, -43.9996] - }, - "properties": { - "name": "Iwkowsug", - "realm_idx": 7794, - "order": "The Order of the Fox", - "resources": ["Cold Iron", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [66.0645, -17.6727] - }, - "properties": { - "name": "Munuwt", - "realm_idx": 7795, - "order": "The Order of Perfection", - "resources": ["Ironwood", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [39.9471, -11.62] - }, - "properties": { - "name": "Semsanm\u00e1n", - "realm_idx": 7796, - "order": "The Order of Giants", - "resources": ["Coal", "Cold Iron", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.1471, -4.22] - }, - "properties": { - "name": "Sazsishsish", - "realm_idx": 7797, - "order": "The Order of Brilliance", - "resources": ["Stone", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.1801, -15.8996] - }, - "properties": { - "name": "Chelbeltel", - "realm_idx": 7798, - "order": "The Order of Rage", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.5801, -1.3996] - }, - "properties": { - "name": "Girggumman", - "realm_idx": 7799, - "order": "The Order of Rage", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.38, 27.9003] - }, - "properties": { - "name": "P\u00f3nhiy", - "realm_idx": 7800, - "order": "The Order of Fury", - "resources": ["Silver", "Stone", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.5471, -25.92] - }, - "properties": { - "name": "sa-Nolngol", - "realm_idx": 7801, - "order": "The Order of Perfection", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.5471, 20.58] - }, - "properties": { - "name": "Tititup\u00e2", - "realm_idx": 7802, - "order": "The Order of Skill", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [90.7471, 18.98] - }, - "properties": { - "name": "Golk\u00fcbomg\u00fc", - "realm_idx": 7803, - "order": "The Order of Brilliance", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-58.0114, 45.1409] - }, - "properties": { - "name": "Limmistam", - "realm_idx": 7804, - "order": "The Order of Fury", - "resources": ["Wood", "Stone", "Gold", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.88, -28.4997] - }, - "properties": { - "name": "Zat bag Wodo", - "realm_idx": 7805, - "order": "The Order of Reflection", - "resources": ["Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [26.8471, 37.38] - }, - "properties": { - "name": "Altn\u00falnupup", - "realm_idx": 7806, - "order": "The Order of Titans", - "resources": ["Gold", "Wood", "Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.8471, 52.08] - }, - "properties": { - "name": "Nekenu", - "realm_idx": 7807, - "order": "The Order of Enlightenment", - "resources": ["Hartwood", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-118.18, 0.4003] - }, - "properties": { - "name": "Jonjontlun", - "realm_idx": 7808, - "order": "The Order of Detection", - "resources": ["Alchemical Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [113.5107, -22.541] - }, - "properties": { - "name": "\u00c1katam", - "realm_idx": 7809, - "order": "The Order of Protection", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-87.7801, -47.2996] - }, - "properties": { - "name": "Kepusautsut", - "realm_idx": 7810, - "order": "The Order of the Twins", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [130.4147, 7.7069] - }, - "properties": { - "name": "\u00c4titiziz\u00e4t", - "realm_idx": 7811, - "order": "The Order of Protection", - "resources": ["Wood", "Silver", "Ironwood", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.2972, 4.575] - }, - "properties": { - "name": "Uhemem", - "realm_idx": 7812, - "order": "The Order of Protection", - "resources": ["Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [72.4471, 48.78] - }, - "properties": { - "name": "Hungh\u00e1mhung", - "realm_idx": 7813, - "order": "The Order of Skill", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.6471, 53.08] - }, - "properties": { - "name": "\u0160uz\u017eus", - "realm_idx": 7814, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Silver", "Ironwood", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.9355, 46.5268] - }, - "properties": { - "name": "Mukstaknup", - "realm_idx": 7815, - "order": "The Order of Fury", - "resources": ["Obsidian", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.88, -27.4997] - }, - "properties": { - "name": "mam \u00dang", - "realm_idx": 7816, - "order": "The Order of Detection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.9801, 4.5004] - }, - "properties": { - "name": "Meovoengou", - "realm_idx": 7817, - "order": "The Order of Rage", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [120.7471, 25.28] - }, - "properties": { - "name": "Denschin", - "realm_idx": 7818, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Wood", "Stone", "Coal", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.18, 15.7003] - }, - "properties": { - "name": "Kisebsteb", - "realm_idx": 7819, - "order": "The Order of Fury", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.58, 12.0003] - }, - "properties": { - "name": "Erursurtserk", - "realm_idx": 7820, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.38, 20.3003] - }, - "properties": { - "name": "Klees", - "realm_idx": 7821, - "order": "The Order of Fury", - "resources": ["Ignium", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [0.6471, 12.08] - }, - "properties": { - "name": "Upenen", - "realm_idx": 7822, - "order": "The Order of Titans", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [76.1471, 12.98] - }, - "properties": { - "name": "Sn\u00ebtsmumsh\u00eft", - "realm_idx": 7823, - "order": "The Order of Brilliance", - "resources": ["Wood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.48, 0.3003] - }, - "properties": { - "name": "Kilskak", - "realm_idx": 7824, - "order": "The Order of Detection", - "resources": ["Gold", "Obsidian", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-54.6387, -34.0692] - }, - "properties": { - "name": "Tatenummi", - "realm_idx": 7825, - "order": "The Order of the Fox", - "resources": ["Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.0471, 39.28] - }, - "properties": { - "name": "Nu Uk\u00e1knus", - "realm_idx": 7826, - "order": "The Order of Enlightenment", - "resources": ["Obsidian", "Ignium", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-96.1801, 49.5004] - }, - "properties": { - "name": "Mumnup-Uknup", - "realm_idx": 7827, - "order": "The Order of Anger", - "resources": ["Gold", "Obsidian", "Stone", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [37.9471, 11.28] - }, - "properties": { - "name": "Shmonshpok", - "realm_idx": 7828, - "order": "The Order of Titans", - "resources": ["Wood", "Silver", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.3471, 43.68] - }, - "properties": { - "name": "Ghisraktak", - "realm_idx": 7829, - "order": "The Order of Enlightenment", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [52.6471, -37.42] - }, - "properties": { - "name": "Myn\u00eap\u00ea", - "realm_idx": 7830, - "order": "The Order of Giants", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [115.8589, 6.2632] - }, - "properties": { - "name": "Helw\u00fcpew\u00fc", - "realm_idx": 7831, - "order": "The Order of Protection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.9801, -24.8996] - }, - "properties": { - "name": "Eiteitmreim", - "realm_idx": 7832, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.8425, 11.9457] - }, - "properties": { - "name": "Tonsluntun", - "realm_idx": 7833, - "order": "The Order of Protection", - "resources": ["Stone", "Ironwood", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.5801, 24.5004] - }, - "properties": { - "name": "hun Pamxtin", - "realm_idx": 7834, - "order": "The Order of Rage", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-32.3529, 21.58] - }, - "properties": { - "name": "Du-Tun", - "realm_idx": 7835, - "order": "The Order of Vitriol", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-102.8801, 5.4004] - }, - "properties": { - "name": "Parnirs", - "realm_idx": 7836, - "order": "The Order of Rage", - "resources": ["Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-80.9801, 51.4004] - }, - "properties": { - "name": "Qulx Zursruq", - "realm_idx": 7837, - "order": "The Order of Anger", - "resources": ["Stone", "Ironwood", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [67.7471, -16.62] - }, - "properties": { - "name": "Mokpok", - "realm_idx": 7838, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [92.0471, 1.18] - }, - "properties": { - "name": "Pin\u00f3rn", - "realm_idx": 7839, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.6471, 40.78] - }, - "properties": { - "name": "Ng\u00edy\u00edyu", - "realm_idx": 7840, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Obsidian", "Cold Iron", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.6471, 1.18] - }, - "properties": { - "name": "ka Taku", - "realm_idx": 7841, - "order": "The Order of Brilliance", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-55.2801, -24.9996] - }, - "properties": { - "name": "V\u00fczhkish", - "realm_idx": 7842, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.7801, -42.3996] - }, - "properties": { - "name": "Pamumtunsun", - "realm_idx": 7843, - "order": "The Order of the Twins", - "resources": ["Stone", "Copper", "Coal", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-92.0152, 27.8102] - }, - "properties": { - "name": "Niatlail", - "realm_idx": 7844, - "order": "The Order of Rage", - "resources": ["Silver", "Coal", "Copper", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.8471, -41.22] - }, - "properties": { - "name": "Oningnem", - "realm_idx": 7845, - "order": "The Order of Giants", - "resources": ["Silver", "Twilight Quartz", "Stone", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [89.9471, 14.88] - }, - "properties": { - "name": "Saksuskek", - "realm_idx": 7846, - "order": "The Order of Brilliance", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [83.2471, -19.42] - }, - "properties": { - "name": "Fnongft\u00f6ng", - "realm_idx": 7847, - "order": "The Order of Perfection", - "resources": ["Cold Iron", "Stone", "Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-83.8801, -55.7996] - }, - "properties": { - "name": "Ass\u00e9 o Ii", - "realm_idx": 7848, - "order": "The Order of the Twins", - "resources": ["Hartwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.8801, -20.0996] - }, - "properties": { - "name": "Hu im Emem", - "realm_idx": 7849, - "order": "The Order of the Twins", - "resources": ["Ignium", "Wood", "Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-97.3457, -39.1746] - }, - "properties": { - "name": "Nuw Nennen", - "realm_idx": 7850, - "order": "The Order of the Twins", - "resources": ["Ironwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-113.3213, -34.0477] - }, - "properties": { - "name": "Sm\u00e1\u2018\u00e1 Sh\u00e1\u2018\u00e1", - "realm_idx": 7851, - "order": "The Order of Reflection", - "resources": ["Ironwood", "Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-76.6801, -34.5996] - }, - "properties": { - "name": "Atu\u00e4 Up\u00e4\u00eba", - "realm_idx": 7852, - "order": "The Order of the Twins", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.4471, 1.98] - }, - "properties": { - "name": "Gomood", - "realm_idx": 7853, - "order": "The Order of Power", - "resources": ["Gold", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [119.3471, 41.28] - }, - "properties": { - "name": "Sjejsnuvtul", - "realm_idx": 7854, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [106.4471, 44.48] - }, - "properties": { - "name": "Petletkat", - "realm_idx": 7855, - "order": "The Order of Enlightenment", - "resources": ["Wood", "Copper", "Stone", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-56.58, -47.9996] - }, - "properties": { - "name": "Upmim", - "realm_idx": 7856, - "order": "The Order of the Fox", - "resources": ["Hartwood", "Wood", "Cold Iron", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [108.9256, -21.503] - }, - "properties": { - "name": "Uanshum", - "realm_idx": 7857, - "order": "The Order of Protection", - "resources": ["Copper", "Coal", "Adamantine", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-112.18, -35.6997] - }, - "properties": { - "name": "Lukos", - "realm_idx": 7858, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-45.0529, 11.28] - }, - "properties": { - "name": "Hankah", - "realm_idx": 7859, - "order": "The Order of Vitriol", - "resources": [ - "Stone", - "Silver", - "Coal", - "Wood", - "Deep Crystal", - "True Ice" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-117.78, 11.7003] - }, - "properties": { - "name": "Huwin\u2018ohno\u2018", - "realm_idx": 7860, - "order": "The Order of Detection", - "resources": ["Stone", "Sapphire"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-44.4529, 51.88] - }, - "properties": { - "name": "N\u00e1q\u00e1t", - "realm_idx": 7861, - "order": "The Order of Fury", - "resources": ["Silver", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.78, -50.5996] - }, - "properties": { - "name": "Nilshlalkil", - "realm_idx": 7862, - "order": "The Order of the Fox", - "resources": ["Ruby", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.6801, 13.0004] - }, - "properties": { - "name": "Etmupketsan", - "realm_idx": 7863, - "order": "The Order of Rage", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-63.08, 33.2003] - }, - "properties": { - "name": "Yrindan", - "realm_idx": 7864, - "order": "The Order of Fury", - "resources": ["Hartwood", "Obsidian", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.1471, 33.98] - }, - "properties": { - "name": "Wollel", - "realm_idx": 7865, - "order": "The Order of Skill", - "resources": ["Stone", "Cold Iron", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-57.8801, -19.7996] - }, - "properties": { - "name": "Tonson", - "realm_idx": 7866, - "order": "The Order of the Twins", - "resources": ["Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [16.0471, 50.48] - }, - "properties": { - "name": "nys Lyt", - "realm_idx": 7867, - "order": "The Order of Titans", - "resources": ["Stone", "Obsidian", "Wood", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.1471, 51.98] - }, - "properties": { - "name": "Penlen Tom", - "realm_idx": 7868, - "order": "The Order of Enlightenment", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-25.0529, -8.72] - }, - "properties": { - "name": "Liwltiw", - "realm_idx": 7869, - "order": "The Order of the Fox", - "resources": ["Hartwood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-34.1529, -10.22] - }, - "properties": { - "name": "Ordirdar", - "realm_idx": 7870, - "order": "The Order of the Fox", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-116.28, 29.3003] - }, - "properties": { - "name": "Iwuwkuwk", - "realm_idx": 7871, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [87.2777, -18.8397] - }, - "properties": { - "name": "\u00c4nkum", - "realm_idx": 7872, - "order": "The Order of Perfection", - "resources": ["Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.2131, 45.1479] - }, - "properties": { - "name": "Nailwiehleon", - "realm_idx": 7873, - "order": "The Order of Fury", - "resources": ["Ethereal Silica", "Cold Iron", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.5471, 32.28] - }, - "properties": { - "name": "Qiqalqalquq", - "realm_idx": 7874, - "order": "The Order of Skill", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.7471, 18.88] - }, - "properties": { - "name": "Tupmitmik", - "realm_idx": 7875, - "order": "The Order of Skill", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.4666, -6.8487] - }, - "properties": { - "name": "\u00c9ltos\u00edlk", - "realm_idx": 7876, - "order": "The Order of Reflection", - "resources": ["Ruby", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-7.2529, 6.18] - }, - "properties": { - "name": "Pel\u00faq", - "realm_idx": 7877, - "order": "The Order of Power", - "resources": ["Coal", "Hartwood", "True Ice"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [85.6471, 1.38] - }, - "properties": { - "name": "Tustustitnum", - "realm_idx": 7878, - "order": "The Order of Brilliance", - "resources": ["Stone", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-90.5861, -56.1351] - }, - "properties": { - "name": "Mipam\u00edms\u00edp", - "realm_idx": 7879, - "order": "The Order of the Twins", - "resources": ["Wood", "Sapphire", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.3529, 47.48] - }, - "properties": { - "name": "Pran Kun", - "realm_idx": 7880, - "order": "The Order of Fury", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-53.1268, -49.5435] - }, - "properties": { - "name": "Ul\u2018pirniril", - "realm_idx": 7881, - "order": "The Order of the Fox", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.6801, 46.3004] - }, - "properties": { - "name": "Eminlanun", - "realm_idx": 7882, - "order": "The Order of Anger", - "resources": ["Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.6715, -21.3065] - }, - "properties": { - "name": "Turormirp", - "realm_idx": 7883, - "order": "The Order of Perfection", - "resources": ["Stone", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-60.2801, -19.9996] - }, - "properties": { - "name": "Hinmun", - "realm_idx": 7884, - "order": "The Order of the Twins", - "resources": ["Stone", "Sapphire", "Copper", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-93.9801, 31.5004] - }, - "properties": { - "name": "Hlomhromhlik", - "realm_idx": 7885, - "order": "The Order of Anger", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [94.4471, 42.98] - }, - "properties": { - "name": "G\u00e2ikzh\u00e2i", - "realm_idx": 7886, - "order": "The Order of Enlightenment", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.38, -0.5997] - }, - "properties": { - "name": "Nuisnep Nuis", - "realm_idx": 7887, - "order": "The Order of Detection", - "resources": ["Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.3801, 4.6004] - }, - "properties": { - "name": "Mamuse", - "realm_idx": 7888, - "order": "The Order of Rage", - "resources": ["Hartwood", "Stone", "Silver", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-23.0529, 42.98] - }, - "properties": { - "name": "Yunyun", - "realm_idx": 7889, - "order": "The Order of Vitriol", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [104.9471, -8.62] - }, - "properties": { - "name": "Panham", - "realm_idx": 7890, - "order": "The Order of Perfection", - "resources": ["Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-9.9529, 26.78] - }, - "properties": { - "name": "Norg Tort", - "realm_idx": 7891, - "order": "The Order of Vitriol", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.8529, -7.42] - }, - "properties": { - "name": "T\u00e4\u00eftm\u00efuv", - "realm_idx": 7892, - "order": "The Order of the Fox", - "resources": ["Hartwood", "Wood", "Copper", "Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.8801, -54.5996] - }, - "properties": { - "name": "Otolal", - "realm_idx": 7893, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.8539, 26.4672] - }, - "properties": { - "name": "Telispuk", - "realm_idx": 7894, - "order": "The Order of Reflection", - "resources": [ - "Obsidian", - "Ethereal Silica", - "Wood", - "Silver", - "Stone", - "True Ice" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.5471, -35.42] - }, - "properties": { - "name": "Zir\u00farzh", - "realm_idx": 7895, - "order": "The Order of Giants", - "resources": ["Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-115.08, 27.4003] - }, - "properties": { - "name": "Mintekon", - "realm_idx": 7896, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.5471, 48.28] - }, - "properties": { - "name": "nin-Sindrin", - "realm_idx": 7897, - "order": "The Order of Enlightenment", - "resources": ["Sapphire", "Wood", "Stone", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [116.2471, 19.88] - }, - "properties": { - "name": "Goskosgok", - "realm_idx": 7898, - "order": "The Order of Protection", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [15.9471, 50.18] - }, - "properties": { - "name": "Ehhuhehluwul", - "realm_idx": 7899, - "order": "The Order of Titans", - "resources": ["Wood", "Stone", "Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [9.7471, -17.02] - }, - "properties": { - "name": "Munguq", - "realm_idx": 7900, - "order": "The Order of Power", - "resources": ["Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-66.1801, -17.9996] - }, - "properties": { - "name": "Likkik", - "realm_idx": 7901, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Coal", "Ironwood", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [91.5471, 26.68] - }, - "properties": { - "name": "Neneketunene", - "realm_idx": 7902, - "order": "The Order of Enlightenment", - "resources": ["Diamonds", "Coal", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [4.7471, -14.32] - }, - "properties": { - "name": "Ohomoheput", - "realm_idx": 7903, - "order": "The Order of Power", - "resources": ["Stone", "Coal", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.9471, 16.58] - }, - "properties": { - "name": "\u00c4sch\u00fcl\u00f6s", - "realm_idx": 7904, - "order": "The Order of Skill", - "resources": ["Copper", "Obsidian", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.1471, -46.32] - }, - "properties": { - "name": "Qiugqiug", - "realm_idx": 7905, - "order": "The Order of Giants", - "resources": ["Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-77.9801, -15.5996] - }, - "properties": { - "name": "Li\u2018ewime", - "realm_idx": 7906, - "order": "The Order of Rage", - "resources": ["Stone", "Gold", "Coal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-64.08, 37.3003] - }, - "properties": { - "name": "Muno Memmah", - "realm_idx": 7907, - "order": "The Order of Fury", - "resources": ["Copper", "Cold Iron", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.9471, 19.98] - }, - "properties": { - "name": "Nelkrep Nom", - "realm_idx": 7908, - "order": "The Order of Brilliance", - "resources": ["Wood", "Silver", "Sapphire", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-114.2485, 39.8542] - }, - "properties": { - "name": "\u00c1k\u00e1s\u00e1kg\u00e9k", - "realm_idx": 7909, - "order": "The Order of Reflection", - "resources": ["Wood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [61.5471, -48.82] - }, - "properties": { - "name": "Tipmlun", - "realm_idx": 7910, - "order": "The Order of Giants", - "resources": ["Obsidian", "Coal", "Silver", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-82.3801, -35.0996] - }, - "properties": { - "name": "Alisikisus", - "realm_idx": 7911, - "order": "The Order of the Twins", - "resources": ["Copper", "Obsidian", "Coal", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [63.2596, -23.5575] - }, - "properties": { - "name": "Sponamkirki", - "realm_idx": 7912, - "order": "The Order of Perfection", - "resources": ["Wood", "Cold Iron", "Stone", "Silver", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [7.3471, 28.48] - }, - "properties": { - "name": "Auptunonnel", - "realm_idx": 7913, - "order": "The Order of Titans", - "resources": ["Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [96.4471, 2.38] - }, - "properties": { - "name": "Un an Uning", - "realm_idx": 7914, - "order": "The Order of Brilliance", - "resources": ["Diamonds", "Stone", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.18, 0.7003] - }, - "properties": { - "name": "Esnezh", - "realm_idx": 7915, - "order": "The Order of Detection", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-5.2529, -26.92] - }, - "properties": { - "name": "Kikkiktak", - "realm_idx": 7916, - "order": "The Order of Power", - "resources": ["Cold Iron", "Copper", "Gold", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.4471, 21.08] - }, - "properties": { - "name": "Zugi Digiwi", - "realm_idx": 7917, - "order": "The Order of Enlightenment", - "resources": [ - "Ignium", - "Stone", - "Cold Iron", - "Ironwood", - "Gold", - "Coal", - "Wood" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.4471, -35.82] - }, - "properties": { - "name": "Lakmak", - "realm_idx": 7918, - "order": "The Order of Giants", - "resources": ["Coal", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.5471, -21.52] - }, - "properties": { - "name": "Hiptih", - "realm_idx": 7919, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood", "Stone", "Copper", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.0394, 16.72] - }, - "properties": { - "name": "Uhkukunkut", - "realm_idx": 7920, - "order": "The Order of Protection", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-75.9801, 43.9004] - }, - "properties": { - "name": "N\u00edkal", - "realm_idx": 7921, - "order": "The Order of Anger", - "resources": ["Silver", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-95.3801, -39.3996] - }, - "properties": { - "name": "Uuk\u00faklakik", - "realm_idx": 7922, - "order": "The Order of the Twins", - "resources": ["Stone", "Twilight Quartz", "Cold Iron", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-101.1801, 20.1004] - }, - "properties": { - "name": "H\u00fckz\u00fckzuk", - "realm_idx": 7923, - "order": "The Order of Rage", - "resources": ["Stone", "Wood", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-37.1527, 52.9801] - }, - "properties": { - "name": "Men Khin\u0161len", - "realm_idx": 7924, - "order": "The Order of the Twins", - "resources": ["Silver", "Obsidian", "Ignium", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [57.5471, -26.62] - }, - "properties": { - "name": "Pipwyi\u2018", - "realm_idx": 7925, - "order": "The Order of Giants", - "resources": ["Obsidian", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.7471, 10.08] - }, - "properties": { - "name": "Skakslokskok", - "realm_idx": 7926, - "order": "The Order of Brilliance", - "resources": ["Coal", "Stone", "Wood", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [97.2471, -13.42] - }, - "properties": { - "name": "Suvtej", - "realm_idx": 7927, - "order": "The Order of Perfection", - "resources": ["Wood", "Gold", "Cold Iron", "Diamonds", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.5471, 56.98] - }, - "properties": { - "name": "Hokhoknlu\u2018", - "realm_idx": 7928, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Ironwood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.7471, 17.58] - }, - "properties": { - "name": "Skozhsnusch", - "realm_idx": 7929, - "order": "The Order of Titans", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.8471, 55.38] - }, - "properties": { - "name": "Sak-ti-Ashud", - "realm_idx": 7930, - "order": "The Order of Skill", - "resources": ["Coal", "Wood", "Cold Iron", "Ethereal Silica", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [127.5885, 10.081] - }, - "properties": { - "name": "Tu\u010deh-ez-Zo", - "realm_idx": 7931, - "order": "The Order of Protection", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-128.68, -9.6997] - }, - "properties": { - "name": "Mrenlop", - "realm_idx": 7932, - "order": "The Order of Detection", - "resources": ["Stone", "Copper", "Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-31.4529, 0.98] - }, - "properties": { - "name": "Sk\u00edssg\u00e1rsg\u00edp", - "realm_idx": 7933, - "order": "The Order of Vitriol", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [3.1471, 14.18] - }, - "properties": { - "name": "Teeiilloeet", - "realm_idx": 7934, - "order": "The Order of Titans", - "resources": ["Wood", "Cold Iron", "Ruby"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [124.0471, 12.38] - }, - "properties": { - "name": "Myit\u00e2am", - "realm_idx": 7935, - "order": "The Order of Protection", - "resources": ["Silver", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.08, -5.0997] - }, - "properties": { - "name": "Hant\u00e2hnyntyn", - "realm_idx": 7936, - "order": "The Order of Reflection", - "resources": ["Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-74.0602, 32.9578] - }, - "properties": { - "name": "Ukukatanupuk", - "realm_idx": 7937, - "order": "The Order of Anger", - "resources": ["Copper", "Stone", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [1.0471, -2.22] - }, - "properties": { - "name": "Potloklon", - "realm_idx": 7938, - "order": "The Order of Power", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [86.1471, -17.32] - }, - "properties": { - "name": "Ulsulgkulm", - "realm_idx": 7939, - "order": "The Order of Perfection", - "resources": ["Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [77.6471, 55.28] - }, - "properties": { - "name": "Umninmam\u2018im", - "realm_idx": 7940, - "order": "The Order of Skill", - "resources": ["Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [43.3471, -33.12] - }, - "properties": { - "name": "Komom", - "realm_idx": 7941, - "order": "The Order of Giants", - "resources": ["Ironwood", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.7529, -41.92] - }, - "properties": { - "name": "Mosslap", - "realm_idx": 7942, - "order": "The Order of Power", - "resources": ["Coal", "Wood", "Stone", "Gold", "Ignium", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [79.1471, 28.48] - }, - "properties": { - "name": "Tun-Tum", - "realm_idx": 7943, - "order": "The Order of Skill", - "resources": ["Stone", "Wood", "Coal", "Diamonds", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [75.9471, 25.88] - }, - "properties": { - "name": "Qinsqimnging", - "realm_idx": 7944, - "order": "The Order of Skill", - "resources": ["Stone", "Hartwood", "Ironwood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-105.0426, 32.99] - }, - "properties": { - "name": "Skektukstak", - "realm_idx": 7945, - "order": "The Order of Reflection", - "resources": ["Gold", "Copper", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.78, -50.4996] - }, - "properties": { - "name": "Zuispeasgou", - "realm_idx": 7946, - "order": "The Order of the Fox", - "resources": ["Copper", "Wood", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [95.9471, 46.48] - }, - "properties": { - "name": "Nen\u00fanak Akne", - "realm_idx": 7947, - "order": "The Order of Enlightenment", - "resources": ["Stone", "Copper", "Coal", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-91.2801, -38.3996] - }, - "properties": { - "name": "Ghonshin", - "realm_idx": 7948, - "order": "The Order of the Twins", - "resources": ["Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.047, -4.32] - }, - "properties": { - "name": "Leklekkun", - "realm_idx": 7949, - "order": "The Order of Perfection", - "resources": ["Copper", "Ruby", "Hartwood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.947, 0.28] - }, - "properties": { - "name": "E raz Engoz", - "realm_idx": 7950, - "order": "The Order of Perfection", - "resources": ["Obsidian", "Stone", "Gold", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-124.48, 12.2003] - }, - "properties": { - "name": "Uchurchur", - "realm_idx": 7951, - "order": "The Order of Detection", - "resources": ["Stone", "Adamantine", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [56.0471, 21.78] - }, - "properties": { - "name": "Ukuput", - "realm_idx": 7952, - "order": "The Order of Skill", - "resources": ["Copper", "Gold", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [42.8471, -13.22] - }, - "properties": { - "name": "Snonsnotkot", - "realm_idx": 7953, - "order": "The Order of Giants", - "resources": ["Copper", "Wood", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-103.9801, 37.5004] - }, - "properties": { - "name": "ak Siksik", - "realm_idx": 7954, - "order": "The Order of Anger", - "resources": ["Stone", "Gold", "Sapphire", "Ironwood", "Diamonds"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.6529, -5.32] - }, - "properties": { - "name": "\u00cdkpispum", - "realm_idx": 7955, - "order": "The Order of the Fox", - "resources": ["Stone", "Deep Crystal", "Wood", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-50.2529, 54.78] - }, - "properties": { - "name": "Surol", - "realm_idx": 7956, - "order": "The Order of Fury", - "resources": ["Deep Crystal", "Coal", "Silver"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-108.1737, 1.6535] - }, - "properties": { - "name": "Audebiereizh", - "realm_idx": 7957, - "order": "The Order of Reflection", - "resources": ["Stone", "Gold", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [31.2471, -41.62] - }, - "properties": { - "name": "Muenoan", - "realm_idx": 7958, - "order": "The Order of Giants", - "resources": ["Stone", "Hartwood", "Coal", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-100.5479, -6.043] - }, - "properties": { - "name": "Koch-Bej", - "realm_idx": 7959, - "order": "The Order of Reflection", - "resources": ["Silver", "Copper", "Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-99.9801, 41.2004] - }, - "properties": { - "name": "Hyam\u2018iwwun", - "realm_idx": 7960, - "order": "The Order of Anger", - "resources": ["Wood", "Stone", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [38.2471, -11.02] - }, - "properties": { - "name": "Hlennlunnlun", - "realm_idx": 7961, - "order": "The Order of Giants", - "resources": ["Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [111.2471, 32.18] - }, - "properties": { - "name": "Tenendenne", - "realm_idx": 7962, - "order": "The Order of Enlightenment", - "resources": ["Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [29.0471, -18.42] - }, - "properties": { - "name": "Bodbod-Bub", - "realm_idx": 7963, - "order": "The Order of Giants", - "resources": ["Wood", "Stone", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [99.8884, -11.9167] - }, - "properties": { - "name": "Opopo\u2018uw", - "realm_idx": 7964, - "order": "The Order of Perfection", - "resources": ["Silver", "Stone", "Wood", "Copper", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-73.4801, -13.7996] - }, - "properties": { - "name": "T\u00e1tsti", - "realm_idx": 7965, - "order": "The Order of Rage", - "resources": ["Ruby", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.6471, 25.68] - }, - "properties": { - "name": "Iwmows-Iwm", - "realm_idx": 7966, - "order": "The Order of Enlightenment", - "resources": [ - "Wood", - "Sapphire", - "Stone", - "Silver", - "Gold", - "Coal", - "Obsidian" - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-89.9801, -33.2996] - }, - "properties": { - "name": "Nus uk Uyk", - "realm_idx": 7967, - "order": "The Order of the Twins", - "resources": ["Obsidian", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-70.0109, 40.7449] - }, - "properties": { - "name": "Sessraksras", - "realm_idx": 7968, - "order": "The Order of Anger", - "resources": ["Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-111.1294, 27.0106] - }, - "properties": { - "name": "Madug", - "realm_idx": 7969, - "order": "The Order of Reflection", - "resources": ["Coal", "Copper", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [109.847, -4.32] - }, - "properties": { - "name": "Gozabe", - "realm_idx": 7970, - "order": "The Order of Perfection", - "resources": ["Coal", "Stone", "Obsidian", "Copper", "Mithral"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [2.7471, 2.58] - }, - "properties": { - "name": "Aujajhuwuw", - "realm_idx": 7971, - "order": "The Order of Power", - "resources": ["Ruby", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-35.2529, 32.28] - }, - "properties": { - "name": "Wurnuwu", - "realm_idx": 7972, - "order": "The Order of Vitriol", - "resources": ["Copper", "Wood", "Silver", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-65.5801, 8.3004] - }, - "properties": { - "name": "Imkunan", - "realm_idx": 7973, - "order": "The Order of Rage", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [30.3471, 12.68] - }, - "properties": { - "name": "ut Asuspia", - "realm_idx": 7974, - "order": "The Order of Titans", - "resources": ["Silver", "Coal", "Stone", "Wood", "Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-40.4527, 52.3801] - }, - "properties": { - "name": "Pikpik", - "realm_idx": 7975, - "order": "The Order of the Twins", - "resources": ["Stone", "Copper", "Sapphire", "Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [82.2471, 0.68] - }, - "properties": { - "name": "Gulsgogodol", - "realm_idx": 7976, - "order": "The Order of Brilliance", - "resources": ["Coal", "True Ice", "Wood", "Stone"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.78, -17.6997] - }, - "properties": { - "name": "Zamukchuka", - "realm_idx": 7977, - "order": "The Order of Detection", - "resources": ["Cold Iron"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-30.2527, 51.3801] - }, - "properties": { - "name": "Pie Hidimhie", - "realm_idx": 7978, - "order": "The Order of the Twins", - "resources": ["Coal", "Ironwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-107.0436, 35.1612] - }, - "properties": { - "name": "Kanin e Opon", - "realm_idx": 7979, - "order": "The Order of Reflection", - "resources": ["Obsidian", "Wood", "Stone", "Coal", "Ignium"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-12.4529, -23.62] - }, - "properties": { - "name": "Kem\u00fa \u2018e\u2018e", - "realm_idx": 7980, - "order": "The Order of Power", - "resources": ["Coal", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-121.88, 8.8003] - }, - "properties": { - "name": "Omupelemun", - "realm_idx": 7981, - "order": "The Order of Detection", - "resources": ["Ironwood", "Deep Crystal", "Wood", "Gold", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-88.7045, -55.4627] - }, - "properties": { - "name": "\u2018uzuzh\u2018ozux", - "realm_idx": 7982, - "order": "The Order of the Twins", - "resources": ["Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-123.58, -2.2997] - }, - "properties": { - "name": "Aongkin", - "realm_idx": 7983, - "order": "The Order of Detection", - "resources": ["Coal", "Stone", "Obsidian", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-79.08, -51.3996] - }, - "properties": { - "name": "Nlemlwenlwen", - "realm_idx": 7984, - "order": "The Order of the Fox", - "resources": ["Stone", "Silver", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-71.88, -55.3996] - }, - "properties": { - "name": "Umsinsan\u00e1n\u00edn", - "realm_idx": 7985, - "order": "The Order of the Fox", - "resources": ["Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [117.1471, 25.38] - }, - "properties": { - "name": "Snussmun", - "realm_idx": 7986, - "order": "The Order of Enlightenment", - "resources": ["Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-120.58, 22.7003] - }, - "properties": { - "name": "Paesoimkiws", - "realm_idx": 7987, - "order": "The Order of Detection", - "resources": ["Copper", "Deep Crystal", "Coal", "Adamantine"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-19.1529, -35.32] - }, - "properties": { - "name": "Boaghau", - "realm_idx": 7988, - "order": "The Order of Power", - "resources": ["Copper", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [55.1471, 41.98] - }, - "properties": { - "name": "Nesle", - "realm_idx": 7989, - "order": "The Order of Skill", - "resources": ["Wood", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [32.0471, -9.32] - }, - "properties": { - "name": "Lwipma\u2018pwin", - "realm_idx": 7990, - "order": "The Order of Power", - "resources": ["Ironwood", "Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-10.8529, -16.62] - }, - "properties": { - "name": "Sm\u00edssmu\u017em\u00e1\u0161", - "realm_idx": 7991, - "order": "The Order of Power", - "resources": ["Obsidian", "Silver", "Copper", "Stone", "Wood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [112.547, -2.12] - }, - "properties": { - "name": "Teisoepais", - "realm_idx": 7992, - "order": "The Order of Perfection", - "resources": ["Wood", "Stone", "Silver", "Coal", "Obsidian"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [121.0471, 25.18] - }, - "properties": { - "name": "Nasul-Nurgna", - "realm_idx": 7993, - "order": "The Order of Enlightenment", - "resources": ["Coal", "Stone", "Wood", "Hartwood"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-86.2158, 29.002] - }, - "properties": { - "name": "Mahana", - "realm_idx": 7994, - "order": "The Order of Anger", - "resources": ["Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [54.7471, -26.52] - }, - "properties": { - "name": "K\u00e9mpuk", - "realm_idx": 7995, - "order": "The Order of Giants", - "resources": ["Silver", "Coal", "Wood", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-68.08, 35.7003] - }, - "properties": { - "name": "Kan Tunsun", - "realm_idx": 7996, - "order": "The Order of Fury", - "resources": ["Wood", "Coal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-61.38, -56.6996] - }, - "properties": { - "name": "Imkin", - "realm_idx": 7997, - "order": "The Order of the Fox", - "resources": ["Wood", "Deep Crystal"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-122.08, 6.0003] - }, - "properties": { - "name": "Naollopmiol", - "realm_idx": 7998, - "order": "The Order of Detection", - "resources": ["Stone", "Copper"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [-3.8529, 21.08] - }, - "properties": { - "name": "Lutoltlu", - "realm_idx": 7999, - "order": "The Order of Vitriol", - "resources": ["Coal", "Silver", "Gold"] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [118.8471, 13.58] - }, - "properties": { - "name": "Kilvkipkilv", - "realm_idx": 8000, - "order": "The Order of Protection", - "resources": ["Silver", "Wood", "Copper", "Ruby", "Coal"] - } - } - ] -} diff --git a/ui/src/app/lib/utils/index.ts b/ui/src/app/lib/utils/index.ts index 75660dee9..65c5dd738 100644 --- a/ui/src/app/lib/utils/index.ts +++ b/ui/src/app/lib/utils/index.ts @@ -2,7 +2,6 @@ import { ClassValue, clsx } from "clsx"; import { twMerge } from "tailwind-merge"; import BN from "bn.js"; -import Realms from "../realms.json"; import { Adventurer, Item } from "../../types"; import { GameData } from "../../components/GameData"; import { @@ -154,12 +153,6 @@ export function convertTime(time: number) { return TimeUTC; } -export function getRealmNameById(id: number) { - return Realms.features.find( - (realm: any) => realm.properties.realm_idx === id - ); -} - export function getRankFromList(id: number, data: Adventurer[]) { return data.findIndex((data) => data.id === id); }