diff --git a/src/global.css b/src/global.css index d5a8417..f52ca06 100644 --- a/src/global.css +++ b/src/global.css @@ -18,4 +18,10 @@ body { background-color: var(--color-primary-400); border-radius: 10px; /* border: 2px solid #2c2c35; */ +} + +.truncate { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } \ No newline at end of file diff --git a/src/lib/components/Campaigns/ListCampaigns.svelte b/src/lib/components/Campaigns/ListCampaigns.svelte index 5e2435c..5b7d356 100644 --- a/src/lib/components/Campaigns/ListCampaigns.svelte +++ b/src/lib/components/Campaigns/ListCampaigns.svelte @@ -17,8 +17,6 @@ const response = await fetch(`${upstreamUrl}/api/campaigns/${page}`); const data = await response.json(); campaigns = data || []; - - console.log(campaigns); } catch (error) { console.error('Error fetching campaigns:', error); } finally { diff --git a/src/lib/components/KillList.svelte b/src/lib/components/KillList.svelte index 36a75eb..855941c 100644 --- a/src/lib/components/KillList.svelte +++ b/src/lib/components/KillList.svelte @@ -3,28 +3,39 @@ import type { Killmail } from '$lib/types/Killmail'; import { onMount } from 'svelte'; - import { goto } from '$app/navigation'; - import { stompConnection } from '$lib/Stomp.ts'; - import { fetchKillList } from '$lib/fetchKillList.ts'; + // import { goto } from '$app/navigation'; import { formatNumber } from '$lib/Helpers.ts'; import { useColors } from '$lib/models/useColors'; + import KillListFilters from '$lib/components/KillListFilters.svelte'; const { getSecurityColor } = useColors(); - export let url: string; + import { useKillmails } from '$lib/models/useKillmails'; + import { killmails } from '$lib/stores/killmails'; + const { getPage, pauseHandlingMessages, enableSubscription } = useKillmails(); + + // export let url: string; export let title: string = ''; - export let subscriptionTopic: string = 'all'; - export let filter: { field: string; value: any } | null = null; - export let combinedKillsAndLosses: boolean = false; - export let combinedVictimType: string = 'character'; - export let combinedVictimId: number; + // export let subscriptionTopic: string = 'all'; + // export let filter: { field: string; value: any } | null = null; + // export let combinedKillsAndLosses: boolean = false; + // export let victimType: string = 'character'; + export let victimId: number | undefined = undefined; + export let withFilters: boolean = false; + export let withKillLossColors: boolean = false; + export let withSubscription: boolean = false; let kills: Killmail[] = []; let page: number = 1; let loading: boolean = false; - let isPaused: boolean = false; - let pauseTimeout: any; - let queuedKills: Killmail[] = []; + let showFilters: boolean = false; + + $: { + let killData = $killmails; + if (killData) { + kills = killData.data; + } + } onMount(() => { const urlParams = new URLSearchParams(window.location.search); @@ -32,114 +43,142 @@ if (pageParam) { page = parseInt(pageParam, 10); } - loadKills(); - let topic = '/exchange/killmail_topic_exchange/' + subscriptionTopic; - stompConnection(topic, handleIncomingMessage); + + enableSubscription(withSubscription); }); - async function loadKills() { - if (loading) return; - loading = true; - const newKills: Killmail[] = await fetchKillList(url, page); - kills = newKills.slice(0, 100); - updateURL(); - loading = false; + // function updateURL() { + // const newUrl = new URL(window.location.href); + // newUrl.searchParams.set('killlistPage', String(page)); + // goto(newUrl.toString(), { replaceState: true }); + // } + + // function matchesFilter(killmail: Killmail, filter: { field: string; value: any }): boolean { + // const keys = filter.field.split('.'); + // let current: any = killmail; + // for (const key of keys) { + // if (Array.isArray(current)) { + // return current.some((item) => item[key] === filter.value); + // } else { + // current = current[key]; + // } + // if (current === undefined) { + // return false; + // } + // } + // return current === filter.value; + // } + + function handleClick(event: MouseEvent, killmailId: string) { + if (event.ctrlKey || event.metaKey || event.button === 1) { + event.preventDefault(); + window.open(`/kill/${killmailId}`, '_blank'); + } else { + window.location.href = `/kill/${killmailId}`; + } } - function updateURL() { - const newUrl = new URL(window.location.href); - newUrl.searchParams.set('killlistPage', String(page)); - goto(newUrl.toString(), { replaceState: true }); + function changePage(newPage: number) { + page = newPage; + getPage(page); } - function handleIncomingMessage(message: Killmail) { - if (page !== 1) return; + // const getFinalBlowAttacker = (kill: Killmail) => { + // if (Array.isArray(kill.attackers)) { + // for (const attacker of kill.attackers) { + // if (attacker.final_blow) { + // return attacker; + // } + // } + // } + // return null; + // }; - if (filter && !matchesFilter(message, filter)) { - return; + const getNumCharacters = (kill: Killmail) => { + // we need to make sure to filter out NPCs + return kill.attackers.filter((attacker) => attacker.character_id).length; + }; + + const getNumCorps = (kill: Killmail) => { + const corps = new Set(); + for (const attacker of kill.attackers) { + // we need to make sure to filter out NPCs + if (attacker.corporation_id) { + corps.add(attacker.corporation_id); + } } + return corps.size; + }; - if (isPaused) { - queuedKills.push(message); - } else { - addKillToList(message); + const getNumAlliances = (kill: Killmail) => { + const alliances = new Set(); + for (const attacker of kill.attackers) { + // we need to make sure to filter out NPCs + if (attacker.alliance_id) { + alliances.add(attacker.alliance_id); + } } - } + return alliances.size; + }; - function matchesFilter(killmail: Killmail, filter: { field: string; value: any }): boolean { - const keys = filter.field.split('.'); - let current: any = killmail; - for (const key of keys) { - if (Array.isArray(current)) { - return current.some((item) => item[key] === filter.value); - } else { - current = current[key]; + const getBackgroundColor = (kill: Killmail) => { + if (withKillLossColors) { + if (kill.victim.character_id === victimId) { + return 'bg-red-900'; } - if (current === undefined) { - return false; + if (kill.attackers.some((attacker) => attacker.character_id === victimId)) { + return 'bg-green-900'; } } - return current === filter.value; - } + return 'bg-black'; + }; - function addKillToList(message: Killmail) { - if (!kills.find((kill) => kill.killmail_id === message.killmail_id)) { - kills = [message, ...kills]; - } - if (kills.length > 100) { - kills.pop(); - } - } + const getMostShipGroups = (kill: Killmail) => { + // we want to return the count and group name + const shipGroups = new Map(); + const shipGroupNames = new Map(); - function pauseAddingKills() { - clearTimeout(pauseTimeout); - isPaused = true; - pauseTimeout = setTimeout(() => { - isPaused = false; - while (queuedKills.length > 0) { - addKillToList(queuedKills.shift()!); + for (const attacker of kill.attackers) { + if (attacker.ship_group_id) { + if (shipGroups.has(attacker.ship_group_id)) { + shipGroups.set(attacker.ship_group_id, shipGroups.get(attacker.ship_group_id) + 1); + } else { + shipGroups.set(attacker.ship_group_id, 1); + shipGroupNames.set(attacker.ship_group_id, attacker.ship_group_name); + } } - }, 2500); - } - - function handleClick(event: MouseEvent, killmailId: string) { - if (event.ctrlKey || event.metaKey || event.button === 1) { - event.preventDefault(); - window.open(`/kill/${killmailId}`, '_blank'); - } else { - window.location.href = `/kill/${killmailId}`; } - } - // Helper function to check if the kill is a loss that should be highlighted - function isCombinedLoss(kill: Killmail): boolean { - if (combinedKillsAndLosses && kill.victim[`${combinedVictimType}_id`] === combinedVictimId) { - return true; - } - return false; - } + // Sort the groups by count (descending) + const sorted = Array.from(shipGroups.entries()).sort((a, b) => b[1] - a[1]); - function truncateString(str: any, num: number) { - let stringifiedStr = String(str); - return stringifiedStr.length <= num ? stringifiedStr : stringifiedStr.slice(0, num) + '...'; - } + let result = []; + let totalRemaining = 0; - function changePage(newPage: number) { - if (newPage > 0) { - page = newPage; - loadKills(); + // Push the top 2 ship groups + for (let i = 0; i < Math.min(2, sorted.length); i++) { + const [shipGroupId, count] = sorted[i]; + result.push({ + id: shipGroupId, + name: shipGroupNames.get(shipGroupId), + count + }); } - } - function getFinalBlowAttacker(kill: Killmail) { - if (Array.isArray(kill.attackers)) { - for (const attacker of kill.attackers) { - if (attacker.final_blow) { - return attacker; - } + + // Check if there are more than 2 ship groups and calculate the remaining count + if (sorted.length > 2) { + for (let i = 2; i < sorted.length; i++) { + totalRemaining += sorted[i][1]; } + result.push({ + id: null, + name: `More`, + count: totalRemaining + }); } - return null; - } + + return result; + }; {#if title !== undefined} @@ -147,48 +186,65 @@ {/if} -
- - Page {page} - +
+ {#if withFilters} + + {/if} + +
+
+ + Page {page} + +
+{#if withFilters} +
+ +
+{/if} +
-
-
Ship
+
Victim
-
Final Blow
+
Orgs Involved
+
Ships Involved
+
Location
Details
{#each kills as kill (kill.killmail_id)}
- - diff --git a/src/lib/components/KillListFilters.svelte b/src/lib/components/KillListFilters.svelte new file mode 100644 index 0000000..22d9c18 --- /dev/null +++ b/src/lib/components/KillListFilters.svelte @@ -0,0 +1,226 @@ + + +
+
+
Presets
+ + onSelectFilterPreset(event.value)}> + + Preset... + + + {#each presetOptions as option} + {#if FILTER_PRESETS[option]} + {FILTER_PRESETS[option].label} + {/if} + {/each} + + +
+ + +
+
+
Involved Entity Filters
+
+ +
+
+ {#if localInvolvedEntities} + {#each localInvolvedEntities as entityEntry} + {#key entityEntry.entity.id} +
+ + onSelectEntity(entityEntry, value)} + value={entityEntry.entity} + placeholder="Involved Entity..." + type="entity" + /> + + + option.value === entityEntry.involvedAs)} + onSelectedChange={(event) => onSelectInvolvedAs(entityEntry, event.value)} + > + + Involved As... + + + {#each involvedAsOptions as option} + {option.label} + {/each} + + + + + +
+ {/key} + {/each} + {/if} +
+
+ + +
+
Location/Time Filters
+
+ + onSelectLocation(value)} value={null} placeholder="Location..." type="location" /> + +
TODO Date Range Picker
+
+
+
diff --git a/src/lib/components/KillmailFilters.svelte b/src/lib/components/KillmailFilters.svelte deleted file mode 100644 index 7ff1d81..0000000 --- a/src/lib/components/KillmailFilters.svelte +++ /dev/null @@ -1,66 +0,0 @@ - - -
- - - onSelect(event, 'victim')} /> - - - - - - onSelect(event, 'attacker')} /> - - - - - - - - - - - - -
diff --git a/src/lib/components/TopBoxes/Constellations.svelte b/src/lib/components/TopBoxes/Constellations.svelte index 4ffb2bf..bc5604d 100644 --- a/src/lib/components/TopBoxes/Constellations.svelte +++ b/src/lib/components/TopBoxes/Constellations.svelte @@ -10,7 +10,6 @@ onMount(async () => { const response = await fetch(url); constellations = await response.json(); - console.log(constellations); }); diff --git a/src/lib/components/ui/SearchSelect.svelte b/src/lib/components/ui/SearchSelect.svelte index 0de5ba3..8122a9c 100644 --- a/src/lib/components/ui/SearchSelect.svelte +++ b/src/lib/components/ui/SearchSelect.svelte @@ -1,57 +1,71 @@ -
- - - - - - - {#if searchResults.length > 0} -
- {#each searchResults as result} - {result.name} - {/each} -
- {:else} -
Search for entities
- {/if} -
-
-
+ + + + + + + {#if type === 'location'} + Anywhere + {/if} + {#if searchResults.length > 0} +
+ {#each searchResults as result} + {result.name} + {/each} +
+ {:else} +
Search for entities
+ {/if} +
+
diff --git a/src/lib/data/locations.json b/src/lib/data/locations.json new file mode 100644 index 0000000..2c7323b --- /dev/null +++ b/src/lib/data/locations.json @@ -0,0 +1,32934 @@ +[ + { + "id": 30000001, + "regionId": 10000001, + "name": "Tanoo", + "type": "system" + }, + { + "id": 30000002, + "regionId": 10000001, + "name": "Lashesih", + "type": "system" + }, + { + "id": 30000003, + "regionId": 10000001, + "name": "Akpivem", + "type": "system" + }, + { + "id": 30000004, + "regionId": 10000001, + "name": "Jark", + "type": "system" + }, + { + "id": 30000005, + "regionId": 10000001, + "name": "Sasta", + "type": "system" + }, + { + "id": 30000006, + "regionId": 10000001, + "name": "Zaid", + "type": "system" + }, + { + "id": 30000007, + "regionId": 10000001, + "name": "Yuzier", + "type": "system" + }, + { + "id": 30000008, + "regionId": 10000001, + "name": "Nirbhi", + "type": "system" + }, + { + "id": 30000009, + "regionId": 10000001, + "name": "Sooma", + "type": "system" + }, + { + "id": 30000010, + "regionId": 10000001, + "name": "Chidah", + "type": "system" + }, + { + "id": 30000011, + "regionId": 10000001, + "name": "Shenela", + "type": "system" + }, + { + "id": 30000012, + "regionId": 10000001, + "name": "Asabona", + "type": "system" + }, + { + "id": 30000013, + "regionId": 10000001, + "name": "Onsooh", + "type": "system" + }, + { + "id": 30000014, + "regionId": 10000001, + "name": "Shamahi", + "type": "system" + }, + { + "id": 30000015, + "regionId": 10000001, + "name": "Sendaya", + "type": "system" + }, + { + "id": 30000016, + "regionId": 10000001, + "name": "Nazhgete", + "type": "system" + }, + { + "id": 30000017, + "regionId": 10000001, + "name": "Futzchag", + "type": "system" + }, + { + "id": 30000018, + "regionId": 10000001, + "name": "Kazna", + "type": "system" + }, + { + "id": 30000019, + "regionId": 10000001, + "name": "Podion", + "type": "system" + }, + { + "id": 30000020, + "regionId": 10000001, + "name": "Lilmad", + "type": "system" + }, + { + "id": 30000021, + "regionId": 10000070, + "name": "Kuharah", + "type": "system" + }, + { + "id": 30000022, + "regionId": 10000001, + "name": "Jayneleb", + "type": "system" + }, + { + "id": 30000023, + "regionId": 10000001, + "name": "Fovihi", + "type": "system" + }, + { + "id": 30000024, + "regionId": 10000001, + "name": "Kiereend", + "type": "system" + }, + { + "id": 30000025, + "regionId": 10000001, + "name": "Rashy", + "type": "system" + }, + { + "id": 30000026, + "regionId": 10000001, + "name": "Ordize", + "type": "system" + }, + { + "id": 30000027, + "regionId": 10000001, + "name": "Psasa", + "type": "system" + }, + { + "id": 30000028, + "regionId": 10000001, + "name": "Eshtah", + "type": "system" + }, + { + "id": 30000029, + "regionId": 10000001, + "name": "Lachailes", + "type": "system" + }, + { + "id": 30000030, + "regionId": 10000001, + "name": "Kasrasi", + "type": "system" + }, + { + "id": 30000031, + "regionId": 10000001, + "name": "Mohas", + "type": "system" + }, + { + "id": 30000032, + "regionId": 10000001, + "name": "Hasiari", + "type": "system" + }, + { + "id": 30000033, + "regionId": 10000001, + "name": "Radima", + "type": "system" + }, + { + "id": 30000034, + "regionId": 10000001, + "name": "Alkez", + "type": "system" + }, + { + "id": 30000035, + "regionId": 10000001, + "name": "Nimambal", + "type": "system" + }, + { + "id": 30000036, + "regionId": 10000001, + "name": "Yishinoon", + "type": "system" + }, + { + "id": 30000037, + "regionId": 10000001, + "name": "Uplingur", + "type": "system" + }, + { + "id": 30000038, + "regionId": 10000001, + "name": "Dooz", + "type": "system" + }, + { + "id": 30000039, + "regionId": 10000001, + "name": "Bayuka", + "type": "system" + }, + { + "id": 30000040, + "regionId": 10000001, + "name": "Uzistoon", + "type": "system" + }, + { + "id": 30000041, + "regionId": 10000001, + "name": "Bairshir", + "type": "system" + }, + { + "id": 30000042, + "regionId": 10000001, + "name": "Moh", + "type": "system" + }, + { + "id": 30000043, + "regionId": 10000001, + "name": "Sari", + "type": "system" + }, + { + "id": 30000044, + "regionId": 10000001, + "name": "Faspera", + "type": "system" + }, + { + "id": 30000045, + "regionId": 10000001, + "name": "Jaymass", + "type": "system" + }, + { + "id": 30000046, + "regionId": 10000001, + "name": "Mifrata", + "type": "system" + }, + { + "id": 30000047, + "regionId": 10000001, + "name": "Majamar", + "type": "system" + }, + { + "id": 30000048, + "regionId": 10000001, + "name": "Ihal", + "type": "system" + }, + { + "id": 30000049, + "regionId": 10000001, + "name": "Camal", + "type": "system" + }, + { + "id": 30000050, + "regionId": 10000001, + "name": "Fera", + "type": "system" + }, + { + "id": 30000051, + "regionId": 10000001, + "name": "Juddi", + "type": "system" + }, + { + "id": 30000052, + "regionId": 10000001, + "name": "Maspah", + "type": "system" + }, + { + "id": 30000053, + "regionId": 10000001, + "name": "Ibaria", + "type": "system" + }, + { + "id": 30000054, + "regionId": 10000001, + "name": "Shala", + "type": "system" + }, + { + "id": 30000055, + "regionId": 10000001, + "name": "Zemalu", + "type": "system" + }, + { + "id": 30000056, + "regionId": 10000001, + "name": "Khankenirdia", + "type": "system" + }, + { + "id": 30000057, + "regionId": 10000001, + "name": "Nikh", + "type": "system" + }, + { + "id": 30000058, + "regionId": 10000001, + "name": "Amphar", + "type": "system" + }, + { + "id": 30000059, + "regionId": 10000001, + "name": "Salashayama", + "type": "system" + }, + { + "id": 30000060, + "regionId": 10000001, + "name": "Janus", + "type": "system" + }, + { + "id": 30000061, + "regionId": 10000001, + "name": "Agha", + "type": "system" + }, + { + "id": 30000062, + "regionId": 10000001, + "name": "Iosantin", + "type": "system" + }, + { + "id": 30000063, + "regionId": 10000001, + "name": "Orva", + "type": "system" + }, + { + "id": 30000064, + "regionId": 10000001, + "name": "Zet", + "type": "system" + }, + { + "id": 30000065, + "regionId": 10000001, + "name": "Akhrad", + "type": "system" + }, + { + "id": 30000066, + "regionId": 10000001, + "name": "Pirohdim", + "type": "system" + }, + { + "id": 30000067, + "regionId": 10000001, + "name": "Sharir", + "type": "system" + }, + { + "id": 30000068, + "regionId": 10000001, + "name": "Usroh", + "type": "system" + }, + { + "id": 30000069, + "regionId": 10000001, + "name": "Thiarer", + "type": "system" + }, + { + "id": 30000070, + "regionId": 10000001, + "name": "Gomati", + "type": "system" + }, + { + "id": 30000071, + "regionId": 10000001, + "name": "Jangar", + "type": "system" + }, + { + "id": 30000072, + "regionId": 10000001, + "name": "Nakah", + "type": "system" + }, + { + "id": 30000073, + "regionId": 10000001, + "name": "Irshah", + "type": "system" + }, + { + "id": 30000074, + "regionId": 10000001, + "name": "Hasateem", + "type": "system" + }, + { + "id": 30000075, + "regionId": 10000001, + "name": "Assah", + "type": "system" + }, + { + "id": 30000076, + "regionId": 10000001, + "name": "Tidacha", + "type": "system" + }, + { + "id": 30000077, + "regionId": 10000001, + "name": "Odlib", + "type": "system" + }, + { + "id": 30000078, + "regionId": 10000001, + "name": "Jofan", + "type": "system" + }, + { + "id": 30000079, + "regionId": 10000001, + "name": "Milu", + "type": "system" + }, + { + "id": 30000080, + "regionId": 10000001, + "name": "Yadi", + "type": "system" + }, + { + "id": 30000081, + "regionId": 10000001, + "name": "Buftiar", + "type": "system" + }, + { + "id": 30000082, + "regionId": 10000001, + "name": "Jarizza", + "type": "system" + }, + { + "id": 30000083, + "regionId": 10000001, + "name": "Ejahi", + "type": "system" + }, + { + "id": 30000084, + "regionId": 10000001, + "name": "Asghatil", + "type": "system" + }, + { + "id": 30000085, + "regionId": 10000001, + "name": "Bar", + "type": "system" + }, + { + "id": 30000086, + "regionId": 10000001, + "name": "Sucha", + "type": "system" + }, + { + "id": 30000087, + "regionId": 10000001, + "name": "Gelhan", + "type": "system" + }, + { + "id": 30000088, + "regionId": 10000001, + "name": "Akeva", + "type": "system" + }, + { + "id": 30000089, + "regionId": 10000001, + "name": "Sosa", + "type": "system" + }, + { + "id": 30000090, + "regionId": 10000001, + "name": "Ilahed", + "type": "system" + }, + { + "id": 30000091, + "regionId": 10000001, + "name": "Eshwil", + "type": "system" + }, + { + "id": 30000092, + "regionId": 10000001, + "name": "Aranir", + "type": "system" + }, + { + "id": 30000093, + "regionId": 10000001, + "name": "Ishkad", + "type": "system" + }, + { + "id": 30000094, + "regionId": 10000001, + "name": "Hahyil", + "type": "system" + }, + { + "id": 30000095, + "regionId": 10000001, + "name": "Asilem", + "type": "system" + }, + { + "id": 30000096, + "regionId": 10000001, + "name": "Mahnagh", + "type": "system" + }, + { + "id": 30000097, + "regionId": 10000001, + "name": "Shach", + "type": "system" + }, + { + "id": 30000098, + "regionId": 10000001, + "name": "Kehrara", + "type": "system" + }, + { + "id": 30000099, + "regionId": 10000001, + "name": "Arena", + "type": "system" + }, + { + "id": 30000100, + "regionId": 10000001, + "name": "Timeor", + "type": "system" + }, + { + "id": 30000101, + "regionId": 10000001, + "name": "Uhtafal", + "type": "system" + }, + { + "id": 30000102, + "regionId": 10000001, + "name": "Dysa", + "type": "system" + }, + { + "id": 30000103, + "regionId": 10000001, + "name": "Serad", + "type": "system" + }, + { + "id": 30000104, + "regionId": 10000001, + "name": "Mahti", + "type": "system" + }, + { + "id": 30000105, + "regionId": 10000001, + "name": "Abha", + "type": "system" + }, + { + "id": 30000106, + "regionId": 10000001, + "name": "Shedoo", + "type": "system" + }, + { + "id": 30000107, + "regionId": 10000001, + "name": "Gamis", + "type": "system" + }, + { + "id": 30000108, + "regionId": 10000001, + "name": "Nieril", + "type": "system" + }, + { + "id": 30000109, + "regionId": 10000001, + "name": "Berta", + "type": "system" + }, + { + "id": 30000110, + "regionId": 10000001, + "name": "Bekirdod", + "type": "system" + }, + { + "id": 30000111, + "regionId": 10000001, + "name": "Hothomouh", + "type": "system" + }, + { + "id": 30000112, + "regionId": 10000001, + "name": "Arnola", + "type": "system" + }, + { + "id": 30000113, + "regionId": 10000001, + "name": "Astabih", + "type": "system" + }, + { + "id": 30000114, + "regionId": 10000001, + "name": "Ubtes", + "type": "system" + }, + { + "id": 30000115, + "regionId": 10000001, + "name": "Bimener", + "type": "system" + }, + { + "id": 30000116, + "regionId": 10000001, + "name": "Kenobanala", + "type": "system" + }, + { + "id": 30000117, + "regionId": 10000001, + "name": "Khabi", + "type": "system" + }, + { + "id": 30000118, + "regionId": 10000001, + "name": "Uanzin", + "type": "system" + }, + { + "id": 30000119, + "regionId": 10000002, + "name": "Itamo", + "type": "system" + }, + { + "id": 30000120, + "regionId": 10000002, + "name": "Mitsolen", + "type": "system" + }, + { + "id": 30000121, + "regionId": 10000002, + "name": "Jatate", + "type": "system" + }, + { + "id": 30000122, + "regionId": 10000002, + "name": "Mahtista", + "type": "system" + }, + { + "id": 30000123, + "regionId": 10000002, + "name": "Vaankalen", + "type": "system" + }, + { + "id": 30000124, + "regionId": 10000002, + "name": "Kylmabe", + "type": "system" + }, + { + "id": 30000125, + "regionId": 10000002, + "name": "Ahtulaima", + "type": "system" + }, + { + "id": 30000126, + "regionId": 10000002, + "name": "Geras", + "type": "system" + }, + { + "id": 30000127, + "regionId": 10000002, + "name": "Sirseshin", + "type": "system" + }, + { + "id": 30000128, + "regionId": 10000002, + "name": "Tuuriainas", + "type": "system" + }, + { + "id": 30000129, + "regionId": 10000002, + "name": "Unpas", + "type": "system" + }, + { + "id": 30000130, + "regionId": 10000002, + "name": "Shihuken", + "type": "system" + }, + { + "id": 30000131, + "regionId": 10000002, + "name": "Nomaa", + "type": "system" + }, + { + "id": 30000132, + "regionId": 10000002, + "name": "Ansila", + "type": "system" + }, + { + "id": 30000133, + "regionId": 10000002, + "name": "Hirtamon", + "type": "system" + }, + { + "id": 30000134, + "regionId": 10000002, + "name": "Hykkota", + "type": "system" + }, + { + "id": 30000135, + "regionId": 10000002, + "name": "Outuni", + "type": "system" + }, + { + "id": 30000136, + "regionId": 10000002, + "name": "Ohmahailen", + "type": "system" + }, + { + "id": 30000137, + "regionId": 10000002, + "name": "Eskunen", + "type": "system" + }, + { + "id": 30000138, + "regionId": 10000002, + "name": "Ikuchi", + "type": "system" + }, + { + "id": 30000139, + "regionId": 10000002, + "name": "Urlen", + "type": "system" + }, + { + "id": 30000140, + "regionId": 10000002, + "name": "Maurasi", + "type": "system" + }, + { + "id": 30000141, + "regionId": 10000002, + "name": "Kisogo", + "type": "system" + }, + { + "id": 30000142, + "regionId": 10000002, + "name": "Jita", + "type": "system" + }, + { + "id": 30000143, + "regionId": 10000002, + "name": "Niyabainen", + "type": "system" + }, + { + "id": 30000144, + "regionId": 10000002, + "name": "Perimeter", + "type": "system" + }, + { + "id": 30000145, + "regionId": 10000002, + "name": "NewCaldari", + "type": "system" + }, + { + "id": 30000146, + "regionId": 10000002, + "name": "Saisio", + "type": "system" + }, + { + "id": 30000147, + "regionId": 10000002, + "name": "Abagawa", + "type": "system" + }, + { + "id": 30000148, + "regionId": 10000002, + "name": "Jakanerva", + "type": "system" + }, + { + "id": 30000149, + "regionId": 10000002, + "name": "Gekutami", + "type": "system" + }, + { + "id": 30000150, + "regionId": 10000002, + "name": "Hurtoken", + "type": "system" + }, + { + "id": 30000151, + "regionId": 10000002, + "name": "Uoyonen", + "type": "system" + }, + { + "id": 30000152, + "regionId": 10000002, + "name": "Hampinen", + "type": "system" + }, + { + "id": 30000153, + "regionId": 10000002, + "name": "Poinen", + "type": "system" + }, + { + "id": 30000154, + "regionId": 10000002, + "name": "Liekuri", + "type": "system" + }, + { + "id": 30000155, + "regionId": 10000002, + "name": "Obanen", + "type": "system" + }, + { + "id": 30000156, + "regionId": 10000002, + "name": "Josameto", + "type": "system" + }, + { + "id": 30000157, + "regionId": 10000070, + "name": "Otela", + "type": "system" + }, + { + "id": 30000158, + "regionId": 10000002, + "name": "Olo", + "type": "system" + }, + { + "id": 30000159, + "regionId": 10000002, + "name": "Ikami", + "type": "system" + }, + { + "id": 30000160, + "regionId": 10000002, + "name": "Reisen", + "type": "system" + }, + { + "id": 30000161, + "regionId": 10000002, + "name": "Purjola", + "type": "system" + }, + { + "id": 30000162, + "regionId": 10000002, + "name": "Maila", + "type": "system" + }, + { + "id": 30000163, + "regionId": 10000002, + "name": "Akora", + "type": "system" + }, + { + "id": 30000164, + "regionId": 10000002, + "name": "Messoya", + "type": "system" + }, + { + "id": 30000165, + "regionId": 10000002, + "name": "Ishisomo", + "type": "system" + }, + { + "id": 30000166, + "regionId": 10000002, + "name": "Airmia", + "type": "system" + }, + { + "id": 30000167, + "regionId": 10000002, + "name": "Sakkikainen", + "type": "system" + }, + { + "id": 30000168, + "regionId": 10000002, + "name": "Friggi", + "type": "system" + }, + { + "id": 30000169, + "regionId": 10000002, + "name": "Ihakana", + "type": "system" + }, + { + "id": 30000170, + "regionId": 10000002, + "name": "Vahunomi", + "type": "system" + }, + { + "id": 30000171, + "regionId": 10000002, + "name": "Otitoh", + "type": "system" + }, + { + "id": 30000172, + "regionId": 10000002, + "name": "Otomainen", + "type": "system" + }, + { + "id": 30000173, + "regionId": 10000002, + "name": "Vattuolen", + "type": "system" + }, + { + "id": 30000174, + "regionId": 10000002, + "name": "Onuse", + "type": "system" + }, + { + "id": 30000175, + "regionId": 10000002, + "name": "Soshin", + "type": "system" + }, + { + "id": 30000176, + "regionId": 10000002, + "name": "Keikaken", + "type": "system" + }, + { + "id": 30000177, + "regionId": 10000002, + "name": "Ukkalen", + "type": "system" + }, + { + "id": 30000178, + "regionId": 10000002, + "name": "Akkilen", + "type": "system" + }, + { + "id": 30000179, + "regionId": 10000002, + "name": "Silen", + "type": "system" + }, + { + "id": 30000180, + "regionId": 10000002, + "name": "Osmon", + "type": "system" + }, + { + "id": 30000181, + "regionId": 10000002, + "name": "Korsiki", + "type": "system" + }, + { + "id": 30000182, + "regionId": 10000002, + "name": "Inaya", + "type": "system" + }, + { + "id": 30000183, + "regionId": 10000002, + "name": "Nuken", + "type": "system" + }, + { + "id": 30000184, + "regionId": 10000002, + "name": "Uminas", + "type": "system" + }, + { + "id": 30000185, + "regionId": 10000002, + "name": "Airaken", + "type": "system" + }, + { + "id": 30000186, + "regionId": 10000002, + "name": "Oijanen", + "type": "system" + }, + { + "id": 30000187, + "regionId": 10000002, + "name": "Wuos", + "type": "system" + }, + { + "id": 30000188, + "regionId": 10000002, + "name": "Hentogaira", + "type": "system" + }, + { + "id": 30000189, + "regionId": 10000002, + "name": "Kiainti", + "type": "system" + }, + { + "id": 30000190, + "regionId": 10000002, + "name": "Vasala", + "type": "system" + }, + { + "id": 30000191, + "regionId": 10000002, + "name": "Walvalin", + "type": "system" + }, + { + "id": 30000192, + "regionId": 10000070, + "name": "Otanuomi", + "type": "system" + }, + { + "id": 30000193, + "regionId": 10000002, + "name": "Vouskiaho", + "type": "system" + }, + { + "id": 30000194, + "regionId": 10000002, + "name": "Otsela", + "type": "system" + }, + { + "id": 30000195, + "regionId": 10000002, + "name": "Tasti", + "type": "system" + }, + { + "id": 30000196, + "regionId": 10000002, + "name": "Otosela", + "type": "system" + }, + { + "id": 30000197, + "regionId": 10000002, + "name": "Uemon", + "type": "system" + }, + { + "id": 30000198, + "regionId": 10000002, + "name": "Paala", + "type": "system" + }, + { + "id": 30000199, + "regionId": 10000002, + "name": "Fuskunen", + "type": "system" + }, + { + "id": 30000200, + "regionId": 10000002, + "name": "Akkio", + "type": "system" + }, + { + "id": 30000201, + "regionId": 10000002, + "name": "Uchoshi", + "type": "system" + }, + { + "id": 30000202, + "regionId": 10000002, + "name": "Mastakomon", + "type": "system" + }, + { + "id": 30000203, + "regionId": 10000002, + "name": "Eruka", + "type": "system" + }, + { + "id": 30000204, + "regionId": 10000002, + "name": "Ohkunen", + "type": "system" + }, + { + "id": 30000205, + "regionId": 10000002, + "name": "Obe", + "type": "system" + }, + { + "id": 30000206, + "regionId": 10000070, + "name": "Wirashoda", + "type": "system" + }, + { + "id": 30000207, + "regionId": 10000002, + "name": "Osaa", + "type": "system" + }, + { + "id": 30000208, + "regionId": 10000003, + "name": "LZ-6SU", + "type": "system" + }, + { + "id": 30000209, + "regionId": 10000003, + "name": "MC6O-F", + "type": "system" + }, + { + "id": 30000210, + "regionId": 10000003, + "name": "U54-1L", + "type": "system" + }, + { + "id": 30000211, + "regionId": 10000003, + "name": "B-588R", + "type": "system" + }, + { + "id": 30000212, + "regionId": 10000003, + "name": "NCGR-Q", + "type": "system" + }, + { + "id": 30000213, + "regionId": 10000003, + "name": "G-LOIT", + "type": "system" + }, + { + "id": 30000214, + "regionId": 10000003, + "name": "HE-V4V", + "type": "system" + }, + { + "id": 30000215, + "regionId": 10000003, + "name": "N-HSK0", + "type": "system" + }, + { + "id": 30000216, + "regionId": 10000003, + "name": "05R-7A", + "type": "system" + }, + { + "id": 30000217, + "regionId": 10000003, + "name": "7-UH4Z", + "type": "system" + }, + { + "id": 30000218, + "regionId": 10000003, + "name": "5ZO-NZ", + "type": "system" + }, + { + "id": 30000219, + "regionId": 10000003, + "name": "FS-RFL", + "type": "system" + }, + { + "id": 30000220, + "regionId": 10000003, + "name": "Y0-BVN", + "type": "system" + }, + { + "id": 30000221, + "regionId": 10000003, + "name": "X97D-W", + "type": "system" + }, + { + "id": 30000222, + "regionId": 10000003, + "name": "0-R5TS", + "type": "system" + }, + { + "id": 30000223, + "regionId": 10000003, + "name": "H-UCD1", + "type": "system" + }, + { + "id": 30000224, + "regionId": 10000003, + "name": "7-K5EL", + "type": "system" + }, + { + "id": 30000225, + "regionId": 10000003, + "name": "H-5GUI", + "type": "system" + }, + { + "id": 30000226, + "regionId": 10000003, + "name": "FH-TTC", + "type": "system" + }, + { + "id": 30000227, + "regionId": 10000003, + "name": "FMBR-8", + "type": "system" + }, + { + "id": 30000228, + "regionId": 10000003, + "name": "3HX-DL", + "type": "system" + }, + { + "id": 30000229, + "regionId": 10000003, + "name": "UH-9ZG", + "type": "system" + }, + { + "id": 30000230, + "regionId": 10000003, + "name": "NFM-0V", + "type": "system" + }, + { + "id": 30000231, + "regionId": 10000003, + "name": "YXIB-I", + "type": "system" + }, + { + "id": 30000232, + "regionId": 10000003, + "name": "MY-T2P", + "type": "system" + }, + { + "id": 30000233, + "regionId": 10000003, + "name": "FA-DMO", + "type": "system" + }, + { + "id": 30000234, + "regionId": 10000003, + "name": "GEKJ-9", + "type": "system" + }, + { + "id": 30000235, + "regionId": 10000003, + "name": "Q-R3GP", + "type": "system" + }, + { + "id": 30000236, + "regionId": 10000003, + "name": "N-5QPW", + "type": "system" + }, + { + "id": 30000237, + "regionId": 10000003, + "name": "XV-8JQ", + "type": "system" + }, + { + "id": 30000238, + "regionId": 10000003, + "name": "WBR5-R", + "type": "system" + }, + { + "id": 30000239, + "regionId": 10000003, + "name": "4GYV-Q", + "type": "system" + }, + { + "id": 30000240, + "regionId": 10000003, + "name": "4-HWWF", + "type": "system" + }, + { + "id": 30000241, + "regionId": 10000003, + "name": "YMJG-4", + "type": "system" + }, + { + "id": 30000242, + "regionId": 10000003, + "name": "8TPX-N", + "type": "system" + }, + { + "id": 30000243, + "regionId": 10000003, + "name": "PM-DWE", + "type": "system" + }, + { + "id": 30000244, + "regionId": 10000003, + "name": "K8X-6B", + "type": "system" + }, + { + "id": 30000245, + "regionId": 10000003, + "name": "X445-5", + "type": "system" + }, + { + "id": 30000246, + "regionId": 10000003, + "name": "KRUN-N", + "type": "system" + }, + { + "id": 30000247, + "regionId": 10000003, + "name": "9OO-LH", + "type": "system" + }, + { + "id": 30000248, + "regionId": 10000003, + "name": "V-OJEN", + "type": "system" + }, + { + "id": 30000249, + "regionId": 10000003, + "name": "EIDI-N", + "type": "system" + }, + { + "id": 30000250, + "regionId": 10000003, + "name": "P3EN-E", + "type": "system" + }, + { + "id": 30000251, + "regionId": 10000003, + "name": "49-0LI", + "type": "system" + }, + { + "id": 30000252, + "regionId": 10000003, + "name": "IPAY-2", + "type": "system" + }, + { + "id": 30000253, + "regionId": 10000003, + "name": "DAYP-G", + "type": "system" + }, + { + "id": 30000254, + "regionId": 10000003, + "name": "IFJ-EL", + "type": "system" + }, + { + "id": 30000255, + "regionId": 10000003, + "name": "47L-J4", + "type": "system" + }, + { + "id": 30000256, + "regionId": 10000003, + "name": "Q-L07F", + "type": "system" + }, + { + "id": 30000257, + "regionId": 10000003, + "name": "E-D0VZ", + "type": "system" + }, + { + "id": 30000258, + "regionId": 10000003, + "name": "6WW-28", + "type": "system" + }, + { + "id": 30000259, + "regionId": 10000003, + "name": "A8A-JN", + "type": "system" + }, + { + "id": 30000260, + "regionId": 10000003, + "name": "S-NJBB", + "type": "system" + }, + { + "id": 30000261, + "regionId": 10000003, + "name": "T-GCGL", + "type": "system" + }, + { + "id": 30000262, + "regionId": 10000003, + "name": "0MV-4W", + "type": "system" + }, + { + "id": 30000263, + "regionId": 10000003, + "name": "TVN-FM", + "type": "system" + }, + { + "id": 30000264, + "regionId": 10000003, + "name": "V-NL3K", + "type": "system" + }, + { + "id": 30000265, + "regionId": 10000003, + "name": "AZBR-2", + "type": "system" + }, + { + "id": 30000266, + "regionId": 10000003, + "name": "Z-8Q65", + "type": "system" + }, + { + "id": 30000267, + "regionId": 10000003, + "name": "0J3L-V", + "type": "system" + }, + { + "id": 30000268, + "regionId": 10000003, + "name": "H-NOU5", + "type": "system" + }, + { + "id": 30000269, + "regionId": 10000003, + "name": "KX-2UI", + "type": "system" + }, + { + "id": 30000270, + "regionId": 10000003, + "name": "MO-FIF", + "type": "system" + }, + { + "id": 30000271, + "regionId": 10000003, + "name": "97-M96", + "type": "system" + }, + { + "id": 30000272, + "regionId": 10000003, + "name": "MA-XAP", + "type": "system" + }, + { + "id": 30000273, + "regionId": 10000003, + "name": "C-J7CR", + "type": "system" + }, + { + "id": 30000274, + "regionId": 10000003, + "name": "Q-EHMJ", + "type": "system" + }, + { + "id": 30000275, + "regionId": 10000003, + "name": "XSQ-TF", + "type": "system" + }, + { + "id": 30000276, + "regionId": 10000003, + "name": "H-1EOH", + "type": "system" + }, + { + "id": 30000277, + "regionId": 10000003, + "name": "IR-DYY", + "type": "system" + }, + { + "id": 30000278, + "regionId": 10000003, + "name": "C-DHON", + "type": "system" + }, + { + "id": 30000279, + "regionId": 10000003, + "name": "F-D49D", + "type": "system" + }, + { + "id": 30000280, + "regionId": 10000003, + "name": "MQ-O27", + "type": "system" + }, + { + "id": 30000281, + "regionId": 10000003, + "name": "H-EY0P", + "type": "system" + }, + { + "id": 30000282, + "regionId": 10000003, + "name": "UNAG-6", + "type": "system" + }, + { + "id": 30000283, + "regionId": 10000003, + "name": "E-SCTX", + "type": "system" + }, + { + "id": 30000284, + "regionId": 10000003, + "name": "S6QX-N", + "type": "system" + }, + { + "id": 30000285, + "regionId": 10000003, + "name": "IT-YAU", + "type": "system" + }, + { + "id": 30000286, + "regionId": 10000003, + "name": "1VK-6B", + "type": "system" + }, + { + "id": 30000287, + "regionId": 10000003, + "name": "7-PO3P", + "type": "system" + }, + { + "id": 30000288, + "regionId": 10000003, + "name": "1W-0KS", + "type": "system" + }, + { + "id": 30000289, + "regionId": 10000003, + "name": "669-IX", + "type": "system" + }, + { + "id": 30000290, + "regionId": 10000003, + "name": "0R-F2F", + "type": "system" + }, + { + "id": 30000291, + "regionId": 10000003, + "name": "R-P7KL", + "type": "system" + }, + { + "id": 30000292, + "regionId": 10000003, + "name": "2DWM-2", + "type": "system" + }, + { + "id": 30000293, + "regionId": 10000003, + "name": "XF-PWO", + "type": "system" + }, + { + "id": 30000294, + "regionId": 10000003, + "name": "1N-FJ8", + "type": "system" + }, + { + "id": 30000295, + "regionId": 10000003, + "name": "VI2K-J", + "type": "system" + }, + { + "id": 30000296, + "regionId": 10000003, + "name": "ZLZ-1Z", + "type": "system" + }, + { + "id": 30000297, + "regionId": 10000003, + "name": "6Y-WRK", + "type": "system" + }, + { + "id": 30000298, + "regionId": 10000003, + "name": "RVCZ-C", + "type": "system" + }, + { + "id": 30000299, + "regionId": 10000003, + "name": "5T-KM3", + "type": "system" + }, + { + "id": 30000300, + "regionId": 10000003, + "name": "LS9B-9", + "type": "system" + }, + { + "id": 30000301, + "regionId": 10000003, + "name": "1-GBBP", + "type": "system" + }, + { + "id": 30000302, + "regionId": 10000003, + "name": "C-FP70", + "type": "system" + }, + { + "id": 30000303, + "regionId": 10000003, + "name": "T-ZWA1", + "type": "system" + }, + { + "id": 30000304, + "regionId": 10000003, + "name": "ZA0L-U", + "type": "system" + }, + { + "id": 30000305, + "regionId": 10000003, + "name": "G96R-F", + "type": "system" + }, + { + "id": 30000306, + "regionId": 10000003, + "name": "Y-ZXIO", + "type": "system" + }, + { + "id": 30000307, + "regionId": 10000003, + "name": "B-E3KQ", + "type": "system" + }, + { + "id": 30000308, + "regionId": 10000003, + "name": "Y5J-EU", + "type": "system" + }, + { + "id": 30000309, + "regionId": 10000003, + "name": "O-LR1H", + "type": "system" + }, + { + "id": 30000310, + "regionId": 10000003, + "name": "G5ED-Y", + "type": "system" + }, + { + "id": 30000311, + "regionId": 10000003, + "name": "BR-6XP", + "type": "system" + }, + { + "id": 30000312, + "regionId": 10000003, + "name": "8-TFDX", + "type": "system" + }, + { + "id": 30000313, + "regionId": 10000003, + "name": "UL-4ZW", + "type": "system" + }, + { + "id": 30000314, + "regionId": 10000003, + "name": "A-QRQT", + "type": "system" + }, + { + "id": 30000315, + "regionId": 10000003, + "name": "WMBZ-U", + "type": "system" + }, + { + "id": 30000316, + "regionId": 10000003, + "name": "PX5-LR", + "type": "system" + }, + { + "id": 30000317, + "regionId": 10000003, + "name": "A3-RQ3", + "type": "system" + }, + { + "id": 30000318, + "regionId": 10000003, + "name": "9-GBPD", + "type": "system" + }, + { + "id": 30000319, + "regionId": 10000003, + "name": "LS-JEP", + "type": "system" + }, + { + "id": 30000320, + "regionId": 10000003, + "name": "R-RSZZ", + "type": "system" + }, + { + "id": 30000321, + "regionId": 10000003, + "name": "MGAM-4", + "type": "system" + }, + { + "id": 30000322, + "regionId": 10000003, + "name": "VORM-W", + "type": "system" + }, + { + "id": 30000323, + "regionId": 10000003, + "name": "7G-H7D", + "type": "system" + }, + { + "id": 30000324, + "regionId": 10000003, + "name": "Q3-BAY", + "type": "system" + }, + { + "id": 30000325, + "regionId": 10000003, + "name": "JZV-F4", + "type": "system" + }, + { + "id": 30000326, + "regionId": 10000004, + "name": "WF-1LM", + "type": "system" + }, + { + "id": 30000327, + "regionId": 10000004, + "name": "D95-FQ", + "type": "system" + }, + { + "id": 30000328, + "regionId": 10000004, + "name": "ZSPJ-K", + "type": "system" + }, + { + "id": 30000329, + "regionId": 10000004, + "name": "U1F-86", + "type": "system" + }, + { + "id": 30000330, + "regionId": 10000004, + "name": "T-P7A6", + "type": "system" + }, + { + "id": 30000331, + "regionId": 10000004, + "name": "Y-T3JJ", + "type": "system" + }, + { + "id": 30000332, + "regionId": 10000004, + "name": "F3R-IA", + "type": "system" + }, + { + "id": 30000333, + "regionId": 10000004, + "name": "74-YTJ", + "type": "system" + }, + { + "id": 30000334, + "regionId": 10000004, + "name": "8-RS3U", + "type": "system" + }, + { + "id": 30000335, + "regionId": 10000004, + "name": "OVFN-N", + "type": "system" + }, + { + "id": 30000336, + "regionId": 10000004, + "name": "1Q-BBM", + "type": "system" + }, + { + "id": 30000337, + "regionId": 10000004, + "name": "WXNC-N", + "type": "system" + }, + { + "id": 30000338, + "regionId": 10000004, + "name": "G-EA07", + "type": "system" + }, + { + "id": 30000339, + "regionId": 10000004, + "name": "X-L6BO", + "type": "system" + }, + { + "id": 30000340, + "regionId": 10000004, + "name": "D-PHUA", + "type": "system" + }, + { + "id": 30000341, + "regionId": 10000004, + "name": "3-HXHQ", + "type": "system" + }, + { + "id": 30000342, + "regionId": 10000004, + "name": "18A-NB", + "type": "system" + }, + { + "id": 30000343, + "regionId": 10000004, + "name": "3-J5OQ", + "type": "system" + }, + { + "id": 30000344, + "regionId": 10000004, + "name": "GYF-GD", + "type": "system" + }, + { + "id": 30000345, + "regionId": 10000004, + "name": "W-6TS9", + "type": "system" + }, + { + "id": 30000346, + "regionId": 10000004, + "name": "VIG-VR", + "type": "system" + }, + { + "id": 30000347, + "regionId": 10000004, + "name": "KX-P5C", + "type": "system" + }, + { + "id": 30000348, + "regionId": 10000004, + "name": "N-FJBK", + "type": "system" + }, + { + "id": 30000349, + "regionId": 10000004, + "name": "2-4ZT5", + "type": "system" + }, + { + "id": 30000350, + "regionId": 10000004, + "name": "NVN-6F", + "type": "system" + }, + { + "id": 30000351, + "regionId": 10000004, + "name": "09-8TH", + "type": "system" + }, + { + "id": 30000352, + "regionId": 10000004, + "name": "TI0-AX", + "type": "system" + }, + { + "id": 30000353, + "regionId": 10000004, + "name": "7O-POM", + "type": "system" + }, + { + "id": 30000354, + "regionId": 10000004, + "name": "L6Q-SX", + "type": "system" + }, + { + "id": 30000355, + "regionId": 10000004, + "name": "BFJ-TB", + "type": "system" + }, + { + "id": 30000356, + "regionId": 10000004, + "name": "ZZ7-L6", + "type": "system" + }, + { + "id": 30000357, + "regionId": 10000004, + "name": "L-CHVW", + "type": "system" + }, + { + "id": 30000358, + "regionId": 10000004, + "name": "X0LN-U", + "type": "system" + }, + { + "id": 30000359, + "regionId": 10000004, + "name": "RQAE-M", + "type": "system" + }, + { + "id": 30000360, + "regionId": 10000004, + "name": "7CO-SA", + "type": "system" + }, + { + "id": 30000361, + "regionId": 10000004, + "name": "4G-E5A", + "type": "system" + }, + { + "id": 30000362, + "regionId": 10000004, + "name": "A-VWK9", + "type": "system" + }, + { + "id": 30000363, + "regionId": 10000004, + "name": "JQHP-4", + "type": "system" + }, + { + "id": 30000364, + "regionId": 10000004, + "name": "6Q5K-5", + "type": "system" + }, + { + "id": 30000365, + "regionId": 10000004, + "name": "P-MVFP", + "type": "system" + }, + { + "id": 30000366, + "regionId": 10000004, + "name": "J-Z1UW", + "type": "system" + }, + { + "id": 30000367, + "regionId": 10000004, + "name": "W477-P", + "type": "system" + }, + { + "id": 30000368, + "regionId": 10000004, + "name": "NQ1-BL", + "type": "system" + }, + { + "id": 30000369, + "regionId": 10000004, + "name": "K7A-G8", + "type": "system" + }, + { + "id": 30000370, + "regionId": 10000004, + "name": "HP-PMX", + "type": "system" + }, + { + "id": 30000371, + "regionId": 10000004, + "name": "6BN-K9", + "type": "system" + }, + { + "id": 30000372, + "regionId": 10000004, + "name": "WLE-PY", + "type": "system" + }, + { + "id": 30000373, + "regionId": 10000004, + "name": "EH-HXW", + "type": "system" + }, + { + "id": 30000374, + "regionId": 10000004, + "name": "OS-RR3", + "type": "system" + }, + { + "id": 30000375, + "regionId": 10000004, + "name": "V4-GZL", + "type": "system" + }, + { + "id": 30000376, + "regionId": 10000004, + "name": "4C-Z91", + "type": "system" + }, + { + "id": 30000377, + "regionId": 10000004, + "name": "RU-97T", + "type": "system" + }, + { + "id": 30000378, + "regionId": 10000004, + "name": "1S-1V7", + "type": "system" + }, + { + "id": 30000379, + "regionId": 10000004, + "name": "PE1-R1", + "type": "system" + }, + { + "id": 30000380, + "regionId": 10000004, + "name": "Polaris", + "type": "system" + }, + { + "id": 30000381, + "regionId": 10000004, + "name": "JB-007", + "type": "system" + }, + { + "id": 30000382, + "regionId": 10000004, + "name": "USJ2-M", + "type": "system" + }, + { + "id": 30000383, + "regionId": 10000004, + "name": "7M-RAL", + "type": "system" + }, + { + "id": 30000384, + "regionId": 10000004, + "name": "LPBU-U", + "type": "system" + }, + { + "id": 30000385, + "regionId": 10000004, + "name": "RF-342", + "type": "system" + }, + { + "id": 30000386, + "regionId": 10000004, + "name": "J2V-XY", + "type": "system" + }, + { + "id": 30000387, + "regionId": 10000004, + "name": "Z-JBTR", + "type": "system" + }, + { + "id": 30000388, + "regionId": 10000004, + "name": "S-QNXH", + "type": "system" + }, + { + "id": 30000389, + "regionId": 10000004, + "name": "S94-X8", + "type": "system" + }, + { + "id": 30000390, + "regionId": 10000004, + "name": "J-YQEC", + "type": "system" + }, + { + "id": 30000391, + "regionId": 10000004, + "name": "8MX-OR", + "type": "system" + }, + { + "id": 30000392, + "regionId": 10000004, + "name": "97YC-C", + "type": "system" + }, + { + "id": 30000393, + "regionId": 10000004, + "name": "V-AMD5", + "type": "system" + }, + { + "id": 30000394, + "regionId": 10000004, + "name": "U-JC8X", + "type": "system" + }, + { + "id": 30000395, + "regionId": 10000004, + "name": "1HH3-E", + "type": "system" + }, + { + "id": 30000396, + "regionId": 10000004, + "name": "DUIU-Q", + "type": "system" + }, + { + "id": 30000397, + "regionId": 10000004, + "name": "LQH0-H", + "type": "system" + }, + { + "id": 30000398, + "regionId": 10000004, + "name": "FRW3-2", + "type": "system" + }, + { + "id": 30000399, + "regionId": 10000004, + "name": "9MX-1C", + "type": "system" + }, + { + "id": 30000400, + "regionId": 10000004, + "name": "IED-4U", + "type": "system" + }, + { + "id": 30000401, + "regionId": 10000004, + "name": "N-9EOQ", + "type": "system" + }, + { + "id": 30000402, + "regionId": 10000004, + "name": "6F3-TK", + "type": "system" + }, + { + "id": 30000403, + "regionId": 10000004, + "name": "2E0P-2", + "type": "system" + }, + { + "id": 30000404, + "regionId": 10000004, + "name": "U-ITH5", + "type": "system" + }, + { + "id": 30000405, + "regionId": 10000004, + "name": "N-4G5L", + "type": "system" + }, + { + "id": 30000406, + "regionId": 10000004, + "name": "RB-2EA", + "type": "system" + }, + { + "id": 30000407, + "regionId": 10000004, + "name": "ZK5-42", + "type": "system" + }, + { + "id": 30000408, + "regionId": 10000004, + "name": "YRZ-E4", + "type": "system" + }, + { + "id": 30000409, + "regionId": 10000004, + "name": "A3-PAT", + "type": "system" + }, + { + "id": 30000410, + "regionId": 10000004, + "name": "H55-2R", + "type": "system" + }, + { + "id": 30000411, + "regionId": 10000004, + "name": "P6-DBM", + "type": "system" + }, + { + "id": 30000412, + "regionId": 10000004, + "name": "9XI-0X", + "type": "system" + }, + { + "id": 30000413, + "regionId": 10000004, + "name": "Q8T-MC", + "type": "system" + }, + { + "id": 30000414, + "regionId": 10000004, + "name": "Z-YOJ9", + "type": "system" + }, + { + "id": 30000415, + "regionId": 10000004, + "name": "4T4B-L", + "type": "system" + }, + { + "id": 30000416, + "regionId": 10000004, + "name": "F-JB3H", + "type": "system" + }, + { + "id": 30000417, + "regionId": 10000004, + "name": "XBO7-F", + "type": "system" + }, + { + "id": 30000418, + "regionId": 10000004, + "name": "FI-449", + "type": "system" + }, + { + "id": 30000419, + "regionId": 10000004, + "name": "UA7-U4", + "type": "system" + }, + { + "id": 30000420, + "regionId": 10000004, + "name": "VM-QFU", + "type": "system" + }, + { + "id": 30000421, + "regionId": 10000004, + "name": "PU-1Z8", + "type": "system" + }, + { + "id": 30000422, + "regionId": 10000004, + "name": "IEZW-V", + "type": "system" + }, + { + "id": 30000423, + "regionId": 10000004, + "name": "B-DXO9", + "type": "system" + }, + { + "id": 30000424, + "regionId": 10000004, + "name": "1TS-WN", + "type": "system" + }, + { + "id": 30000425, + "regionId": 10000004, + "name": "16-31U", + "type": "system" + }, + { + "id": 30000426, + "regionId": 10000004, + "name": "H472-N", + "type": "system" + }, + { + "id": 30000427, + "regionId": 10000004, + "name": "U8MM-3", + "type": "system" + }, + { + "id": 30000428, + "regionId": 10000004, + "name": "3C-26I", + "type": "system" + }, + { + "id": 30000429, + "regionId": 10000004, + "name": "9K-VDI", + "type": "system" + }, + { + "id": 30000430, + "regionId": 10000004, + "name": "L-SDU7", + "type": "system" + }, + { + "id": 30000431, + "regionId": 10000004, + "name": "4-IPWK", + "type": "system" + }, + { + "id": 30000432, + "regionId": 10000004, + "name": "Q-KCK3", + "type": "system" + }, + { + "id": 30000433, + "regionId": 10000005, + "name": "WU-FHQ", + "type": "system" + }, + { + "id": 30000434, + "regionId": 10000005, + "name": "V-4DBR", + "type": "system" + }, + { + "id": 30000435, + "regionId": 10000005, + "name": "B-5UFY", + "type": "system" + }, + { + "id": 30000436, + "regionId": 10000005, + "name": "SK42-F", + "type": "system" + }, + { + "id": 30000437, + "regionId": 10000005, + "name": "EU9-J3", + "type": "system" + }, + { + "id": 30000438, + "regionId": 10000005, + "name": "PQRE-W", + "type": "system" + }, + { + "id": 30000439, + "regionId": 10000005, + "name": "OEG-K9", + "type": "system" + }, + { + "id": 30000440, + "regionId": 10000005, + "name": "0-W778", + "type": "system" + }, + { + "id": 30000441, + "regionId": 10000005, + "name": "DG-8VJ", + "type": "system" + }, + { + "id": 30000442, + "regionId": 10000005, + "name": "5J4K-9", + "type": "system" + }, + { + "id": 30000443, + "regionId": 10000005, + "name": "MD-0AW", + "type": "system" + }, + { + "id": 30000444, + "regionId": 10000005, + "name": "H-FGJO", + "type": "system" + }, + { + "id": 30000445, + "regionId": 10000005, + "name": "1KAW-T", + "type": "system" + }, + { + "id": 30000446, + "regionId": 10000005, + "name": "C5-SUU", + "type": "system" + }, + { + "id": 30000447, + "regionId": 10000005, + "name": "XSUD-1", + "type": "system" + }, + { + "id": 30000448, + "regionId": 10000005, + "name": "3-LJW3", + "type": "system" + }, + { + "id": 30000449, + "regionId": 10000005, + "name": "ZLO3-V", + "type": "system" + }, + { + "id": 30000450, + "regionId": 10000005, + "name": "P7MI-T", + "type": "system" + }, + { + "id": 30000451, + "regionId": 10000005, + "name": "JFV-ID", + "type": "system" + }, + { + "id": 30000452, + "regionId": 10000005, + "name": "3-3EZB", + "type": "system" + }, + { + "id": 30000453, + "regionId": 10000005, + "name": "52CW-6", + "type": "system" + }, + { + "id": 30000454, + "regionId": 10000005, + "name": "9-OUGJ", + "type": "system" + }, + { + "id": 30000455, + "regionId": 10000005, + "name": "4NDT-W", + "type": "system" + }, + { + "id": 30000456, + "regionId": 10000005, + "name": "GR-X26", + "type": "system" + }, + { + "id": 30000457, + "regionId": 10000005, + "name": "6OU9-U", + "type": "system" + }, + { + "id": 30000458, + "regionId": 10000005, + "name": "9N-0HF", + "type": "system" + }, + { + "id": 30000459, + "regionId": 10000005, + "name": "U-OVFR", + "type": "system" + }, + { + "id": 30000460, + "regionId": 10000005, + "name": "G3D-ZT", + "type": "system" + }, + { + "id": 30000461, + "regionId": 10000005, + "name": "D-0UI0", + "type": "system" + }, + { + "id": 30000462, + "regionId": 10000005, + "name": "L8-WNE", + "type": "system" + }, + { + "id": 30000463, + "regionId": 10000005, + "name": "1-GBVE", + "type": "system" + }, + { + "id": 30000464, + "regionId": 10000005, + "name": "GC-LTF", + "type": "system" + }, + { + "id": 30000465, + "regionId": 10000005, + "name": "NB-ALM", + "type": "system" + }, + { + "id": 30000466, + "regionId": 10000005, + "name": "LT-XI4", + "type": "system" + }, + { + "id": 30000467, + "regionId": 10000005, + "name": "L-QQ6P", + "type": "system" + }, + { + "id": 30000468, + "regionId": 10000005, + "name": "5OJ-G2", + "type": "system" + }, + { + "id": 30000469, + "regionId": 10000005, + "name": "9-02G0", + "type": "system" + }, + { + "id": 30000470, + "regionId": 10000005, + "name": "XA5-TY", + "type": "system" + }, + { + "id": 30000471, + "regionId": 10000005, + "name": "M-XUZZ", + "type": "system" + }, + { + "id": 30000472, + "regionId": 10000005, + "name": "OFVH-Y", + "type": "system" + }, + { + "id": 30000473, + "regionId": 10000005, + "name": "2-X0PF", + "type": "system" + }, + { + "id": 30000474, + "regionId": 10000005, + "name": "1-PGSG", + "type": "system" + }, + { + "id": 30000475, + "regionId": 10000005, + "name": "QLPX-J", + "type": "system" + }, + { + "id": 30000476, + "regionId": 10000005, + "name": "A-C5TC", + "type": "system" + }, + { + "id": 30000477, + "regionId": 10000005, + "name": "RZ-PIY", + "type": "system" + }, + { + "id": 30000478, + "regionId": 10000005, + "name": "FR46-E", + "type": "system" + }, + { + "id": 30000479, + "regionId": 10000005, + "name": "SLVP-D", + "type": "system" + }, + { + "id": 30000480, + "regionId": 10000005, + "name": "0-G8NO", + "type": "system" + }, + { + "id": 30000481, + "regionId": 10000005, + "name": "QRFJ-Q", + "type": "system" + }, + { + "id": 30000482, + "regionId": 10000005, + "name": "HZFJ-M", + "type": "system" + }, + { + "id": 30000483, + "regionId": 10000005, + "name": "77S8-E", + "type": "system" + }, + { + "id": 30000484, + "regionId": 10000005, + "name": "FMH-OV", + "type": "system" + }, + { + "id": 30000485, + "regionId": 10000005, + "name": "TYB-69", + "type": "system" + }, + { + "id": 30000486, + "regionId": 10000005, + "name": "EDQG-L", + "type": "system" + }, + { + "id": 30000487, + "regionId": 10000005, + "name": "7-P1JO", + "type": "system" + }, + { + "id": 30000488, + "regionId": 10000005, + "name": "T-0JWP", + "type": "system" + }, + { + "id": 30000489, + "regionId": 10000005, + "name": "J-L9MA", + "type": "system" + }, + { + "id": 30000490, + "regionId": 10000005, + "name": "DX-TAR", + "type": "system" + }, + { + "id": 30000491, + "regionId": 10000005, + "name": "A-7XFN", + "type": "system" + }, + { + "id": 30000492, + "regionId": 10000005, + "name": "O3-4MN", + "type": "system" + }, + { + "id": 30000493, + "regionId": 10000005, + "name": "U-MFTL", + "type": "system" + }, + { + "id": 30000494, + "regionId": 10000005, + "name": "8FN-GP", + "type": "system" + }, + { + "id": 30000495, + "regionId": 10000005, + "name": "FIDY-8", + "type": "system" + }, + { + "id": 30000496, + "regionId": 10000005, + "name": "X40H-9", + "type": "system" + }, + { + "id": 30000497, + "regionId": 10000005, + "name": "F2W-C6", + "type": "system" + }, + { + "id": 30000498, + "regionId": 10000005, + "name": "KZ9T-C", + "type": "system" + }, + { + "id": 30000499, + "regionId": 10000005, + "name": "XW2H-V", + "type": "system" + }, + { + "id": 30000500, + "regionId": 10000005, + "name": "F9O-U9", + "type": "system" + }, + { + "id": 30000501, + "regionId": 10000005, + "name": "S-51XG", + "type": "system" + }, + { + "id": 30000502, + "regionId": 10000005, + "name": "E-1XVP", + "type": "system" + }, + { + "id": 30000503, + "regionId": 10000005, + "name": "E-ACV6", + "type": "system" + }, + { + "id": 30000504, + "regionId": 10000005, + "name": "BOZ1-O", + "type": "system" + }, + { + "id": 30000505, + "regionId": 10000005, + "name": "QIMO-2", + "type": "system" + }, + { + "id": 30000506, + "regionId": 10000005, + "name": "Z-2Y2Y", + "type": "system" + }, + { + "id": 30000507, + "regionId": 10000005, + "name": "Q0J-RH", + "type": "system" + }, + { + "id": 30000508, + "regionId": 10000005, + "name": "SAI-T9", + "type": "system" + }, + { + "id": 30000509, + "regionId": 10000005, + "name": "IAS-I5", + "type": "system" + }, + { + "id": 30000510, + "regionId": 10000005, + "name": "K7S-FF", + "type": "system" + }, + { + "id": 30000511, + "regionId": 10000005, + "name": "RT-9WL", + "type": "system" + }, + { + "id": 30000512, + "regionId": 10000005, + "name": "O5Q7-U", + "type": "system" + }, + { + "id": 30000513, + "regionId": 10000005, + "name": "62O-UE", + "type": "system" + }, + { + "id": 30000514, + "regionId": 10000005, + "name": "U0W-DR", + "type": "system" + }, + { + "id": 30000515, + "regionId": 10000005, + "name": "SY-UWN", + "type": "system" + }, + { + "id": 30000516, + "regionId": 10000005, + "name": "DX-DFJ", + "type": "system" + }, + { + "id": 30000517, + "regionId": 10000005, + "name": "X-31TE", + "type": "system" + }, + { + "id": 30000518, + "regionId": 10000005, + "name": "DVWV-3", + "type": "system" + }, + { + "id": 30000519, + "regionId": 10000005, + "name": "KE-0FB", + "type": "system" + }, + { + "id": 30000520, + "regionId": 10000005, + "name": "I-9GI1", + "type": "system" + }, + { + "id": 30000521, + "regionId": 10000005, + "name": "W6P-7U", + "type": "system" + }, + { + "id": 30000522, + "regionId": 10000005, + "name": "0IF-26", + "type": "system" + }, + { + "id": 30000523, + "regionId": 10000005, + "name": "H-93YV", + "type": "system" + }, + { + "id": 30000524, + "regionId": 10000005, + "name": "E51-JE", + "type": "system" + }, + { + "id": 30000525, + "regionId": 10000005, + "name": "7-A6XV", + "type": "system" + }, + { + "id": 30000526, + "regionId": 10000005, + "name": "QXE-1N", + "type": "system" + }, + { + "id": 30000527, + "regionId": 10000005, + "name": "U69-YC", + "type": "system" + }, + { + "id": 30000528, + "regionId": 10000005, + "name": "L-L7PE", + "type": "system" + }, + { + "id": 30000529, + "regionId": 10000006, + "name": "MKIG-5", + "type": "system" + }, + { + "id": 30000530, + "regionId": 10000006, + "name": "YHEN-G", + "type": "system" + }, + { + "id": 30000531, + "regionId": 10000006, + "name": "E-JCUS", + "type": "system" + }, + { + "id": 30000532, + "regionId": 10000006, + "name": "W-QN5X", + "type": "system" + }, + { + "id": 30000533, + "regionId": 10000006, + "name": "LP1M-Q", + "type": "system" + }, + { + "id": 30000534, + "regionId": 10000006, + "name": "30-YOU", + "type": "system" + }, + { + "id": 30000535, + "regionId": 10000006, + "name": "384-IN", + "type": "system" + }, + { + "id": 30000536, + "regionId": 10000006, + "name": "4F89-U", + "type": "system" + }, + { + "id": 30000537, + "regionId": 10000006, + "name": "G063-U", + "type": "system" + }, + { + "id": 30000538, + "regionId": 10000006, + "name": "J7-BDX", + "type": "system" + }, + { + "id": 30000539, + "regionId": 10000006, + "name": "MLQ-O9", + "type": "system" + }, + { + "id": 30000540, + "regionId": 10000006, + "name": "L-FM3P", + "type": "system" + }, + { + "id": 30000541, + "regionId": 10000006, + "name": "X-ARMF", + "type": "system" + }, + { + "id": 30000542, + "regionId": 10000006, + "name": "8-OZU1", + "type": "system" + }, + { + "id": 30000543, + "regionId": 10000006, + "name": "0TYR-T", + "type": "system" + }, + { + "id": 30000544, + "regionId": 10000006, + "name": "GM-50Y", + "type": "system" + }, + { + "id": 30000545, + "regionId": 10000006, + "name": "G9L-LP", + "type": "system" + }, + { + "id": 30000546, + "regionId": 10000006, + "name": "MWA-5Q", + "type": "system" + }, + { + "id": 30000547, + "regionId": 10000006, + "name": "H-HHTH", + "type": "system" + }, + { + "id": 30000548, + "regionId": 10000006, + "name": "JQU-KY", + "type": "system" + }, + { + "id": 30000549, + "regionId": 10000006, + "name": "UY5A-D", + "type": "system" + }, + { + "id": 30000550, + "regionId": 10000006, + "name": "C-62I5", + "type": "system" + }, + { + "id": 30000551, + "regionId": 10000006, + "name": "ZH-GKG", + "type": "system" + }, + { + "id": 30000552, + "regionId": 10000006, + "name": "GPLB-C", + "type": "system" + }, + { + "id": 30000553, + "regionId": 10000006, + "name": "GGE-5Q", + "type": "system" + }, + { + "id": 30000554, + "regionId": 10000006, + "name": "5E-CMA", + "type": "system" + }, + { + "id": 30000555, + "regionId": 10000006, + "name": "U104-3", + "type": "system" + }, + { + "id": 30000556, + "regionId": 10000006, + "name": "M3-KAQ", + "type": "system" + }, + { + "id": 30000557, + "regionId": 10000006, + "name": "6-L4YC", + "type": "system" + }, + { + "id": 30000558, + "regionId": 10000006, + "name": "UM-SCG", + "type": "system" + }, + { + "id": 30000559, + "regionId": 10000006, + "name": "F-3FOY", + "type": "system" + }, + { + "id": 30000560, + "regionId": 10000006, + "name": "OAIG-0", + "type": "system" + }, + { + "id": 30000561, + "regionId": 10000006, + "name": "UZ-QXW", + "type": "system" + }, + { + "id": 30000562, + "regionId": 10000006, + "name": "5DE-QS", + "type": "system" + }, + { + "id": 30000563, + "regionId": 10000006, + "name": "R0-DMM", + "type": "system" + }, + { + "id": 30000564, + "regionId": 10000006, + "name": "5Q65-4", + "type": "system" + }, + { + "id": 30000565, + "regionId": 10000006, + "name": "SR-4EK", + "type": "system" + }, + { + "id": 30000566, + "regionId": 10000006, + "name": "0RI-OV", + "type": "system" + }, + { + "id": 30000567, + "regionId": 10000006, + "name": "C-LTXS", + "type": "system" + }, + { + "id": 30000568, + "regionId": 10000006, + "name": "C0O6-K", + "type": "system" + }, + { + "id": 30000569, + "regionId": 10000006, + "name": "HD-AJ7", + "type": "system" + }, + { + "id": 30000570, + "regionId": 10000006, + "name": "G9NE-B", + "type": "system" + }, + { + "id": 30000571, + "regionId": 10000006, + "name": "SJJ-4F", + "type": "system" + }, + { + "id": 30000572, + "regionId": 10000006, + "name": "F-QQ5N", + "type": "system" + }, + { + "id": 30000573, + "regionId": 10000006, + "name": "1-7B6D", + "type": "system" + }, + { + "id": 30000574, + "regionId": 10000006, + "name": "H6-EYX", + "type": "system" + }, + { + "id": 30000575, + "regionId": 10000006, + "name": "U-HVIX", + "type": "system" + }, + { + "id": 30000576, + "regionId": 10000006, + "name": "4-EFLU", + "type": "system" + }, + { + "id": 30000577, + "regionId": 10000006, + "name": "EIH-IU", + "type": "system" + }, + { + "id": 30000578, + "regionId": 10000006, + "name": "F-EM4Q", + "type": "system" + }, + { + "id": 30000579, + "regionId": 10000006, + "name": "1L-OEK", + "type": "system" + }, + { + "id": 30000580, + "regionId": 10000006, + "name": "MN-Q26", + "type": "system" + }, + { + "id": 30000581, + "regionId": 10000006, + "name": "5H-SM2", + "type": "system" + }, + { + "id": 30000582, + "regionId": 10000006, + "name": "4-OS2A", + "type": "system" + }, + { + "id": 30000583, + "regionId": 10000006, + "name": "YI-GV6", + "type": "system" + }, + { + "id": 30000584, + "regionId": 10000006, + "name": "SO-X5L", + "type": "system" + }, + { + "id": 30000585, + "regionId": 10000006, + "name": "XQS-GZ", + "type": "system" + }, + { + "id": 30000586, + "regionId": 10000006, + "name": "Q-GQHN", + "type": "system" + }, + { + "id": 30000587, + "regionId": 10000006, + "name": "A-4JOO", + "type": "system" + }, + { + "id": 30000588, + "regionId": 10000006, + "name": "TP7-KE", + "type": "system" + }, + { + "id": 30000589, + "regionId": 10000006, + "name": "R4N-LD", + "type": "system" + }, + { + "id": 30000590, + "regionId": 10000006, + "name": "3Q-VZA", + "type": "system" + }, + { + "id": 30000591, + "regionId": 10000006, + "name": "M-MBRT", + "type": "system" + }, + { + "id": 30000592, + "regionId": 10000006, + "name": "HPBE-D", + "type": "system" + }, + { + "id": 30000593, + "regionId": 10000006, + "name": "GRHS-B", + "type": "system" + }, + { + "id": 30000594, + "regionId": 10000006, + "name": "J-RXYN", + "type": "system" + }, + { + "id": 30000595, + "regionId": 10000006, + "name": "DUO-51", + "type": "system" + }, + { + "id": 30000596, + "regionId": 10000006, + "name": "07-SLO", + "type": "system" + }, + { + "id": 30000597, + "regionId": 10000006, + "name": "Z-A8FS", + "type": "system" + }, + { + "id": 30000598, + "regionId": 10000006, + "name": "GPD5-0", + "type": "system" + }, + { + "id": 30000599, + "regionId": 10000006, + "name": "LKZ-CY", + "type": "system" + }, + { + "id": 30000600, + "regionId": 10000006, + "name": "F5M-CC", + "type": "system" + }, + { + "id": 30000601, + "regionId": 10000006, + "name": "TZE-UB", + "type": "system" + }, + { + "id": 30000602, + "regionId": 10000006, + "name": "WRL4-2", + "type": "system" + }, + { + "id": 30000603, + "regionId": 10000006, + "name": "V7G-RL", + "type": "system" + }, + { + "id": 30000604, + "regionId": 10000006, + "name": "XEN7-0", + "type": "system" + }, + { + "id": 30000605, + "regionId": 10000006, + "name": "L-Z9KJ", + "type": "system" + }, + { + "id": 30000606, + "regionId": 10000006, + "name": "7K-NSE", + "type": "system" + }, + { + "id": 30000607, + "regionId": 10000006, + "name": "OR-7N5", + "type": "system" + }, + { + "id": 30000608, + "regionId": 10000006, + "name": "JEQG-7", + "type": "system" + }, + { + "id": 30000609, + "regionId": 10000006, + "name": "5NQI-E", + "type": "system" + }, + { + "id": 30000610, + "regionId": 10000006, + "name": "B-WQDP", + "type": "system" + }, + { + "id": 30000611, + "regionId": 10000007, + "name": "2-2EWC", + "type": "system" + }, + { + "id": 30000612, + "regionId": 10000007, + "name": "E1W-TB", + "type": "system" + }, + { + "id": 30000613, + "regionId": 10000007, + "name": "D-6H64", + "type": "system" + }, + { + "id": 30000614, + "regionId": 10000007, + "name": "8-BIE3", + "type": "system" + }, + { + "id": 30000615, + "regionId": 10000007, + "name": "LMM7-L", + "type": "system" + }, + { + "id": 30000616, + "regionId": 10000007, + "name": "995-3G", + "type": "system" + }, + { + "id": 30000617, + "regionId": 10000007, + "name": "W2T-TR", + "type": "system" + }, + { + "id": 30000618, + "regionId": 10000007, + "name": "Q-UEN6", + "type": "system" + }, + { + "id": 30000619, + "regionId": 10000007, + "name": "BLMX-B", + "type": "system" + }, + { + "id": 30000620, + "regionId": 10000007, + "name": "M-CNUD", + "type": "system" + }, + { + "id": 30000621, + "regionId": 10000007, + "name": "YE1-9S", + "type": "system" + }, + { + "id": 30000622, + "regionId": 10000007, + "name": "IVP-KA", + "type": "system" + }, + { + "id": 30000623, + "regionId": 10000007, + "name": "04EI-U", + "type": "system" + }, + { + "id": 30000624, + "regionId": 10000007, + "name": "B-T6BT", + "type": "system" + }, + { + "id": 30000625, + "regionId": 10000007, + "name": "VK-A5G", + "type": "system" + }, + { + "id": 30000626, + "regionId": 10000007, + "name": "I6-SYN", + "type": "system" + }, + { + "id": 30000627, + "regionId": 10000007, + "name": "O-5TN1", + "type": "system" + }, + { + "id": 30000628, + "regionId": 10000007, + "name": "8-SPNN", + "type": "system" + }, + { + "id": 30000629, + "regionId": 10000007, + "name": "U-QMOA", + "type": "system" + }, + { + "id": 30000630, + "regionId": 10000007, + "name": "4S0-NP", + "type": "system" + }, + { + "id": 30000631, + "regionId": 10000007, + "name": "K-RMI5", + "type": "system" + }, + { + "id": 30000632, + "regionId": 10000007, + "name": "C-6YHJ", + "type": "system" + }, + { + "id": 30000633, + "regionId": 10000007, + "name": "M53-1V", + "type": "system" + }, + { + "id": 30000634, + "regionId": 10000007, + "name": "E5T-CS", + "type": "system" + }, + { + "id": 30000635, + "regionId": 10000007, + "name": "W4C8-Q", + "type": "system" + }, + { + "id": 30000636, + "regionId": 10000007, + "name": "I-2705", + "type": "system" + }, + { + "id": 30000637, + "regionId": 10000007, + "name": "5F-MG1", + "type": "system" + }, + { + "id": 30000638, + "regionId": 10000007, + "name": "P7-45V", + "type": "system" + }, + { + "id": 30000639, + "regionId": 10000007, + "name": "M-MCP8", + "type": "system" + }, + { + "id": 30000640, + "regionId": 10000007, + "name": "JZ-B5Y", + "type": "system" + }, + { + "id": 30000641, + "regionId": 10000007, + "name": "TPG-DD", + "type": "system" + }, + { + "id": 30000642, + "regionId": 10000007, + "name": "NIF-JE", + "type": "system" + }, + { + "id": 30000643, + "regionId": 10000007, + "name": "BTLH-I", + "type": "system" + }, + { + "id": 30000644, + "regionId": 10000007, + "name": "U93O-A", + "type": "system" + }, + { + "id": 30000645, + "regionId": 10000007, + "name": "0LY-W1", + "type": "system" + }, + { + "id": 30000646, + "regionId": 10000007, + "name": "4YO-QK", + "type": "system" + }, + { + "id": 30000647, + "regionId": 10000007, + "name": "LJ-RJK", + "type": "system" + }, + { + "id": 30000648, + "regionId": 10000007, + "name": "8-VC6H", + "type": "system" + }, + { + "id": 30000649, + "regionId": 10000007, + "name": "LQ-01M", + "type": "system" + }, + { + "id": 30000650, + "regionId": 10000007, + "name": "NG-M8K", + "type": "system" + }, + { + "id": 30000651, + "regionId": 10000007, + "name": "RV5-TT", + "type": "system" + }, + { + "id": 30000652, + "regionId": 10000007, + "name": "8OYE-Z", + "type": "system" + }, + { + "id": 30000653, + "regionId": 10000007, + "name": "K85Y-6", + "type": "system" + }, + { + "id": 30000654, + "regionId": 10000007, + "name": "PKN-NJ", + "type": "system" + }, + { + "id": 30000655, + "regionId": 10000008, + "name": "EIN-QG", + "type": "system" + }, + { + "id": 30000656, + "regionId": 10000008, + "name": "ARG-3R", + "type": "system" + }, + { + "id": 30000657, + "regionId": 10000008, + "name": "S-E6ES", + "type": "system" + }, + { + "id": 30000658, + "regionId": 10000008, + "name": "R-3FBU", + "type": "system" + }, + { + "id": 30000659, + "regionId": 10000008, + "name": "K7-LDX", + "type": "system" + }, + { + "id": 30000660, + "regionId": 10000008, + "name": "U-IVGH", + "type": "system" + }, + { + "id": 30000661, + "regionId": 10000008, + "name": "P-N5N9", + "type": "system" + }, + { + "id": 30000662, + "regionId": 10000008, + "name": "JMH-PT", + "type": "system" + }, + { + "id": 30000663, + "regionId": 10000008, + "name": "DE-A7P", + "type": "system" + }, + { + "id": 30000664, + "regionId": 10000008, + "name": "X9V-15", + "type": "system" + }, + { + "id": 30000665, + "regionId": 10000008, + "name": "K212-A", + "type": "system" + }, + { + "id": 30000666, + "regionId": 10000008, + "name": "F-5FDA", + "type": "system" + }, + { + "id": 30000667, + "regionId": 10000008, + "name": "S1-XTL", + "type": "system" + }, + { + "id": 30000668, + "regionId": 10000008, + "name": "9PX2-F", + "type": "system" + }, + { + "id": 30000669, + "regionId": 10000008, + "name": "N3-JBX", + "type": "system" + }, + { + "id": 30000670, + "regionId": 10000008, + "name": "SG-75T", + "type": "system" + }, + { + "id": 30000671, + "regionId": 10000008, + "name": "GN-PDU", + "type": "system" + }, + { + "id": 30000672, + "regionId": 10000008, + "name": "AZ3F-N", + "type": "system" + }, + { + "id": 30000673, + "regionId": 10000008, + "name": "RNM-Y6", + "type": "system" + }, + { + "id": 30000674, + "regionId": 10000008, + "name": "V-KDY2", + "type": "system" + }, + { + "id": 30000675, + "regionId": 10000008, + "name": "FYD-TO", + "type": "system" + }, + { + "id": 30000676, + "regionId": 10000008, + "name": "ER2O-Y", + "type": "system" + }, + { + "id": 30000677, + "regionId": 10000008, + "name": "J2-PZ6", + "type": "system" + }, + { + "id": 30000678, + "regionId": 10000008, + "name": "XV-MWG", + "type": "system" + }, + { + "id": 30000679, + "regionId": 10000008, + "name": "OAQY-M", + "type": "system" + }, + { + "id": 30000680, + "regionId": 10000008, + "name": "1V-LI2", + "type": "system" + }, + { + "id": 30000681, + "regionId": 10000008, + "name": "M9-MLR", + "type": "system" + }, + { + "id": 30000682, + "regionId": 10000008, + "name": "Q-K2T7", + "type": "system" + }, + { + "id": 30000683, + "regionId": 10000008, + "name": "LBC-AW", + "type": "system" + }, + { + "id": 30000684, + "regionId": 10000008, + "name": "2-KPW6", + "type": "system" + }, + { + "id": 30000685, + "regionId": 10000008, + "name": "H5N-V7", + "type": "system" + }, + { + "id": 30000686, + "regionId": 10000008, + "name": "HQ-Q1Q", + "type": "system" + }, + { + "id": 30000687, + "regionId": 10000008, + "name": "WHI-61", + "type": "system" + }, + { + "id": 30000688, + "regionId": 10000008, + "name": "ZFJH-T", + "type": "system" + }, + { + "id": 30000689, + "regionId": 10000008, + "name": "I-1B7X", + "type": "system" + }, + { + "id": 30000690, + "regionId": 10000008, + "name": "G15Z-W", + "type": "system" + }, + { + "id": 30000691, + "regionId": 10000008, + "name": "AH8-Q7", + "type": "system" + }, + { + "id": 30000692, + "regionId": 10000008, + "name": "SD4A-2", + "type": "system" + }, + { + "id": 30000693, + "regionId": 10000008, + "name": "U6K-RG", + "type": "system" + }, + { + "id": 30000694, + "regionId": 10000008, + "name": "V-S9YY", + "type": "system" + }, + { + "id": 30000695, + "regionId": 10000008, + "name": "F2-NXA", + "type": "system" + }, + { + "id": 30000696, + "regionId": 10000008, + "name": "NSBE-L", + "type": "system" + }, + { + "id": 30000697, + "regionId": 10000008, + "name": "8Q-T7B", + "type": "system" + }, + { + "id": 30000698, + "regionId": 10000008, + "name": "WV0D-1", + "type": "system" + }, + { + "id": 30000699, + "regionId": 10000008, + "name": "ZNF-OK", + "type": "system" + }, + { + "id": 30000700, + "regionId": 10000008, + "name": "C8-7AS", + "type": "system" + }, + { + "id": 30000701, + "regionId": 10000008, + "name": "4E-EZS", + "type": "system" + }, + { + "id": 30000702, + "regionId": 10000008, + "name": "A-80UA", + "type": "system" + }, + { + "id": 30000703, + "regionId": 10000008, + "name": "U2-28D", + "type": "system" + }, + { + "id": 30000704, + "regionId": 10000008, + "name": "LQ-OAI", + "type": "system" + }, + { + "id": 30000705, + "regionId": 10000008, + "name": "5-MQQ7", + "type": "system" + }, + { + "id": 30000706, + "regionId": 10000008, + "name": "6-EQYE", + "type": "system" + }, + { + "id": 30000707, + "regionId": 10000008, + "name": "03-OR2", + "type": "system" + }, + { + "id": 30000708, + "regionId": 10000008, + "name": "JLO-Z3", + "type": "system" + }, + { + "id": 30000709, + "regionId": 10000008, + "name": "IAK-JW", + "type": "system" + }, + { + "id": 30000710, + "regionId": 10000008, + "name": "KZFV-4", + "type": "system" + }, + { + "id": 30000711, + "regionId": 10000008, + "name": "WO-GC0", + "type": "system" + }, + { + "id": 30000712, + "regionId": 10000008, + "name": "RYC-19", + "type": "system" + }, + { + "id": 30000713, + "regionId": 10000008, + "name": "X2-ZA5", + "type": "system" + }, + { + "id": 30000714, + "regionId": 10000008, + "name": "28Y9-P", + "type": "system" + }, + { + "id": 30000715, + "regionId": 10000008, + "name": "Q4C-S5", + "type": "system" + }, + { + "id": 30000716, + "regionId": 10000008, + "name": "B-1UJC", + "type": "system" + }, + { + "id": 30000717, + "regionId": 10000008, + "name": "Q-NA5H", + "type": "system" + }, + { + "id": 30000718, + "regionId": 10000008, + "name": "4-CM8I", + "type": "system" + }, + { + "id": 30000719, + "regionId": 10000008, + "name": "ZDB-HT", + "type": "system" + }, + { + "id": 30000720, + "regionId": 10000008, + "name": "1QZ-Y9", + "type": "system" + }, + { + "id": 30000721, + "regionId": 10000008, + "name": "HJ-BCH", + "type": "system" + }, + { + "id": 30000722, + "regionId": 10000008, + "name": "QPTT-F", + "type": "system" + }, + { + "id": 30000723, + "regionId": 10000008, + "name": "9M-M0P", + "type": "system" + }, + { + "id": 30000724, + "regionId": 10000008, + "name": "9BC-EB", + "type": "system" + }, + { + "id": 30000725, + "regionId": 10000008, + "name": "WFFE-4", + "type": "system" + }, + { + "id": 30000726, + "regionId": 10000008, + "name": "71-UTX", + "type": "system" + }, + { + "id": 30000727, + "regionId": 10000008, + "name": "PU-UMM", + "type": "system" + }, + { + "id": 30000728, + "regionId": 10000008, + "name": "6-KPAB", + "type": "system" + }, + { + "id": 30000729, + "regionId": 10000008, + "name": "Y5-E1U", + "type": "system" + }, + { + "id": 30000730, + "regionId": 10000008, + "name": "4-43BW", + "type": "system" + }, + { + "id": 30000731, + "regionId": 10000008, + "name": "8CN-CH", + "type": "system" + }, + { + "id": 30000732, + "regionId": 10000008, + "name": "V-F6DQ", + "type": "system" + }, + { + "id": 30000733, + "regionId": 10000008, + "name": "3S-6VU", + "type": "system" + }, + { + "id": 30000734, + "regionId": 10000008, + "name": "1-7HVI", + "type": "system" + }, + { + "id": 30000735, + "regionId": 10000008, + "name": "OX-S7P", + "type": "system" + }, + { + "id": 30000736, + "regionId": 10000009, + "name": "KDG-TA", + "type": "system" + }, + { + "id": 30000737, + "regionId": 10000009, + "name": "KD-KPR", + "type": "system" + }, + { + "id": 30000738, + "regionId": 10000009, + "name": "PT-21C", + "type": "system" + }, + { + "id": 30000739, + "regionId": 10000009, + "name": "Z182-R", + "type": "system" + }, + { + "id": 30000740, + "regionId": 10000009, + "name": "EKPB-3", + "type": "system" + }, + { + "id": 30000741, + "regionId": 10000009, + "name": "5M2-KP", + "type": "system" + }, + { + "id": 30000742, + "regionId": 10000009, + "name": "TK-DLH", + "type": "system" + }, + { + "id": 30000743, + "regionId": 10000009, + "name": "C8H5-X", + "type": "system" + }, + { + "id": 30000744, + "regionId": 10000009, + "name": "O-7LAI", + "type": "system" + }, + { + "id": 30000745, + "regionId": 10000009, + "name": "7L3-JS", + "type": "system" + }, + { + "id": 30000746, + "regionId": 10000009, + "name": "WF4C-8", + "type": "system" + }, + { + "id": 30000747, + "regionId": 10000009, + "name": "TZN-2V", + "type": "system" + }, + { + "id": 30000748, + "regionId": 10000009, + "name": "8EF-58", + "type": "system" + }, + { + "id": 30000749, + "regionId": 10000009, + "name": "4DS-OI", + "type": "system" + }, + { + "id": 30000750, + "regionId": 10000009, + "name": "XQP-9C", + "type": "system" + }, + { + "id": 30000751, + "regionId": 10000009, + "name": "W-6GBI", + "type": "system" + }, + { + "id": 30000752, + "regionId": 10000009, + "name": "XKH-6O", + "type": "system" + }, + { + "id": 30000753, + "regionId": 10000009, + "name": "S0U-MO", + "type": "system" + }, + { + "id": 30000754, + "regionId": 10000009, + "name": "F39H-1", + "type": "system" + }, + { + "id": 30000755, + "regionId": 10000009, + "name": "V-QXXK", + "type": "system" + }, + { + "id": 30000756, + "regionId": 10000009, + "name": "2-Q4YG", + "type": "system" + }, + { + "id": 30000757, + "regionId": 10000009, + "name": "2JT-3Q", + "type": "system" + }, + { + "id": 30000758, + "regionId": 10000009, + "name": "I3CR-F", + "type": "system" + }, + { + "id": 30000759, + "regionId": 10000009, + "name": "7-JT09", + "type": "system" + }, + { + "id": 30000760, + "regionId": 10000009, + "name": "AGCP-I", + "type": "system" + }, + { + "id": 30000761, + "regionId": 10000009, + "name": "M4-GJ6", + "type": "system" + }, + { + "id": 30000762, + "regionId": 10000009, + "name": "5-2PQU", + "type": "system" + }, + { + "id": 30000763, + "regionId": 10000009, + "name": "SN9-3Z", + "type": "system" + }, + { + "id": 30000764, + "regionId": 10000009, + "name": "6BJH-3", + "type": "system" + }, + { + "id": 30000765, + "regionId": 10000009, + "name": "U-UTU9", + "type": "system" + }, + { + "id": 30000766, + "regionId": 10000009, + "name": "1TG7-W", + "type": "system" + }, + { + "id": 30000767, + "regionId": 10000009, + "name": "QYD-WK", + "type": "system" + }, + { + "id": 30000768, + "regionId": 10000009, + "name": "R959-U", + "type": "system" + }, + { + "id": 30000769, + "regionId": 10000009, + "name": "A-TJ0G", + "type": "system" + }, + { + "id": 30000770, + "regionId": 10000009, + "name": "88A-RA", + "type": "system" + }, + { + "id": 30000771, + "regionId": 10000009, + "name": "8G-2FP", + "type": "system" + }, + { + "id": 30000772, + "regionId": 10000009, + "name": "C-J6MT", + "type": "system" + }, + { + "id": 30000773, + "regionId": 10000009, + "name": "78-0R6", + "type": "system" + }, + { + "id": 30000774, + "regionId": 10000009, + "name": "MSG-BZ", + "type": "system" + }, + { + "id": 30000775, + "regionId": 10000009, + "name": "8-WYQZ", + "type": "system" + }, + { + "id": 30000776, + "regionId": 10000009, + "name": "4M-QXK", + "type": "system" + }, + { + "id": 30000777, + "regionId": 10000009, + "name": "X5-0EM", + "type": "system" + }, + { + "id": 30000778, + "regionId": 10000009, + "name": "G-EURJ", + "type": "system" + }, + { + "id": 30000779, + "regionId": 10000009, + "name": "SHBF-V", + "type": "system" + }, + { + "id": 30000780, + "regionId": 10000009, + "name": "RERZ-L", + "type": "system" + }, + { + "id": 30000781, + "regionId": 10000009, + "name": "0UBC-R", + "type": "system" + }, + { + "id": 30000782, + "regionId": 10000009, + "name": "3U-48K", + "type": "system" + }, + { + "id": 30000783, + "regionId": 10000009, + "name": "EFM-C4", + "type": "system" + }, + { + "id": 30000784, + "regionId": 10000009, + "name": "YPW-M4", + "type": "system" + }, + { + "id": 30000785, + "regionId": 10000009, + "name": "Q7-FZ8", + "type": "system" + }, + { + "id": 30000786, + "regionId": 10000009, + "name": "L5-UWT", + "type": "system" + }, + { + "id": 30000787, + "regionId": 10000009, + "name": "74-VZA", + "type": "system" + }, + { + "id": 30000788, + "regionId": 10000009, + "name": "I-1QKL", + "type": "system" + }, + { + "id": 30000789, + "regionId": 10000009, + "name": "GK5Z-T", + "type": "system" + }, + { + "id": 30000790, + "regionId": 10000009, + "name": "RQN-OO", + "type": "system" + }, + { + "id": 30000791, + "regionId": 10000009, + "name": "67Y-NR", + "type": "system" + }, + { + "id": 30000792, + "regionId": 10000009, + "name": "GDHN-K", + "type": "system" + }, + { + "id": 30000793, + "regionId": 10000009, + "name": "QTME-D", + "type": "system" + }, + { + "id": 30000794, + "regionId": 10000009, + "name": "A24L-V", + "type": "system" + }, + { + "id": 30000795, + "regionId": 10000009, + "name": "4CJ-AC", + "type": "system" + }, + { + "id": 30000796, + "regionId": 10000009, + "name": "EUU-4N", + "type": "system" + }, + { + "id": 30000797, + "regionId": 10000009, + "name": "Q-3HS5", + "type": "system" + }, + { + "id": 30000798, + "regionId": 10000009, + "name": "3AE-CP", + "type": "system" + }, + { + "id": 30000799, + "regionId": 10000009, + "name": "0-VG7A", + "type": "system" + }, + { + "id": 30000800, + "regionId": 10000009, + "name": "9OLQ-6", + "type": "system" + }, + { + "id": 30000801, + "regionId": 10000009, + "name": "MOCW-2", + "type": "system" + }, + { + "id": 30000802, + "regionId": 10000009, + "name": "ZO-4AR", + "type": "system" + }, + { + "id": 30000803, + "regionId": 10000009, + "name": "MJ-LGH", + "type": "system" + }, + { + "id": 30000804, + "regionId": 10000009, + "name": "F2A-GX", + "type": "system" + }, + { + "id": 30000805, + "regionId": 10000009, + "name": "RD-FWY", + "type": "system" + }, + { + "id": 30000806, + "regionId": 10000009, + "name": "VBPT-T", + "type": "system" + }, + { + "id": 30000807, + "regionId": 10000009, + "name": "KS-1TS", + "type": "system" + }, + { + "id": 30000808, + "regionId": 10000009, + "name": "X0-6LH", + "type": "system" + }, + { + "id": 30000809, + "regionId": 10000009, + "name": "FN0-QS", + "type": "system" + }, + { + "id": 30000810, + "regionId": 10000009, + "name": "F3-8X2", + "type": "system" + }, + { + "id": 30000811, + "regionId": 10000009, + "name": "N7-BIY", + "type": "system" + }, + { + "id": 30000812, + "regionId": 10000009, + "name": "TTP-2B", + "type": "system" + }, + { + "id": 30000813, + "regionId": 10000009, + "name": "LVL-GZ", + "type": "system" + }, + { + "id": 30000814, + "regionId": 10000009, + "name": "EJ48-O", + "type": "system" + }, + { + "id": 30000815, + "regionId": 10000009, + "name": "ROJ-B0", + "type": "system" + }, + { + "id": 30000816, + "regionId": 10000009, + "name": "DFH-V5", + "type": "system" + }, + { + "id": 30000817, + "regionId": 10000009, + "name": "B-II34", + "type": "system" + }, + { + "id": 30000818, + "regionId": 10000009, + "name": "4LB-EL", + "type": "system" + }, + { + "id": 30000819, + "regionId": 10000009, + "name": "UDE-FX", + "type": "system" + }, + { + "id": 30000820, + "regionId": 10000009, + "name": "5IH-GL", + "type": "system" + }, + { + "id": 30000821, + "regionId": 10000009, + "name": "C1G-XC", + "type": "system" + }, + { + "id": 30000822, + "regionId": 10000009, + "name": "04-EHC", + "type": "system" + }, + { + "id": 30000823, + "regionId": 10000009, + "name": "3-0FYP", + "type": "system" + }, + { + "id": 30000824, + "regionId": 10000009, + "name": "N-O53U", + "type": "system" + }, + { + "id": 30000825, + "regionId": 10000009, + "name": "HZ-O18", + "type": "system" + }, + { + "id": 30000826, + "regionId": 10000009, + "name": "D-P1EH", + "type": "system" + }, + { + "id": 30000827, + "regionId": 10000009, + "name": "74L2-U", + "type": "system" + }, + { + "id": 30000828, + "regionId": 10000009, + "name": "HL-VZX", + "type": "system" + }, + { + "id": 30000829, + "regionId": 10000009, + "name": "38NZ-1", + "type": "system" + }, + { + "id": 30000830, + "regionId": 10000009, + "name": "W-MF6J", + "type": "system" + }, + { + "id": 30000831, + "regionId": 10000009, + "name": "O-9G5Y", + "type": "system" + }, + { + "id": 30000832, + "regionId": 10000009, + "name": "27-HP0", + "type": "system" + }, + { + "id": 30000833, + "regionId": 10000009, + "name": "X1-IZ0", + "type": "system" + }, + { + "id": 30000834, + "regionId": 10000009, + "name": "RZ-TI6", + "type": "system" + }, + { + "id": 30000835, + "regionId": 10000009, + "name": "FX4L-2", + "type": "system" + }, + { + "id": 30000836, + "regionId": 10000009, + "name": "1ZF-PJ", + "type": "system" + }, + { + "id": 30000837, + "regionId": 10000009, + "name": "HFC-AQ", + "type": "system" + }, + { + "id": 30000838, + "regionId": 10000009, + "name": "0-6VZ5", + "type": "system" + }, + { + "id": 30000839, + "regionId": 10000009, + "name": "GB-6X5", + "type": "system" + }, + { + "id": 30000840, + "regionId": 10000009, + "name": "7EX-14", + "type": "system" + }, + { + "id": 30000841, + "regionId": 10000009, + "name": "N7-KGJ", + "type": "system" + }, + { + "id": 30000842, + "regionId": 10000009, + "name": "VD-8QY", + "type": "system" + }, + { + "id": 30000843, + "regionId": 10000009, + "name": "J-ZYSZ", + "type": "system" + }, + { + "id": 30000844, + "regionId": 10000009, + "name": "5C-RPA", + "type": "system" + }, + { + "id": 30000845, + "regionId": 10000009, + "name": "CR2-PQ", + "type": "system" + }, + { + "id": 30000846, + "regionId": 10000010, + "name": "E-OGL4", + "type": "system" + }, + { + "id": 30000847, + "regionId": 10000010, + "name": "J-GAMP", + "type": "system" + }, + { + "id": 30000848, + "regionId": 10000010, + "name": "M-OEE8", + "type": "system" + }, + { + "id": 30000849, + "regionId": 10000010, + "name": "V0DF-2", + "type": "system" + }, + { + "id": 30000850, + "regionId": 10000010, + "name": "FY0W-N", + "type": "system" + }, + { + "id": 30000851, + "regionId": 10000010, + "name": "MJI3-8", + "type": "system" + }, + { + "id": 30000852, + "regionId": 10000010, + "name": "A-DDGY", + "type": "system" + }, + { + "id": 30000853, + "regionId": 10000010, + "name": "F-RT6Q", + "type": "system" + }, + { + "id": 30000854, + "regionId": 10000010, + "name": "B-S42H", + "type": "system" + }, + { + "id": 30000855, + "regionId": 10000010, + "name": "NL6V-7", + "type": "system" + }, + { + "id": 30000856, + "regionId": 10000010, + "name": "F-749O", + "type": "system" + }, + { + "id": 30000857, + "regionId": 10000010, + "name": "0-YMBJ", + "type": "system" + }, + { + "id": 30000858, + "regionId": 10000010, + "name": "UMI-KK", + "type": "system" + }, + { + "id": 30000859, + "regionId": 10000010, + "name": "GKP-YT", + "type": "system" + }, + { + "id": 30000860, + "regionId": 10000010, + "name": "AW1-2I", + "type": "system" + }, + { + "id": 30000861, + "regionId": 10000010, + "name": "15W-GC", + "type": "system" + }, + { + "id": 30000862, + "regionId": 10000010, + "name": "N-FK87", + "type": "system" + }, + { + "id": 30000863, + "regionId": 10000010, + "name": "C2X-M5", + "type": "system" + }, + { + "id": 30000864, + "regionId": 10000010, + "name": "MSHD-4", + "type": "system" + }, + { + "id": 30000865, + "regionId": 10000010, + "name": "H-W9TY", + "type": "system" + }, + { + "id": 30000866, + "regionId": 10000010, + "name": "PNDN-V", + "type": "system" + }, + { + "id": 30000867, + "regionId": 10000010, + "name": "D7-ZAC", + "type": "system" + }, + { + "id": 30000868, + "regionId": 10000010, + "name": "SH1-6P", + "type": "system" + }, + { + "id": 30000869, + "regionId": 10000010, + "name": "TRKN-L", + "type": "system" + }, + { + "id": 30000870, + "regionId": 10000010, + "name": "O-0ERG", + "type": "system" + }, + { + "id": 30000871, + "regionId": 10000010, + "name": "WH-JCA", + "type": "system" + }, + { + "id": 30000872, + "regionId": 10000010, + "name": "Q-CAB2", + "type": "system" + }, + { + "id": 30000873, + "regionId": 10000010, + "name": "PBD-0G", + "type": "system" + }, + { + "id": 30000874, + "regionId": 10000010, + "name": "L-1HKR", + "type": "system" + }, + { + "id": 30000875, + "regionId": 10000010, + "name": "9GI-FB", + "type": "system" + }, + { + "id": 30000876, + "regionId": 10000010, + "name": "3G-LHB", + "type": "system" + }, + { + "id": 30000877, + "regionId": 10000010, + "name": "DBT-GB", + "type": "system" + }, + { + "id": 30000878, + "regionId": 10000010, + "name": "U-W3WS", + "type": "system" + }, + { + "id": 30000879, + "regionId": 10000010, + "name": "DL1C-E", + "type": "system" + }, + { + "id": 30000880, + "regionId": 10000010, + "name": "YLS8-J", + "type": "system" + }, + { + "id": 30000881, + "regionId": 10000010, + "name": "2ISU-Y", + "type": "system" + }, + { + "id": 30000882, + "regionId": 10000010, + "name": "X-CFN6", + "type": "system" + }, + { + "id": 30000883, + "regionId": 10000010, + "name": "9SL-K9", + "type": "system" + }, + { + "id": 30000884, + "regionId": 10000010, + "name": "Y-PZHM", + "type": "system" + }, + { + "id": 30000885, + "regionId": 10000010, + "name": "OY-UZ1", + "type": "system" + }, + { + "id": 30000886, + "regionId": 10000010, + "name": "S8-NSQ", + "type": "system" + }, + { + "id": 30000887, + "regionId": 10000010, + "name": "GIH-ZG", + "type": "system" + }, + { + "id": 30000888, + "regionId": 10000010, + "name": "V7-FB4", + "type": "system" + }, + { + "id": 30000889, + "regionId": 10000010, + "name": "XD-TOV", + "type": "system" + }, + { + "id": 30000890, + "regionId": 10000010, + "name": "K-6SNI", + "type": "system" + }, + { + "id": 30000891, + "regionId": 10000010, + "name": "L-VXTK", + "type": "system" + }, + { + "id": 30000892, + "regionId": 10000010, + "name": "C8VC-S", + "type": "system" + }, + { + "id": 30000893, + "regionId": 10000010, + "name": "W-UQA5", + "type": "system" + }, + { + "id": 30000894, + "regionId": 10000010, + "name": "W6VP-Y", + "type": "system" + }, + { + "id": 30000895, + "regionId": 10000010, + "name": "IMK-K1", + "type": "system" + }, + { + "id": 30000896, + "regionId": 10000010, + "name": "NJ4X-S", + "type": "system" + }, + { + "id": 30000897, + "regionId": 10000010, + "name": "F-G7BO", + "type": "system" + }, + { + "id": 30000898, + "regionId": 10000010, + "name": "2CG-5V", + "type": "system" + }, + { + "id": 30000899, + "regionId": 10000010, + "name": "QFF-O6", + "type": "system" + }, + { + "id": 30000900, + "regionId": 10000011, + "name": "NIH-02", + "type": "system" + }, + { + "id": 30000901, + "regionId": 10000011, + "name": "JPL-RA", + "type": "system" + }, + { + "id": 30000902, + "regionId": 10000011, + "name": "NK-7XO", + "type": "system" + }, + { + "id": 30000903, + "regionId": 10000011, + "name": "E02-IK", + "type": "system" + }, + { + "id": 30000904, + "regionId": 10000011, + "name": "N-DQ0D", + "type": "system" + }, + { + "id": 30000905, + "regionId": 10000011, + "name": "M-MD3B", + "type": "system" + }, + { + "id": 30000906, + "regionId": 10000011, + "name": "FVXK-D", + "type": "system" + }, + { + "id": 30000907, + "regionId": 10000011, + "name": "6EG7-R", + "type": "system" + }, + { + "id": 30000908, + "regionId": 10000011, + "name": "56D-TC", + "type": "system" + }, + { + "id": 30000909, + "regionId": 10000011, + "name": "2X7Z-L", + "type": "system" + }, + { + "id": 30000910, + "regionId": 10000011, + "name": "8DL-CP", + "type": "system" + }, + { + "id": 30000911, + "regionId": 10000011, + "name": "UMDQ-6", + "type": "system" + }, + { + "id": 30000912, + "regionId": 10000011, + "name": "504Z-V", + "type": "system" + }, + { + "id": 30000913, + "regionId": 10000011, + "name": "F8K-WQ", + "type": "system" + }, + { + "id": 30000914, + "regionId": 10000011, + "name": "AB-FZE", + "type": "system" + }, + { + "id": 30000915, + "regionId": 10000011, + "name": "N-6Z8B", + "type": "system" + }, + { + "id": 30000916, + "regionId": 10000011, + "name": "YUY-LM", + "type": "system" + }, + { + "id": 30000917, + "regionId": 10000011, + "name": "NE-3GR", + "type": "system" + }, + { + "id": 30000918, + "regionId": 10000011, + "name": "Y4-GQV", + "type": "system" + }, + { + "id": 30000919, + "regionId": 10000011, + "name": "7-IDWY", + "type": "system" + }, + { + "id": 30000920, + "regionId": 10000011, + "name": "AZF-GH", + "type": "system" + }, + { + "id": 30000921, + "regionId": 10000011, + "name": "UT-UZB", + "type": "system" + }, + { + "id": 30000922, + "regionId": 10000011, + "name": "M-EKDF", + "type": "system" + }, + { + "id": 30000923, + "regionId": 10000011, + "name": "CRXA-Y", + "type": "system" + }, + { + "id": 30000924, + "regionId": 10000011, + "name": "VXO-OM", + "type": "system" + }, + { + "id": 30000925, + "regionId": 10000011, + "name": "BY5-V8", + "type": "system" + }, + { + "id": 30000926, + "regionId": 10000011, + "name": "TET3-B", + "type": "system" + }, + { + "id": 30000927, + "regionId": 10000011, + "name": "VKU-BG", + "type": "system" + }, + { + "id": 30000928, + "regionId": 10000011, + "name": "WPR-EI", + "type": "system" + }, + { + "id": 30000929, + "regionId": 10000011, + "name": "0NV-YU", + "type": "system" + }, + { + "id": 30000930, + "regionId": 10000011, + "name": "V-2GYS", + "type": "system" + }, + { + "id": 30000931, + "regionId": 10000011, + "name": "168-6H", + "type": "system" + }, + { + "id": 30000932, + "regionId": 10000011, + "name": "W-RFUO", + "type": "system" + }, + { + "id": 30000933, + "regionId": 10000011, + "name": "AI-EVH", + "type": "system" + }, + { + "id": 30000934, + "regionId": 10000011, + "name": "F-MKH3", + "type": "system" + }, + { + "id": 30000935, + "regionId": 10000011, + "name": "ZM-DNR", + "type": "system" + }, + { + "id": 30000936, + "regionId": 10000011, + "name": "GF-3FL", + "type": "system" + }, + { + "id": 30000937, + "regionId": 10000011, + "name": "ZJ-GOU", + "type": "system" + }, + { + "id": 30000938, + "regionId": 10000011, + "name": "QQ3-YI", + "type": "system" + }, + { + "id": 30000939, + "regionId": 10000011, + "name": "9-34L5", + "type": "system" + }, + { + "id": 30000940, + "regionId": 10000011, + "name": "0R-GZQ", + "type": "system" + }, + { + "id": 30000941, + "regionId": 10000011, + "name": "QM-20X", + "type": "system" + }, + { + "id": 30000942, + "regionId": 10000011, + "name": "8YC-AN", + "type": "system" + }, + { + "id": 30000943, + "regionId": 10000011, + "name": "7Q-8Z2", + "type": "system" + }, + { + "id": 30000944, + "regionId": 10000011, + "name": "SUR-F7", + "type": "system" + }, + { + "id": 30000945, + "regionId": 10000011, + "name": "OK-6XN", + "type": "system" + }, + { + "id": 30000946, + "regionId": 10000011, + "name": "Q2FL-T", + "type": "system" + }, + { + "id": 30000947, + "regionId": 10000011, + "name": "Y7-XFD", + "type": "system" + }, + { + "id": 30000948, + "regionId": 10000011, + "name": "U3K-4A", + "type": "system" + }, + { + "id": 30000949, + "regionId": 10000011, + "name": "P1T-LP", + "type": "system" + }, + { + "id": 30000950, + "regionId": 10000011, + "name": "R-ESG0", + "type": "system" + }, + { + "id": 30000951, + "regionId": 10000011, + "name": "CI4M-T", + "type": "system" + }, + { + "id": 30000952, + "regionId": 10000011, + "name": "I-QRJA", + "type": "system" + }, + { + "id": 30000953, + "regionId": 10000011, + "name": "M-YWAL", + "type": "system" + }, + { + "id": 30000954, + "regionId": 10000011, + "name": "DE71-9", + "type": "system" + }, + { + "id": 30000955, + "regionId": 10000011, + "name": "7JF-0Z", + "type": "system" + }, + { + "id": 30000956, + "regionId": 10000011, + "name": "IX8-JB", + "type": "system" + }, + { + "id": 30000957, + "regionId": 10000011, + "name": "WTIE-6", + "type": "system" + }, + { + "id": 30000958, + "regionId": 10000011, + "name": "Y-DSSK", + "type": "system" + }, + { + "id": 30000959, + "regionId": 10000011, + "name": "F5-CGW", + "type": "system" + }, + { + "id": 30000960, + "regionId": 10000011, + "name": "H9S-WC", + "type": "system" + }, + { + "id": 30000961, + "regionId": 10000011, + "name": "B-ROFP", + "type": "system" + }, + { + "id": 30000962, + "regionId": 10000011, + "name": "1L-AED", + "type": "system" + }, + { + "id": 30000963, + "regionId": 10000011, + "name": "1C-953", + "type": "system" + }, + { + "id": 30000964, + "regionId": 10000011, + "name": "SL-YBS", + "type": "system" + }, + { + "id": 30000965, + "regionId": 10000011, + "name": "UNJ-GX", + "type": "system" + }, + { + "id": 30000966, + "regionId": 10000011, + "name": "0PI4-E", + "type": "system" + }, + { + "id": 30000967, + "regionId": 10000011, + "name": "6WT-BE", + "type": "system" + }, + { + "id": 30000968, + "regionId": 10000011, + "name": "L1S-G1", + "type": "system" + }, + { + "id": 30000969, + "regionId": 10000011, + "name": "9SNK-O", + "type": "system" + }, + { + "id": 30000970, + "regionId": 10000011, + "name": "B-VIP9", + "type": "system" + }, + { + "id": 30000971, + "regionId": 10000011, + "name": "LXTC-S", + "type": "system" + }, + { + "id": 30000972, + "regionId": 10000011, + "name": "WE3-BX", + "type": "system" + }, + { + "id": 30000973, + "regionId": 10000011, + "name": "H7O-JZ", + "type": "system" + }, + { + "id": 30000974, + "regionId": 10000011, + "name": "H-8F5Q", + "type": "system" + }, + { + "id": 30000975, + "regionId": 10000011, + "name": "O-RXCZ", + "type": "system" + }, + { + "id": 30000976, + "regionId": 10000011, + "name": "4M-P1I", + "type": "system" + }, + { + "id": 30000977, + "regionId": 10000011, + "name": "P7UZ-T", + "type": "system" + }, + { + "id": 30000978, + "regionId": 10000011, + "name": "PUZ-IO", + "type": "system" + }, + { + "id": 30000979, + "regionId": 10000011, + "name": "HB-1NJ", + "type": "system" + }, + { + "id": 30000980, + "regionId": 10000011, + "name": "EOE3-N", + "type": "system" + }, + { + "id": 30000981, + "regionId": 10000011, + "name": "F7A-MR", + "type": "system" + }, + { + "id": 30000982, + "regionId": 10000011, + "name": "O-8SOC", + "type": "system" + }, + { + "id": 30000983, + "regionId": 10000011, + "name": "OJOS-T", + "type": "system" + }, + { + "id": 30000984, + "regionId": 10000011, + "name": "V89M-R", + "type": "system" + }, + { + "id": 30000985, + "regionId": 10000011, + "name": "66U-1P", + "type": "system" + }, + { + "id": 30000986, + "regionId": 10000011, + "name": "BRT-OP", + "type": "system" + }, + { + "id": 30000987, + "regionId": 10000011, + "name": "JUK0-1", + "type": "system" + }, + { + "id": 30000988, + "regionId": 10000011, + "name": "V-IH6B", + "type": "system" + }, + { + "id": 30000989, + "regionId": 10000011, + "name": "52V6-B", + "type": "system" + }, + { + "id": 30000990, + "regionId": 10000011, + "name": "PUC-JZ", + "type": "system" + }, + { + "id": 30000991, + "regionId": 10000011, + "name": "SB-23C", + "type": "system" + }, + { + "id": 30000992, + "regionId": 10000011, + "name": "5FCV-A", + "type": "system" + }, + { + "id": 30000993, + "regionId": 10000011, + "name": "O-OVOQ", + "type": "system" + }, + { + "id": 30000994, + "regionId": 10000011, + "name": "92-B0X", + "type": "system" + }, + { + "id": 30000995, + "regionId": 10000011, + "name": "0-3VW8", + "type": "system" + }, + { + "id": 30000996, + "regionId": 10000011, + "name": "28-QWU", + "type": "system" + }, + { + "id": 30000997, + "regionId": 10000011, + "name": "UD-AOK", + "type": "system" + }, + { + "id": 30000998, + "regionId": 10000011, + "name": "M9U-75", + "type": "system" + }, + { + "id": 30000999, + "regionId": 10000011, + "name": "N-RAEL", + "type": "system" + }, + { + "id": 30001000, + "regionId": 10000011, + "name": "K-IYNW", + "type": "system" + }, + { + "id": 30001001, + "regionId": 10000012, + "name": "H-ADOC", + "type": "system" + }, + { + "id": 30001002, + "regionId": 10000012, + "name": "G-G78S", + "type": "system" + }, + { + "id": 30001003, + "regionId": 10000012, + "name": "UW9B-F", + "type": "system" + }, + { + "id": 30001004, + "regionId": 10000012, + "name": "ZZ-ZWC", + "type": "system" + }, + { + "id": 30001005, + "regionId": 10000012, + "name": "OSY-UD", + "type": "system" + }, + { + "id": 30001006, + "regionId": 10000012, + "name": "K-MGJ7", + "type": "system" + }, + { + "id": 30001007, + "regionId": 10000012, + "name": "JWJ-P1", + "type": "system" + }, + { + "id": 30001008, + "regionId": 10000012, + "name": "V-IUEL", + "type": "system" + }, + { + "id": 30001009, + "regionId": 10000012, + "name": "0SHT-A", + "type": "system" + }, + { + "id": 30001010, + "regionId": 10000012, + "name": "D87E-A", + "type": "system" + }, + { + "id": 30001011, + "regionId": 10000012, + "name": "K-B2D3", + "type": "system" + }, + { + "id": 30001012, + "regionId": 10000012, + "name": "PO4F-3", + "type": "system" + }, + { + "id": 30001013, + "regionId": 10000012, + "name": "J7A-UR", + "type": "system" + }, + { + "id": 30001014, + "regionId": 10000012, + "name": "5E-VR8", + "type": "system" + }, + { + "id": 30001015, + "regionId": 10000012, + "name": "V7D-JD", + "type": "system" + }, + { + "id": 30001016, + "regionId": 10000012, + "name": "HLW-HP", + "type": "system" + }, + { + "id": 30001017, + "regionId": 10000012, + "name": "8G-MQV", + "type": "system" + }, + { + "id": 30001018, + "regionId": 10000012, + "name": "RA-NXN", + "type": "system" + }, + { + "id": 30001019, + "regionId": 10000012, + "name": "VOL-MI", + "type": "system" + }, + { + "id": 30001020, + "regionId": 10000012, + "name": "KLMT-W", + "type": "system" + }, + { + "id": 30001021, + "regionId": 10000012, + "name": "XX9-WV", + "type": "system" + }, + { + "id": 30001022, + "regionId": 10000012, + "name": "AAM-1A", + "type": "system" + }, + { + "id": 30001023, + "regionId": 10000012, + "name": "EW-JR5", + "type": "system" + }, + { + "id": 30001024, + "regionId": 10000012, + "name": "YKE4-3", + "type": "system" + }, + { + "id": 30001025, + "regionId": 10000012, + "name": "CL-85V", + "type": "system" + }, + { + "id": 30001026, + "regionId": 10000012, + "name": "K-QWHE", + "type": "system" + }, + { + "id": 30001027, + "regionId": 10000012, + "name": "MDD-79", + "type": "system" + }, + { + "id": 30001028, + "regionId": 10000012, + "name": "RMOC-W", + "type": "system" + }, + { + "id": 30001029, + "regionId": 10000012, + "name": "ES-UWY", + "type": "system" + }, + { + "id": 30001030, + "regionId": 10000012, + "name": "S1DP-Y", + "type": "system" + }, + { + "id": 30001031, + "regionId": 10000012, + "name": "Y-DW5K", + "type": "system" + }, + { + "id": 30001032, + "regionId": 10000012, + "name": "M-N7WD", + "type": "system" + }, + { + "id": 30001033, + "regionId": 10000012, + "name": "QFEW-K", + "type": "system" + }, + { + "id": 30001034, + "regionId": 10000012, + "name": "CVY-UC", + "type": "system" + }, + { + "id": 30001035, + "regionId": 10000012, + "name": "EQX-AE", + "type": "system" + }, + { + "id": 30001036, + "regionId": 10000012, + "name": "G-R4W1", + "type": "system" + }, + { + "id": 30001037, + "regionId": 10000012, + "name": "BPK-XK", + "type": "system" + }, + { + "id": 30001038, + "regionId": 10000012, + "name": "LJ-YSW", + "type": "system" + }, + { + "id": 30001039, + "regionId": 10000012, + "name": "Y-K50G", + "type": "system" + }, + { + "id": 30001040, + "regionId": 10000012, + "name": "K88X-J", + "type": "system" + }, + { + "id": 30001041, + "regionId": 10000012, + "name": "G-0Q86", + "type": "system" + }, + { + "id": 30001042, + "regionId": 10000012, + "name": "CL-1JE", + "type": "system" + }, + { + "id": 30001043, + "regionId": 10000012, + "name": "J4UD-J", + "type": "system" + }, + { + "id": 30001044, + "regionId": 10000012, + "name": "Hemin", + "type": "system" + }, + { + "id": 30001045, + "regionId": 10000012, + "name": "Utopia", + "type": "system" + }, + { + "id": 30001046, + "regionId": 10000012, + "name": "Jorund", + "type": "system" + }, + { + "id": 30001047, + "regionId": 10000012, + "name": "Doril", + "type": "system" + }, + { + "id": 30001048, + "regionId": 10000012, + "name": "Litom", + "type": "system" + }, + { + "id": 30001049, + "regionId": 10000012, + "name": "Farit", + "type": "system" + }, + { + "id": 30001050, + "regionId": 10000012, + "name": "Jamunda", + "type": "system" + }, + { + "id": 30001051, + "regionId": 10000013, + "name": "TD-4XL", + "type": "system" + }, + { + "id": 30001052, + "regionId": 10000013, + "name": "IBOX-2", + "type": "system" + }, + { + "id": 30001053, + "regionId": 10000013, + "name": "8AB-Q4", + "type": "system" + }, + { + "id": 30001054, + "regionId": 10000013, + "name": "VW-PXL", + "type": "system" + }, + { + "id": 30001055, + "regionId": 10000013, + "name": "JA-G0T", + "type": "system" + }, + { + "id": 30001056, + "regionId": 10000013, + "name": "IF-KD1", + "type": "system" + }, + { + "id": 30001057, + "regionId": 10000013, + "name": "7-YHRX", + "type": "system" + }, + { + "id": 30001058, + "regionId": 10000013, + "name": "Y6-9LF", + "type": "system" + }, + { + "id": 30001059, + "regionId": 10000013, + "name": "X-PQEX", + "type": "system" + }, + { + "id": 30001060, + "regionId": 10000013, + "name": "N-H95C", + "type": "system" + }, + { + "id": 30001061, + "regionId": 10000013, + "name": "NSI-MW", + "type": "system" + }, + { + "id": 30001062, + "regionId": 10000013, + "name": "N-YLOE", + "type": "system" + }, + { + "id": 30001063, + "regionId": 10000013, + "name": "NBO-O0", + "type": "system" + }, + { + "id": 30001064, + "regionId": 10000013, + "name": "F-TQWO", + "type": "system" + }, + { + "id": 30001065, + "regionId": 10000013, + "name": "0-TRV1", + "type": "system" + }, + { + "id": 30001066, + "regionId": 10000013, + "name": "13-49W", + "type": "system" + }, + { + "id": 30001067, + "regionId": 10000013, + "name": "6UT-1K", + "type": "system" + }, + { + "id": 30001068, + "regionId": 10000013, + "name": "O8W-5O", + "type": "system" + }, + { + "id": 30001069, + "regionId": 10000013, + "name": "LH-PLU", + "type": "system" + }, + { + "id": 30001070, + "regionId": 10000013, + "name": "AZA-QE", + "type": "system" + }, + { + "id": 30001071, + "regionId": 10000013, + "name": "8-2JZA", + "type": "system" + }, + { + "id": 30001072, + "regionId": 10000013, + "name": "ZT-L3S", + "type": "system" + }, + { + "id": 30001073, + "regionId": 10000013, + "name": "VVB-QH", + "type": "system" + }, + { + "id": 30001074, + "regionId": 10000013, + "name": "Z-DDVJ", + "type": "system" + }, + { + "id": 30001075, + "regionId": 10000013, + "name": "7-2Z93", + "type": "system" + }, + { + "id": 30001076, + "regionId": 10000013, + "name": "B-VFDD", + "type": "system" + }, + { + "id": 30001077, + "regionId": 10000013, + "name": "A0M-R8", + "type": "system" + }, + { + "id": 30001078, + "regionId": 10000013, + "name": "LY-WRW", + "type": "system" + }, + { + "id": 30001079, + "regionId": 10000013, + "name": "9F-ERQ", + "type": "system" + }, + { + "id": 30001080, + "regionId": 10000013, + "name": "QCGG-Q", + "type": "system" + }, + { + "id": 30001081, + "regionId": 10000013, + "name": "1NZV-7", + "type": "system" + }, + { + "id": 30001082, + "regionId": 10000013, + "name": "NIM-FY", + "type": "system" + }, + { + "id": 30001083, + "regionId": 10000013, + "name": "DAI-SH", + "type": "system" + }, + { + "id": 30001084, + "regionId": 10000013, + "name": "V3P-AZ", + "type": "system" + }, + { + "id": 30001085, + "regionId": 10000013, + "name": "C-KW6X", + "type": "system" + }, + { + "id": 30001086, + "regionId": 10000013, + "name": "X1W-AL", + "type": "system" + }, + { + "id": 30001087, + "regionId": 10000013, + "name": "F-WZYG", + "type": "system" + }, + { + "id": 30001088, + "regionId": 10000013, + "name": "S-R9J2", + "type": "system" + }, + { + "id": 30001089, + "regionId": 10000013, + "name": "XU-BF8", + "type": "system" + }, + { + "id": 30001090, + "regionId": 10000013, + "name": "RIU-GC", + "type": "system" + }, + { + "id": 30001091, + "regionId": 10000013, + "name": "Z0H2-4", + "type": "system" + }, + { + "id": 30001092, + "regionId": 10000013, + "name": "63-7Q6", + "type": "system" + }, + { + "id": 30001093, + "regionId": 10000013, + "name": "XCZ5-Y", + "type": "system" + }, + { + "id": 30001094, + "regionId": 10000013, + "name": "NRD-5Q", + "type": "system" + }, + { + "id": 30001095, + "regionId": 10000013, + "name": "W5-205", + "type": "system" + }, + { + "id": 30001096, + "regionId": 10000013, + "name": "T-4H0B", + "type": "system" + }, + { + "id": 30001097, + "regionId": 10000013, + "name": "Z-EKCY", + "type": "system" + }, + { + "id": 30001098, + "regionId": 10000013, + "name": "SH-YZY", + "type": "system" + }, + { + "id": 30001099, + "regionId": 10000013, + "name": "O7-RFZ", + "type": "system" + }, + { + "id": 30001100, + "regionId": 10000013, + "name": "CLW-SI", + "type": "system" + }, + { + "id": 30001101, + "regionId": 10000013, + "name": "5-A0PX", + "type": "system" + }, + { + "id": 30001102, + "regionId": 10000013, + "name": "R-RMDH", + "type": "system" + }, + { + "id": 30001103, + "regionId": 10000013, + "name": "2XI8-Y", + "type": "system" + }, + { + "id": 30001104, + "regionId": 10000013, + "name": "5B-YDD", + "type": "system" + }, + { + "id": 30001105, + "regionId": 10000013, + "name": "W-XY4J", + "type": "system" + }, + { + "id": 30001106, + "regionId": 10000013, + "name": "PWPY-4", + "type": "system" + }, + { + "id": 30001107, + "regionId": 10000013, + "name": "QZ1-OH", + "type": "system" + }, + { + "id": 30001108, + "regionId": 10000013, + "name": "Y-XZA7", + "type": "system" + }, + { + "id": 30001109, + "regionId": 10000013, + "name": "1-EVAX", + "type": "system" + }, + { + "id": 30001110, + "regionId": 10000013, + "name": "I8-AJY", + "type": "system" + }, + { + "id": 30001111, + "regionId": 10000013, + "name": "6-WMKE", + "type": "system" + }, + { + "id": 30001112, + "regionId": 10000013, + "name": "J-Z8C2", + "type": "system" + }, + { + "id": 30001113, + "regionId": 10000013, + "name": "XTVZ-E", + "type": "system" + }, + { + "id": 30001114, + "regionId": 10000013, + "name": "APES-G", + "type": "system" + }, + { + "id": 30001115, + "regionId": 10000013, + "name": "B2J-5N", + "type": "system" + }, + { + "id": 30001116, + "regionId": 10000013, + "name": "2Z-HPQ", + "type": "system" + }, + { + "id": 30001117, + "regionId": 10000013, + "name": "NBW-GD", + "type": "system" + }, + { + "id": 30001118, + "regionId": 10000013, + "name": "YM-SRU", + "type": "system" + }, + { + "id": 30001119, + "regionId": 10000013, + "name": "LO5-LN", + "type": "system" + }, + { + "id": 30001120, + "regionId": 10000013, + "name": "06-70G", + "type": "system" + }, + { + "id": 30001121, + "regionId": 10000013, + "name": "UYG-YX", + "type": "system" + }, + { + "id": 30001122, + "regionId": 10000013, + "name": "GL6S-2", + "type": "system" + }, + { + "id": 30001123, + "regionId": 10000013, + "name": "RUF3-O", + "type": "system" + }, + { + "id": 30001124, + "regionId": 10000013, + "name": "C-NMG9", + "type": "system" + }, + { + "id": 30001125, + "regionId": 10000013, + "name": "P3X-TN", + "type": "system" + }, + { + "id": 30001126, + "regionId": 10000013, + "name": "N6NK-J", + "type": "system" + }, + { + "id": 30001127, + "regionId": 10000013, + "name": "TP-APY", + "type": "system" + }, + { + "id": 30001128, + "regionId": 10000013, + "name": "9NI-FW", + "type": "system" + }, + { + "id": 30001129, + "regionId": 10000013, + "name": "H-EBQG", + "type": "system" + }, + { + "id": 30001130, + "regionId": 10000013, + "name": "DOA-YU", + "type": "system" + }, + { + "id": 30001131, + "regionId": 10000013, + "name": "ZOPZ-6", + "type": "system" + }, + { + "id": 30001132, + "regionId": 10000013, + "name": "863P-X", + "type": "system" + }, + { + "id": 30001133, + "regionId": 10000013, + "name": "ZO-YJZ", + "type": "system" + }, + { + "id": 30001134, + "regionId": 10000013, + "name": "6A-FUY", + "type": "system" + }, + { + "id": 30001135, + "regionId": 10000013, + "name": "HG-YEQ", + "type": "system" + }, + { + "id": 30001136, + "regionId": 10000013, + "name": "2FL-5W", + "type": "system" + }, + { + "id": 30001137, + "regionId": 10000013, + "name": "QSCO-D", + "type": "system" + }, + { + "id": 30001138, + "regionId": 10000013, + "name": "RXTY-4", + "type": "system" + }, + { + "id": 30001139, + "regionId": 10000013, + "name": "RSE-PT", + "type": "system" + }, + { + "id": 30001140, + "regionId": 10000013, + "name": "WVJU-4", + "type": "system" + }, + { + "id": 30001141, + "regionId": 10000013, + "name": "7T-0QS", + "type": "system" + }, + { + "id": 30001142, + "regionId": 10000013, + "name": "RWML-A", + "type": "system" + }, + { + "id": 30001143, + "regionId": 10000013, + "name": "V-JCJS", + "type": "system" + }, + { + "id": 30001144, + "regionId": 10000013, + "name": "8C-VE3", + "type": "system" + }, + { + "id": 30001145, + "regionId": 10000013, + "name": "S5W-1Z", + "type": "system" + }, + { + "id": 30001146, + "regionId": 10000013, + "name": "IL-OL1", + "type": "system" + }, + { + "id": 30001147, + "regionId": 10000013, + "name": "POQP-K", + "type": "system" + }, + { + "id": 30001148, + "regionId": 10000013, + "name": "FO9-FZ", + "type": "system" + }, + { + "id": 30001149, + "regionId": 10000013, + "name": "4QY-NT", + "type": "system" + }, + { + "id": 30001150, + "regionId": 10000013, + "name": "0-N1BJ", + "type": "system" + }, + { + "id": 30001151, + "regionId": 10000013, + "name": "T-8GWA", + "type": "system" + }, + { + "id": 30001152, + "regionId": 10000013, + "name": "UW-6MW", + "type": "system" + }, + { + "id": 30001153, + "regionId": 10000014, + "name": "F9E-KX", + "type": "system" + }, + { + "id": 30001154, + "regionId": 10000014, + "name": "9KOE-A", + "type": "system" + }, + { + "id": 30001155, + "regionId": 10000014, + "name": "U-QVWD", + "type": "system" + }, + { + "id": 30001156, + "regionId": 10000014, + "name": "B-3QPD", + "type": "system" + }, + { + "id": 30001157, + "regionId": 10000014, + "name": "36N-HZ", + "type": "system" + }, + { + "id": 30001158, + "regionId": 10000014, + "name": "SV5-8N", + "type": "system" + }, + { + "id": 30001159, + "regionId": 10000014, + "name": "HY-RWO", + "type": "system" + }, + { + "id": 30001160, + "regionId": 10000014, + "name": "WD-VTV", + "type": "system" + }, + { + "id": 30001161, + "regionId": 10000014, + "name": "HED-GP", + "type": "system" + }, + { + "id": 30001162, + "regionId": 10000014, + "name": "V-3YG7", + "type": "system" + }, + { + "id": 30001163, + "regionId": 10000014, + "name": "QSM-LM", + "type": "system" + }, + { + "id": 30001164, + "regionId": 10000014, + "name": "KDF-GY", + "type": "system" + }, + { + "id": 30001165, + "regionId": 10000014, + "name": "QBQ-RF", + "type": "system" + }, + { + "id": 30001166, + "regionId": 10000014, + "name": "9-8GBA", + "type": "system" + }, + { + "id": 30001167, + "regionId": 10000014, + "name": "6-K738", + "type": "system" + }, + { + "id": 30001168, + "regionId": 10000014, + "name": "ZXIC-7", + "type": "system" + }, + { + "id": 30001169, + "regionId": 10000014, + "name": "2J-WJY", + "type": "system" + }, + { + "id": 30001170, + "regionId": 10000014, + "name": "1P-WGB", + "type": "system" + }, + { + "id": 30001171, + "regionId": 10000014, + "name": "F4R2-Q", + "type": "system" + }, + { + "id": 30001172, + "regionId": 10000014, + "name": "K0CN-3", + "type": "system" + }, + { + "id": 30001173, + "regionId": 10000014, + "name": "WLAR-J", + "type": "system" + }, + { + "id": 30001174, + "regionId": 10000014, + "name": "L7XS-5", + "type": "system" + }, + { + "id": 30001175, + "regionId": 10000014, + "name": "VA6-DR", + "type": "system" + }, + { + "id": 30001176, + "regionId": 10000014, + "name": "S-U2VD", + "type": "system" + }, + { + "id": 30001177, + "regionId": 10000014, + "name": "GE-94X", + "type": "system" + }, + { + "id": 30001178, + "regionId": 10000014, + "name": "GMLH-K", + "type": "system" + }, + { + "id": 30001179, + "regionId": 10000014, + "name": "W9-DID", + "type": "system" + }, + { + "id": 30001180, + "regionId": 10000014, + "name": "KW-I6T", + "type": "system" + }, + { + "id": 30001181, + "regionId": 10000014, + "name": "EX-0LQ", + "type": "system" + }, + { + "id": 30001182, + "regionId": 10000014, + "name": "MB-NKE", + "type": "system" + }, + { + "id": 30001183, + "regionId": 10000014, + "name": "G-7WUF", + "type": "system" + }, + { + "id": 30001184, + "regionId": 10000014, + "name": "6-MM99", + "type": "system" + }, + { + "id": 30001185, + "regionId": 10000014, + "name": "JBY6-F", + "type": "system" + }, + { + "id": 30001186, + "regionId": 10000014, + "name": "FZ-6A5", + "type": "system" + }, + { + "id": 30001187, + "regionId": 10000014, + "name": "RNF-YH", + "type": "system" + }, + { + "id": 30001188, + "regionId": 10000014, + "name": "I-8D0G", + "type": "system" + }, + { + "id": 30001189, + "regionId": 10000014, + "name": "R-K4QY", + "type": "system" + }, + { + "id": 30001190, + "regionId": 10000014, + "name": "JWZ2-V", + "type": "system" + }, + { + "id": 30001191, + "regionId": 10000014, + "name": "OGL8-Q", + "type": "system" + }, + { + "id": 30001192, + "regionId": 10000014, + "name": "GJ0-OJ", + "type": "system" + }, + { + "id": 30001193, + "regionId": 10000014, + "name": "A-803L", + "type": "system" + }, + { + "id": 30001194, + "regionId": 10000014, + "name": "WQH-4K", + "type": "system" + }, + { + "id": 30001195, + "regionId": 10000014, + "name": "J-ODE7", + "type": "system" + }, + { + "id": 30001196, + "regionId": 10000014, + "name": "Q-S7ZD", + "type": "system" + }, + { + "id": 30001197, + "regionId": 10000014, + "name": "6X7-JO", + "type": "system" + }, + { + "id": 30001198, + "regionId": 10000014, + "name": "GE-8JV", + "type": "system" + }, + { + "id": 30001199, + "regionId": 10000014, + "name": "3-OKDA", + "type": "system" + }, + { + "id": 30001200, + "regionId": 10000014, + "name": "3GD6-8", + "type": "system" + }, + { + "id": 30001201, + "regionId": 10000014, + "name": "4M-HGL", + "type": "system" + }, + { + "id": 30001202, + "regionId": 10000014, + "name": "MY-W1V", + "type": "system" + }, + { + "id": 30001203, + "regionId": 10000014, + "name": "AX-DOT", + "type": "system" + }, + { + "id": 30001204, + "regionId": 10000014, + "name": "YHN-3K", + "type": "system" + }, + { + "id": 30001205, + "regionId": 10000014, + "name": "CB4-Q2", + "type": "system" + }, + { + "id": 30001206, + "regionId": 10000014, + "name": "CBL-XP", + "type": "system" + }, + { + "id": 30001207, + "regionId": 10000014, + "name": "WJ-9YO", + "type": "system" + }, + { + "id": 30001208, + "regionId": 10000014, + "name": "UQ-PWD", + "type": "system" + }, + { + "id": 30001209, + "regionId": 10000014, + "name": "N-8BZ6", + "type": "system" + }, + { + "id": 30001210, + "regionId": 10000014, + "name": "A-VILQ", + "type": "system" + }, + { + "id": 30001211, + "regionId": 10000014, + "name": "X3FQ-W", + "type": "system" + }, + { + "id": 30001212, + "regionId": 10000014, + "name": "3-SFWG", + "type": "system" + }, + { + "id": 30001213, + "regionId": 10000014, + "name": "MUXX-4", + "type": "system" + }, + { + "id": 30001214, + "regionId": 10000014, + "name": "E1-4YH", + "type": "system" + }, + { + "id": 30001215, + "regionId": 10000014, + "name": "B-XJX4", + "type": "system" + }, + { + "id": 30001216, + "regionId": 10000014, + "name": "AOK-WQ", + "type": "system" + }, + { + "id": 30001217, + "regionId": 10000014, + "name": "E3-SDZ", + "type": "system" + }, + { + "id": 30001218, + "regionId": 10000014, + "name": "7LHB-Z", + "type": "system" + }, + { + "id": 30001219, + "regionId": 10000014, + "name": "8B-2YA", + "type": "system" + }, + { + "id": 30001220, + "regionId": 10000014, + "name": "SNFV-I", + "type": "system" + }, + { + "id": 30001221, + "regionId": 10000014, + "name": "HP-64T", + "type": "system" + }, + { + "id": 30001222, + "regionId": 10000014, + "name": "V2-VC2", + "type": "system" + }, + { + "id": 30001223, + "regionId": 10000014, + "name": "L-B55M", + "type": "system" + }, + { + "id": 30001224, + "regionId": 10000014, + "name": "CX65-5", + "type": "system" + }, + { + "id": 30001225, + "regionId": 10000014, + "name": "JA-O6J", + "type": "system" + }, + { + "id": 30001226, + "regionId": 10000014, + "name": "ZQ-Z3Y", + "type": "system" + }, + { + "id": 30001227, + "regionId": 10000014, + "name": "G-AOTH", + "type": "system" + }, + { + "id": 30001228, + "regionId": 10000014, + "name": "TA3T-3", + "type": "system" + }, + { + "id": 30001229, + "regionId": 10000014, + "name": "E-YJ8G", + "type": "system" + }, + { + "id": 30001230, + "regionId": 10000014, + "name": "J6QB-P", + "type": "system" + }, + { + "id": 30001231, + "regionId": 10000014, + "name": "KA6D-K", + "type": "system" + }, + { + "id": 30001232, + "regionId": 10000014, + "name": "7MD-S1", + "type": "system" + }, + { + "id": 30001233, + "regionId": 10000014, + "name": "ERVK-P", + "type": "system" + }, + { + "id": 30001234, + "regionId": 10000014, + "name": "UL-7I8", + "type": "system" + }, + { + "id": 30001235, + "regionId": 10000014, + "name": "BR-N97", + "type": "system" + }, + { + "id": 30001236, + "regionId": 10000014, + "name": "IS-R7P", + "type": "system" + }, + { + "id": 30001237, + "regionId": 10000014, + "name": "S25C-K", + "type": "system" + }, + { + "id": 30001238, + "regionId": 10000014, + "name": "K717-8", + "type": "system" + }, + { + "id": 30001239, + "regionId": 10000014, + "name": "NH-1X6", + "type": "system" + }, + { + "id": 30001240, + "regionId": 10000014, + "name": "KH0Z-0", + "type": "system" + }, + { + "id": 30001241, + "regionId": 10000014, + "name": "5-N2EY", + "type": "system" + }, + { + "id": 30001242, + "regionId": 10000014, + "name": "KB-U56", + "type": "system" + }, + { + "id": 30001243, + "regionId": 10000014, + "name": "JGW-OT", + "type": "system" + }, + { + "id": 30001244, + "regionId": 10000014, + "name": "UCG4-B", + "type": "system" + }, + { + "id": 30001245, + "regionId": 10000014, + "name": "BUZ-DB", + "type": "system" + }, + { + "id": 30001246, + "regionId": 10000014, + "name": "QETZ-W", + "type": "system" + }, + { + "id": 30001247, + "regionId": 10000014, + "name": "WFC-MY", + "type": "system" + }, + { + "id": 30001248, + "regionId": 10000014, + "name": "Q-U96U", + "type": "system" + }, + { + "id": 30001249, + "regionId": 10000014, + "name": "X4-WL0", + "type": "system" + }, + { + "id": 30001250, + "regionId": 10000014, + "name": "W-MPTH", + "type": "system" + }, + { + "id": 30001251, + "regionId": 10000014, + "name": "4NBN-9", + "type": "system" + }, + { + "id": 30001252, + "regionId": 10000014, + "name": "EX6-AO", + "type": "system" + }, + { + "id": 30001253, + "regionId": 10000014, + "name": "CZK-ZQ", + "type": "system" + }, + { + "id": 30001254, + "regionId": 10000014, + "name": "CNC-4V", + "type": "system" + }, + { + "id": 30001255, + "regionId": 10000014, + "name": "Y-PNRL", + "type": "system" + }, + { + "id": 30001256, + "regionId": 10000014, + "name": "FAT-6P", + "type": "system" + }, + { + "id": 30001257, + "regionId": 10000014, + "name": "6BPS-T", + "type": "system" + }, + { + "id": 30001258, + "regionId": 10000014, + "name": "25S-6P", + "type": "system" + }, + { + "id": 30001259, + "regionId": 10000014, + "name": "RR-D05", + "type": "system" + }, + { + "id": 30001260, + "regionId": 10000014, + "name": "4-07MU", + "type": "system" + }, + { + "id": 30001261, + "regionId": 10000015, + "name": "Y-W1Q3", + "type": "system" + }, + { + "id": 30001262, + "regionId": 10000015, + "name": "Y6-HPG", + "type": "system" + }, + { + "id": 30001263, + "regionId": 10000015, + "name": "Z-GY5S", + "type": "system" + }, + { + "id": 30001264, + "regionId": 10000015, + "name": "KK-L97", + "type": "system" + }, + { + "id": 30001265, + "regionId": 10000015, + "name": "R-KZK7", + "type": "system" + }, + { + "id": 30001266, + "regionId": 10000015, + "name": "9-R6GU", + "type": "system" + }, + { + "id": 30001267, + "regionId": 10000015, + "name": "N-Q5PW", + "type": "system" + }, + { + "id": 30001268, + "regionId": 10000015, + "name": "P-FSQE", + "type": "system" + }, + { + "id": 30001269, + "regionId": 10000015, + "name": "H-PA29", + "type": "system" + }, + { + "id": 30001270, + "regionId": 10000015, + "name": "1-Y6KI", + "type": "system" + }, + { + "id": 30001271, + "regionId": 10000015, + "name": "YP-J33", + "type": "system" + }, + { + "id": 30001272, + "regionId": 10000015, + "name": "D-8SI1", + "type": "system" + }, + { + "id": 30001273, + "regionId": 10000015, + "name": "9-266Q", + "type": "system" + }, + { + "id": 30001274, + "regionId": 10000015, + "name": "K3JR-J", + "type": "system" + }, + { + "id": 30001275, + "regionId": 10000015, + "name": "CSOA-B", + "type": "system" + }, + { + "id": 30001276, + "regionId": 10000015, + "name": "6W-HRH", + "type": "system" + }, + { + "id": 30001277, + "regionId": 10000015, + "name": "N5Y-4N", + "type": "system" + }, + { + "id": 30001278, + "regionId": 10000015, + "name": "MQFX-Q", + "type": "system" + }, + { + "id": 30001279, + "regionId": 10000015, + "name": "9-8BL8", + "type": "system" + }, + { + "id": 30001280, + "regionId": 10000015, + "name": "N6G-H3", + "type": "system" + }, + { + "id": 30001281, + "regionId": 10000015, + "name": "3A1P-N", + "type": "system" + }, + { + "id": 30001282, + "regionId": 10000015, + "name": "OZ-VAE", + "type": "system" + }, + { + "id": 30001283, + "regionId": 10000015, + "name": "A-AFGR", + "type": "system" + }, + { + "id": 30001284, + "regionId": 10000015, + "name": "92K-H2", + "type": "system" + }, + { + "id": 30001285, + "regionId": 10000015, + "name": "AA-YRK", + "type": "system" + }, + { + "id": 30001286, + "regionId": 10000015, + "name": "BV-1JG", + "type": "system" + }, + { + "id": 30001287, + "regionId": 10000015, + "name": "0-BFTQ", + "type": "system" + }, + { + "id": 30001288, + "regionId": 10000015, + "name": "SS-GED", + "type": "system" + }, + { + "id": 30001289, + "regionId": 10000015, + "name": "AJCJ-1", + "type": "system" + }, + { + "id": 30001290, + "regionId": 10000015, + "name": "6NJ8-V", + "type": "system" + }, + { + "id": 30001291, + "regionId": 10000015, + "name": "Y-4CFK", + "type": "system" + }, + { + "id": 30001292, + "regionId": 10000015, + "name": "HBD-CC", + "type": "system" + }, + { + "id": 30001293, + "regionId": 10000015, + "name": "P-GKF5", + "type": "system" + }, + { + "id": 30001294, + "regionId": 10000015, + "name": "E-7U8U", + "type": "system" + }, + { + "id": 30001295, + "regionId": 10000015, + "name": "0-XIDJ", + "type": "system" + }, + { + "id": 30001296, + "regionId": 10000015, + "name": "SBL5-R", + "type": "system" + }, + { + "id": 30001297, + "regionId": 10000015, + "name": "O-TVTD", + "type": "system" + }, + { + "id": 30001298, + "regionId": 10000015, + "name": "8CIX-S", + "type": "system" + }, + { + "id": 30001299, + "regionId": 10000015, + "name": "D-SKWC", + "type": "system" + }, + { + "id": 30001300, + "regionId": 10000015, + "name": "4RX-EE", + "type": "system" + }, + { + "id": 30001301, + "regionId": 10000015, + "name": "V3X-L8", + "type": "system" + }, + { + "id": 30001302, + "regionId": 10000015, + "name": "N0C-UN", + "type": "system" + }, + { + "id": 30001303, + "regionId": 10000015, + "name": "VG-6CH", + "type": "system" + }, + { + "id": 30001304, + "regionId": 10000015, + "name": "Z0-TJW", + "type": "system" + }, + { + "id": 30001305, + "regionId": 10000015, + "name": "QHJ-FW", + "type": "system" + }, + { + "id": 30001306, + "regionId": 10000015, + "name": "9IPC-E", + "type": "system" + }, + { + "id": 30001307, + "regionId": 10000015, + "name": "EIV-1W", + "type": "system" + }, + { + "id": 30001308, + "regionId": 10000015, + "name": "S-1ZXZ", + "type": "system" + }, + { + "id": 30001309, + "regionId": 10000015, + "name": "N-5476", + "type": "system" + }, + { + "id": 30001310, + "regionId": 10000015, + "name": "PZOZ-K", + "type": "system" + }, + { + "id": 30001311, + "regionId": 10000015, + "name": "W3KK-R", + "type": "system" + }, + { + "id": 30001312, + "regionId": 10000015, + "name": "92D-OI", + "type": "system" + }, + { + "id": 30001313, + "regionId": 10000015, + "name": "EK2-ET", + "type": "system" + }, + { + "id": 30001314, + "regionId": 10000015, + "name": "SE-SHZ", + "type": "system" + }, + { + "id": 30001315, + "regionId": 10000015, + "name": "JURU-T", + "type": "system" + }, + { + "id": 30001316, + "regionId": 10000015, + "name": "MC6-5J", + "type": "system" + }, + { + "id": 30001317, + "regionId": 10000015, + "name": "65V-RH", + "type": "system" + }, + { + "id": 30001318, + "regionId": 10000015, + "name": "4-7IL9", + "type": "system" + }, + { + "id": 30001319, + "regionId": 10000015, + "name": "2PLH-3", + "type": "system" + }, + { + "id": 30001320, + "regionId": 10000015, + "name": "RQ9-OZ", + "type": "system" + }, + { + "id": 30001321, + "regionId": 10000015, + "name": "B-CZXG", + "type": "system" + }, + { + "id": 30001322, + "regionId": 10000015, + "name": "0-O2UT", + "type": "system" + }, + { + "id": 30001323, + "regionId": 10000015, + "name": "Q61Y-F", + "type": "system" + }, + { + "id": 30001324, + "regionId": 10000015, + "name": "PF-QHK", + "type": "system" + }, + { + "id": 30001325, + "regionId": 10000015, + "name": "XW-6TC", + "type": "system" + }, + { + "id": 30001326, + "regionId": 10000015, + "name": "Q-7SUI", + "type": "system" + }, + { + "id": 30001327, + "regionId": 10000015, + "name": "VVD-O6", + "type": "system" + }, + { + "id": 30001328, + "regionId": 10000015, + "name": "6ZJ-SC", + "type": "system" + }, + { + "id": 30001329, + "regionId": 10000015, + "name": "P-VYVL", + "type": "system" + }, + { + "id": 30001330, + "regionId": 10000015, + "name": "HD-JVQ", + "type": "system" + }, + { + "id": 30001331, + "regionId": 10000015, + "name": "H-AJ27", + "type": "system" + }, + { + "id": 30001332, + "regionId": 10000015, + "name": "M2-2V1", + "type": "system" + }, + { + "id": 30001333, + "regionId": 10000015, + "name": "2TH-3F", + "type": "system" + }, + { + "id": 30001334, + "regionId": 10000015, + "name": "E1F-E5", + "type": "system" + }, + { + "id": 30001335, + "regionId": 10000015, + "name": "4S-PVC", + "type": "system" + }, + { + "id": 30001336, + "regionId": 10000015, + "name": "WLF-D3", + "type": "system" + }, + { + "id": 30001337, + "regionId": 10000015, + "name": "LHJ-2G", + "type": "system" + }, + { + "id": 30001338, + "regionId": 10000015, + "name": "SHJO-J", + "type": "system" + }, + { + "id": 30001339, + "regionId": 10000015, + "name": "6UQ-4U", + "type": "system" + }, + { + "id": 30001340, + "regionId": 10000015, + "name": "430-BE", + "type": "system" + }, + { + "id": 30001341, + "regionId": 10000015, + "name": "OJ-CT4", + "type": "system" + }, + { + "id": 30001342, + "regionId": 10000015, + "name": "AZ-UWB", + "type": "system" + }, + { + "id": 30001343, + "regionId": 10000015, + "name": "H-S5BM", + "type": "system" + }, + { + "id": 30001344, + "regionId": 10000015, + "name": "FHB-QA", + "type": "system" + }, + { + "id": 30001345, + "regionId": 10000015, + "name": "Z3U-GI", + "type": "system" + }, + { + "id": 30001346, + "regionId": 10000015, + "name": "B3QP-K", + "type": "system" + }, + { + "id": 30001347, + "regionId": 10000015, + "name": "GVZ-1W", + "type": "system" + }, + { + "id": 30001348, + "regionId": 10000015, + "name": "G9D-XW", + "type": "system" + }, + { + "id": 30001349, + "regionId": 10000015, + "name": "42XJ-N", + "type": "system" + }, + { + "id": 30001350, + "regionId": 10000015, + "name": "L-IE41", + "type": "system" + }, + { + "id": 30001351, + "regionId": 10000015, + "name": "VG-QW1", + "type": "system" + }, + { + "id": 30001352, + "regionId": 10000015, + "name": "2IBE-N", + "type": "system" + }, + { + "id": 30001353, + "regionId": 10000015, + "name": "YJ3-UT", + "type": "system" + }, + { + "id": 30001354, + "regionId": 10000015, + "name": "ZD4-G9", + "type": "system" + }, + { + "id": 30001355, + "regionId": 10000015, + "name": "C2-DDA", + "type": "system" + }, + { + "id": 30001356, + "regionId": 10000016, + "name": "Dantumi", + "type": "system" + }, + { + "id": 30001357, + "regionId": 10000016, + "name": "Antiainen", + "type": "system" + }, + { + "id": 30001358, + "regionId": 10000016, + "name": "Ossa", + "type": "system" + }, + { + "id": 30001359, + "regionId": 10000016, + "name": "Semiki", + "type": "system" + }, + { + "id": 30001360, + "regionId": 10000016, + "name": "Kiskoken", + "type": "system" + }, + { + "id": 30001361, + "regionId": 10000016, + "name": "Aurohunen", + "type": "system" + }, + { + "id": 30001362, + "regionId": 10000016, + "name": "Veisto", + "type": "system" + }, + { + "id": 30001363, + "regionId": 10000016, + "name": "Sobaseki", + "type": "system" + }, + { + "id": 30001364, + "regionId": 10000016, + "name": "Funtanainen", + "type": "system" + }, + { + "id": 30001365, + "regionId": 10000016, + "name": "Isikemi", + "type": "system" + }, + { + "id": 30001366, + "regionId": 10000016, + "name": "Uosusuokko", + "type": "system" + }, + { + "id": 30001367, + "regionId": 10000016, + "name": "Hageken", + "type": "system" + }, + { + "id": 30001368, + "regionId": 10000016, + "name": "Uemisaisen", + "type": "system" + }, + { + "id": 30001369, + "regionId": 10000016, + "name": "Sotrentaira", + "type": "system" + }, + { + "id": 30001370, + "regionId": 10000016, + "name": "Ouranienen", + "type": "system" + }, + { + "id": 30001371, + "regionId": 10000016, + "name": "Erenta", + "type": "system" + }, + { + "id": 30001372, + "regionId": 10000070, + "name": "Kino", + "type": "system" + }, + { + "id": 30001373, + "regionId": 10000016, + "name": "Raussinen", + "type": "system" + }, + { + "id": 30001374, + "regionId": 10000016, + "name": "Iidoken", + "type": "system" + }, + { + "id": 30001375, + "regionId": 10000016, + "name": "Tsuguwa", + "type": "system" + }, + { + "id": 30001376, + "regionId": 10000016, + "name": "Nourvukaiken", + "type": "system" + }, + { + "id": 30001377, + "regionId": 10000016, + "name": "Sarekuwa", + "type": "system" + }, + { + "id": 30001378, + "regionId": 10000016, + "name": "Ekura", + "type": "system" + }, + { + "id": 30001379, + "regionId": 10000016, + "name": "Tunttaras", + "type": "system" + }, + { + "id": 30001380, + "regionId": 10000016, + "name": "Vellaine", + "type": "system" + }, + { + "id": 30001381, + "regionId": 10000070, + "name": "Arvasaras", + "type": "system" + }, + { + "id": 30001382, + "regionId": 10000016, + "name": "Akonoinen", + "type": "system" + }, + { + "id": 30001383, + "regionId": 10000016, + "name": "Vaajaita", + "type": "system" + }, + { + "id": 30001384, + "regionId": 10000016, + "name": "Autaris", + "type": "system" + }, + { + "id": 30001385, + "regionId": 10000016, + "name": "Jan", + "type": "system" + }, + { + "id": 30001386, + "regionId": 10000016, + "name": "Saatuban", + "type": "system" + }, + { + "id": 30001387, + "regionId": 10000016, + "name": "Isikano", + "type": "system" + }, + { + "id": 30001388, + "regionId": 10000016, + "name": "Mara", + "type": "system" + }, + { + "id": 30001389, + "regionId": 10000016, + "name": "Isanamo", + "type": "system" + }, + { + "id": 30001390, + "regionId": 10000016, + "name": "Pakkonen", + "type": "system" + }, + { + "id": 30001391, + "regionId": 10000016, + "name": "Piekura", + "type": "system" + }, + { + "id": 30001392, + "regionId": 10000016, + "name": "Amsen", + "type": "system" + }, + { + "id": 30001393, + "regionId": 10000016, + "name": "Malkalen", + "type": "system" + }, + { + "id": 30001394, + "regionId": 10000016, + "name": "Korama", + "type": "system" + }, + { + "id": 30001395, + "regionId": 10000016, + "name": "Ylandoki", + "type": "system" + }, + { + "id": 30001396, + "regionId": 10000016, + "name": "Aakari", + "type": "system" + }, + { + "id": 30001397, + "regionId": 10000016, + "name": "Isseras", + "type": "system" + }, + { + "id": 30001398, + "regionId": 10000016, + "name": "Aunenen", + "type": "system" + }, + { + "id": 30001399, + "regionId": 10000016, + "name": "Elonaya", + "type": "system" + }, + { + "id": 30001400, + "regionId": 10000016, + "name": "Litiura", + "type": "system" + }, + { + "id": 30001401, + "regionId": 10000016, + "name": "Nonni", + "type": "system" + }, + { + "id": 30001402, + "regionId": 10000016, + "name": "Passari", + "type": "system" + }, + { + "id": 30001403, + "regionId": 10000016, + "name": "Piak", + "type": "system" + }, + { + "id": 30001404, + "regionId": 10000016, + "name": "Airkio", + "type": "system" + }, + { + "id": 30001405, + "regionId": 10000016, + "name": "Kakakela", + "type": "system" + }, + { + "id": 30001406, + "regionId": 10000016, + "name": "Kamokor", + "type": "system" + }, + { + "id": 30001407, + "regionId": 10000016, + "name": "Todaki", + "type": "system" + }, + { + "id": 30001408, + "regionId": 10000016, + "name": "Ruvas", + "type": "system" + }, + { + "id": 30001409, + "regionId": 10000016, + "name": "Umokka", + "type": "system" + }, + { + "id": 30001410, + "regionId": 10000016, + "name": "Kirras", + "type": "system" + }, + { + "id": 30001411, + "regionId": 10000016, + "name": "Autama", + "type": "system" + }, + { + "id": 30001412, + "regionId": 10000016, + "name": "Tsukuras", + "type": "system" + }, + { + "id": 30001413, + "regionId": 10000070, + "name": "Nani", + "type": "system" + }, + { + "id": 30001414, + "regionId": 10000016, + "name": "Ajanen", + "type": "system" + }, + { + "id": 30001415, + "regionId": 10000016, + "name": "Kuoka", + "type": "system" + }, + { + "id": 30001416, + "regionId": 10000016, + "name": "Liukikka", + "type": "system" + }, + { + "id": 30001417, + "regionId": 10000016, + "name": "Rauntaka", + "type": "system" + }, + { + "id": 30001418, + "regionId": 10000016, + "name": "Aikantoh", + "type": "system" + }, + { + "id": 30001419, + "regionId": 10000016, + "name": "Atai", + "type": "system" + }, + { + "id": 30001420, + "regionId": 10000016, + "name": "Daras", + "type": "system" + }, + { + "id": 30001421, + "regionId": 10000016, + "name": "Otalieto", + "type": "system" + }, + { + "id": 30001422, + "regionId": 10000016, + "name": "Iitanmadan", + "type": "system" + }, + { + "id": 30001423, + "regionId": 10000016, + "name": "Jotenen", + "type": "system" + }, + { + "id": 30001424, + "regionId": 10000016, + "name": "Haajinen", + "type": "system" + }, + { + "id": 30001425, + "regionId": 10000016, + "name": "Oipo", + "type": "system" + }, + { + "id": 30001426, + "regionId": 10000016, + "name": "Isinokka", + "type": "system" + }, + { + "id": 30001427, + "regionId": 10000016, + "name": "Yoma", + "type": "system" + }, + { + "id": 30001428, + "regionId": 10000016, + "name": "Ibura", + "type": "system" + }, + { + "id": 30001429, + "regionId": 10000016, + "name": "Torrinos", + "type": "system" + }, + { + "id": 30001430, + "regionId": 10000016, + "name": "Endatoh", + "type": "system" + }, + { + "id": 30001431, + "regionId": 10000016, + "name": "Aivoli", + "type": "system" + }, + { + "id": 30001432, + "regionId": 10000016, + "name": "Uesuro", + "type": "system" + }, + { + "id": 30001433, + "regionId": 10000016, + "name": "Oishami", + "type": "system" + }, + { + "id": 30001434, + "regionId": 10000016, + "name": "Elanoda", + "type": "system" + }, + { + "id": 30001435, + "regionId": 10000016, + "name": "Ohbochi", + "type": "system" + }, + { + "id": 30001436, + "regionId": 10000016, + "name": "Isie", + "type": "system" + }, + { + "id": 30001437, + "regionId": 10000016, + "name": "Tamo", + "type": "system" + }, + { + "id": 30001438, + "regionId": 10000016, + "name": "Nannaras", + "type": "system" + }, + { + "id": 30001439, + "regionId": 10000016, + "name": "Anin", + "type": "system" + }, + { + "id": 30001440, + "regionId": 10000016, + "name": "Karjataimon", + "type": "system" + }, + { + "id": 30001441, + "regionId": 10000016, + "name": "Tartoken", + "type": "system" + }, + { + "id": 30001442, + "regionId": 10000016, + "name": "Saranen", + "type": "system" + }, + { + "id": 30001443, + "regionId": 10000016, + "name": "Vuorrassi", + "type": "system" + }, + { + "id": 30001444, + "regionId": 10000016, + "name": "Oimmo", + "type": "system" + }, + { + "id": 30001445, + "regionId": 10000070, + "name": "Nalvula", + "type": "system" + }, + { + "id": 30001446, + "regionId": 10000016, + "name": "Otsasai", + "type": "system" + }, + { + "id": 30001447, + "regionId": 10000016, + "name": "Taisy", + "type": "system" + }, + { + "id": 30001448, + "regionId": 10000016, + "name": "Hakonen", + "type": "system" + }, + { + "id": 30001449, + "regionId": 10000017, + "name": "PZP1-D", + "type": "system" + }, + { + "id": 30001450, + "regionId": 10000017, + "name": "R1KE-A", + "type": "system" + }, + { + "id": 30001451, + "regionId": 10000017, + "name": "JGDF-B", + "type": "system" + }, + { + "id": 30001452, + "regionId": 10000017, + "name": "1SR-HT", + "type": "system" + }, + { + "id": 30001453, + "regionId": 10000017, + "name": "SQ-2XA", + "type": "system" + }, + { + "id": 30001454, + "regionId": 10000017, + "name": "Z-FYJR", + "type": "system" + }, + { + "id": 30001455, + "regionId": 10000017, + "name": "ZA6-9N", + "type": "system" + }, + { + "id": 30001456, + "regionId": 10000017, + "name": "J1-6CJ", + "type": "system" + }, + { + "id": 30001457, + "regionId": 10000017, + "name": "7H-Z5R", + "type": "system" + }, + { + "id": 30001458, + "regionId": 10000017, + "name": "0RZ5-2", + "type": "system" + }, + { + "id": 30001459, + "regionId": 10000017, + "name": "A9-NB6", + "type": "system" + }, + { + "id": 30001460, + "regionId": 10000017, + "name": "LG1-TA", + "type": "system" + }, + { + "id": 30001461, + "regionId": 10000017, + "name": "TNK-BQ", + "type": "system" + }, + { + "id": 30001462, + "regionId": 10000017, + "name": "E2AX-5", + "type": "system" + }, + { + "id": 30001463, + "regionId": 10000017, + "name": "HPE-KP", + "type": "system" + }, + { + "id": 30001464, + "regionId": 10000017, + "name": "THS-MN", + "type": "system" + }, + { + "id": 30001465, + "regionId": 10000017, + "name": "UBES-K", + "type": "system" + }, + { + "id": 30001466, + "regionId": 10000017, + "name": "I-R8B0", + "type": "system" + }, + { + "id": 30001467, + "regionId": 10000017, + "name": "QIW-TQ", + "type": "system" + }, + { + "id": 30001468, + "regionId": 10000017, + "name": "WLL-QX", + "type": "system" + }, + { + "id": 30001469, + "regionId": 10000017, + "name": "BJC4-8", + "type": "system" + }, + { + "id": 30001470, + "regionId": 10000017, + "name": "PQA-9K", + "type": "system" + }, + { + "id": 30001471, + "regionId": 10000017, + "name": "S5-U0R", + "type": "system" + }, + { + "id": 30001472, + "regionId": 10000017, + "name": "CW-R71", + "type": "system" + }, + { + "id": 30001473, + "regionId": 10000017, + "name": "QO-3LC", + "type": "system" + }, + { + "id": 30001474, + "regionId": 10000017, + "name": "3E-ER7", + "type": "system" + }, + { + "id": 30001475, + "regionId": 10000017, + "name": "REZ-YZ", + "type": "system" + }, + { + "id": 30001476, + "regionId": 10000017, + "name": "OU-AIT", + "type": "system" + }, + { + "id": 30001477, + "regionId": 10000017, + "name": "VYX2-I", + "type": "system" + }, + { + "id": 30001478, + "regionId": 10000017, + "name": "5-P3CQ", + "type": "system" + }, + { + "id": 30001479, + "regionId": 10000017, + "name": "M-FDTD", + "type": "system" + }, + { + "id": 30001480, + "regionId": 10000017, + "name": "54-VNO", + "type": "system" + }, + { + "id": 30001481, + "regionId": 10000017, + "name": "IAMZ-5", + "type": "system" + }, + { + "id": 30001482, + "regionId": 10000017, + "name": "HD3-JK", + "type": "system" + }, + { + "id": 30001483, + "regionId": 10000017, + "name": "PBXG-A", + "type": "system" + }, + { + "id": 30001484, + "regionId": 10000017, + "name": "9-ERCP", + "type": "system" + }, + { + "id": 30001485, + "regionId": 10000017, + "name": "KN7M-N", + "type": "system" + }, + { + "id": 30001486, + "regionId": 10000017, + "name": "Z-D1DW", + "type": "system" + }, + { + "id": 30001487, + "regionId": 10000017, + "name": "FO-3PJ", + "type": "system" + }, + { + "id": 30001488, + "regionId": 10000017, + "name": "6-QXE6", + "type": "system" + }, + { + "id": 30001489, + "regionId": 10000017, + "name": "N-FKXV", + "type": "system" + }, + { + "id": 30001490, + "regionId": 10000017, + "name": "X7-8IG", + "type": "system" + }, + { + "id": 30001491, + "regionId": 10000017, + "name": "R-G1SF", + "type": "system" + }, + { + "id": 30001492, + "regionId": 10000017, + "name": "6-NCE7", + "type": "system" + }, + { + "id": 30001493, + "regionId": 10000017, + "name": "WDJQ-G", + "type": "system" + }, + { + "id": 30001494, + "regionId": 10000017, + "name": "JS3-RS", + "type": "system" + }, + { + "id": 30001495, + "regionId": 10000017, + "name": "JX-T1W", + "type": "system" + }, + { + "id": 30001496, + "regionId": 10000017, + "name": "CZ-CED", + "type": "system" + }, + { + "id": 30001497, + "regionId": 10000017, + "name": "BKK4-H", + "type": "system" + }, + { + "id": 30001498, + "regionId": 10000017, + "name": "Y-4V7U", + "type": "system" + }, + { + "id": 30001499, + "regionId": 10000017, + "name": "L-TPN0", + "type": "system" + }, + { + "id": 30001500, + "regionId": 10000017, + "name": "3-XORH", + "type": "system" + }, + { + "id": 30001501, + "regionId": 10000017, + "name": "G1VU-H", + "type": "system" + }, + { + "id": 30001502, + "regionId": 10000017, + "name": "W6H6-K", + "type": "system" + }, + { + "id": 30001503, + "regionId": 10000017, + "name": "6-23NU", + "type": "system" + }, + { + "id": 30001504, + "regionId": 10000017, + "name": "DVAR-P", + "type": "system" + }, + { + "id": 30001505, + "regionId": 10000017, + "name": "J-JS0D", + "type": "system" + }, + { + "id": 30001506, + "regionId": 10000017, + "name": "VR3-PS", + "type": "system" + }, + { + "id": 30001507, + "regionId": 10000017, + "name": "LH-J8H", + "type": "system" + }, + { + "id": 30001508, + "regionId": 10000017, + "name": "I9D-0D", + "type": "system" + }, + { + "id": 30001509, + "regionId": 10000017, + "name": "HGB-C6", + "type": "system" + }, + { + "id": 30001510, + "regionId": 10000017, + "name": "2L5-FI", + "type": "system" + }, + { + "id": 30001511, + "regionId": 10000017, + "name": "RS08-B", + "type": "system" + }, + { + "id": 30001512, + "regionId": 10000017, + "name": "4U-14I", + "type": "system" + }, + { + "id": 30001513, + "regionId": 10000017, + "name": "H-EDXD", + "type": "system" + }, + { + "id": 30001514, + "regionId": 10000017, + "name": "8-ULAA", + "type": "system" + }, + { + "id": 30001515, + "regionId": 10000017, + "name": "KF1-DU", + "type": "system" + }, + { + "id": 30001516, + "regionId": 10000017, + "name": "W-WQM5", + "type": "system" + }, + { + "id": 30001517, + "regionId": 10000017, + "name": "G5J-LH", + "type": "system" + }, + { + "id": 30001518, + "regionId": 10000017, + "name": "H7OL-I", + "type": "system" + }, + { + "id": 30001519, + "regionId": 10000017, + "name": "TO21-U", + "type": "system" + }, + { + "id": 30001520, + "regionId": 10000017, + "name": "RN-5K9", + "type": "system" + }, + { + "id": 30001521, + "regionId": 10000017, + "name": "0M-M64", + "type": "system" + }, + { + "id": 30001522, + "regionId": 10000017, + "name": "W5-SGC", + "type": "system" + }, + { + "id": 30001523, + "regionId": 10000017, + "name": "8RV-1L", + "type": "system" + }, + { + "id": 30001524, + "regionId": 10000017, + "name": "1C-TD6", + "type": "system" + }, + { + "id": 30001525, + "regionId": 10000017, + "name": "YBYX-1", + "type": "system" + }, + { + "id": 30001526, + "regionId": 10000018, + "name": "L-WG68", + "type": "system" + }, + { + "id": 30001527, + "regionId": 10000018, + "name": "E4-E8W", + "type": "system" + }, + { + "id": 30001528, + "regionId": 10000018, + "name": "HIK-MC", + "type": "system" + }, + { + "id": 30001529, + "regionId": 10000018, + "name": "B9EA-G", + "type": "system" + }, + { + "id": 30001530, + "regionId": 10000018, + "name": "E-BFLT", + "type": "system" + }, + { + "id": 30001531, + "regionId": 10000018, + "name": "GZM-KB", + "type": "system" + }, + { + "id": 30001532, + "regionId": 10000018, + "name": "5LAJ-8", + "type": "system" + }, + { + "id": 30001533, + "regionId": 10000018, + "name": "C6C-K9", + "type": "system" + }, + { + "id": 30001534, + "regionId": 10000018, + "name": "AL-JSG", + "type": "system" + }, + { + "id": 30001535, + "regionId": 10000018, + "name": "ETO-OT", + "type": "system" + }, + { + "id": 30001536, + "regionId": 10000018, + "name": "KPI-OW", + "type": "system" + }, + { + "id": 30001537, + "regionId": 10000018, + "name": "A-J6SN", + "type": "system" + }, + { + "id": 30001538, + "regionId": 10000018, + "name": "OTJ-4W", + "type": "system" + }, + { + "id": 30001539, + "regionId": 10000018, + "name": "AG-SYG", + "type": "system" + }, + { + "id": 30001540, + "regionId": 10000018, + "name": "1I5-0V", + "type": "system" + }, + { + "id": 30001541, + "regionId": 10000018, + "name": "VX1-HV", + "type": "system" + }, + { + "id": 30001542, + "regionId": 10000018, + "name": "JNG7-K", + "type": "system" + }, + { + "id": 30001543, + "regionId": 10000018, + "name": "K-XJJT", + "type": "system" + }, + { + "id": 30001544, + "regionId": 10000018, + "name": "FO1U-K", + "type": "system" + }, + { + "id": 30001545, + "regionId": 10000018, + "name": "6U-1RX", + "type": "system" + }, + { + "id": 30001546, + "regionId": 10000018, + "name": "Y4OK-W", + "type": "system" + }, + { + "id": 30001547, + "regionId": 10000018, + "name": "P-NI4K", + "type": "system" + }, + { + "id": 30001548, + "regionId": 10000018, + "name": "T6T-BQ", + "type": "system" + }, + { + "id": 30001549, + "regionId": 10000018, + "name": "N-PS2Y", + "type": "system" + }, + { + "id": 30001550, + "regionId": 10000018, + "name": "K-BBYU", + "type": "system" + }, + { + "id": 30001551, + "regionId": 10000018, + "name": "0J-MQW", + "type": "system" + }, + { + "id": 30001552, + "regionId": 10000018, + "name": "XT-1E0", + "type": "system" + }, + { + "id": 30001553, + "regionId": 10000018, + "name": "3ET-G8", + "type": "system" + }, + { + "id": 30001554, + "regionId": 10000018, + "name": "MOSA-I", + "type": "system" + }, + { + "id": 30001555, + "regionId": 10000018, + "name": "B6-XE8", + "type": "system" + }, + { + "id": 30001556, + "regionId": 10000018, + "name": "JLH-FN", + "type": "system" + }, + { + "id": 30001557, + "regionId": 10000018, + "name": "DFTK-D", + "type": "system" + }, + { + "id": 30001558, + "regionId": 10000018, + "name": "4HF-4R", + "type": "system" + }, + { + "id": 30001559, + "regionId": 10000018, + "name": "Y8K-5B", + "type": "system" + }, + { + "id": 30001560, + "regionId": 10000018, + "name": "L7-BLT", + "type": "system" + }, + { + "id": 30001561, + "regionId": 10000018, + "name": "8P-LKL", + "type": "system" + }, + { + "id": 30001562, + "regionId": 10000018, + "name": "Q-UVY6", + "type": "system" + }, + { + "id": 30001563, + "regionId": 10000018, + "name": "RXA-W1", + "type": "system" + }, + { + "id": 30001564, + "regionId": 10000018, + "name": "QFU-4S", + "type": "system" + }, + { + "id": 30001565, + "regionId": 10000018, + "name": "QQGH-G", + "type": "system" + }, + { + "id": 30001566, + "regionId": 10000018, + "name": "VK6-EZ", + "type": "system" + }, + { + "id": 30001567, + "regionId": 10000018, + "name": "JVA-FE", + "type": "system" + }, + { + "id": 30001568, + "regionId": 10000018, + "name": "P65-TA", + "type": "system" + }, + { + "id": 30001569, + "regionId": 10000018, + "name": "G-VFVB", + "type": "system" + }, + { + "id": 30001570, + "regionId": 10000018, + "name": "Y4B-BQ", + "type": "system" + }, + { + "id": 30001571, + "regionId": 10000018, + "name": "EU-WFW", + "type": "system" + }, + { + "id": 30001572, + "regionId": 10000018, + "name": "K-YL9T", + "type": "system" + }, + { + "id": 30001573, + "regionId": 10000018, + "name": "GTB-O4", + "type": "system" + }, + { + "id": 30001574, + "regionId": 10000018, + "name": "6W-6O9", + "type": "system" + }, + { + "id": 30001575, + "regionId": 10000018, + "name": "H4X-0I", + "type": "system" + }, + { + "id": 30001576, + "regionId": 10000018, + "name": "C-BHDN", + "type": "system" + }, + { + "id": 30001577, + "regionId": 10000018, + "name": "R-RE2B", + "type": "system" + }, + { + "id": 30001578, + "regionId": 10000018, + "name": "4DH-ST", + "type": "system" + }, + { + "id": 30001579, + "regionId": 10000018, + "name": "OSW-0P", + "type": "system" + }, + { + "id": 30001580, + "regionId": 10000018, + "name": "GF-GR7", + "type": "system" + }, + { + "id": 30001581, + "regionId": 10000018, + "name": "DVN6-0", + "type": "system" + }, + { + "id": 30001582, + "regionId": 10000018, + "name": "Z19-B8", + "type": "system" + }, + { + "id": 30001583, + "regionId": 10000018, + "name": "HPMN-V", + "type": "system" + }, + { + "id": 30001584, + "regionId": 10000018, + "name": "XR-ZL7", + "type": "system" + }, + { + "id": 30001585, + "regionId": 10000018, + "name": "U1-VHY", + "type": "system" + }, + { + "id": 30001586, + "regionId": 10000018, + "name": "OTJ9-E", + "type": "system" + }, + { + "id": 30001587, + "regionId": 10000018, + "name": "LH-LY1", + "type": "system" + }, + { + "id": 30001588, + "regionId": 10000018, + "name": "7-QOYS", + "type": "system" + }, + { + "id": 30001589, + "regionId": 10000018, + "name": "KS8G-M", + "type": "system" + }, + { + "id": 30001590, + "regionId": 10000018, + "name": "ZWM-BB", + "type": "system" + }, + { + "id": 30001591, + "regionId": 10000018, + "name": "S-CUEA", + "type": "system" + }, + { + "id": 30001592, + "regionId": 10000018, + "name": "L-EUY2", + "type": "system" + }, + { + "id": 30001593, + "regionId": 10000018, + "name": "JL-ZUQ", + "type": "system" + }, + { + "id": 30001594, + "regionId": 10000018, + "name": "X-KHRZ", + "type": "system" + }, + { + "id": 30001595, + "regionId": 10000018, + "name": "WIW-X8", + "type": "system" + }, + { + "id": 30001596, + "regionId": 10000018, + "name": "QRH-BF", + "type": "system" + }, + { + "id": 30001597, + "regionId": 10000018, + "name": "M-NP5O", + "type": "system" + }, + { + "id": 30001598, + "regionId": 10000019, + "name": "2-NF2Z", + "type": "system" + }, + { + "id": 30001599, + "regionId": 10000019, + "name": "0Z-VHC", + "type": "system" + }, + { + "id": 30001600, + "regionId": 10000019, + "name": "9-BUSQ", + "type": "system" + }, + { + "id": 30001601, + "regionId": 10000019, + "name": "LQB-TC", + "type": "system" + }, + { + "id": 30001602, + "regionId": 10000019, + "name": "II-1B3", + "type": "system" + }, + { + "id": 30001603, + "regionId": 10000019, + "name": "6-HFD6", + "type": "system" + }, + { + "id": 30001604, + "regionId": 10000019, + "name": "P3UD-M", + "type": "system" + }, + { + "id": 30001605, + "regionId": 10000019, + "name": "LCN-0V", + "type": "system" + }, + { + "id": 30001606, + "regionId": 10000019, + "name": "FX-XMW", + "type": "system" + }, + { + "id": 30001607, + "regionId": 10000019, + "name": "G-N6MC", + "type": "system" + }, + { + "id": 30001608, + "regionId": 10000019, + "name": "7-8XK0", + "type": "system" + }, + { + "id": 30001609, + "regionId": 10000019, + "name": "90G-OA", + "type": "system" + }, + { + "id": 30001610, + "regionId": 10000019, + "name": "DT-7EO", + "type": "system" + }, + { + "id": 30001611, + "regionId": 10000019, + "name": "B-Y06L", + "type": "system" + }, + { + "id": 30001612, + "regionId": 10000019, + "name": "HHQ-8L", + "type": "system" + }, + { + "id": 30001613, + "regionId": 10000019, + "name": "Z-KPAR", + "type": "system" + }, + { + "id": 30001614, + "regionId": 10000019, + "name": "8U-RZH", + "type": "system" + }, + { + "id": 30001615, + "regionId": 10000019, + "name": "2RV-06", + "type": "system" + }, + { + "id": 30001616, + "regionId": 10000019, + "name": "CLDT-L", + "type": "system" + }, + { + "id": 30001617, + "regionId": 10000019, + "name": "QU7-EE", + "type": "system" + }, + { + "id": 30001618, + "regionId": 10000019, + "name": "UC-X28", + "type": "system" + }, + { + "id": 30001619, + "regionId": 10000019, + "name": "R79-I7", + "type": "system" + }, + { + "id": 30001620, + "regionId": 10000019, + "name": "E-RPGP", + "type": "system" + }, + { + "id": 30001621, + "regionId": 10000019, + "name": "ZV-KZO", + "type": "system" + }, + { + "id": 30001622, + "regionId": 10000019, + "name": "NSE-U1", + "type": "system" + }, + { + "id": 30001623, + "regionId": 10000019, + "name": "KER-EU", + "type": "system" + }, + { + "id": 30001624, + "regionId": 10000019, + "name": "69A-54", + "type": "system" + }, + { + "id": 30001625, + "regionId": 10000019, + "name": "M9-OS2", + "type": "system" + }, + { + "id": 30001626, + "regionId": 10000019, + "name": "5V-YL6", + "type": "system" + }, + { + "id": 30001627, + "regionId": 10000019, + "name": "8-UWFS", + "type": "system" + }, + { + "id": 30001628, + "regionId": 10000019, + "name": "PQWA-L", + "type": "system" + }, + { + "id": 30001629, + "regionId": 10000019, + "name": "BWO-UU", + "type": "system" + }, + { + "id": 30001630, + "regionId": 10000019, + "name": "SQVI-U", + "type": "system" + }, + { + "id": 30001631, + "regionId": 10000019, + "name": "T-YWDD", + "type": "system" + }, + { + "id": 30001632, + "regionId": 10000019, + "name": "DLY-RG", + "type": "system" + }, + { + "id": 30001633, + "regionId": 10000019, + "name": "T-C5A0", + "type": "system" + }, + { + "id": 30001634, + "regionId": 10000019, + "name": "UP-L3Y", + "type": "system" + }, + { + "id": 30001635, + "regionId": 10000019, + "name": "F-KBNV", + "type": "system" + }, + { + "id": 30001636, + "regionId": 10000019, + "name": "JL-P9P", + "type": "system" + }, + { + "id": 30001637, + "regionId": 10000019, + "name": "FR-RCH", + "type": "system" + }, + { + "id": 30001638, + "regionId": 10000019, + "name": "FNS3-F", + "type": "system" + }, + { + "id": 30001639, + "regionId": 10000019, + "name": "7BA-TK", + "type": "system" + }, + { + "id": 30001640, + "regionId": 10000019, + "name": "IAWJ-X", + "type": "system" + }, + { + "id": 30001641, + "regionId": 10000019, + "name": "50-TJY", + "type": "system" + }, + { + "id": 30001642, + "regionId": 10000019, + "name": "3-CE1R", + "type": "system" + }, + { + "id": 30001643, + "regionId": 10000019, + "name": "0IRK-R", + "type": "system" + }, + { + "id": 30001644, + "regionId": 10000020, + "name": "Tividu", + "type": "system" + }, + { + "id": 30001645, + "regionId": 10000020, + "name": "Tendhyes", + "type": "system" + }, + { + "id": 30001646, + "regionId": 10000020, + "name": "Goram", + "type": "system" + }, + { + "id": 30001647, + "regionId": 10000020, + "name": "Anjedin", + "type": "system" + }, + { + "id": 30001648, + "regionId": 10000020, + "name": "Adahum", + "type": "system" + }, + { + "id": 30001649, + "regionId": 10000020, + "name": "Ahrosseas", + "type": "system" + }, + { + "id": 30001650, + "regionId": 10000020, + "name": "Riramia", + "type": "system" + }, + { + "id": 30001651, + "regionId": 10000020, + "name": "Nafomeh", + "type": "system" + }, + { + "id": 30001652, + "regionId": 10000020, + "name": "Pimsu", + "type": "system" + }, + { + "id": 30001653, + "regionId": 10000020, + "name": "Jarzalad", + "type": "system" + }, + { + "id": 30001654, + "regionId": 10000020, + "name": "Matyas", + "type": "system" + }, + { + "id": 30001655, + "regionId": 10000020, + "name": "Imeshasa", + "type": "system" + }, + { + "id": 30001656, + "regionId": 10000020, + "name": "Ivih", + "type": "system" + }, + { + "id": 30001657, + "regionId": 10000020, + "name": "Seil", + "type": "system" + }, + { + "id": 30001658, + "regionId": 10000020, + "name": "Mani", + "type": "system" + }, + { + "id": 30001659, + "regionId": 10000020, + "name": "Sehmosh", + "type": "system" + }, + { + "id": 30001660, + "regionId": 10000020, + "name": "Dabrid", + "type": "system" + }, + { + "id": 30001661, + "regionId": 10000020, + "name": "Gyerzen", + "type": "system" + }, + { + "id": 30001662, + "regionId": 10000020, + "name": "Hibi", + "type": "system" + }, + { + "id": 30001663, + "regionId": 10000020, + "name": "Gemodi", + "type": "system" + }, + { + "id": 30001664, + "regionId": 10000020, + "name": "Chamume", + "type": "system" + }, + { + "id": 30001665, + "regionId": 10000020, + "name": "Nuzair", + "type": "system" + }, + { + "id": 30001666, + "regionId": 10000020, + "name": "Pera", + "type": "system" + }, + { + "id": 30001667, + "regionId": 10000020, + "name": "Shousran", + "type": "system" + }, + { + "id": 30001668, + "regionId": 10000020, + "name": "Yong", + "type": "system" + }, + { + "id": 30001669, + "regionId": 10000020, + "name": "Pimebeka", + "type": "system" + }, + { + "id": 30001670, + "regionId": 10000020, + "name": "Baviasi", + "type": "system" + }, + { + "id": 30001671, + "regionId": 10000020, + "name": "Tash-MurkonPrime", + "type": "system" + }, + { + "id": 30001672, + "regionId": 10000020, + "name": "Emrayur", + "type": "system" + }, + { + "id": 30001673, + "regionId": 10000020, + "name": "Shesha", + "type": "system" + }, + { + "id": 30001674, + "regionId": 10000020, + "name": "Hilaban", + "type": "system" + }, + { + "id": 30001675, + "regionId": 10000020, + "name": "Sacalan", + "type": "system" + }, + { + "id": 30001676, + "regionId": 10000020, + "name": "Mimen", + "type": "system" + }, + { + "id": 30001677, + "regionId": 10000020, + "name": "Thashkarai", + "type": "system" + }, + { + "id": 30001678, + "regionId": 10000020, + "name": "Atoosh", + "type": "system" + }, + { + "id": 30001679, + "regionId": 10000020, + "name": "Unkah", + "type": "system" + }, + { + "id": 30001680, + "regionId": 10000020, + "name": "Hoona", + "type": "system" + }, + { + "id": 30001681, + "regionId": 10000020, + "name": "Teshkat", + "type": "system" + }, + { + "id": 30001682, + "regionId": 10000020, + "name": "Keshirou", + "type": "system" + }, + { + "id": 30001683, + "regionId": 10000020, + "name": "Nasesharafa", + "type": "system" + }, + { + "id": 30001684, + "regionId": 10000020, + "name": "Tirbam", + "type": "system" + }, + { + "id": 30001685, + "regionId": 10000020, + "name": "Ordat", + "type": "system" + }, + { + "id": 30001686, + "regionId": 10000020, + "name": "Rethan", + "type": "system" + }, + { + "id": 30001687, + "regionId": 10000020, + "name": "Lossa", + "type": "system" + }, + { + "id": 30001688, + "regionId": 10000020, + "name": "Onazel", + "type": "system" + }, + { + "id": 30001689, + "regionId": 10000020, + "name": "Asesamy", + "type": "system" + }, + { + "id": 30001690, + "regionId": 10000020, + "name": "Hostni", + "type": "system" + }, + { + "id": 30001691, + "regionId": 10000020, + "name": "Mimime", + "type": "system" + }, + { + "id": 30001692, + "regionId": 10000020, + "name": "Kibursha", + "type": "system" + }, + { + "id": 30001693, + "regionId": 10000020, + "name": "Perdan", + "type": "system" + }, + { + "id": 30001694, + "regionId": 10000020, + "name": "Abai", + "type": "system" + }, + { + "id": 30001695, + "regionId": 10000020, + "name": "Nehkiah", + "type": "system" + }, + { + "id": 30001696, + "regionId": 10000020, + "name": "Iro", + "type": "system" + }, + { + "id": 30001697, + "regionId": 10000020, + "name": "Ahkour", + "type": "system" + }, + { + "id": 30001698, + "regionId": 10000020, + "name": "Gaknem", + "type": "system" + }, + { + "id": 30001699, + "regionId": 10000020, + "name": "Siyi", + "type": "system" + }, + { + "id": 30001700, + "regionId": 10000020, + "name": "Remoriu", + "type": "system" + }, + { + "id": 30001701, + "regionId": 10000020, + "name": "Yanuel", + "type": "system" + }, + { + "id": 30001702, + "regionId": 10000020, + "name": "Nafrivik", + "type": "system" + }, + { + "id": 30001703, + "regionId": 10000020, + "name": "Taru", + "type": "system" + }, + { + "id": 30001704, + "regionId": 10000020, + "name": "Arkoz", + "type": "system" + }, + { + "id": 30001705, + "regionId": 10000020, + "name": "Azhgabid", + "type": "system" + }, + { + "id": 30001706, + "regionId": 10000020, + "name": "Jinizu", + "type": "system" + }, + { + "id": 30001707, + "regionId": 10000020, + "name": "Phoren", + "type": "system" + }, + { + "id": 30001708, + "regionId": 10000020, + "name": "Asezai", + "type": "system" + }, + { + "id": 30001709, + "regionId": 10000020, + "name": "Ferira", + "type": "system" + }, + { + "id": 30001710, + "regionId": 10000020, + "name": "Yeder", + "type": "system" + }, + { + "id": 30001711, + "regionId": 10000020, + "name": "Azerakish", + "type": "system" + }, + { + "id": 30001712, + "regionId": 10000020, + "name": "Lari", + "type": "system" + }, + { + "id": 30001713, + "regionId": 10000020, + "name": "Yasud", + "type": "system" + }, + { + "id": 30001714, + "regionId": 10000020, + "name": "Ghishul", + "type": "system" + }, + { + "id": 30001715, + "regionId": 10000020, + "name": "Moutid", + "type": "system" + }, + { + "id": 30001716, + "regionId": 10000020, + "name": "Goni", + "type": "system" + }, + { + "id": 30001717, + "regionId": 10000020, + "name": "Adar", + "type": "system" + }, + { + "id": 30001718, + "regionId": 10000020, + "name": "Paye", + "type": "system" + }, + { + "id": 30001719, + "regionId": 10000020, + "name": "Sagain", + "type": "system" + }, + { + "id": 30001720, + "regionId": 10000020, + "name": "Modun", + "type": "system" + }, + { + "id": 30001721, + "regionId": 10000020, + "name": "Saminer", + "type": "system" + }, + { + "id": 30001722, + "regionId": 10000020, + "name": "Marthia", + "type": "system" + }, + { + "id": 30001723, + "regionId": 10000020, + "name": "Assiad", + "type": "system" + }, + { + "id": 30001724, + "regionId": 10000020, + "name": "Rumida", + "type": "system" + }, + { + "id": 30001725, + "regionId": 10000020, + "name": "Nosodnis", + "type": "system" + }, + { + "id": 30001726, + "regionId": 10000020, + "name": "Iswa", + "type": "system" + }, + { + "id": 30001727, + "regionId": 10000020, + "name": "Rand", + "type": "system" + }, + { + "id": 30001728, + "regionId": 10000020, + "name": "Sizamod", + "type": "system" + }, + { + "id": 30001729, + "regionId": 10000020, + "name": "Sinid", + "type": "system" + }, + { + "id": 30001730, + "regionId": 10000020, + "name": "Alra", + "type": "system" + }, + { + "id": 30001731, + "regionId": 10000020, + "name": "Ilas", + "type": "system" + }, + { + "id": 30001732, + "regionId": 10000020, + "name": "Zith", + "type": "system" + }, + { + "id": 30001733, + "regionId": 10000020, + "name": "Tew", + "type": "system" + }, + { + "id": 30001734, + "regionId": 10000020, + "name": "Zehru", + "type": "system" + }, + { + "id": 30001735, + "regionId": 10000020, + "name": "Uhodoh", + "type": "system" + }, + { + "id": 30001736, + "regionId": 10000020, + "name": "Esa", + "type": "system" + }, + { + "id": 30001737, + "regionId": 10000020, + "name": "Hath", + "type": "system" + }, + { + "id": 30001738, + "regionId": 10000020, + "name": "Judra", + "type": "system" + }, + { + "id": 30001739, + "regionId": 10000020, + "name": "Sharios", + "type": "system" + }, + { + "id": 30001740, + "regionId": 10000020, + "name": "Arakor", + "type": "system" + }, + { + "id": 30001741, + "regionId": 10000020, + "name": "Ahteer", + "type": "system" + }, + { + "id": 30001742, + "regionId": 10000020, + "name": "Kari", + "type": "system" + }, + { + "id": 30001743, + "regionId": 10000021, + "name": "JUE-DX", + "type": "system" + }, + { + "id": 30001744, + "regionId": 10000021, + "name": "HLR-GL", + "type": "system" + }, + { + "id": 30001745, + "regionId": 10000021, + "name": "80G-H5", + "type": "system" + }, + { + "id": 30001746, + "regionId": 10000021, + "name": "2EV-BA", + "type": "system" + }, + { + "id": 30001747, + "regionId": 10000021, + "name": "M1-PX9", + "type": "system" + }, + { + "id": 30001748, + "regionId": 10000021, + "name": "W9-TFD", + "type": "system" + }, + { + "id": 30001749, + "regionId": 10000021, + "name": "QHH-13", + "type": "system" + }, + { + "id": 30001750, + "regionId": 10000021, + "name": "J4AQ-O", + "type": "system" + }, + { + "id": 30001751, + "regionId": 10000021, + "name": "O-O2GN", + "type": "system" + }, + { + "id": 30001752, + "regionId": 10000021, + "name": "I-HRX3", + "type": "system" + }, + { + "id": 30001753, + "regionId": 10000021, + "name": "XUPK-Z", + "type": "system" + }, + { + "id": 30001754, + "regionId": 10000021, + "name": "M4U-EH", + "type": "system" + }, + { + "id": 30001755, + "regionId": 10000021, + "name": "WK2F-Y", + "type": "system" + }, + { + "id": 30001756, + "regionId": 10000021, + "name": "WIO-OL", + "type": "system" + }, + { + "id": 30001757, + "regionId": 10000021, + "name": "1-10QG", + "type": "system" + }, + { + "id": 30001758, + "regionId": 10000021, + "name": "YQM-P1", + "type": "system" + }, + { + "id": 30001759, + "regionId": 10000021, + "name": "6-GRN7", + "type": "system" + }, + { + "id": 30001760, + "regionId": 10000021, + "name": "TFPT-U", + "type": "system" + }, + { + "id": 30001761, + "regionId": 10000021, + "name": "D-JVGJ", + "type": "system" + }, + { + "id": 30001762, + "regionId": 10000021, + "name": "K4UV-G", + "type": "system" + }, + { + "id": 30001763, + "regionId": 10000021, + "name": "Q7E-DU", + "type": "system" + }, + { + "id": 30001764, + "regionId": 10000021, + "name": "9Z-XJN", + "type": "system" + }, + { + "id": 30001765, + "regionId": 10000021, + "name": "ZEZ1-9", + "type": "system" + }, + { + "id": 30001766, + "regionId": 10000021, + "name": "QFRV-2", + "type": "system" + }, + { + "id": 30001767, + "regionId": 10000021, + "name": "HZID-J", + "type": "system" + }, + { + "id": 30001768, + "regionId": 10000021, + "name": "8-AA98", + "type": "system" + }, + { + "id": 30001769, + "regionId": 10000021, + "name": "EZWQ-X", + "type": "system" + }, + { + "id": 30001770, + "regionId": 10000021, + "name": "2ULC-J", + "type": "system" + }, + { + "id": 30001771, + "regionId": 10000021, + "name": "T0DT-T", + "type": "system" + }, + { + "id": 30001772, + "regionId": 10000021, + "name": "QG3-Z0", + "type": "system" + }, + { + "id": 30001773, + "regionId": 10000021, + "name": "RT64-C", + "type": "system" + }, + { + "id": 30001774, + "regionId": 10000021, + "name": "2ID-87", + "type": "system" + }, + { + "id": 30001775, + "regionId": 10000021, + "name": "FVQF-W", + "type": "system" + }, + { + "id": 30001776, + "regionId": 10000021, + "name": "8K-QCZ", + "type": "system" + }, + { + "id": 30001777, + "regionId": 10000021, + "name": "JBUH-H", + "type": "system" + }, + { + "id": 30001778, + "regionId": 10000021, + "name": "XDTW-F", + "type": "system" + }, + { + "id": 30001779, + "regionId": 10000021, + "name": "0-4VQL", + "type": "system" + }, + { + "id": 30001780, + "regionId": 10000021, + "name": "SN-DZ6", + "type": "system" + }, + { + "id": 30001781, + "regionId": 10000021, + "name": "DJ-GBH", + "type": "system" + }, + { + "id": 30001782, + "regionId": 10000021, + "name": "I0N-BM", + "type": "system" + }, + { + "id": 30001783, + "regionId": 10000021, + "name": "QOK-SX", + "type": "system" + }, + { + "id": 30001784, + "regionId": 10000021, + "name": "24I-FE", + "type": "system" + }, + { + "id": 30001785, + "regionId": 10000021, + "name": "4H-YJZ", + "type": "system" + }, + { + "id": 30001786, + "regionId": 10000021, + "name": "2-84WC", + "type": "system" + }, + { + "id": 30001787, + "regionId": 10000021, + "name": "V-SEE6", + "type": "system" + }, + { + "id": 30001788, + "regionId": 10000021, + "name": "U-FQ21", + "type": "system" + }, + { + "id": 30001789, + "regionId": 10000021, + "name": "NHKO-4", + "type": "system" + }, + { + "id": 30001790, + "regionId": 10000021, + "name": "KGCF-5", + "type": "system" + }, + { + "id": 30001791, + "regionId": 10000021, + "name": "Y-UO9U", + "type": "system" + }, + { + "id": 30001792, + "regionId": 10000021, + "name": "XME-SW", + "type": "system" + }, + { + "id": 30001793, + "regionId": 10000021, + "name": "JX-SOA", + "type": "system" + }, + { + "id": 30001794, + "regionId": 10000021, + "name": "VH-9VO", + "type": "system" + }, + { + "id": 30001795, + "regionId": 10000021, + "name": "P-T9VC", + "type": "system" + }, + { + "id": 30001796, + "regionId": 10000021, + "name": "9S-GPT", + "type": "system" + }, + { + "id": 30001797, + "regionId": 10000021, + "name": "UAJ5-K", + "type": "system" + }, + { + "id": 30001798, + "regionId": 10000021, + "name": "XJ-AG7", + "type": "system" + }, + { + "id": 30001799, + "regionId": 10000021, + "name": "2WU-XT", + "type": "system" + }, + { + "id": 30001800, + "regionId": 10000021, + "name": "J7X-VN", + "type": "system" + }, + { + "id": 30001801, + "regionId": 10000021, + "name": "F-WCLC", + "type": "system" + }, + { + "id": 30001802, + "regionId": 10000021, + "name": "G-HE0N", + "type": "system" + }, + { + "id": 30001803, + "regionId": 10000021, + "name": "YC-ANK", + "type": "system" + }, + { + "id": 30001804, + "regionId": 10000021, + "name": "LTT-AP", + "type": "system" + }, + { + "id": 30001805, + "regionId": 10000021, + "name": "8RL-OG", + "type": "system" + }, + { + "id": 30001806, + "regionId": 10000021, + "name": "R3P0-Z", + "type": "system" + }, + { + "id": 30001807, + "regionId": 10000021, + "name": "ZZK-VF", + "type": "system" + }, + { + "id": 30001808, + "regionId": 10000021, + "name": "SN-Q1T", + "type": "system" + }, + { + "id": 30001809, + "regionId": 10000021, + "name": "L1YK-V", + "type": "system" + }, + { + "id": 30001810, + "regionId": 10000021, + "name": "ZJ-5IS", + "type": "system" + }, + { + "id": 30001811, + "regionId": 10000021, + "name": "GA58-7", + "type": "system" + }, + { + "id": 30001812, + "regionId": 10000021, + "name": "J-0KB3", + "type": "system" + }, + { + "id": 30001813, + "regionId": 10000021, + "name": "UC-8XF", + "type": "system" + }, + { + "id": 30001814, + "regionId": 10000021, + "name": "90-A1P", + "type": "system" + }, + { + "id": 30001815, + "regionId": 10000021, + "name": "4AZV-W", + "type": "system" + }, + { + "id": 30001816, + "regionId": 10000021, + "name": "UNV-3J", + "type": "system" + }, + { + "id": 30001817, + "regionId": 10000021, + "name": "7F-2FB", + "type": "system" + }, + { + "id": 30001818, + "regionId": 10000021, + "name": "MC4C-H", + "type": "system" + }, + { + "id": 30001819, + "regionId": 10000021, + "name": "OW-QXW", + "type": "system" + }, + { + "id": 30001820, + "regionId": 10000021, + "name": "3-QNM4", + "type": "system" + }, + { + "id": 30001821, + "regionId": 10000021, + "name": "UEPO-D", + "type": "system" + }, + { + "id": 30001822, + "regionId": 10000021, + "name": "NQ-M6W", + "type": "system" + }, + { + "id": 30001823, + "regionId": 10000021, + "name": "P-8PDJ", + "type": "system" + }, + { + "id": 30001824, + "regionId": 10000021, + "name": "VE-W7O", + "type": "system" + }, + { + "id": 30001825, + "regionId": 10000021, + "name": "CNHV-M", + "type": "system" + }, + { + "id": 30001826, + "regionId": 10000021, + "name": "NEU-UD", + "type": "system" + }, + { + "id": 30001827, + "regionId": 10000021, + "name": "N-I024", + "type": "system" + }, + { + "id": 30001828, + "regionId": 10000021, + "name": "4O-ZRI", + "type": "system" + }, + { + "id": 30001829, + "regionId": 10000021, + "name": "Y-7XVJ", + "type": "system" + }, + { + "id": 30001830, + "regionId": 10000021, + "name": "RQNF-9", + "type": "system" + }, + { + "id": 30001831, + "regionId": 10000022, + "name": "DSS-EZ", + "type": "system" + }, + { + "id": 30001832, + "regionId": 10000022, + "name": "MB4D-4", + "type": "system" + }, + { + "id": 30001833, + "regionId": 10000022, + "name": "LGK-VP", + "type": "system" + }, + { + "id": 30001834, + "regionId": 10000022, + "name": "E-C0SR", + "type": "system" + }, + { + "id": 30001835, + "regionId": 10000022, + "name": "X1E-OQ", + "type": "system" + }, + { + "id": 30001836, + "regionId": 10000022, + "name": "VTGN-U", + "type": "system" + }, + { + "id": 30001837, + "regionId": 10000022, + "name": "0Y1-M7", + "type": "system" + }, + { + "id": 30001838, + "regionId": 10000022, + "name": "Q-Q2S6", + "type": "system" + }, + { + "id": 30001839, + "regionId": 10000022, + "name": "WHG2-7", + "type": "system" + }, + { + "id": 30001840, + "regionId": 10000022, + "name": "9RQ-L8", + "type": "system" + }, + { + "id": 30001841, + "regionId": 10000022, + "name": "32-GI9", + "type": "system" + }, + { + "id": 30001842, + "regionId": 10000022, + "name": "TG-Z23", + "type": "system" + }, + { + "id": 30001843, + "regionId": 10000022, + "name": "IP-MVJ", + "type": "system" + }, + { + "id": 30001844, + "regionId": 10000022, + "name": "4J-ZC9", + "type": "system" + }, + { + "id": 30001845, + "regionId": 10000022, + "name": "7R5-7R", + "type": "system" + }, + { + "id": 30001846, + "regionId": 10000022, + "name": "Y1-UQ2", + "type": "system" + }, + { + "id": 30001847, + "regionId": 10000022, + "name": "HM-UVD", + "type": "system" + }, + { + "id": 30001848, + "regionId": 10000022, + "name": "G-ME2K", + "type": "system" + }, + { + "id": 30001849, + "regionId": 10000022, + "name": "WNS-7J", + "type": "system" + }, + { + "id": 30001850, + "regionId": 10000022, + "name": "57M7-W", + "type": "system" + }, + { + "id": 30001851, + "regionId": 10000022, + "name": "JS-E8E", + "type": "system" + }, + { + "id": 30001852, + "regionId": 10000022, + "name": "FV-SE8", + "type": "system" + }, + { + "id": 30001853, + "regionId": 10000022, + "name": "FZSW-Y", + "type": "system" + }, + { + "id": 30001854, + "regionId": 10000022, + "name": "UF-KKH", + "type": "system" + }, + { + "id": 30001855, + "regionId": 10000022, + "name": "O5Y3-W", + "type": "system" + }, + { + "id": 30001856, + "regionId": 10000022, + "name": "0GN-VO", + "type": "system" + }, + { + "id": 30001857, + "regionId": 10000022, + "name": "9U6-SV", + "type": "system" + }, + { + "id": 30001858, + "regionId": 10000022, + "name": "4GQ-XQ", + "type": "system" + }, + { + "id": 30001859, + "regionId": 10000022, + "name": "R8-5XF", + "type": "system" + }, + { + "id": 30001860, + "regionId": 10000022, + "name": "2IGP-1", + "type": "system" + }, + { + "id": 30001861, + "regionId": 10000022, + "name": "Z2-QQP", + "type": "system" + }, + { + "id": 30001862, + "regionId": 10000022, + "name": "GDEW-0", + "type": "system" + }, + { + "id": 30001863, + "regionId": 10000022, + "name": "PSJ-10", + "type": "system" + }, + { + "id": 30001864, + "regionId": 10000022, + "name": "2-V0KY", + "type": "system" + }, + { + "id": 30001865, + "regionId": 10000022, + "name": "U-WLT9", + "type": "system" + }, + { + "id": 30001866, + "regionId": 10000022, + "name": "ZG8Q-N", + "type": "system" + }, + { + "id": 30001867, + "regionId": 10000022, + "name": "40GX-P", + "type": "system" + }, + { + "id": 30001868, + "regionId": 10000022, + "name": "37S-KO", + "type": "system" + }, + { + "id": 30001869, + "regionId": 10000022, + "name": "4J9-DK", + "type": "system" + }, + { + "id": 30001870, + "regionId": 10000022, + "name": "A-GPTM", + "type": "system" + }, + { + "id": 30001871, + "regionId": 10000022, + "name": "HQ-TDJ", + "type": "system" + }, + { + "id": 30001872, + "regionId": 10000022, + "name": "WBLF-0", + "type": "system" + }, + { + "id": 30001873, + "regionId": 10000022, + "name": "GDO-7H", + "type": "system" + }, + { + "id": 30001874, + "regionId": 10000022, + "name": "NZG-LF", + "type": "system" + }, + { + "id": 30001875, + "regionId": 10000022, + "name": "UJM-RD", + "type": "system" + }, + { + "id": 30001876, + "regionId": 10000022, + "name": "L0AD-B", + "type": "system" + }, + { + "id": 30001877, + "regionId": 10000022, + "name": "8ZO-CK", + "type": "system" + }, + { + "id": 30001878, + "regionId": 10000022, + "name": "WEQT-K", + "type": "system" + }, + { + "id": 30001879, + "regionId": 10000022, + "name": "8O-OSG", + "type": "system" + }, + { + "id": 30001880, + "regionId": 10000022, + "name": "1H-I12", + "type": "system" + }, + { + "id": 30001881, + "regionId": 10000022, + "name": "D9D-GD", + "type": "system" + }, + { + "id": 30001882, + "regionId": 10000022, + "name": "4A-XJ6", + "type": "system" + }, + { + "id": 30001883, + "regionId": 10000022, + "name": "GU-54G", + "type": "system" + }, + { + "id": 30001884, + "regionId": 10000022, + "name": "7-X3RN", + "type": "system" + }, + { + "id": 30001885, + "regionId": 10000022, + "name": "BF-FVB", + "type": "system" + }, + { + "id": 30001886, + "regionId": 10000022, + "name": "9O-ZTS", + "type": "system" + }, + { + "id": 30001887, + "regionId": 10000022, + "name": "8KQR-O", + "type": "system" + }, + { + "id": 30001888, + "regionId": 10000022, + "name": "F9SX-1", + "type": "system" + }, + { + "id": 30001889, + "regionId": 10000022, + "name": "0G-A25", + "type": "system" + }, + { + "id": 30001890, + "regionId": 10000022, + "name": "WJO0-G", + "type": "system" + }, + { + "id": 30001891, + "regionId": 10000022, + "name": "S91-TI", + "type": "system" + }, + { + "id": 30001892, + "regionId": 10000022, + "name": "V1V-6F", + "type": "system" + }, + { + "id": 30001893, + "regionId": 10000022, + "name": "S-DLKC", + "type": "system" + }, + { + "id": 30001894, + "regionId": 10000022, + "name": "42-UOW", + "type": "system" + }, + { + "id": 30001895, + "regionId": 10000022, + "name": "CBGG-0", + "type": "system" + }, + { + "id": 30001896, + "regionId": 10000022, + "name": "A4UG-O", + "type": "system" + }, + { + "id": 30001897, + "regionId": 10000022, + "name": "W-VXL9", + "type": "system" + }, + { + "id": 30001898, + "regionId": 10000022, + "name": "U2-BJ2", + "type": "system" + }, + { + "id": 30001899, + "regionId": 10000022, + "name": "UKYS-5", + "type": "system" + }, + { + "id": 30001900, + "regionId": 10000022, + "name": "RV5-DW", + "type": "system" + }, + { + "id": 30001901, + "regionId": 10000022, + "name": "KP-FQ1", + "type": "system" + }, + { + "id": 30001902, + "regionId": 10000022, + "name": "RLDS-R", + "type": "system" + }, + { + "id": 30001903, + "regionId": 10000022, + "name": "QM-O7J", + "type": "system" + }, + { + "id": 30001904, + "regionId": 10000022, + "name": "0-7XA8", + "type": "system" + }, + { + "id": 30001905, + "regionId": 10000022, + "name": "X5O1-L", + "type": "system" + }, + { + "id": 30001906, + "regionId": 10000022, + "name": "F-TVAP", + "type": "system" + }, + { + "id": 30001907, + "regionId": 10000022, + "name": "6Y-0TW", + "type": "system" + }, + { + "id": 30001908, + "regionId": 10000022, + "name": "TL-T9Z", + "type": "system" + }, + { + "id": 30001909, + "regionId": 10000022, + "name": "E7-WSY", + "type": "system" + }, + { + "id": 30001910, + "regionId": 10000022, + "name": "B-G1LG", + "type": "system" + }, + { + "id": 30001911, + "regionId": 10000022, + "name": "T-8UOF", + "type": "system" + }, + { + "id": 30001912, + "regionId": 10000022, + "name": "DP-2WP", + "type": "system" + }, + { + "id": 30001913, + "regionId": 10000022, + "name": "MMR-LZ", + "type": "system" + }, + { + "id": 30001914, + "regionId": 10000022, + "name": "I-ME3L", + "type": "system" + }, + { + "id": 30001915, + "regionId": 10000022, + "name": "YE17-R", + "type": "system" + }, + { + "id": 30001916, + "regionId": 10000022, + "name": "T7-JNB", + "type": "system" + }, + { + "id": 30001917, + "regionId": 10000022, + "name": "LB0-A1", + "type": "system" + }, + { + "id": 30001918, + "regionId": 10000022, + "name": "S-BWWQ", + "type": "system" + }, + { + "id": 30001919, + "regionId": 10000022, + "name": "Z-R96X", + "type": "system" + }, + { + "id": 30001920, + "regionId": 10000022, + "name": "J-AYLV", + "type": "system" + }, + { + "id": 30001921, + "regionId": 10000022, + "name": "DABV-N", + "type": "system" + }, + { + "id": 30001922, + "regionId": 10000022, + "name": "ZH-KEV", + "type": "system" + }, + { + "id": 30001923, + "regionId": 10000022, + "name": "LC-1ED", + "type": "system" + }, + { + "id": 30001924, + "regionId": 10000022, + "name": "RPS-0K", + "type": "system" + }, + { + "id": 30001925, + "regionId": 10000022, + "name": "VNPF-7", + "type": "system" + }, + { + "id": 30001926, + "regionId": 10000022, + "name": "CJF-1P", + "type": "system" + }, + { + "id": 30001927, + "regionId": 10000022, + "name": "U6-FCE", + "type": "system" + }, + { + "id": 30001928, + "regionId": 10000022, + "name": "L6B-0N", + "type": "system" + }, + { + "id": 30001929, + "regionId": 10000022, + "name": "Z-XMUC", + "type": "system" + }, + { + "id": 30001930, + "regionId": 10000022, + "name": "6QBH-S", + "type": "system" + }, + { + "id": 30001931, + "regionId": 10000022, + "name": "RRWI-5", + "type": "system" + }, + { + "id": 30001932, + "regionId": 10000022, + "name": "Y-4U62", + "type": "system" + }, + { + "id": 30001933, + "regionId": 10000022, + "name": "EAWE-2", + "type": "system" + }, + { + "id": 30001934, + "regionId": 10000022, + "name": "I-3FET", + "type": "system" + }, + { + "id": 30001935, + "regionId": 10000022, + "name": "QCKK-T", + "type": "system" + }, + { + "id": 30001936, + "regionId": 10000022, + "name": "RP-H66", + "type": "system" + }, + { + "id": 30001937, + "regionId": 10000022, + "name": "JU-UYK", + "type": "system" + }, + { + "id": 30001938, + "regionId": 10000022, + "name": "O-FTHE", + "type": "system" + }, + { + "id": 30001939, + "regionId": 10000022, + "name": "W-Q233", + "type": "system" + }, + { + "id": 30001940, + "regionId": 10000022, + "name": "4XW2-D", + "type": "system" + }, + { + "id": 30001941, + "regionId": 10000022, + "name": "J5NU-K", + "type": "system" + }, + { + "id": 30001942, + "regionId": 10000022, + "name": "EOT-XL", + "type": "system" + }, + { + "id": 30001943, + "regionId": 10000022, + "name": "RVRE-Z", + "type": "system" + }, + { + "id": 30001944, + "regionId": 10000022, + "name": "B-2UL0", + "type": "system" + }, + { + "id": 30001945, + "regionId": 10000022, + "name": "L-A9FS", + "type": "system" + }, + { + "id": 30001946, + "regionId": 10000022, + "name": "OOO-FS", + "type": "system" + }, + { + "id": 30001947, + "regionId": 10000022, + "name": "373Z-7", + "type": "system" + }, + { + "id": 30001948, + "regionId": 10000022, + "name": "JVJ2-N", + "type": "system" + }, + { + "id": 30001949, + "regionId": 10000022, + "name": "2B-3M4", + "type": "system" + }, + { + "id": 30001950, + "regionId": 10000022, + "name": "A-XASO", + "type": "system" + }, + { + "id": 30001951, + "regionId": 10000022, + "name": "5J-UEX", + "type": "system" + }, + { + "id": 30001952, + "regionId": 10000022, + "name": "1H4V-O", + "type": "system" + }, + { + "id": 30001953, + "regionId": 10000022, + "name": "LGL-SD", + "type": "system" + }, + { + "id": 30001954, + "regionId": 10000022, + "name": "A-DZA8", + "type": "system" + }, + { + "id": 30001955, + "regionId": 10000022, + "name": "O-CT8N", + "type": "system" + }, + { + "id": 30001956, + "regionId": 10000022, + "name": "Z-6YQC", + "type": "system" + }, + { + "id": 30001957, + "regionId": 10000022, + "name": "F7-ICZ", + "type": "system" + }, + { + "id": 30001958, + "regionId": 10000022, + "name": "XFBE-T", + "type": "system" + }, + { + "id": 30001959, + "regionId": 10000022, + "name": "T-NNJZ", + "type": "system" + }, + { + "id": 30001960, + "regionId": 10000022, + "name": "DK6W-I", + "type": "system" + }, + { + "id": 30001961, + "regionId": 10000022, + "name": "0T-LIB", + "type": "system" + }, + { + "id": 30001962, + "regionId": 10000022, + "name": "NRT4-U", + "type": "system" + }, + { + "id": 30001963, + "regionId": 10000023, + "name": "KQK1-2", + "type": "system" + }, + { + "id": 30001964, + "regionId": 10000023, + "name": "O-BY0Y", + "type": "system" + }, + { + "id": 30001965, + "regionId": 10000023, + "name": "2D-0SO", + "type": "system" + }, + { + "id": 30001966, + "regionId": 10000023, + "name": "UR-E6D", + "type": "system" + }, + { + "id": 30001967, + "regionId": 10000023, + "name": "X47L-Q", + "type": "system" + }, + { + "id": 30001968, + "regionId": 10000023, + "name": "D7T-C0", + "type": "system" + }, + { + "id": 30001969, + "regionId": 10000023, + "name": "KI-TL0", + "type": "system" + }, + { + "id": 30001970, + "regionId": 10000023, + "name": "EL8-4Q", + "type": "system" + }, + { + "id": 30001971, + "regionId": 10000023, + "name": "JC-YX8", + "type": "system" + }, + { + "id": 30001972, + "regionId": 10000023, + "name": "5-9WNU", + "type": "system" + }, + { + "id": 30001973, + "regionId": 10000023, + "name": "XI-VUF", + "type": "system" + }, + { + "id": 30001974, + "regionId": 10000023, + "name": "N-H32Y", + "type": "system" + }, + { + "id": 30001975, + "regionId": 10000023, + "name": "12YA-2", + "type": "system" + }, + { + "id": 30001976, + "regionId": 10000023, + "name": "BDV3-T", + "type": "system" + }, + { + "id": 30001977, + "regionId": 10000023, + "name": "J-CIJV", + "type": "system" + }, + { + "id": 30001978, + "regionId": 10000023, + "name": "X-7OMU", + "type": "system" + }, + { + "id": 30001979, + "regionId": 10000023, + "name": "CXN1-Z", + "type": "system" + }, + { + "id": 30001980, + "regionId": 10000023, + "name": "KLY-C0", + "type": "system" + }, + { + "id": 30001981, + "regionId": 10000023, + "name": "CL6-ZG", + "type": "system" + }, + { + "id": 30001982, + "regionId": 10000023, + "name": "G95-VZ", + "type": "system" + }, + { + "id": 30001983, + "regionId": 10000023, + "name": "ROIR-Y", + "type": "system" + }, + { + "id": 30001984, + "regionId": 10000023, + "name": "EC-P8R", + "type": "system" + }, + { + "id": 30001985, + "regionId": 10000023, + "name": "EWOK-K", + "type": "system" + }, + { + "id": 30001986, + "regionId": 10000023, + "name": "O-N8XZ", + "type": "system" + }, + { + "id": 30001987, + "regionId": 10000023, + "name": "G-M4I8", + "type": "system" + }, + { + "id": 30001988, + "regionId": 10000023, + "name": "MI6O-6", + "type": "system" + }, + { + "id": 30001989, + "regionId": 10000023, + "name": "L-TS8S", + "type": "system" + }, + { + "id": 30001990, + "regionId": 10000023, + "name": "93PI-4", + "type": "system" + }, + { + "id": 30001991, + "regionId": 10000023, + "name": "ION-FG", + "type": "system" + }, + { + "id": 30001992, + "regionId": 10000023, + "name": "C-H9X7", + "type": "system" + }, + { + "id": 30001993, + "regionId": 10000023, + "name": "A8I-C5", + "type": "system" + }, + { + "id": 30001994, + "regionId": 10000023, + "name": "DK-FXK", + "type": "system" + }, + { + "id": 30001995, + "regionId": 10000023, + "name": "M-76XI", + "type": "system" + }, + { + "id": 30001996, + "regionId": 10000023, + "name": "ZJET-E", + "type": "system" + }, + { + "id": 30001997, + "regionId": 10000023, + "name": "U-INPD", + "type": "system" + }, + { + "id": 30001998, + "regionId": 10000023, + "name": "WW-KGD", + "type": "system" + }, + { + "id": 30001999, + "regionId": 10000023, + "name": "XQ-PXU", + "type": "system" + }, + { + "id": 30002000, + "regionId": 10000023, + "name": "M-YCD4", + "type": "system" + }, + { + "id": 30002001, + "regionId": 10000023, + "name": "Q-5211", + "type": "system" + }, + { + "id": 30002002, + "regionId": 10000023, + "name": "R-2R0G", + "type": "system" + }, + { + "id": 30002003, + "regionId": 10000023, + "name": "CR-AQH", + "type": "system" + }, + { + "id": 30002004, + "regionId": 10000023, + "name": "8S-0E1", + "type": "system" + }, + { + "id": 30002005, + "regionId": 10000023, + "name": "5ZXX-K", + "type": "system" + }, + { + "id": 30002006, + "regionId": 10000023, + "name": "JE-D5U", + "type": "system" + }, + { + "id": 30002007, + "regionId": 10000023, + "name": "2-6TGQ", + "type": "system" + }, + { + "id": 30002008, + "regionId": 10000023, + "name": "OE-9UF", + "type": "system" + }, + { + "id": 30002009, + "regionId": 10000023, + "name": "PFU-LH", + "type": "system" + }, + { + "id": 30002010, + "regionId": 10000023, + "name": "R6XN-9", + "type": "system" + }, + { + "id": 30002011, + "regionId": 10000023, + "name": "3V8-LJ", + "type": "system" + }, + { + "id": 30002012, + "regionId": 10000023, + "name": "B8EN-S", + "type": "system" + }, + { + "id": 30002013, + "regionId": 10000023, + "name": "R-LW2I", + "type": "system" + }, + { + "id": 30002014, + "regionId": 10000023, + "name": "DP-1YE", + "type": "system" + }, + { + "id": 30002015, + "regionId": 10000023, + "name": "4-ABS8", + "type": "system" + }, + { + "id": 30002016, + "regionId": 10000023, + "name": "7RM-N0", + "type": "system" + }, + { + "id": 30002017, + "regionId": 10000023, + "name": "S-MDYI", + "type": "system" + }, + { + "id": 30002018, + "regionId": 10000023, + "name": "ZKYV-W", + "type": "system" + }, + { + "id": 30002019, + "regionId": 10000023, + "name": "F-NMX6", + "type": "system" + }, + { + "id": 30002020, + "regionId": 10000023, + "name": "GA-P6C", + "type": "system" + }, + { + "id": 30002021, + "regionId": 10000023, + "name": "FWA-4V", + "type": "system" + }, + { + "id": 30002022, + "regionId": 10000023, + "name": "RZC-16", + "type": "system" + }, + { + "id": 30002023, + "regionId": 10000023, + "name": "RD-G2R", + "type": "system" + }, + { + "id": 30002024, + "regionId": 10000023, + "name": "UC3H-Y", + "type": "system" + }, + { + "id": 30002025, + "regionId": 10000023, + "name": "6GWE-A", + "type": "system" + }, + { + "id": 30002026, + "regionId": 10000023, + "name": "J-OK0C", + "type": "system" + }, + { + "id": 30002027, + "regionId": 10000023, + "name": "KDV-DE", + "type": "system" + }, + { + "id": 30002028, + "regionId": 10000023, + "name": "MT9Q-S", + "type": "system" + }, + { + "id": 30002029, + "regionId": 10000023, + "name": "B-9C24", + "type": "system" + }, + { + "id": 30002030, + "regionId": 10000023, + "name": "P-2TTL", + "type": "system" + }, + { + "id": 30002031, + "regionId": 10000023, + "name": "7X-VKB", + "type": "system" + }, + { + "id": 30002032, + "regionId": 10000023, + "name": "E-Z2ZX", + "type": "system" + }, + { + "id": 30002033, + "regionId": 10000023, + "name": "RORZ-H", + "type": "system" + }, + { + "id": 30002034, + "regionId": 10000023, + "name": "O-A6YN", + "type": "system" + }, + { + "id": 30002035, + "regionId": 10000023, + "name": "MQ-NPY", + "type": "system" + }, + { + "id": 30002036, + "regionId": 10000023, + "name": "D2-HOS", + "type": "system" + }, + { + "id": 30002037, + "regionId": 10000023, + "name": "Y2-6EA", + "type": "system" + }, + { + "id": 30002038, + "regionId": 10000023, + "name": "TFA0-U", + "type": "system" + }, + { + "id": 30002039, + "regionId": 10000023, + "name": "RQH-MY", + "type": "system" + }, + { + "id": 30002040, + "regionId": 10000023, + "name": "HPS5-C", + "type": "system" + }, + { + "id": 30002041, + "regionId": 10000023, + "name": "DT-TCD", + "type": "system" + }, + { + "id": 30002042, + "regionId": 10000023, + "name": "KU5R-W", + "type": "system" + }, + { + "id": 30002043, + "regionId": 10000023, + "name": "H1-J33", + "type": "system" + }, + { + "id": 30002044, + "regionId": 10000023, + "name": "Y-C3EQ", + "type": "system" + }, + { + "id": 30002045, + "regionId": 10000023, + "name": "OGV-AS", + "type": "system" + }, + { + "id": 30002046, + "regionId": 10000023, + "name": "7D-0SQ", + "type": "system" + }, + { + "id": 30002047, + "regionId": 10000023, + "name": "UI-8ZE", + "type": "system" + }, + { + "id": 30002048, + "regionId": 10000042, + "name": "Bei", + "type": "system" + }, + { + "id": 30002049, + "regionId": 10000042, + "name": "Uttindar", + "type": "system" + }, + { + "id": 30002050, + "regionId": 10000042, + "name": "Hagilur", + "type": "system" + }, + { + "id": 30002051, + "regionId": 10000042, + "name": "Anher", + "type": "system" + }, + { + "id": 30002052, + "regionId": 10000042, + "name": "Ragnarg", + "type": "system" + }, + { + "id": 30002053, + "regionId": 10000042, + "name": "Hek", + "type": "system" + }, + { + "id": 30002054, + "regionId": 10000042, + "name": "Hror", + "type": "system" + }, + { + "id": 30002055, + "regionId": 10000042, + "name": "Amo", + "type": "system" + }, + { + "id": 30002056, + "regionId": 10000042, + "name": "Resbroko", + "type": "system" + }, + { + "id": 30002057, + "regionId": 10000042, + "name": "Hadozeko", + "type": "system" + }, + { + "id": 30002058, + "regionId": 10000042, + "name": "Ardar", + "type": "system" + }, + { + "id": 30002059, + "regionId": 10000042, + "name": "Auner", + "type": "system" + }, + { + "id": 30002060, + "regionId": 10000042, + "name": "Evati", + "type": "system" + }, + { + "id": 30002061, + "regionId": 10000042, + "name": "Ofstold", + "type": "system" + }, + { + "id": 30002062, + "regionId": 10000042, + "name": "Todifrauan", + "type": "system" + }, + { + "id": 30002063, + "regionId": 10000042, + "name": "Helgatild", + "type": "system" + }, + { + "id": 30002064, + "regionId": 10000042, + "name": "Arnstur", + "type": "system" + }, + { + "id": 30002065, + "regionId": 10000042, + "name": "Lasleinur", + "type": "system" + }, + { + "id": 30002066, + "regionId": 10000042, + "name": "Arnher", + "type": "system" + }, + { + "id": 30002067, + "regionId": 10000042, + "name": "Brin", + "type": "system" + }, + { + "id": 30002068, + "regionId": 10000042, + "name": "Nakugard", + "type": "system" + }, + { + "id": 30002069, + "regionId": 10000042, + "name": "Traun", + "type": "system" + }, + { + "id": 30002070, + "regionId": 10000042, + "name": "Uriok", + "type": "system" + }, + { + "id": 30002071, + "regionId": 10000042, + "name": "Barkrik", + "type": "system" + }, + { + "id": 30002072, + "regionId": 10000042, + "name": "Inder", + "type": "system" + }, + { + "id": 30002073, + "regionId": 10000042, + "name": "Tvink", + "type": "system" + }, + { + "id": 30002074, + "regionId": 10000042, + "name": "Lanngisi", + "type": "system" + }, + { + "id": 30002075, + "regionId": 10000042, + "name": "Hjoramold", + "type": "system" + }, + { + "id": 30002076, + "regionId": 10000042, + "name": "Dudreda", + "type": "system" + }, + { + "id": 30002077, + "regionId": 10000042, + "name": "Hakisalki", + "type": "system" + }, + { + "id": 30002078, + "regionId": 10000042, + "name": "Arwa", + "type": "system" + }, + { + "id": 30002079, + "regionId": 10000070, + "name": "Krirald", + "type": "system" + }, + { + "id": 30002080, + "regionId": 10000042, + "name": "Arifsdald", + "type": "system" + }, + { + "id": 30002081, + "regionId": 10000042, + "name": "Ansen", + "type": "system" + }, + { + "id": 30002082, + "regionId": 10000042, + "name": "Floseswin", + "type": "system" + }, + { + "id": 30002083, + "regionId": 10000042, + "name": "Uisper", + "type": "system" + }, + { + "id": 30002084, + "regionId": 10000042, + "name": "Aset", + "type": "system" + }, + { + "id": 30002085, + "regionId": 10000042, + "name": "Eytjangard", + "type": "system" + }, + { + "id": 30002086, + "regionId": 10000042, + "name": "Turnur", + "type": "system" + }, + { + "id": 30002087, + "regionId": 10000042, + "name": "Isbrabata", + "type": "system" + }, + { + "id": 30002088, + "regionId": 10000042, + "name": "Vimeini", + "type": "system" + }, + { + "id": 30002089, + "regionId": 10000042, + "name": "Avenod", + "type": "system" + }, + { + "id": 30002090, + "regionId": 10000042, + "name": "Frerstorn", + "type": "system" + }, + { + "id": 30002091, + "regionId": 10000042, + "name": "Ontorn", + "type": "system" + }, + { + "id": 30002092, + "regionId": 10000042, + "name": "Sirekur", + "type": "system" + }, + { + "id": 30002093, + "regionId": 10000042, + "name": "Gebuladi", + "type": "system" + }, + { + "id": 30002094, + "regionId": 10000042, + "name": "Ebolfer", + "type": "system" + }, + { + "id": 30002095, + "regionId": 10000042, + "name": "Eszur", + "type": "system" + }, + { + "id": 30002096, + "regionId": 10000042, + "name": "Hofjaldgund", + "type": "system" + }, + { + "id": 30002097, + "regionId": 10000042, + "name": "Klogori", + "type": "system" + }, + { + "id": 30002098, + "regionId": 10000042, + "name": "Orfrold", + "type": "system" + }, + { + "id": 30002099, + "regionId": 10000042, + "name": "Egmar", + "type": "system" + }, + { + "id": 30002100, + "regionId": 10000042, + "name": "Taff", + "type": "system" + }, + { + "id": 30002101, + "regionId": 10000042, + "name": "Ualkin", + "type": "system" + }, + { + "id": 30002102, + "regionId": 10000042, + "name": "Gukarla", + "type": "system" + }, + { + "id": 30002103, + "regionId": 10000025, + "name": "NS2L-4", + "type": "system" + }, + { + "id": 30002104, + "regionId": 10000025, + "name": "QI-S9W", + "type": "system" + }, + { + "id": 30002105, + "regionId": 10000025, + "name": "B-S347", + "type": "system" + }, + { + "id": 30002106, + "regionId": 10000025, + "name": "PPFB-U", + "type": "system" + }, + { + "id": 30002107, + "regionId": 10000025, + "name": "AF0-V5", + "type": "system" + }, + { + "id": 30002108, + "regionId": 10000025, + "name": "B-A587", + "type": "system" + }, + { + "id": 30002109, + "regionId": 10000025, + "name": "Y19P-1", + "type": "system" + }, + { + "id": 30002110, + "regionId": 10000025, + "name": "B9E-H6", + "type": "system" + }, + { + "id": 30002111, + "regionId": 10000025, + "name": "SPBS-6", + "type": "system" + }, + { + "id": 30002112, + "regionId": 10000025, + "name": "JDAS-0", + "type": "system" + }, + { + "id": 30002113, + "regionId": 10000025, + "name": "A4B-V5", + "type": "system" + }, + { + "id": 30002114, + "regionId": 10000025, + "name": "LN-56V", + "type": "system" + }, + { + "id": 30002115, + "regionId": 10000025, + "name": "Y2-QUV", + "type": "system" + }, + { + "id": 30002116, + "regionId": 10000025, + "name": "O7-7UX", + "type": "system" + }, + { + "id": 30002117, + "regionId": 10000025, + "name": "Z8-81T", + "type": "system" + }, + { + "id": 30002118, + "regionId": 10000025, + "name": "XD-JW7", + "type": "system" + }, + { + "id": 30002119, + "regionId": 10000025, + "name": "DY-P7Q", + "type": "system" + }, + { + "id": 30002120, + "regionId": 10000025, + "name": "H-RXNZ", + "type": "system" + }, + { + "id": 30002121, + "regionId": 10000025, + "name": "ZBP-TP", + "type": "system" + }, + { + "id": 30002122, + "regionId": 10000025, + "name": "XVV-21", + "type": "system" + }, + { + "id": 30002123, + "regionId": 10000025, + "name": "GXK-7F", + "type": "system" + }, + { + "id": 30002124, + "regionId": 10000025, + "name": "EA-HSA", + "type": "system" + }, + { + "id": 30002125, + "regionId": 10000025, + "name": "78TS-Q", + "type": "system" + }, + { + "id": 30002126, + "regionId": 10000025, + "name": "WYF8-8", + "type": "system" + }, + { + "id": 30002127, + "regionId": 10000025, + "name": "CJNF-J", + "type": "system" + }, + { + "id": 30002128, + "regionId": 10000025, + "name": "FYI-49", + "type": "system" + }, + { + "id": 30002129, + "regionId": 10000025, + "name": "RF6T-8", + "type": "system" + }, + { + "id": 30002130, + "regionId": 10000025, + "name": "ZJA-6U", + "type": "system" + }, + { + "id": 30002131, + "regionId": 10000025, + "name": "94FR-S", + "type": "system" + }, + { + "id": 30002132, + "regionId": 10000025, + "name": "Q-HJ97", + "type": "system" + }, + { + "id": 30002133, + "regionId": 10000025, + "name": "GM-0K7", + "type": "system" + }, + { + "id": 30002134, + "regionId": 10000025, + "name": "I-NGI8", + "type": "system" + }, + { + "id": 30002135, + "regionId": 10000025, + "name": "R-ZUOL", + "type": "system" + }, + { + "id": 30002136, + "regionId": 10000025, + "name": "E1F-LK", + "type": "system" + }, + { + "id": 30002137, + "regionId": 10000025, + "name": "Z4-QLD", + "type": "system" + }, + { + "id": 30002138, + "regionId": 10000025, + "name": "QE-E1D", + "type": "system" + }, + { + "id": 30002139, + "regionId": 10000025, + "name": "LK1K-5", + "type": "system" + }, + { + "id": 30002140, + "regionId": 10000025, + "name": "REB-KR", + "type": "system" + }, + { + "id": 30002141, + "regionId": 10000025, + "name": "Z-H2MA", + "type": "system" + }, + { + "id": 30002142, + "regionId": 10000025, + "name": "L-5JCJ", + "type": "system" + }, + { + "id": 30002143, + "regionId": 10000025, + "name": "B-KDOZ", + "type": "system" + }, + { + "id": 30002144, + "regionId": 10000025, + "name": "4-GB14", + "type": "system" + }, + { + "id": 30002145, + "regionId": 10000025, + "name": "PH-NFR", + "type": "system" + }, + { + "id": 30002146, + "regionId": 10000025, + "name": "DW-N2S", + "type": "system" + }, + { + "id": 30002147, + "regionId": 10000025, + "name": "W-FHWJ", + "type": "system" + }, + { + "id": 30002148, + "regionId": 10000025, + "name": "X-6WC7", + "type": "system" + }, + { + "id": 30002149, + "regionId": 10000025, + "name": "D-BAMJ", + "type": "system" + }, + { + "id": 30002150, + "regionId": 10000025, + "name": "JKWP-U", + "type": "system" + }, + { + "id": 30002151, + "regionId": 10000025, + "name": "RHE7-W", + "type": "system" + }, + { + "id": 30002152, + "regionId": 10000025, + "name": "F76-8Q", + "type": "system" + }, + { + "id": 30002153, + "regionId": 10000025, + "name": "O3Z5-G", + "type": "system" + }, + { + "id": 30002154, + "regionId": 10000025, + "name": "4DV-1T", + "type": "system" + }, + { + "id": 30002155, + "regionId": 10000025, + "name": "XS-K1O", + "type": "system" + }, + { + "id": 30002156, + "regionId": 10000025, + "name": "FN-DSR", + "type": "system" + }, + { + "id": 30002157, + "regionId": 10000025, + "name": "B-R5RB", + "type": "system" + }, + { + "id": 30002158, + "regionId": 10000025, + "name": "7-ZT1Y", + "type": "system" + }, + { + "id": 30002159, + "regionId": 10000025, + "name": "9-XN3F", + "type": "system" + }, + { + "id": 30002160, + "regionId": 10000025, + "name": "AC-7LZ", + "type": "system" + }, + { + "id": 30002161, + "regionId": 10000025, + "name": "LBA-SO", + "type": "system" + }, + { + "id": 30002162, + "regionId": 10000025, + "name": "Y-FZ5N", + "type": "system" + }, + { + "id": 30002163, + "regionId": 10000025, + "name": "E8-YS9", + "type": "system" + }, + { + "id": 30002164, + "regionId": 10000025, + "name": "U79-JF", + "type": "system" + }, + { + "id": 30002165, + "regionId": 10000025, + "name": "B2-UQW", + "type": "system" + }, + { + "id": 30002166, + "regionId": 10000025, + "name": "U9U-TQ", + "type": "system" + }, + { + "id": 30002167, + "regionId": 10000025, + "name": "6-I162", + "type": "system" + }, + { + "id": 30002168, + "regionId": 10000025, + "name": "08-N7Q", + "type": "system" + }, + { + "id": 30002169, + "regionId": 10000025, + "name": "Y-C4AL", + "type": "system" + }, + { + "id": 30002170, + "regionId": 10000025, + "name": "CKX-RW", + "type": "system" + }, + { + "id": 30002171, + "regionId": 10000025, + "name": "8X6T-8", + "type": "system" + }, + { + "id": 30002172, + "regionId": 10000025, + "name": "W4E-IT", + "type": "system" + }, + { + "id": 30002173, + "regionId": 10000025, + "name": "OP9L-F", + "type": "system" + }, + { + "id": 30002174, + "regionId": 10000025, + "name": "J-QA7I", + "type": "system" + }, + { + "id": 30002175, + "regionId": 10000025, + "name": "2O-EEW", + "type": "system" + }, + { + "id": 30002176, + "regionId": 10000025, + "name": "Y-N4EF", + "type": "system" + }, + { + "id": 30002177, + "regionId": 10000025, + "name": "7YSF-E", + "type": "system" + }, + { + "id": 30002178, + "regionId": 10000025, + "name": "KCDX-7", + "type": "system" + }, + { + "id": 30002179, + "regionId": 10000025, + "name": "O7-VJ5", + "type": "system" + }, + { + "id": 30002180, + "regionId": 10000025, + "name": "FRTC-5", + "type": "system" + }, + { + "id": 30002181, + "regionId": 10000025, + "name": "M-ZJWJ", + "type": "system" + }, + { + "id": 30002182, + "regionId": 10000025, + "name": "R-ORB7", + "type": "system" + }, + { + "id": 30002183, + "regionId": 10000025, + "name": "RU-PT9", + "type": "system" + }, + { + "id": 30002184, + "regionId": 10000025, + "name": "DR-427", + "type": "system" + }, + { + "id": 30002185, + "regionId": 10000025, + "name": "NI-J0B", + "type": "system" + }, + { + "id": 30002186, + "regionId": 10000025, + "name": "QN-6J2", + "type": "system" + }, + { + "id": 30002187, + "regionId": 10000043, + "name": "Amarr", + "type": "system" + }, + { + "id": 30002188, + "regionId": 10000043, + "name": "Boranai", + "type": "system" + }, + { + "id": 30002189, + "regionId": 10000043, + "name": "Hedion", + "type": "system" + }, + { + "id": 30002190, + "regionId": 10000043, + "name": "Mabnen", + "type": "system" + }, + { + "id": 30002191, + "regionId": 10000043, + "name": "Toshabia", + "type": "system" + }, + { + "id": 30002192, + "regionId": 10000043, + "name": "Irnin", + "type": "system" + }, + { + "id": 30002193, + "regionId": 10000043, + "name": "Kehour", + "type": "system" + }, + { + "id": 30002194, + "regionId": 10000043, + "name": "Martha", + "type": "system" + }, + { + "id": 30002195, + "regionId": 10000043, + "name": "Simbeloud", + "type": "system" + }, + { + "id": 30002196, + "regionId": 10000043, + "name": "Ebidan", + "type": "system" + }, + { + "id": 30002197, + "regionId": 10000043, + "name": "Akhragan", + "type": "system" + }, + { + "id": 30002198, + "regionId": 10000043, + "name": "Mikhir", + "type": "system" + }, + { + "id": 30002199, + "regionId": 10000043, + "name": "Bashakru", + "type": "system" + }, + { + "id": 30002200, + "regionId": 10000043, + "name": "Sukirah", + "type": "system" + }, + { + "id": 30002201, + "regionId": 10000043, + "name": "Shuria", + "type": "system" + }, + { + "id": 30002202, + "regionId": 10000043, + "name": "Narai", + "type": "system" + }, + { + "id": 30002203, + "regionId": 10000043, + "name": "Ziona", + "type": "system" + }, + { + "id": 30002204, + "regionId": 10000043, + "name": "Gaha", + "type": "system" + }, + { + "id": 30002205, + "regionId": 10000043, + "name": "Armala", + "type": "system" + }, + { + "id": 30002206, + "regionId": 10000043, + "name": "Murema", + "type": "system" + }, + { + "id": 30002207, + "regionId": 10000043, + "name": "Cailanar", + "type": "system" + }, + { + "id": 30002208, + "regionId": 10000043, + "name": "Ilonarav", + "type": "system" + }, + { + "id": 30002209, + "regionId": 10000043, + "name": "Uchat", + "type": "system" + }, + { + "id": 30002210, + "regionId": 10000043, + "name": "Joppaya", + "type": "system" + }, + { + "id": 30002211, + "regionId": 10000043, + "name": "Pelkia", + "type": "system" + }, + { + "id": 30002212, + "regionId": 10000043, + "name": "Raren", + "type": "system" + }, + { + "id": 30002213, + "regionId": 10000043, + "name": "Mazitah", + "type": "system" + }, + { + "id": 30002214, + "regionId": 10000043, + "name": "Hiramu", + "type": "system" + }, + { + "id": 30002215, + "regionId": 10000043, + "name": "Sakhti", + "type": "system" + }, + { + "id": 30002216, + "regionId": 10000043, + "name": "Aldali", + "type": "system" + }, + { + "id": 30002217, + "regionId": 10000043, + "name": "Hutian", + "type": "system" + }, + { + "id": 30002218, + "regionId": 10000043, + "name": "Noli", + "type": "system" + }, + { + "id": 30002219, + "regionId": 10000043, + "name": "Nomash", + "type": "system" + }, + { + "id": 30002220, + "regionId": 10000043, + "name": "Aghesi", + "type": "system" + }, + { + "id": 30002221, + "regionId": 10000043, + "name": "Fabin", + "type": "system" + }, + { + "id": 30002222, + "regionId": 10000043, + "name": "Airshaz", + "type": "system" + }, + { + "id": 30002223, + "regionId": 10000043, + "name": "Patzcha", + "type": "system" + }, + { + "id": 30002224, + "regionId": 10000043, + "name": "Charra", + "type": "system" + }, + { + "id": 30002225, + "regionId": 10000070, + "name": "Harva", + "type": "system" + }, + { + "id": 30002226, + "regionId": 10000043, + "name": "Thebeka", + "type": "system" + }, + { + "id": 30002227, + "regionId": 10000043, + "name": "Rasile", + "type": "system" + }, + { + "id": 30002228, + "regionId": 10000043, + "name": "Nererut", + "type": "system" + }, + { + "id": 30002229, + "regionId": 10000043, + "name": "Sitanan", + "type": "system" + }, + { + "id": 30002230, + "regionId": 10000043, + "name": "Vashkah", + "type": "system" + }, + { + "id": 30002231, + "regionId": 10000043, + "name": "ArdishapurPrime", + "type": "system" + }, + { + "id": 30002232, + "regionId": 10000043, + "name": "Gid", + "type": "system" + }, + { + "id": 30002233, + "regionId": 10000043, + "name": "Dakba", + "type": "system" + }, + { + "id": 30002234, + "regionId": 10000043, + "name": "Nifshed", + "type": "system" + }, + { + "id": 30002235, + "regionId": 10000043, + "name": "Shumam", + "type": "system" + }, + { + "id": 30002236, + "regionId": 10000043, + "name": "Milal", + "type": "system" + }, + { + "id": 30002237, + "regionId": 10000043, + "name": "Sobenah", + "type": "system" + }, + { + "id": 30002238, + "regionId": 10000043, + "name": "Bourar", + "type": "system" + }, + { + "id": 30002239, + "regionId": 10000043, + "name": "Rammi", + "type": "system" + }, + { + "id": 30002240, + "regionId": 10000043, + "name": "Arodan", + "type": "system" + }, + { + "id": 30002241, + "regionId": 10000043, + "name": "Rimbah", + "type": "system" + }, + { + "id": 30002242, + "regionId": 10000043, + "name": "Mamenkhanar", + "type": "system" + }, + { + "id": 30002243, + "regionId": 10000043, + "name": "Seiradih", + "type": "system" + }, + { + "id": 30002244, + "regionId": 10000043, + "name": "Arera", + "type": "system" + }, + { + "id": 30002245, + "regionId": 10000043, + "name": "Hizhara", + "type": "system" + }, + { + "id": 30002246, + "regionId": 10000043, + "name": "Neziel", + "type": "system" + }, + { + "id": 30002247, + "regionId": 10000043, + "name": "Ahala", + "type": "system" + }, + { + "id": 30002248, + "regionId": 10000043, + "name": "Knophtikoo", + "type": "system" + }, + { + "id": 30002249, + "regionId": 10000043, + "name": "Ruchy", + "type": "system" + }, + { + "id": 30002250, + "regionId": 10000043, + "name": "Hai", + "type": "system" + }, + { + "id": 30002251, + "regionId": 10000043, + "name": "Sadye", + "type": "system" + }, + { + "id": 30002252, + "regionId": 10000043, + "name": "Bika", + "type": "system" + }, + { + "id": 30002253, + "regionId": 10000043, + "name": "Arshat", + "type": "system" + }, + { + "id": 30002254, + "regionId": 10000043, + "name": "Jerma", + "type": "system" + }, + { + "id": 30002255, + "regionId": 10000043, + "name": "Miyeli", + "type": "system" + }, + { + "id": 30002256, + "regionId": 10000043, + "name": "Reyi", + "type": "system" + }, + { + "id": 30002257, + "regionId": 10000043, + "name": "Moussou", + "type": "system" + }, + { + "id": 30002258, + "regionId": 10000043, + "name": "Nadohman", + "type": "system" + }, + { + "id": 30002259, + "regionId": 10000043, + "name": "Sahdil", + "type": "system" + }, + { + "id": 30002260, + "regionId": 10000043, + "name": "Esteban", + "type": "system" + }, + { + "id": 30002261, + "regionId": 10000043, + "name": "Luromooh", + "type": "system" + }, + { + "id": 30002262, + "regionId": 10000043, + "name": "Nalu", + "type": "system" + }, + { + "id": 30002263, + "regionId": 10000043, + "name": "Jarshitsan", + "type": "system" + }, + { + "id": 30002264, + "regionId": 10000043, + "name": "Hadonoo", + "type": "system" + }, + { + "id": 30002265, + "regionId": 10000043, + "name": "Azizora", + "type": "system" + }, + { + "id": 30002266, + "regionId": 10000043, + "name": "Ahmak", + "type": "system" + }, + { + "id": 30002267, + "regionId": 10000043, + "name": "Shabura", + "type": "system" + }, + { + "id": 30002268, + "regionId": 10000043, + "name": "Adia", + "type": "system" + }, + { + "id": 30002269, + "regionId": 10000043, + "name": "Ebo", + "type": "system" + }, + { + "id": 30002270, + "regionId": 10000043, + "name": "Avair", + "type": "system" + }, + { + "id": 30002271, + "regionId": 10000043, + "name": "Rayl", + "type": "system" + }, + { + "id": 30002272, + "regionId": 10000043, + "name": "Asoutar", + "type": "system" + }, + { + "id": 30002273, + "regionId": 10000043, + "name": "Porsharrah", + "type": "system" + }, + { + "id": 30002274, + "regionId": 10000043, + "name": "Tastela", + "type": "system" + }, + { + "id": 30002275, + "regionId": 10000043, + "name": "Clarelam", + "type": "system" + }, + { + "id": 30002276, + "regionId": 10000043, + "name": "Isamm", + "type": "system" + }, + { + "id": 30002277, + "regionId": 10000043, + "name": "Ebtesham", + "type": "system" + }, + { + "id": 30002278, + "regionId": 10000043, + "name": "Artoun", + "type": "system" + }, + { + "id": 30002279, + "regionId": 10000043, + "name": "Safizon", + "type": "system" + }, + { + "id": 30002280, + "regionId": 10000043, + "name": "Zatsyaki", + "type": "system" + }, + { + "id": 30002281, + "regionId": 10000043, + "name": "Eba", + "type": "system" + }, + { + "id": 30002282, + "regionId": 10000043, + "name": "Bhizheba", + "type": "system" + }, + { + "id": 30002283, + "regionId": 10000027, + "name": "2G-VDP", + "type": "system" + }, + { + "id": 30002284, + "regionId": 10000027, + "name": "9F-3CR", + "type": "system" + }, + { + "id": 30002285, + "regionId": 10000027, + "name": "J7M-3W", + "type": "system" + }, + { + "id": 30002286, + "regionId": 10000027, + "name": "KRPF-A", + "type": "system" + }, + { + "id": 30002287, + "regionId": 10000027, + "name": "9P-870", + "type": "system" + }, + { + "id": 30002288, + "regionId": 10000027, + "name": "QNXJ-M", + "type": "system" + }, + { + "id": 30002289, + "regionId": 10000027, + "name": "AID-9T", + "type": "system" + }, + { + "id": 30002290, + "regionId": 10000027, + "name": "PXE-RG", + "type": "system" + }, + { + "id": 30002291, + "regionId": 10000027, + "name": "5J-62N", + "type": "system" + }, + { + "id": 30002292, + "regionId": 10000027, + "name": "Z-DRIY", + "type": "system" + }, + { + "id": 30002293, + "regionId": 10000027, + "name": "8-MXHA", + "type": "system" + }, + { + "id": 30002294, + "regionId": 10000027, + "name": "LPVL-5", + "type": "system" + }, + { + "id": 30002295, + "regionId": 10000027, + "name": "D3S-EA", + "type": "system" + }, + { + "id": 30002296, + "regionId": 10000027, + "name": "KGT3-6", + "type": "system" + }, + { + "id": 30002297, + "regionId": 10000027, + "name": "4LJ6-Q", + "type": "system" + }, + { + "id": 30002298, + "regionId": 10000027, + "name": "SAH-AD", + "type": "system" + }, + { + "id": 30002299, + "regionId": 10000027, + "name": "MF-PGF", + "type": "system" + }, + { + "id": 30002300, + "regionId": 10000027, + "name": "L-ZJLN", + "type": "system" + }, + { + "id": 30002301, + "regionId": 10000027, + "name": "G-QTSD", + "type": "system" + }, + { + "id": 30002302, + "regionId": 10000027, + "name": "3G-LFX", + "type": "system" + }, + { + "id": 30002303, + "regionId": 10000027, + "name": "NK-VTL", + "type": "system" + }, + { + "id": 30002304, + "regionId": 10000027, + "name": "D-CR6W", + "type": "system" + }, + { + "id": 30002305, + "regionId": 10000027, + "name": "BY-7PY", + "type": "system" + }, + { + "id": 30002306, + "regionId": 10000027, + "name": "GN-TNT", + "type": "system" + }, + { + "id": 30002307, + "regionId": 10000027, + "name": "QKCU-4", + "type": "system" + }, + { + "id": 30002308, + "regionId": 10000027, + "name": "0M-24X", + "type": "system" + }, + { + "id": 30002309, + "regionId": 10000027, + "name": "N06Z-Q", + "type": "system" + }, + { + "id": 30002310, + "regionId": 10000027, + "name": "YX-0KH", + "type": "system" + }, + { + "id": 30002311, + "regionId": 10000027, + "name": "KMH-J1", + "type": "system" + }, + { + "id": 30002312, + "regionId": 10000027, + "name": "CYB-BZ", + "type": "system" + }, + { + "id": 30002313, + "regionId": 10000027, + "name": "5U-3PW", + "type": "system" + }, + { + "id": 30002314, + "regionId": 10000027, + "name": "89JS-J", + "type": "system" + }, + { + "id": 30002315, + "regionId": 10000027, + "name": "C9R-NO", + "type": "system" + }, + { + "id": 30002316, + "regionId": 10000027, + "name": "FKR-SR", + "type": "system" + }, + { + "id": 30002317, + "regionId": 10000027, + "name": "1ACJ-6", + "type": "system" + }, + { + "id": 30002318, + "regionId": 10000027, + "name": "BNX-AS", + "type": "system" + }, + { + "id": 30002319, + "regionId": 10000027, + "name": "XB-9U2", + "type": "system" + }, + { + "id": 30002320, + "regionId": 10000027, + "name": "F9-FUV", + "type": "system" + }, + { + "id": 30002321, + "regionId": 10000027, + "name": "FB-MPY", + "type": "system" + }, + { + "id": 30002322, + "regionId": 10000027, + "name": "RO-0PZ", + "type": "system" + }, + { + "id": 30002323, + "regionId": 10000027, + "name": "JTA2-2", + "type": "system" + }, + { + "id": 30002324, + "regionId": 10000027, + "name": "R-6KYM", + "type": "system" + }, + { + "id": 30002325, + "regionId": 10000027, + "name": "3H58-R", + "type": "system" + }, + { + "id": 30002326, + "regionId": 10000027, + "name": "RV-GA8", + "type": "system" + }, + { + "id": 30002327, + "regionId": 10000027, + "name": "TP-RTO", + "type": "system" + }, + { + "id": 30002328, + "regionId": 10000027, + "name": "GTY-FW", + "type": "system" + }, + { + "id": 30002329, + "regionId": 10000027, + "name": "1H5-3W", + "type": "system" + }, + { + "id": 30002330, + "regionId": 10000027, + "name": "QZV-X3", + "type": "system" + }, + { + "id": 30002331, + "regionId": 10000027, + "name": "IS-OBW", + "type": "system" + }, + { + "id": 30002332, + "regionId": 10000027, + "name": "1GH-48", + "type": "system" + }, + { + "id": 30002333, + "regionId": 10000027, + "name": "IRD-HU", + "type": "system" + }, + { + "id": 30002334, + "regionId": 10000027, + "name": "B-2VXB", + "type": "system" + }, + { + "id": 30002335, + "regionId": 10000027, + "name": "FIZU-X", + "type": "system" + }, + { + "id": 30002336, + "regionId": 10000027, + "name": "JAWX-R", + "type": "system" + }, + { + "id": 30002337, + "regionId": 10000027, + "name": "Z0G-XG", + "type": "system" + }, + { + "id": 30002338, + "regionId": 10000027, + "name": "ALC-JM", + "type": "system" + }, + { + "id": 30002339, + "regionId": 10000027, + "name": "9QS5-C", + "type": "system" + }, + { + "id": 30002340, + "regionId": 10000027, + "name": "NWX-LI", + "type": "system" + }, + { + "id": 30002341, + "regionId": 10000027, + "name": "N-SFZK", + "type": "system" + }, + { + "id": 30002342, + "regionId": 10000027, + "name": "2B-UUQ", + "type": "system" + }, + { + "id": 30002343, + "regionId": 10000027, + "name": "I64-XB", + "type": "system" + }, + { + "id": 30002344, + "regionId": 10000027, + "name": "4-QDIX", + "type": "system" + }, + { + "id": 30002345, + "regionId": 10000027, + "name": "FGJP-J", + "type": "system" + }, + { + "id": 30002346, + "regionId": 10000027, + "name": "89-JPE", + "type": "system" + }, + { + "id": 30002347, + "regionId": 10000027, + "name": "D-IZT9", + "type": "system" + }, + { + "id": 30002348, + "regionId": 10000027, + "name": "WU9-ZR", + "type": "system" + }, + { + "id": 30002349, + "regionId": 10000027, + "name": "E8-432", + "type": "system" + }, + { + "id": 30002350, + "regionId": 10000027, + "name": "43-1TL", + "type": "system" + }, + { + "id": 30002351, + "regionId": 10000027, + "name": "O-LJOO", + "type": "system" + }, + { + "id": 30002352, + "regionId": 10000027, + "name": "ZS-PNI", + "type": "system" + }, + { + "id": 30002353, + "regionId": 10000027, + "name": "TZ-74M", + "type": "system" + }, + { + "id": 30002354, + "regionId": 10000027, + "name": "8KE-YS", + "type": "system" + }, + { + "id": 30002355, + "regionId": 10000027, + "name": "LXQ2-T", + "type": "system" + }, + { + "id": 30002356, + "regionId": 10000027, + "name": "HV-EAP", + "type": "system" + }, + { + "id": 30002357, + "regionId": 10000027, + "name": "3IK-7O", + "type": "system" + }, + { + "id": 30002358, + "regionId": 10000027, + "name": "O-EUHA", + "type": "system" + }, + { + "id": 30002359, + "regionId": 10000027, + "name": "MO-I1W", + "type": "system" + }, + { + "id": 30002360, + "regionId": 10000027, + "name": "ZZ5X-M", + "type": "system" + }, + { + "id": 30002361, + "regionId": 10000027, + "name": "UAV-1E", + "type": "system" + }, + { + "id": 30002362, + "regionId": 10000027, + "name": "CL-IRS", + "type": "system" + }, + { + "id": 30002363, + "regionId": 10000027, + "name": "QBZO-R", + "type": "system" + }, + { + "id": 30002364, + "regionId": 10000027, + "name": "QHJR-E", + "type": "system" + }, + { + "id": 30002365, + "regionId": 10000027, + "name": "1PF-BC", + "type": "system" + }, + { + "id": 30002366, + "regionId": 10000027, + "name": "D-OJEZ", + "type": "system" + }, + { + "id": 30002367, + "regionId": 10000027, + "name": "C-V6DQ", + "type": "system" + }, + { + "id": 30002368, + "regionId": 10000027, + "name": "Z-FET0", + "type": "system" + }, + { + "id": 30002369, + "regionId": 10000027, + "name": "EX-GBT", + "type": "system" + }, + { + "id": 30002370, + "regionId": 10000027, + "name": "PX-IHN", + "type": "system" + }, + { + "id": 30002371, + "regionId": 10000027, + "name": "WPV-JN", + "type": "system" + }, + { + "id": 30002372, + "regionId": 10000027, + "name": "IL-H0A", + "type": "system" + }, + { + "id": 30002373, + "regionId": 10000027, + "name": "CT8K-0", + "type": "system" + }, + { + "id": 30002374, + "regionId": 10000027, + "name": "M9-LAN", + "type": "system" + }, + { + "id": 30002375, + "regionId": 10000027, + "name": "C-4D0W", + "type": "system" + }, + { + "id": 30002376, + "regionId": 10000027, + "name": "L4X-1V", + "type": "system" + }, + { + "id": 30002377, + "regionId": 10000027, + "name": "M-V0PQ", + "type": "system" + }, + { + "id": 30002378, + "regionId": 10000027, + "name": "DYPL-6", + "type": "system" + }, + { + "id": 30002379, + "regionId": 10000027, + "name": "V-OL61", + "type": "system" + }, + { + "id": 30002380, + "regionId": 10000027, + "name": "RK-Q51", + "type": "system" + }, + { + "id": 30002381, + "regionId": 10000027, + "name": "F69O-M", + "type": "system" + }, + { + "id": 30002382, + "regionId": 10000027, + "name": "T-IDGH", + "type": "system" + }, + { + "id": 30002383, + "regionId": 10000028, + "name": "Aeddin", + "type": "system" + }, + { + "id": 30002384, + "regionId": 10000028, + "name": "Gulfonodi", + "type": "system" + }, + { + "id": 30002385, + "regionId": 10000028, + "name": "Teonusude", + "type": "system" + }, + { + "id": 30002386, + "regionId": 10000028, + "name": "Gelfiven", + "type": "system" + }, + { + "id": 30002387, + "regionId": 10000028, + "name": "Bosena", + "type": "system" + }, + { + "id": 30002388, + "regionId": 10000028, + "name": "Oddelulf", + "type": "system" + }, + { + "id": 30002389, + "regionId": 10000028, + "name": "Atlar", + "type": "system" + }, + { + "id": 30002390, + "regionId": 10000028, + "name": "Heild", + "type": "system" + }, + { + "id": 30002391, + "regionId": 10000028, + "name": "Hrokkur", + "type": "system" + }, + { + "id": 30002392, + "regionId": 10000028, + "name": "Hrober", + "type": "system" + }, + { + "id": 30002393, + "regionId": 10000028, + "name": "Aedald", + "type": "system" + }, + { + "id": 30002394, + "regionId": 10000028, + "name": "Muttokon", + "type": "system" + }, + { + "id": 30002395, + "regionId": 10000028, + "name": "Audesder", + "type": "system" + }, + { + "id": 30002396, + "regionId": 10000028, + "name": "Illamur", + "type": "system" + }, + { + "id": 30002397, + "regionId": 10000028, + "name": "Horaka", + "type": "system" + }, + { + "id": 30002398, + "regionId": 10000028, + "name": "Eldulf", + "type": "system" + }, + { + "id": 30002399, + "regionId": 10000028, + "name": "Orien", + "type": "system" + }, + { + "id": 30002400, + "regionId": 10000028, + "name": "Varigne", + "type": "system" + }, + { + "id": 30002401, + "regionId": 10000028, + "name": "Meildolf", + "type": "system" + }, + { + "id": 30002402, + "regionId": 10000028, + "name": "Istodard", + "type": "system" + }, + { + "id": 30002403, + "regionId": 10000028, + "name": "Gonheim", + "type": "system" + }, + { + "id": 30002404, + "regionId": 10000028, + "name": "Half", + "type": "system" + }, + { + "id": 30002405, + "regionId": 10000028, + "name": "Sakulda", + "type": "system" + }, + { + "id": 30002406, + "regionId": 10000028, + "name": "Hedaleolfarber", + "type": "system" + }, + { + "id": 30002407, + "regionId": 10000028, + "name": "Altbrard", + "type": "system" + }, + { + "id": 30002408, + "regionId": 10000028, + "name": "Fegomenko", + "type": "system" + }, + { + "id": 30002409, + "regionId": 10000028, + "name": "Osvetur", + "type": "system" + }, + { + "id": 30002410, + "regionId": 10000028, + "name": "Mimiror", + "type": "system" + }, + { + "id": 30002411, + "regionId": 10000070, + "name": "Skarkon", + "type": "system" + }, + { + "id": 30002412, + "regionId": 10000028, + "name": "Ennur", + "type": "system" + }, + { + "id": 30002413, + "regionId": 10000028, + "name": "Unertek", + "type": "system" + }, + { + "id": 30002414, + "regionId": 10000028, + "name": "Klingt", + "type": "system" + }, + { + "id": 30002415, + "regionId": 10000028, + "name": "Weld", + "type": "system" + }, + { + "id": 30002416, + "regionId": 10000028, + "name": "Kattegaud", + "type": "system" + }, + { + "id": 30002417, + "regionId": 10000028, + "name": "Kadlina", + "type": "system" + }, + { + "id": 30002418, + "regionId": 10000028, + "name": "Hegfunden", + "type": "system" + }, + { + "id": 30002419, + "regionId": 10000028, + "name": "Aeditide", + "type": "system" + }, + { + "id": 30002420, + "regionId": 10000028, + "name": "Egbinger", + "type": "system" + }, + { + "id": 30002421, + "regionId": 10000029, + "name": "MR4-MY", + "type": "system" + }, + { + "id": 30002422, + "regionId": 10000029, + "name": "SR-KBB", + "type": "system" + }, + { + "id": 30002423, + "regionId": 10000029, + "name": "FDZ4-A", + "type": "system" + }, + { + "id": 30002424, + "regionId": 10000029, + "name": "2E-ZR5", + "type": "system" + }, + { + "id": 30002425, + "regionId": 10000029, + "name": "O1-FTD", + "type": "system" + }, + { + "id": 30002426, + "regionId": 10000029, + "name": "Roua", + "type": "system" + }, + { + "id": 30002427, + "regionId": 10000029, + "name": "OEY-OR", + "type": "system" + }, + { + "id": 30002428, + "regionId": 10000029, + "name": "M-MD31", + "type": "system" + }, + { + "id": 30002429, + "regionId": 10000029, + "name": "WH-2EZ", + "type": "system" + }, + { + "id": 30002430, + "regionId": 10000029, + "name": "D0-F4W", + "type": "system" + }, + { + "id": 30002431, + "regionId": 10000029, + "name": "QKTR-L", + "type": "system" + }, + { + "id": 30002432, + "regionId": 10000029, + "name": "YN3-E3", + "type": "system" + }, + { + "id": 30002433, + "regionId": 10000029, + "name": "NBPH-N", + "type": "system" + }, + { + "id": 30002434, + "regionId": 10000029, + "name": "L-HV5C", + "type": "system" + }, + { + "id": 30002435, + "regionId": 10000029, + "name": "L4X-FH", + "type": "system" + }, + { + "id": 30002436, + "regionId": 10000029, + "name": "B6-52M", + "type": "system" + }, + { + "id": 30002437, + "regionId": 10000029, + "name": "V-MZW0", + "type": "system" + }, + { + "id": 30002438, + "regionId": 10000029, + "name": "BND-16", + "type": "system" + }, + { + "id": 30002439, + "regionId": 10000029, + "name": "IOO-7O", + "type": "system" + }, + { + "id": 30002440, + "regionId": 10000029, + "name": "BWF-ZZ", + "type": "system" + }, + { + "id": 30002441, + "regionId": 10000029, + "name": "4-CUM5", + "type": "system" + }, + { + "id": 30002442, + "regionId": 10000029, + "name": "8MG-J6", + "type": "system" + }, + { + "id": 30002443, + "regionId": 10000029, + "name": "RLSI-V", + "type": "system" + }, + { + "id": 30002444, + "regionId": 10000029, + "name": "39-DGG", + "type": "system" + }, + { + "id": 30002445, + "regionId": 10000029, + "name": "SV-K8J", + "type": "system" + }, + { + "id": 30002446, + "regionId": 10000029, + "name": "6RQ9-A", + "type": "system" + }, + { + "id": 30002447, + "regionId": 10000029, + "name": "K42-IE", + "type": "system" + }, + { + "id": 30002448, + "regionId": 10000029, + "name": "VSJ-PP", + "type": "system" + }, + { + "id": 30002449, + "regionId": 10000029, + "name": "3USX-F", + "type": "system" + }, + { + "id": 30002450, + "regionId": 10000029, + "name": "9-KWXC", + "type": "system" + }, + { + "id": 30002451, + "regionId": 10000029, + "name": "NQ-9IH", + "type": "system" + }, + { + "id": 30002452, + "regionId": 10000029, + "name": "KR-V6G", + "type": "system" + }, + { + "id": 30002453, + "regionId": 10000029, + "name": "AP9-LV", + "type": "system" + }, + { + "id": 30002454, + "regionId": 10000029, + "name": "0-GZX9", + "type": "system" + }, + { + "id": 30002455, + "regionId": 10000029, + "name": "2H-TSE", + "type": "system" + }, + { + "id": 30002456, + "regionId": 10000029, + "name": "4NGK-F", + "type": "system" + }, + { + "id": 30002457, + "regionId": 10000029, + "name": "O-VWPB", + "type": "system" + }, + { + "id": 30002458, + "regionId": 10000029, + "name": "LX-ZOJ", + "type": "system" + }, + { + "id": 30002459, + "regionId": 10000029, + "name": "6L78-1", + "type": "system" + }, + { + "id": 30002460, + "regionId": 10000029, + "name": "04-LQM", + "type": "system" + }, + { + "id": 30002461, + "regionId": 10000029, + "name": "4VY-Y1", + "type": "system" + }, + { + "id": 30002462, + "regionId": 10000029, + "name": "LU-HQS", + "type": "system" + }, + { + "id": 30002463, + "regionId": 10000029, + "name": "U-L4KS", + "type": "system" + }, + { + "id": 30002464, + "regionId": 10000029, + "name": "K25-XD", + "type": "system" + }, + { + "id": 30002465, + "regionId": 10000029, + "name": "6YC-TU", + "type": "system" + }, + { + "id": 30002466, + "regionId": 10000029, + "name": "Y8R-XZ", + "type": "system" + }, + { + "id": 30002467, + "regionId": 10000029, + "name": "P-E9GN", + "type": "system" + }, + { + "id": 30002468, + "regionId": 10000029, + "name": "HJO-84", + "type": "system" + }, + { + "id": 30002469, + "regionId": 10000029, + "name": "4D9-66", + "type": "system" + }, + { + "id": 30002470, + "regionId": 10000029, + "name": "L-TOFR", + "type": "system" + }, + { + "id": 30002471, + "regionId": 10000029, + "name": "Q-TBHW", + "type": "system" + }, + { + "id": 30002472, + "regionId": 10000029, + "name": "9P4O-F", + "type": "system" + }, + { + "id": 30002473, + "regionId": 10000029, + "name": "UBX-CC", + "type": "system" + }, + { + "id": 30002474, + "regionId": 10000029, + "name": "TJM-JJ", + "type": "system" + }, + { + "id": 30002475, + "regionId": 10000029, + "name": "EOA-ZC", + "type": "system" + }, + { + "id": 30002476, + "regionId": 10000029, + "name": "G-73MR", + "type": "system" + }, + { + "id": 30002477, + "regionId": 10000029, + "name": "E-91FV", + "type": "system" + }, + { + "id": 30002478, + "regionId": 10000029, + "name": "AD-5B8", + "type": "system" + }, + { + "id": 30002479, + "regionId": 10000029, + "name": "QP0K-B", + "type": "system" + }, + { + "id": 30002480, + "regionId": 10000029, + "name": "54-MF6", + "type": "system" + }, + { + "id": 30002481, + "regionId": 10000029, + "name": "D-I9HJ", + "type": "system" + }, + { + "id": 30002482, + "regionId": 10000029, + "name": "P-6I0B", + "type": "system" + }, + { + "id": 30002483, + "regionId": 10000029, + "name": "CFYY-J", + "type": "system" + }, + { + "id": 30002484, + "regionId": 10000029, + "name": "8-KZXQ", + "type": "system" + }, + { + "id": 30002485, + "regionId": 10000029, + "name": "HKYW-T", + "type": "system" + }, + { + "id": 30002486, + "regionId": 10000029, + "name": "3SFU-S", + "type": "system" + }, + { + "id": 30002487, + "regionId": 10000029, + "name": "VJ-NQP", + "type": "system" + }, + { + "id": 30002488, + "regionId": 10000029, + "name": "U6D-9A", + "type": "system" + }, + { + "id": 30002489, + "regionId": 10000029, + "name": "Atioth", + "type": "system" + }, + { + "id": 30002490, + "regionId": 10000029, + "name": "PYY3-5", + "type": "system" + }, + { + "id": 30002491, + "regionId": 10000029, + "name": "RFGW-V", + "type": "system" + }, + { + "id": 30002492, + "regionId": 10000029, + "name": "N-HK93", + "type": "system" + }, + { + "id": 30002493, + "regionId": 10000029, + "name": "LR-2XT", + "type": "system" + }, + { + "id": 30002494, + "regionId": 10000029, + "name": "TZL-WT", + "type": "system" + }, + { + "id": 30002495, + "regionId": 10000029, + "name": "4K0N-J", + "type": "system" + }, + { + "id": 30002496, + "regionId": 10000029, + "name": "B-F1MI", + "type": "system" + }, + { + "id": 30002497, + "regionId": 10000029, + "name": "W-3BSU", + "type": "system" + }, + { + "id": 30002498, + "regionId": 10000029, + "name": "BE-UUN", + "type": "system" + }, + { + "id": 30002499, + "regionId": 10000029, + "name": "O2O-2X", + "type": "system" + }, + { + "id": 30002500, + "regionId": 10000029, + "name": "JE1-36", + "type": "system" + }, + { + "id": 30002501, + "regionId": 10000029, + "name": "5F-YRA", + "type": "system" + }, + { + "id": 30002502, + "regionId": 10000029, + "name": "TDE4-H", + "type": "system" + }, + { + "id": 30002503, + "regionId": 10000029, + "name": "UER-TH", + "type": "system" + }, + { + "id": 30002504, + "regionId": 10000029, + "name": "UG-UWZ", + "type": "system" + }, + { + "id": 30002505, + "regionId": 10000030, + "name": "Hulm", + "type": "system" + }, + { + "id": 30002506, + "regionId": 10000030, + "name": "Osoggur", + "type": "system" + }, + { + "id": 30002507, + "regionId": 10000030, + "name": "Abudban", + "type": "system" + }, + { + "id": 30002508, + "regionId": 10000030, + "name": "Trytedald", + "type": "system" + }, + { + "id": 30002509, + "regionId": 10000030, + "name": "Odatrik", + "type": "system" + }, + { + "id": 30002510, + "regionId": 10000030, + "name": "Rens", + "type": "system" + }, + { + "id": 30002511, + "regionId": 10000030, + "name": "Ameinaka", + "type": "system" + }, + { + "id": 30002512, + "regionId": 10000030, + "name": "Alakgur", + "type": "system" + }, + { + "id": 30002513, + "regionId": 10000030, + "name": "Dammalin", + "type": "system" + }, + { + "id": 30002514, + "regionId": 10000030, + "name": "Bosboger", + "type": "system" + }, + { + "id": 30002515, + "regionId": 10000030, + "name": "Olfeim", + "type": "system" + }, + { + "id": 30002516, + "regionId": 10000030, + "name": "Lulm", + "type": "system" + }, + { + "id": 30002517, + "regionId": 10000030, + "name": "Gulmorogod", + "type": "system" + }, + { + "id": 30002518, + "regionId": 10000030, + "name": "Edmalbrurdus", + "type": "system" + }, + { + "id": 30002519, + "regionId": 10000030, + "name": "Kronsur", + "type": "system" + }, + { + "id": 30002520, + "regionId": 10000030, + "name": "Dumkirinur", + "type": "system" + }, + { + "id": 30002521, + "regionId": 10000030, + "name": "Sist", + "type": "system" + }, + { + "id": 30002522, + "regionId": 10000030, + "name": "Obrolber", + "type": "system" + }, + { + "id": 30002523, + "regionId": 10000030, + "name": "Austraka", + "type": "system" + }, + { + "id": 30002524, + "regionId": 10000030, + "name": "Ivar", + "type": "system" + }, + { + "id": 30002525, + "regionId": 10000030, + "name": "Meirakulf", + "type": "system" + }, + { + "id": 30002526, + "regionId": 10000030, + "name": "Frarn", + "type": "system" + }, + { + "id": 30002527, + "regionId": 10000030, + "name": "Illinfrik", + "type": "system" + }, + { + "id": 30002528, + "regionId": 10000030, + "name": "Balginia", + "type": "system" + }, + { + "id": 30002529, + "regionId": 10000030, + "name": "Gyng", + "type": "system" + }, + { + "id": 30002530, + "regionId": 10000030, + "name": "Avesber", + "type": "system" + }, + { + "id": 30002531, + "regionId": 10000030, + "name": "Gerek", + "type": "system" + }, + { + "id": 30002532, + "regionId": 10000030, + "name": "Tongofur", + "type": "system" + }, + { + "id": 30002533, + "regionId": 10000030, + "name": "Gerbold", + "type": "system" + }, + { + "id": 30002534, + "regionId": 10000030, + "name": "Rokofur", + "type": "system" + }, + { + "id": 30002535, + "regionId": 10000030, + "name": "Ebasgerdur", + "type": "system" + }, + { + "id": 30002536, + "regionId": 10000030, + "name": "Ebodold", + "type": "system" + }, + { + "id": 30002537, + "regionId": 10000030, + "name": "Amamake", + "type": "system" + }, + { + "id": 30002538, + "regionId": 10000030, + "name": "Vard", + "type": "system" + }, + { + "id": 30002539, + "regionId": 10000030, + "name": "Siseide", + "type": "system" + }, + { + "id": 30002540, + "regionId": 10000030, + "name": "Lantorn", + "type": "system" + }, + { + "id": 30002541, + "regionId": 10000030, + "name": "Dal", + "type": "system" + }, + { + "id": 30002542, + "regionId": 10000030, + "name": "Auga", + "type": "system" + }, + { + "id": 30002543, + "regionId": 10000030, + "name": "Eystur", + "type": "system" + }, + { + "id": 30002544, + "regionId": 10000030, + "name": "Pator", + "type": "system" + }, + { + "id": 30002545, + "regionId": 10000030, + "name": "Lustrevik", + "type": "system" + }, + { + "id": 30002546, + "regionId": 10000030, + "name": "Isendeldik", + "type": "system" + }, + { + "id": 30002547, + "regionId": 10000030, + "name": "Ammold", + "type": "system" + }, + { + "id": 30002548, + "regionId": 10000030, + "name": "Emolgranlan", + "type": "system" + }, + { + "id": 30002549, + "regionId": 10000030, + "name": "Offugen", + "type": "system" + }, + { + "id": 30002550, + "regionId": 10000030, + "name": "Roniko", + "type": "system" + }, + { + "id": 30002551, + "regionId": 10000030, + "name": "Aralgrund", + "type": "system" + }, + { + "id": 30002552, + "regionId": 10000030, + "name": "Eddar", + "type": "system" + }, + { + "id": 30002553, + "regionId": 10000030, + "name": "Bogelek", + "type": "system" + }, + { + "id": 30002554, + "regionId": 10000030, + "name": "Wiskeber", + "type": "system" + }, + { + "id": 30002555, + "regionId": 10000030, + "name": "Eifer", + "type": "system" + }, + { + "id": 30002556, + "regionId": 10000030, + "name": "Gusandall", + "type": "system" + }, + { + "id": 30002557, + "regionId": 10000030, + "name": "Atgur", + "type": "system" + }, + { + "id": 30002558, + "regionId": 10000030, + "name": "Endrulf", + "type": "system" + }, + { + "id": 30002559, + "regionId": 10000030, + "name": "Ingunn", + "type": "system" + }, + { + "id": 30002560, + "regionId": 10000030, + "name": "Gultratren", + "type": "system" + }, + { + "id": 30002561, + "regionId": 10000030, + "name": "Auren", + "type": "system" + }, + { + "id": 30002562, + "regionId": 10000030, + "name": "Trer", + "type": "system" + }, + { + "id": 30002563, + "regionId": 10000030, + "name": "Egmur", + "type": "system" + }, + { + "id": 30002564, + "regionId": 10000030, + "name": "Javrendei", + "type": "system" + }, + { + "id": 30002565, + "regionId": 10000030, + "name": "Appen", + "type": "system" + }, + { + "id": 30002566, + "regionId": 10000030, + "name": "Klir", + "type": "system" + }, + { + "id": 30002567, + "regionId": 10000030, + "name": "Jorus", + "type": "system" + }, + { + "id": 30002568, + "regionId": 10000030, + "name": "Onga", + "type": "system" + }, + { + "id": 30002569, + "regionId": 10000030, + "name": "Osaumuni", + "type": "system" + }, + { + "id": 30002570, + "regionId": 10000030, + "name": "Magiko", + "type": "system" + }, + { + "id": 30002571, + "regionId": 10000030, + "name": "Oremmulf", + "type": "system" + }, + { + "id": 30002572, + "regionId": 10000030, + "name": "Hurjafren", + "type": "system" + }, + { + "id": 30002573, + "regionId": 10000030, + "name": "Vullat", + "type": "system" + }, + { + "id": 30002574, + "regionId": 10000030, + "name": "Hrondedir", + "type": "system" + }, + { + "id": 30002575, + "regionId": 10000030, + "name": "Sotrenzur", + "type": "system" + }, + { + "id": 30002576, + "regionId": 10000030, + "name": "Hrondmund", + "type": "system" + }, + { + "id": 30002577, + "regionId": 10000030, + "name": "Bundindus", + "type": "system" + }, + { + "id": 30002578, + "regionId": 10000030, + "name": "Otraren", + "type": "system" + }, + { + "id": 30002579, + "regionId": 10000030, + "name": "Hedgiviter", + "type": "system" + }, + { + "id": 30002580, + "regionId": 10000030, + "name": "Katugumur", + "type": "system" + }, + { + "id": 30002581, + "regionId": 10000031, + "name": "1-7KWU", + "type": "system" + }, + { + "id": 30002582, + "regionId": 10000031, + "name": "3-UCBF", + "type": "system" + }, + { + "id": 30002583, + "regionId": 10000031, + "name": "N-CREL", + "type": "system" + }, + { + "id": 30002584, + "regionId": 10000031, + "name": "TM-0P2", + "type": "system" + }, + { + "id": 30002585, + "regionId": 10000031, + "name": "4OIV-X", + "type": "system" + }, + { + "id": 30002586, + "regionId": 10000031, + "name": "Y-JKJ8", + "type": "system" + }, + { + "id": 30002587, + "regionId": 10000031, + "name": "AFJ-NB", + "type": "system" + }, + { + "id": 30002588, + "regionId": 10000031, + "name": "H-64KI", + "type": "system" + }, + { + "id": 30002589, + "regionId": 10000031, + "name": "9I-SRF", + "type": "system" + }, + { + "id": 30002590, + "regionId": 10000031, + "name": "9-IIBL", + "type": "system" + }, + { + "id": 30002591, + "regionId": 10000031, + "name": "5GQ-S9", + "type": "system" + }, + { + "id": 30002592, + "regionId": 10000031, + "name": "YALR-F", + "type": "system" + }, + { + "id": 30002593, + "regionId": 10000031, + "name": "68FT-6", + "type": "system" + }, + { + "id": 30002594, + "regionId": 10000031, + "name": "IV-UNR", + "type": "system" + }, + { + "id": 30002595, + "regionId": 10000031, + "name": "IRE-98", + "type": "system" + }, + { + "id": 30002596, + "regionId": 10000031, + "name": "HOHF-B", + "type": "system" + }, + { + "id": 30002597, + "regionId": 10000031, + "name": "Y-6B0E", + "type": "system" + }, + { + "id": 30002598, + "regionId": 10000031, + "name": "F-3H2P", + "type": "system" + }, + { + "id": 30002599, + "regionId": 10000031, + "name": "DY-40Z", + "type": "system" + }, + { + "id": 30002600, + "regionId": 10000031, + "name": "XWY-YM", + "type": "system" + }, + { + "id": 30002601, + "regionId": 10000031, + "name": "M-9V5D", + "type": "system" + }, + { + "id": 30002602, + "regionId": 10000031, + "name": "O2-39S", + "type": "system" + }, + { + "id": 30002603, + "regionId": 10000031, + "name": "M-VEJZ", + "type": "system" + }, + { + "id": 30002604, + "regionId": 10000031, + "name": "LJK-T0", + "type": "system" + }, + { + "id": 30002605, + "regionId": 10000031, + "name": "E7VE-V", + "type": "system" + }, + { + "id": 30002606, + "regionId": 10000031, + "name": "NUG-OF", + "type": "system" + }, + { + "id": 30002607, + "regionId": 10000031, + "name": "L6BY-P", + "type": "system" + }, + { + "id": 30002608, + "regionId": 10000031, + "name": "U3SQ-X", + "type": "system" + }, + { + "id": 30002609, + "regionId": 10000031, + "name": "01TG-J", + "type": "system" + }, + { + "id": 30002610, + "regionId": 10000031, + "name": "UK-SHL", + "type": "system" + }, + { + "id": 30002611, + "regionId": 10000031, + "name": "A1BK-A", + "type": "system" + }, + { + "id": 30002612, + "regionId": 10000031, + "name": "N-7ECY", + "type": "system" + }, + { + "id": 30002613, + "regionId": 10000031, + "name": "4-MPSJ", + "type": "system" + }, + { + "id": 30002614, + "regionId": 10000031, + "name": "TWJ-AW", + "type": "system" + }, + { + "id": 30002615, + "regionId": 10000031, + "name": "PZMA-E", + "type": "system" + }, + { + "id": 30002616, + "regionId": 10000031, + "name": "442-CS", + "type": "system" + }, + { + "id": 30002617, + "regionId": 10000031, + "name": "Z-N9IP", + "type": "system" + }, + { + "id": 30002618, + "regionId": 10000031, + "name": "9ZFH-Z", + "type": "system" + }, + { + "id": 30002619, + "regionId": 10000031, + "name": "6E-MOW", + "type": "system" + }, + { + "id": 30002620, + "regionId": 10000031, + "name": "GBT4-J", + "type": "system" + }, + { + "id": 30002621, + "regionId": 10000031, + "name": "GZ1-A1", + "type": "system" + }, + { + "id": 30002622, + "regionId": 10000031, + "name": "X-0CKQ", + "type": "system" + }, + { + "id": 30002623, + "regionId": 10000031, + "name": "6B-GKA", + "type": "system" + }, + { + "id": 30002624, + "regionId": 10000031, + "name": "LHGA-W", + "type": "system" + }, + { + "id": 30002625, + "regionId": 10000031, + "name": "4RS-L1", + "type": "system" + }, + { + "id": 30002626, + "regionId": 10000031, + "name": "D-L4H0", + "type": "system" + }, + { + "id": 30002627, + "regionId": 10000031, + "name": "GU-9F4", + "type": "system" + }, + { + "id": 30002628, + "regionId": 10000031, + "name": "FG-1GH", + "type": "system" + }, + { + "id": 30002629, + "regionId": 10000031, + "name": "WFYM-0", + "type": "system" + }, + { + "id": 30002630, + "regionId": 10000031, + "name": "FR-B1H", + "type": "system" + }, + { + "id": 30002631, + "regionId": 10000031, + "name": "DDI-B7", + "type": "system" + }, + { + "id": 30002632, + "regionId": 10000032, + "name": "Pettinck", + "type": "system" + }, + { + "id": 30002633, + "regionId": 10000032, + "name": "DuAnnes", + "type": "system" + }, + { + "id": 30002634, + "regionId": 10000032, + "name": "Balle", + "type": "system" + }, + { + "id": 30002635, + "regionId": 10000032, + "name": "Decon", + "type": "system" + }, + { + "id": 30002636, + "regionId": 10000032, + "name": "Grinacanne", + "type": "system" + }, + { + "id": 30002637, + "regionId": 10000032, + "name": "Metserel", + "type": "system" + }, + { + "id": 30002638, + "regionId": 10000032, + "name": "Sharuveil", + "type": "system" + }, + { + "id": 30002639, + "regionId": 10000032, + "name": "Adreland", + "type": "system" + }, + { + "id": 30002640, + "regionId": 10000032, + "name": "Erme", + "type": "system" + }, + { + "id": 30002641, + "regionId": 10000032, + "name": "Aufay", + "type": "system" + }, + { + "id": 30002642, + "regionId": 10000032, + "name": "Iyen-Oursta", + "type": "system" + }, + { + "id": 30002643, + "regionId": 10000032, + "name": "Faurent", + "type": "system" + }, + { + "id": 30002644, + "regionId": 10000032, + "name": "Ambeke", + "type": "system" + }, + { + "id": 30002645, + "regionId": 10000032, + "name": "Carrou", + "type": "system" + }, + { + "id": 30002646, + "regionId": 10000032, + "name": "Direrie", + "type": "system" + }, + { + "id": 30002647, + "regionId": 10000032, + "name": "Ignoitton", + "type": "system" + }, + { + "id": 30002648, + "regionId": 10000032, + "name": "Ardene", + "type": "system" + }, + { + "id": 30002649, + "regionId": 10000032, + "name": "Boillair", + "type": "system" + }, + { + "id": 30002650, + "regionId": 10000032, + "name": "Ney", + "type": "system" + }, + { + "id": 30002651, + "regionId": 10000032, + "name": "Fasse", + "type": "system" + }, + { + "id": 30002652, + "regionId": 10000070, + "name": "Ala", + "type": "system" + }, + { + "id": 30002653, + "regionId": 10000032, + "name": "Gratesier", + "type": "system" + }, + { + "id": 30002654, + "regionId": 10000032, + "name": "Schoorasana", + "type": "system" + }, + { + "id": 30002655, + "regionId": 10000032, + "name": "Vylade", + "type": "system" + }, + { + "id": 30002656, + "regionId": 10000032, + "name": "Auvergne", + "type": "system" + }, + { + "id": 30002657, + "regionId": 10000032, + "name": "Aunia", + "type": "system" + }, + { + "id": 30002658, + "regionId": 10000032, + "name": "Agrallarier", + "type": "system" + }, + { + "id": 30002659, + "regionId": 10000032, + "name": "Dodixie", + "type": "system" + }, + { + "id": 30002660, + "regionId": 10000032, + "name": "Eglennaert", + "type": "system" + }, + { + "id": 30002661, + "regionId": 10000032, + "name": "Botane", + "type": "system" + }, + { + "id": 30002662, + "regionId": 10000032, + "name": "Pulin", + "type": "system" + }, + { + "id": 30002663, + "regionId": 10000032, + "name": "Foves", + "type": "system" + }, + { + "id": 30002664, + "regionId": 10000032, + "name": "Alles", + "type": "system" + }, + { + "id": 30002665, + "regionId": 10000032, + "name": "Misneden", + "type": "system" + }, + { + "id": 30002666, + "regionId": 10000032, + "name": "Basgerin", + "type": "system" + }, + { + "id": 30002667, + "regionId": 10000032, + "name": "Chelien", + "type": "system" + }, + { + "id": 30002668, + "regionId": 10000032, + "name": "Trosquesere", + "type": "system" + }, + { + "id": 30002669, + "regionId": 10000032, + "name": "Ansone", + "type": "system" + }, + { + "id": 30002670, + "regionId": 10000032, + "name": "Dunraelare", + "type": "system" + }, + { + "id": 30002671, + "regionId": 10000032, + "name": "Nausschie", + "type": "system" + }, + { + "id": 30002672, + "regionId": 10000032, + "name": "Inghenges", + "type": "system" + }, + { + "id": 30002673, + "regionId": 10000032, + "name": "Estene", + "type": "system" + }, + { + "id": 30002674, + "regionId": 10000032, + "name": "Gallareue", + "type": "system" + }, + { + "id": 30002675, + "regionId": 10000032, + "name": "Stayme", + "type": "system" + }, + { + "id": 30002676, + "regionId": 10000032, + "name": "Parchanier", + "type": "system" + }, + { + "id": 30002677, + "regionId": 10000032, + "name": "Fluekele", + "type": "system" + }, + { + "id": 30002678, + "regionId": 10000032, + "name": "Alsottobier", + "type": "system" + }, + { + "id": 30002679, + "regionId": 10000032, + "name": "Jolia", + "type": "system" + }, + { + "id": 30002680, + "regionId": 10000032, + "name": "Augnais", + "type": "system" + }, + { + "id": 30002681, + "regionId": 10000032, + "name": "Deltole", + "type": "system" + }, + { + "id": 30002682, + "regionId": 10000032, + "name": "Colelie", + "type": "system" + }, + { + "id": 30002683, + "regionId": 10000032, + "name": "Barmalie", + "type": "system" + }, + { + "id": 30002684, + "regionId": 10000032, + "name": "Audaerne", + "type": "system" + }, + { + "id": 30002685, + "regionId": 10000032, + "name": "Dodenvale", + "type": "system" + }, + { + "id": 30002686, + "regionId": 10000032, + "name": "Olettiers", + "type": "system" + }, + { + "id": 30002687, + "regionId": 10000032, + "name": "Artisine", + "type": "system" + }, + { + "id": 30002688, + "regionId": 10000032, + "name": "Chainelant", + "type": "system" + }, + { + "id": 30002689, + "regionId": 10000032, + "name": "Sileperer", + "type": "system" + }, + { + "id": 30002690, + "regionId": 10000032, + "name": "Bamiette", + "type": "system" + }, + { + "id": 30002691, + "regionId": 10000032, + "name": "Crielere", + "type": "system" + }, + { + "id": 30002692, + "regionId": 10000032, + "name": "Jel", + "type": "system" + }, + { + "id": 30002693, + "regionId": 10000032, + "name": "Egghelende", + "type": "system" + }, + { + "id": 30002694, + "regionId": 10000032, + "name": "Odette", + "type": "system" + }, + { + "id": 30002695, + "regionId": 10000032, + "name": "Ation", + "type": "system" + }, + { + "id": 30002696, + "regionId": 10000032, + "name": "Stegette", + "type": "system" + }, + { + "id": 30002697, + "regionId": 10000032, + "name": "Ravarin", + "type": "system" + }, + { + "id": 30002698, + "regionId": 10000032, + "name": "Aliette", + "type": "system" + }, + { + "id": 30002699, + "regionId": 10000032, + "name": "Brapelille", + "type": "system" + }, + { + "id": 30002700, + "regionId": 10000032, + "name": "Bawilan", + "type": "system" + }, + { + "id": 30002701, + "regionId": 10000032, + "name": "Atier", + "type": "system" + }, + { + "id": 30002702, + "regionId": 10000070, + "name": "Archee", + "type": "system" + }, + { + "id": 30002703, + "regionId": 10000032, + "name": "Brybier", + "type": "system" + }, + { + "id": 30002704, + "regionId": 10000032, + "name": "Adrallezoen", + "type": "system" + }, + { + "id": 30002705, + "regionId": 10000032, + "name": "Croleur", + "type": "system" + }, + { + "id": 30002706, + "regionId": 10000032, + "name": "Doussivitte", + "type": "system" + }, + { + "id": 30002707, + "regionId": 10000032, + "name": "Unel", + "type": "system" + }, + { + "id": 30002708, + "regionId": 10000032, + "name": "Claysson", + "type": "system" + }, + { + "id": 30002709, + "regionId": 10000032, + "name": "Auberulle", + "type": "system" + }, + { + "id": 30002710, + "regionId": 10000032, + "name": "Adiere", + "type": "system" + }, + { + "id": 30002711, + "regionId": 10000032, + "name": "Stetille", + "type": "system" + }, + { + "id": 30002712, + "regionId": 10000032, + "name": "Alillere", + "type": "system" + }, + { + "id": 30002713, + "regionId": 10000032, + "name": "Abenync", + "type": "system" + }, + { + "id": 30002714, + "regionId": 10000032, + "name": "Pozirblant", + "type": "system" + }, + { + "id": 30002715, + "regionId": 10000032, + "name": "Bourynes", + "type": "system" + }, + { + "id": 30002716, + "regionId": 10000032, + "name": "Aurcel", + "type": "system" + }, + { + "id": 30002717, + "regionId": 10000032, + "name": "Aymaerne", + "type": "system" + }, + { + "id": 30002718, + "regionId": 10000032, + "name": "Rancer", + "type": "system" + }, + { + "id": 30002719, + "regionId": 10000032, + "name": "Miroitem", + "type": "system" + }, + { + "id": 30002720, + "regionId": 10000032, + "name": "Thelan", + "type": "system" + }, + { + "id": 30002721, + "regionId": 10000032, + "name": "Rorsins", + "type": "system" + }, + { + "id": 30002722, + "regionId": 10000032, + "name": "Lamadent", + "type": "system" + }, + { + "id": 30002723, + "regionId": 10000032, + "name": "Otou", + "type": "system" + }, + { + "id": 30002724, + "regionId": 10000032, + "name": "Assiettes", + "type": "system" + }, + { + "id": 30002725, + "regionId": 10000032, + "name": "Goinard", + "type": "system" + }, + { + "id": 30002726, + "regionId": 10000032, + "name": "Raeghoscon", + "type": "system" + }, + { + "id": 30002727, + "regionId": 10000032, + "name": "Allipes", + "type": "system" + }, + { + "id": 30002728, + "regionId": 10000032, + "name": "Lermireve", + "type": "system" + }, + { + "id": 30002729, + "regionId": 10000032, + "name": "Aetree", + "type": "system" + }, + { + "id": 30002730, + "regionId": 10000032, + "name": "Esmes", + "type": "system" + }, + { + "id": 30002731, + "regionId": 10000032, + "name": "Vittenyn", + "type": "system" + }, + { + "id": 30002732, + "regionId": 10000032, + "name": "Mirilene", + "type": "system" + }, + { + "id": 30002733, + "regionId": 10000032, + "name": "Pucherie", + "type": "system" + }, + { + "id": 30002734, + "regionId": 10000032, + "name": "Fricoure", + "type": "system" + }, + { + "id": 30002735, + "regionId": 10000032, + "name": "Caretyn", + "type": "system" + }, + { + "id": 30002736, + "regionId": 10000032, + "name": "Ainaille", + "type": "system" + }, + { + "id": 30002737, + "regionId": 10000070, + "name": "Konola", + "type": "system" + }, + { + "id": 30002738, + "regionId": 10000033, + "name": "Inoue", + "type": "system" + }, + { + "id": 30002739, + "regionId": 10000033, + "name": "Isaziwa", + "type": "system" + }, + { + "id": 30002740, + "regionId": 10000033, + "name": "Eitu", + "type": "system" + }, + { + "id": 30002741, + "regionId": 10000033, + "name": "Horkkisen", + "type": "system" + }, + { + "id": 30002742, + "regionId": 10000033, + "name": "Erila", + "type": "system" + }, + { + "id": 30002743, + "regionId": 10000033, + "name": "Ohvosamon", + "type": "system" + }, + { + "id": 30002744, + "regionId": 10000033, + "name": "Auviken", + "type": "system" + }, + { + "id": 30002745, + "regionId": 10000033, + "name": "Saikanen", + "type": "system" + }, + { + "id": 30002746, + "regionId": 10000033, + "name": "Oijamon", + "type": "system" + }, + { + "id": 30002747, + "regionId": 10000033, + "name": "Kakki", + "type": "system" + }, + { + "id": 30002748, + "regionId": 10000033, + "name": "Jeras", + "type": "system" + }, + { + "id": 30002749, + "regionId": 10000033, + "name": "Kausaaja", + "type": "system" + }, + { + "id": 30002750, + "regionId": 10000033, + "name": "Oiniken", + "type": "system" + }, + { + "id": 30002751, + "regionId": 10000033, + "name": "Kaimon", + "type": "system" + }, + { + "id": 30002752, + "regionId": 10000033, + "name": "Ahynada", + "type": "system" + }, + { + "id": 30002753, + "regionId": 10000033, + "name": "Aikoro", + "type": "system" + }, + { + "id": 30002754, + "regionId": 10000033, + "name": "Alikara", + "type": "system" + }, + { + "id": 30002755, + "regionId": 10000033, + "name": "Usi", + "type": "system" + }, + { + "id": 30002756, + "regionId": 10000033, + "name": "Ishomilken", + "type": "system" + }, + { + "id": 30002757, + "regionId": 10000033, + "name": "Nikkishina", + "type": "system" + }, + { + "id": 30002758, + "regionId": 10000033, + "name": "Hasama", + "type": "system" + }, + { + "id": 30002759, + "regionId": 10000033, + "name": "Uuna", + "type": "system" + }, + { + "id": 30002760, + "regionId": 10000033, + "name": "Manjonakko", + "type": "system" + }, + { + "id": 30002761, + "regionId": 10000033, + "name": "Kassigainen", + "type": "system" + }, + { + "id": 30002762, + "regionId": 10000033, + "name": "Yashunen", + "type": "system" + }, + { + "id": 30002763, + "regionId": 10000033, + "name": "Tennen", + "type": "system" + }, + { + "id": 30002764, + "regionId": 10000033, + "name": "Hatakani", + "type": "system" + }, + { + "id": 30002765, + "regionId": 10000033, + "name": "Sivala", + "type": "system" + }, + { + "id": 30002766, + "regionId": 10000033, + "name": "Iivinen", + "type": "system" + }, + { + "id": 30002767, + "regionId": 10000033, + "name": "Kubinen", + "type": "system" + }, + { + "id": 30002768, + "regionId": 10000033, + "name": "Uedama", + "type": "system" + }, + { + "id": 30002769, + "regionId": 10000033, + "name": "Enderailen", + "type": "system" + }, + { + "id": 30002770, + "regionId": 10000070, + "name": "Tunudan", + "type": "system" + }, + { + "id": 30002771, + "regionId": 10000033, + "name": "Kulelen", + "type": "system" + }, + { + "id": 30002772, + "regionId": 10000033, + "name": "Rairomon", + "type": "system" + }, + { + "id": 30002773, + "regionId": 10000033, + "name": "Hogimo", + "type": "system" + }, + { + "id": 30002774, + "regionId": 10000033, + "name": "Huttaken", + "type": "system" + }, + { + "id": 30002775, + "regionId": 10000033, + "name": "Paara", + "type": "system" + }, + { + "id": 30002776, + "regionId": 10000033, + "name": "Annaro", + "type": "system" + }, + { + "id": 30002777, + "regionId": 10000033, + "name": "Isutaka", + "type": "system" + }, + { + "id": 30002778, + "regionId": 10000033, + "name": "Tasabeshi", + "type": "system" + }, + { + "id": 30002779, + "regionId": 10000033, + "name": "Ono", + "type": "system" + }, + { + "id": 30002780, + "regionId": 10000033, + "name": "Muvolailen", + "type": "system" + }, + { + "id": 30002781, + "regionId": 10000033, + "name": "Halaima", + "type": "system" + }, + { + "id": 30002782, + "regionId": 10000033, + "name": "Kamio", + "type": "system" + }, + { + "id": 30002783, + "regionId": 10000033, + "name": "Sankkasen", + "type": "system" + }, + { + "id": 30002784, + "regionId": 10000033, + "name": "Tintoh", + "type": "system" + }, + { + "id": 30002785, + "regionId": 10000033, + "name": "Santola", + "type": "system" + }, + { + "id": 30002786, + "regionId": 10000033, + "name": "Ikao", + "type": "system" + }, + { + "id": 30002787, + "regionId": 10000033, + "name": "Waira", + "type": "system" + }, + { + "id": 30002788, + "regionId": 10000033, + "name": "Inaro", + "type": "system" + }, + { + "id": 30002789, + "regionId": 10000033, + "name": "Kaaputenen", + "type": "system" + }, + { + "id": 30002790, + "regionId": 10000033, + "name": "Waskisen", + "type": "system" + }, + { + "id": 30002791, + "regionId": 10000033, + "name": "Sirppala", + "type": "system" + }, + { + "id": 30002792, + "regionId": 10000033, + "name": "Irjunen", + "type": "system" + }, + { + "id": 30002793, + "regionId": 10000033, + "name": "Inari", + "type": "system" + }, + { + "id": 30002794, + "regionId": 10000033, + "name": "Yria", + "type": "system" + }, + { + "id": 30002795, + "regionId": 10000033, + "name": "Oshaima", + "type": "system" + }, + { + "id": 30002796, + "regionId": 10000033, + "name": "Hysera", + "type": "system" + }, + { + "id": 30002797, + "regionId": 10000070, + "name": "Kaunokka", + "type": "system" + }, + { + "id": 30002798, + "regionId": 10000033, + "name": "Venilen", + "type": "system" + }, + { + "id": 30002799, + "regionId": 10000033, + "name": "Oisio", + "type": "system" + }, + { + "id": 30002800, + "regionId": 10000033, + "name": "Haatomo", + "type": "system" + }, + { + "id": 30002801, + "regionId": 10000033, + "name": "Suroken", + "type": "system" + }, + { + "id": 30002802, + "regionId": 10000033, + "name": "Kusomonmon", + "type": "system" + }, + { + "id": 30002803, + "regionId": 10000033, + "name": "Juunigaishi", + "type": "system" + }, + { + "id": 30002804, + "regionId": 10000033, + "name": "Isikesu", + "type": "system" + }, + { + "id": 30002805, + "regionId": 10000033, + "name": "Anttiri", + "type": "system" + }, + { + "id": 30002806, + "regionId": 10000033, + "name": "Hasmijaala", + "type": "system" + }, + { + "id": 30002807, + "regionId": 10000033, + "name": "Nagamanen", + "type": "system" + }, + { + "id": 30002808, + "regionId": 10000033, + "name": "Oto", + "type": "system" + }, + { + "id": 30002809, + "regionId": 10000033, + "name": "Sujarento", + "type": "system" + }, + { + "id": 30002810, + "regionId": 10000033, + "name": "Eranakko", + "type": "system" + }, + { + "id": 30002811, + "regionId": 10000033, + "name": "Onatoh", + "type": "system" + }, + { + "id": 30002812, + "regionId": 10000033, + "name": "Tannolen", + "type": "system" + }, + { + "id": 30002813, + "regionId": 10000033, + "name": "Tama", + "type": "system" + }, + { + "id": 30002814, + "regionId": 10000033, + "name": "Uotila", + "type": "system" + }, + { + "id": 30002815, + "regionId": 10000033, + "name": "Isenairos", + "type": "system" + }, + { + "id": 30002816, + "regionId": 10000033, + "name": "Saila", + "type": "system" + }, + { + "id": 30002817, + "regionId": 10000033, + "name": "Aramachi", + "type": "system" + }, + { + "id": 30002818, + "regionId": 10000033, + "name": "Oichiya", + "type": "system" + }, + { + "id": 30002819, + "regionId": 10000033, + "name": "Motsu", + "type": "system" + }, + { + "id": 30002820, + "regionId": 10000034, + "name": "N-JK02", + "type": "system" + }, + { + "id": 30002821, + "regionId": 10000034, + "name": "JT2I-7", + "type": "system" + }, + { + "id": 30002822, + "regionId": 10000034, + "name": "XTJ-5Q", + "type": "system" + }, + { + "id": 30002823, + "regionId": 10000034, + "name": "1-KCSA", + "type": "system" + }, + { + "id": 30002824, + "regionId": 10000034, + "name": "UJXC-B", + "type": "system" + }, + { + "id": 30002825, + "regionId": 10000034, + "name": "UDVW-O", + "type": "system" + }, + { + "id": 30002826, + "regionId": 10000034, + "name": "F48K-D", + "type": "system" + }, + { + "id": 30002827, + "regionId": 10000034, + "name": "FBH-JN", + "type": "system" + }, + { + "id": 30002828, + "regionId": 10000034, + "name": "BVRQ-O", + "type": "system" + }, + { + "id": 30002829, + "regionId": 10000034, + "name": "QX-4HO", + "type": "system" + }, + { + "id": 30002830, + "regionId": 10000034, + "name": "LS3-HP", + "type": "system" + }, + { + "id": 30002831, + "regionId": 10000034, + "name": "SH6X-F", + "type": "system" + }, + { + "id": 30002832, + "regionId": 10000034, + "name": "6V-D0E", + "type": "system" + }, + { + "id": 30002833, + "regionId": 10000034, + "name": "SG-3HY", + "type": "system" + }, + { + "id": 30002834, + "regionId": 10000034, + "name": "AU2V-J", + "type": "system" + }, + { + "id": 30002835, + "regionId": 10000034, + "name": "SY-0AM", + "type": "system" + }, + { + "id": 30002836, + "regionId": 10000034, + "name": "A-YB15", + "type": "system" + }, + { + "id": 30002837, + "regionId": 10000034, + "name": "QZX-L9", + "type": "system" + }, + { + "id": 30002838, + "regionId": 10000034, + "name": "D-6PKO", + "type": "system" + }, + { + "id": 30002839, + "regionId": 10000034, + "name": "RAI-0E", + "type": "system" + }, + { + "id": 30002840, + "regionId": 10000034, + "name": "MN9P-A", + "type": "system" + }, + { + "id": 30002841, + "regionId": 10000034, + "name": "TA9T-P", + "type": "system" + }, + { + "id": 30002842, + "regionId": 10000034, + "name": "L-TLFU", + "type": "system" + }, + { + "id": 30002843, + "regionId": 10000034, + "name": "BM-VYZ", + "type": "system" + }, + { + "id": 30002844, + "regionId": 10000034, + "name": "Q-GICU", + "type": "system" + }, + { + "id": 30002845, + "regionId": 10000034, + "name": "EPCD-D", + "type": "system" + }, + { + "id": 30002846, + "regionId": 10000034, + "name": "0S1-GI", + "type": "system" + }, + { + "id": 30002847, + "regionId": 10000034, + "name": "L-GY1B", + "type": "system" + }, + { + "id": 30002848, + "regionId": 10000034, + "name": "74-DRC", + "type": "system" + }, + { + "id": 30002849, + "regionId": 10000034, + "name": "LE-67X", + "type": "system" + }, + { + "id": 30002850, + "regionId": 10000034, + "name": "B1UE-J", + "type": "system" + }, + { + "id": 30002851, + "regionId": 10000034, + "name": "O31W-6", + "type": "system" + }, + { + "id": 30002852, + "regionId": 10000034, + "name": "M3-H2Y", + "type": "system" + }, + { + "id": 30002853, + "regionId": 10000034, + "name": "G-KCFT", + "type": "system" + }, + { + "id": 30002854, + "regionId": 10000034, + "name": "WNM-V0", + "type": "system" + }, + { + "id": 30002855, + "regionId": 10000034, + "name": "6FS-CZ", + "type": "system" + }, + { + "id": 30002856, + "regionId": 10000034, + "name": "HPV-RJ", + "type": "system" + }, + { + "id": 30002857, + "regionId": 10000034, + "name": "H7S-5I", + "type": "system" + }, + { + "id": 30002858, + "regionId": 10000034, + "name": "C3J0-O", + "type": "system" + }, + { + "id": 30002859, + "regionId": 10000034, + "name": "GSO-SR", + "type": "system" + }, + { + "id": 30002860, + "regionId": 10000034, + "name": "B3ZU-H", + "type": "system" + }, + { + "id": 30002861, + "regionId": 10000034, + "name": "G4-QU6", + "type": "system" + }, + { + "id": 30002862, + "regionId": 10000034, + "name": "V2-GZS", + "type": "system" + }, + { + "id": 30002863, + "regionId": 10000034, + "name": "HD-HOZ", + "type": "system" + }, + { + "id": 30002864, + "regionId": 10000034, + "name": "42G-OB", + "type": "system" + }, + { + "id": 30002865, + "regionId": 10000034, + "name": "LEM-I1", + "type": "system" + }, + { + "id": 30002866, + "regionId": 10000034, + "name": "1S-SU1", + "type": "system" + }, + { + "id": 30002867, + "regionId": 10000034, + "name": "ND-GL4", + "type": "system" + }, + { + "id": 30002868, + "regionId": 10000034, + "name": "9-0QB7", + "type": "system" + }, + { + "id": 30002869, + "regionId": 10000034, + "name": "M-75WN", + "type": "system" + }, + { + "id": 30002870, + "regionId": 10000034, + "name": "PNFW-O", + "type": "system" + }, + { + "id": 30002871, + "regionId": 10000034, + "name": "HVGR-R", + "type": "system" + }, + { + "id": 30002872, + "regionId": 10000034, + "name": "K76A-3", + "type": "system" + }, + { + "id": 30002873, + "regionId": 10000034, + "name": "K95-9I", + "type": "system" + }, + { + "id": 30002874, + "regionId": 10000034, + "name": "R1O-GN", + "type": "system" + }, + { + "id": 30002875, + "regionId": 10000034, + "name": "GQ-7SP", + "type": "system" + }, + { + "id": 30002876, + "regionId": 10000034, + "name": "BGMZ-0", + "type": "system" + }, + { + "id": 30002877, + "regionId": 10000034, + "name": "I2D3-5", + "type": "system" + }, + { + "id": 30002878, + "regionId": 10000034, + "name": "FZX-PU", + "type": "system" + }, + { + "id": 30002879, + "regionId": 10000034, + "name": "O9K-FT", + "type": "system" + }, + { + "id": 30002880, + "regionId": 10000034, + "name": "RQOO-U", + "type": "system" + }, + { + "id": 30002881, + "regionId": 10000034, + "name": "FB5U-I", + "type": "system" + }, + { + "id": 30002882, + "regionId": 10000034, + "name": "BZ-BCK", + "type": "system" + }, + { + "id": 30002883, + "regionId": 10000034, + "name": "5-VFC6", + "type": "system" + }, + { + "id": 30002884, + "regionId": 10000034, + "name": "O5-YNW", + "type": "system" + }, + { + "id": 30002885, + "regionId": 10000034, + "name": "86L-9F", + "type": "system" + }, + { + "id": 30002886, + "regionId": 10000034, + "name": "IUU3-L", + "type": "system" + }, + { + "id": 30002887, + "regionId": 10000034, + "name": "J-OAH2", + "type": "system" + }, + { + "id": 30002888, + "regionId": 10000034, + "name": "S-LHPJ", + "type": "system" + }, + { + "id": 30002889, + "regionId": 10000035, + "name": "4U90-Z", + "type": "system" + }, + { + "id": 30002890, + "regionId": 10000035, + "name": "T-945F", + "type": "system" + }, + { + "id": 30002891, + "regionId": 10000035, + "name": "FO8M-2", + "type": "system" + }, + { + "id": 30002892, + "regionId": 10000035, + "name": "AD-CBT", + "type": "system" + }, + { + "id": 30002893, + "regionId": 10000035, + "name": "QPO-WI", + "type": "system" + }, + { + "id": 30002894, + "regionId": 10000035, + "name": "R8S-1K", + "type": "system" + }, + { + "id": 30002895, + "regionId": 10000035, + "name": "94-H3F", + "type": "system" + }, + { + "id": 30002896, + "regionId": 10000035, + "name": "CU9-T0", + "type": "system" + }, + { + "id": 30002897, + "regionId": 10000035, + "name": "XCF-8N", + "type": "system" + }, + { + "id": 30002898, + "regionId": 10000035, + "name": "FMB-JP", + "type": "system" + }, + { + "id": 30002899, + "regionId": 10000035, + "name": "0P-F3K", + "type": "system" + }, + { + "id": 30002900, + "regionId": 10000035, + "name": "K5F-Z2", + "type": "system" + }, + { + "id": 30002901, + "regionId": 10000035, + "name": "TXME-A", + "type": "system" + }, + { + "id": 30002902, + "regionId": 10000035, + "name": "YA0-XJ", + "type": "system" + }, + { + "id": 30002903, + "regionId": 10000035, + "name": "2-KF56", + "type": "system" + }, + { + "id": 30002904, + "regionId": 10000035, + "name": "VFK-IV", + "type": "system" + }, + { + "id": 30002905, + "regionId": 10000035, + "name": "2R-CRW", + "type": "system" + }, + { + "id": 30002906, + "regionId": 10000035, + "name": "CCP-US", + "type": "system" + }, + { + "id": 30002907, + "regionId": 10000035, + "name": "II-5O9", + "type": "system" + }, + { + "id": 30002908, + "regionId": 10000035, + "name": "I30-3A", + "type": "system" + }, + { + "id": 30002909, + "regionId": 10000035, + "name": "2O9G-D", + "type": "system" + }, + { + "id": 30002910, + "regionId": 10000035, + "name": "NC-N3F", + "type": "system" + }, + { + "id": 30002911, + "regionId": 10000035, + "name": "JU-OWQ", + "type": "system" + }, + { + "id": 30002912, + "regionId": 10000035, + "name": "S-DN5M", + "type": "system" + }, + { + "id": 30002913, + "regionId": 10000035, + "name": "MXX5-9", + "type": "system" + }, + { + "id": 30002914, + "regionId": 10000035, + "name": "ZZZR-5", + "type": "system" + }, + { + "id": 30002915, + "regionId": 10000035, + "name": "C7Y-7Z", + "type": "system" + }, + { + "id": 30002916, + "regionId": 10000035, + "name": "X-Z4DA", + "type": "system" + }, + { + "id": 30002917, + "regionId": 10000035, + "name": "3OAT-Q", + "type": "system" + }, + { + "id": 30002918, + "regionId": 10000035, + "name": "N-TFXK", + "type": "system" + }, + { + "id": 30002919, + "regionId": 10000035, + "name": "33RB-O", + "type": "system" + }, + { + "id": 30002920, + "regionId": 10000035, + "name": "DKUK-G", + "type": "system" + }, + { + "id": 30002921, + "regionId": 10000035, + "name": "3QE-9Q", + "type": "system" + }, + { + "id": 30002922, + "regionId": 10000035, + "name": "E-FIC0", + "type": "system" + }, + { + "id": 30002923, + "regionId": 10000035, + "name": "ZOYW-O", + "type": "system" + }, + { + "id": 30002924, + "regionId": 10000035, + "name": "85-B52", + "type": "system" + }, + { + "id": 30002925, + "regionId": 10000035, + "name": "YZ-UKA", + "type": "system" + }, + { + "id": 30002926, + "regionId": 10000035, + "name": "RO0-AF", + "type": "system" + }, + { + "id": 30002927, + "regionId": 10000035, + "name": "5W3-DG", + "type": "system" + }, + { + "id": 30002928, + "regionId": 10000035, + "name": "LT-DRO", + "type": "system" + }, + { + "id": 30002929, + "regionId": 10000035, + "name": "7T6P-C", + "type": "system" + }, + { + "id": 30002930, + "regionId": 10000035, + "name": "8S28-3", + "type": "system" + }, + { + "id": 30002931, + "regionId": 10000035, + "name": "E3UY-6", + "type": "system" + }, + { + "id": 30002932, + "regionId": 10000035, + "name": "LEK-N5", + "type": "system" + }, + { + "id": 30002933, + "regionId": 10000035, + "name": "AGG-NR", + "type": "system" + }, + { + "id": 30002934, + "regionId": 10000035, + "name": "0V0R-R", + "type": "system" + }, + { + "id": 30002935, + "regionId": 10000035, + "name": "O-2RNZ", + "type": "system" + }, + { + "id": 30002936, + "regionId": 10000035, + "name": "OWXT-5", + "type": "system" + }, + { + "id": 30002937, + "regionId": 10000035, + "name": "3JN9-Q", + "type": "system" + }, + { + "id": 30002938, + "regionId": 10000035, + "name": "3T7-M8", + "type": "system" + }, + { + "id": 30002939, + "regionId": 10000035, + "name": "WUZ-WM", + "type": "system" + }, + { + "id": 30002940, + "regionId": 10000035, + "name": "MZ1E-P", + "type": "system" + }, + { + "id": 30002941, + "regionId": 10000035, + "name": "43B-O1", + "type": "system" + }, + { + "id": 30002942, + "regionId": 10000035, + "name": "J1AU-9", + "type": "system" + }, + { + "id": 30002943, + "regionId": 10000035, + "name": "X3-PBC", + "type": "system" + }, + { + "id": 30002944, + "regionId": 10000035, + "name": "4N-BUI", + "type": "system" + }, + { + "id": 30002945, + "regionId": 10000035, + "name": "N2IS-B", + "type": "system" + }, + { + "id": 30002946, + "regionId": 10000035, + "name": "XCBK-X", + "type": "system" + }, + { + "id": 30002947, + "regionId": 10000035, + "name": "GY5-26", + "type": "system" + }, + { + "id": 30002948, + "regionId": 10000035, + "name": "VPLL-N", + "type": "system" + }, + { + "id": 30002949, + "regionId": 10000035, + "name": "9CK-KZ", + "type": "system" + }, + { + "id": 30002950, + "regionId": 10000035, + "name": "5S-KXA", + "type": "system" + }, + { + "id": 30002951, + "regionId": 10000035, + "name": "U-TJ7Y", + "type": "system" + }, + { + "id": 30002952, + "regionId": 10000035, + "name": "A4L-A2", + "type": "system" + }, + { + "id": 30002953, + "regionId": 10000035, + "name": "CZDJ-1", + "type": "system" + }, + { + "id": 30002954, + "regionId": 10000035, + "name": "RG9-7U", + "type": "system" + }, + { + "id": 30002955, + "regionId": 10000035, + "name": "UJY-HE", + "type": "system" + }, + { + "id": 30002956, + "regionId": 10000035, + "name": "UEJX-G", + "type": "system" + }, + { + "id": 30002957, + "regionId": 10000036, + "name": "Tzvi", + "type": "system" + }, + { + "id": 30002958, + "regionId": 10000036, + "name": "Raa", + "type": "system" + }, + { + "id": 30002959, + "regionId": 10000036, + "name": "Sifilar", + "type": "system" + }, + { + "id": 30002960, + "regionId": 10000036, + "name": "Arzad", + "type": "system" + }, + { + "id": 30002961, + "regionId": 10000036, + "name": "Oyeman", + "type": "system" + }, + { + "id": 30002962, + "regionId": 10000036, + "name": "Ezzara", + "type": "system" + }, + { + "id": 30002963, + "regionId": 10000036, + "name": "Odin", + "type": "system" + }, + { + "id": 30002964, + "regionId": 10000036, + "name": "Esescama", + "type": "system" + }, + { + "id": 30002965, + "regionId": 10000036, + "name": "Choonka", + "type": "system" + }, + { + "id": 30002966, + "regionId": 10000036, + "name": "Thasinaz", + "type": "system" + }, + { + "id": 30002967, + "regionId": 10000036, + "name": "Dihra", + "type": "system" + }, + { + "id": 30002968, + "regionId": 10000036, + "name": "Dital", + "type": "system" + }, + { + "id": 30002969, + "regionId": 10000036, + "name": "Eredan", + "type": "system" + }, + { + "id": 30002970, + "regionId": 10000036, + "name": "Ohide", + "type": "system" + }, + { + "id": 30002971, + "regionId": 10000036, + "name": "Sasoutikh", + "type": "system" + }, + { + "id": 30002972, + "regionId": 10000036, + "name": "Gheth", + "type": "system" + }, + { + "id": 30002973, + "regionId": 10000036, + "name": "Lisudeh", + "type": "system" + }, + { + "id": 30002974, + "regionId": 10000036, + "name": "Mehatoor", + "type": "system" + }, + { + "id": 30002975, + "regionId": 10000036, + "name": "Roushzar", + "type": "system" + }, + { + "id": 30002976, + "regionId": 10000036, + "name": "Labapi", + "type": "system" + }, + { + "id": 30002977, + "regionId": 10000036, + "name": "Arayar", + "type": "system" + }, + { + "id": 30002978, + "regionId": 10000036, + "name": "Asghed", + "type": "system" + }, + { + "id": 30002979, + "regionId": 10000036, + "name": "Tararan", + "type": "system" + }, + { + "id": 30002980, + "regionId": 10000036, + "name": "Sosan", + "type": "system" + }, + { + "id": 30002981, + "regionId": 10000036, + "name": "Halmah", + "type": "system" + }, + { + "id": 30002982, + "regionId": 10000036, + "name": "Rahadalon", + "type": "system" + }, + { + "id": 30002983, + "regionId": 10000036, + "name": "Soosat", + "type": "system" + }, + { + "id": 30002984, + "regionId": 10000036, + "name": "Ibash", + "type": "system" + }, + { + "id": 30002985, + "regionId": 10000036, + "name": "Itsyamil", + "type": "system" + }, + { + "id": 30002986, + "regionId": 10000036, + "name": "Mendori", + "type": "system" + }, + { + "id": 30002987, + "regionId": 10000036, + "name": "Ussad", + "type": "system" + }, + { + "id": 30002988, + "regionId": 10000036, + "name": "Nakatre", + "type": "system" + }, + { + "id": 30002989, + "regionId": 10000036, + "name": "Laddiaha", + "type": "system" + }, + { + "id": 30002990, + "regionId": 10000036, + "name": "Hakshma", + "type": "system" + }, + { + "id": 30002991, + "regionId": 10000036, + "name": "Uadelah", + "type": "system" + }, + { + "id": 30002992, + "regionId": 10000036, + "name": "Akes", + "type": "system" + }, + { + "id": 30002993, + "regionId": 10000036, + "name": "Riavayed", + "type": "system" + }, + { + "id": 30002994, + "regionId": 10000036, + "name": "Hati", + "type": "system" + }, + { + "id": 30002995, + "regionId": 10000036, + "name": "Naeel", + "type": "system" + }, + { + "id": 30002996, + "regionId": 10000036, + "name": "LowerDebyl", + "type": "system" + }, + { + "id": 30002997, + "regionId": 10000036, + "name": "Ehnoum", + "type": "system" + }, + { + "id": 30002998, + "regionId": 10000036, + "name": "UpperDebyl", + "type": "system" + }, + { + "id": 30002999, + "regionId": 10000036, + "name": "Shastal", + "type": "system" + }, + { + "id": 30003000, + "regionId": 10000036, + "name": "Thakala", + "type": "system" + }, + { + "id": 30003001, + "regionId": 10000036, + "name": "Mili", + "type": "system" + }, + { + "id": 30003002, + "regionId": 10000036, + "name": "Faktun", + "type": "system" + }, + { + "id": 30003003, + "regionId": 10000036, + "name": "Halenan", + "type": "system" + }, + { + "id": 30003004, + "regionId": 10000036, + "name": "Ulerah", + "type": "system" + }, + { + "id": 30003005, + "regionId": 10000036, + "name": "Uktiad", + "type": "system" + }, + { + "id": 30003006, + "regionId": 10000036, + "name": "Nidebora", + "type": "system" + }, + { + "id": 30003007, + "regionId": 10000036, + "name": "Arveyil", + "type": "system" + }, + { + "id": 30003008, + "regionId": 10000036, + "name": "Palpis", + "type": "system" + }, + { + "id": 30003009, + "regionId": 10000037, + "name": "Arnatele", + "type": "system" + }, + { + "id": 30003010, + "regionId": 10000037, + "name": "Halle", + "type": "system" + }, + { + "id": 30003011, + "regionId": 10000037, + "name": "Mormoen", + "type": "system" + }, + { + "id": 30003012, + "regionId": 10000037, + "name": "Amattens", + "type": "system" + }, + { + "id": 30003013, + "regionId": 10000037, + "name": "Jurlesel", + "type": "system" + }, + { + "id": 30003014, + "regionId": 10000037, + "name": "Bereye", + "type": "system" + }, + { + "id": 30003015, + "regionId": 10000037, + "name": "Aice", + "type": "system" + }, + { + "id": 30003016, + "regionId": 10000037, + "name": "Junsoraert", + "type": "system" + }, + { + "id": 30003017, + "regionId": 10000037, + "name": "Harerget", + "type": "system" + }, + { + "id": 30003018, + "regionId": 10000037, + "name": "Azer", + "type": "system" + }, + { + "id": 30003019, + "regionId": 10000037, + "name": "Cherore", + "type": "system" + }, + { + "id": 30003020, + "regionId": 10000037, + "name": "Torvi", + "type": "system" + }, + { + "id": 30003021, + "regionId": 10000037, + "name": "Mosson", + "type": "system" + }, + { + "id": 30003022, + "regionId": 10000037, + "name": "Mya", + "type": "system" + }, + { + "id": 30003023, + "regionId": 10000037, + "name": "Gerper", + "type": "system" + }, + { + "id": 30003024, + "regionId": 10000037, + "name": "Marosier", + "type": "system" + }, + { + "id": 30003025, + "regionId": 10000037, + "name": "Lirsautton", + "type": "system" + }, + { + "id": 30003026, + "regionId": 10000037, + "name": "Blameston", + "type": "system" + }, + { + "id": 30003027, + "regionId": 10000037, + "name": "Vaurent", + "type": "system" + }, + { + "id": 30003028, + "regionId": 10000037, + "name": "Aclan", + "type": "system" + }, + { + "id": 30003029, + "regionId": 10000037, + "name": "Jaschercis", + "type": "system" + }, + { + "id": 30003030, + "regionId": 10000037, + "name": "Ardallabier", + "type": "system" + }, + { + "id": 30003031, + "regionId": 10000037, + "name": "Athinard", + "type": "system" + }, + { + "id": 30003032, + "regionId": 10000037, + "name": "Meves", + "type": "system" + }, + { + "id": 30003033, + "regionId": 10000037, + "name": "Ethernity", + "type": "system" + }, + { + "id": 30003034, + "regionId": 10000037, + "name": "Mattere", + "type": "system" + }, + { + "id": 30003035, + "regionId": 10000037, + "name": "Gicodel", + "type": "system" + }, + { + "id": 30003036, + "regionId": 10000037, + "name": "Frarolle", + "type": "system" + }, + { + "id": 30003037, + "regionId": 10000037, + "name": "Quier", + "type": "system" + }, + { + "id": 30003038, + "regionId": 10000037, + "name": "Atlanins", + "type": "system" + }, + { + "id": 30003039, + "regionId": 10000037, + "name": "Leremblompes", + "type": "system" + }, + { + "id": 30003040, + "regionId": 10000037, + "name": "Bille", + "type": "system" + }, + { + "id": 30003041, + "regionId": 10000037, + "name": "Colcer", + "type": "system" + }, + { + "id": 30003042, + "regionId": 10000037, + "name": "Alachene", + "type": "system" + }, + { + "id": 30003043, + "regionId": 10000037, + "name": "Uphene", + "type": "system" + }, + { + "id": 30003044, + "regionId": 10000037, + "name": "Elarel", + "type": "system" + }, + { + "id": 30003045, + "regionId": 10000037, + "name": "Enedore", + "type": "system" + }, + { + "id": 30003046, + "regionId": 10000070, + "name": "Angymonne", + "type": "system" + }, + { + "id": 30003047, + "regionId": 10000037, + "name": "Averon", + "type": "system" + }, + { + "id": 30003048, + "regionId": 10000037, + "name": "Carirgnottin", + "type": "system" + }, + { + "id": 30003049, + "regionId": 10000037, + "name": "Laic", + "type": "system" + }, + { + "id": 30003050, + "regionId": 10000037, + "name": "Odixie", + "type": "system" + }, + { + "id": 30003051, + "regionId": 10000037, + "name": "Antollare", + "type": "system" + }, + { + "id": 30003052, + "regionId": 10000037, + "name": "Tolle", + "type": "system" + }, + { + "id": 30003053, + "regionId": 10000037, + "name": "Avele", + "type": "system" + }, + { + "id": 30003054, + "regionId": 10000037, + "name": "Scuelazyns", + "type": "system" + }, + { + "id": 30003055, + "regionId": 10000037, + "name": "Aydoteaux", + "type": "system" + }, + { + "id": 30003056, + "regionId": 10000037, + "name": "Muer", + "type": "system" + }, + { + "id": 30003057, + "regionId": 10000037, + "name": "Groothese", + "type": "system" + }, + { + "id": 30003058, + "regionId": 10000037, + "name": "Olide", + "type": "system" + }, + { + "id": 30003059, + "regionId": 10000037, + "name": "Adeel", + "type": "system" + }, + { + "id": 30003060, + "regionId": 10000037, + "name": "Mannar", + "type": "system" + }, + { + "id": 30003061, + "regionId": 10000037, + "name": "Mormelot", + "type": "system" + }, + { + "id": 30003062, + "regionId": 10000037, + "name": "Angatalie", + "type": "system" + }, + { + "id": 30003063, + "regionId": 10000038, + "name": "Lamaa", + "type": "system" + }, + { + "id": 30003064, + "regionId": 10000038, + "name": "Tuomuta", + "type": "system" + }, + { + "id": 30003065, + "regionId": 10000038, + "name": "Otelen", + "type": "system" + }, + { + "id": 30003066, + "regionId": 10000038, + "name": "Kuomi", + "type": "system" + }, + { + "id": 30003067, + "regionId": 10000038, + "name": "Huola", + "type": "system" + }, + { + "id": 30003068, + "regionId": 10000038, + "name": "Kourmonen", + "type": "system" + }, + { + "id": 30003069, + "regionId": 10000038, + "name": "Kamela", + "type": "system" + }, + { + "id": 30003070, + "regionId": 10000038, + "name": "Sosala", + "type": "system" + }, + { + "id": 30003071, + "regionId": 10000038, + "name": "Anka", + "type": "system" + }, + { + "id": 30003072, + "regionId": 10000038, + "name": "Iesa", + "type": "system" + }, + { + "id": 30003073, + "regionId": 10000038, + "name": "Netsalakka", + "type": "system" + }, + { + "id": 30003074, + "regionId": 10000038, + "name": "Sasiekko", + "type": "system" + }, + { + "id": 30003075, + "regionId": 10000038, + "name": "Myyhera", + "type": "system" + }, + { + "id": 30003076, + "regionId": 10000038, + "name": "Gammel", + "type": "system" + }, + { + "id": 30003077, + "regionId": 10000038, + "name": "Uusanen", + "type": "system" + }, + { + "id": 30003078, + "regionId": 10000038, + "name": "Erkinen", + "type": "system" + }, + { + "id": 30003079, + "regionId": 10000038, + "name": "Saikamon", + "type": "system" + }, + { + "id": 30003080, + "regionId": 10000038, + "name": "Jarkkolen", + "type": "system" + }, + { + "id": 30003081, + "regionId": 10000038, + "name": "Ronne", + "type": "system" + }, + { + "id": 30003082, + "regionId": 10000038, + "name": "Hatori", + "type": "system" + }, + { + "id": 30003083, + "regionId": 10000038, + "name": "Junsen", + "type": "system" + }, + { + "id": 30003084, + "regionId": 10000038, + "name": "Malpara", + "type": "system" + }, + { + "id": 30003085, + "regionId": 10000038, + "name": "Hakodan", + "type": "system" + }, + { + "id": 30003086, + "regionId": 10000038, + "name": "Sahtogas", + "type": "system" + }, + { + "id": 30003087, + "regionId": 10000038, + "name": "Haras", + "type": "system" + }, + { + "id": 30003088, + "regionId": 10000038, + "name": "Oyonata", + "type": "system" + }, + { + "id": 30003089, + "regionId": 10000038, + "name": "Kurniainen", + "type": "system" + }, + { + "id": 30003090, + "regionId": 10000038, + "name": "Saidusairos", + "type": "system" + }, + { + "id": 30003091, + "regionId": 10000038, + "name": "Tannakan", + "type": "system" + }, + { + "id": 30003092, + "regionId": 10000038, + "name": "Komaa", + "type": "system" + }, + { + "id": 30003093, + "regionId": 10000038, + "name": "Ayeroilen", + "type": "system" + }, + { + "id": 30003094, + "regionId": 10000038, + "name": "Imata", + "type": "system" + }, + { + "id": 30003095, + "regionId": 10000038, + "name": "Furskeshin", + "type": "system" + }, + { + "id": 30003096, + "regionId": 10000038, + "name": "Kurmaru", + "type": "system" + }, + { + "id": 30003097, + "regionId": 10000038, + "name": "Satalama", + "type": "system" + }, + { + "id": 30003098, + "regionId": 10000039, + "name": "VYJ-DA", + "type": "system" + }, + { + "id": 30003099, + "regionId": 10000039, + "name": "HHQ-M1", + "type": "system" + }, + { + "id": 30003100, + "regionId": 10000039, + "name": "A-CJGE", + "type": "system" + }, + { + "id": 30003101, + "regionId": 10000039, + "name": "G2-INZ", + "type": "system" + }, + { + "id": 30003102, + "regionId": 10000039, + "name": "WAC-HW", + "type": "system" + }, + { + "id": 30003103, + "regionId": 10000039, + "name": "HT4K-M", + "type": "system" + }, + { + "id": 30003104, + "regionId": 10000039, + "name": "RBW-8G", + "type": "system" + }, + { + "id": 30003105, + "regionId": 10000039, + "name": "4-OUKF", + "type": "system" + }, + { + "id": 30003106, + "regionId": 10000039, + "name": "HAJ-DQ", + "type": "system" + }, + { + "id": 30003107, + "regionId": 10000039, + "name": "JAUD-V", + "type": "system" + }, + { + "id": 30003108, + "regionId": 10000039, + "name": "DTX8-M", + "type": "system" + }, + { + "id": 30003109, + "regionId": 10000039, + "name": "C9N-CC", + "type": "system" + }, + { + "id": 30003110, + "regionId": 10000039, + "name": "X-7BIX", + "type": "system" + }, + { + "id": 30003111, + "regionId": 10000039, + "name": "5-9UXZ", + "type": "system" + }, + { + "id": 30003112, + "regionId": 10000039, + "name": "Q0OH-V", + "type": "system" + }, + { + "id": 30003113, + "regionId": 10000039, + "name": "C-VZAK", + "type": "system" + }, + { + "id": 30003114, + "regionId": 10000039, + "name": "0-O6XF", + "type": "system" + }, + { + "id": 30003115, + "regionId": 10000039, + "name": "D-FVI7", + "type": "system" + }, + { + "id": 30003116, + "regionId": 10000039, + "name": "VL7-60", + "type": "system" + }, + { + "id": 30003117, + "regionId": 10000039, + "name": "NH-R5B", + "type": "system" + }, + { + "id": 30003118, + "regionId": 10000039, + "name": "FN-GFQ", + "type": "system" + }, + { + "id": 30003119, + "regionId": 10000039, + "name": "XKZ8-H", + "type": "system" + }, + { + "id": 30003120, + "regionId": 10000039, + "name": "WX-6UX", + "type": "system" + }, + { + "id": 30003121, + "regionId": 10000039, + "name": "BZ-0GW", + "type": "system" + }, + { + "id": 30003122, + "regionId": 10000039, + "name": "16P-PX", + "type": "system" + }, + { + "id": 30003123, + "regionId": 10000039, + "name": "CR-0E5", + "type": "system" + }, + { + "id": 30003124, + "regionId": 10000039, + "name": "Z-Y9C3", + "type": "system" + }, + { + "id": 30003125, + "regionId": 10000039, + "name": "A1-AUH", + "type": "system" + }, + { + "id": 30003126, + "regionId": 10000039, + "name": "F-UVBV", + "type": "system" + }, + { + "id": 30003127, + "regionId": 10000039, + "name": "R-FM0G", + "type": "system" + }, + { + "id": 30003128, + "regionId": 10000039, + "name": "TEIZ-C", + "type": "system" + }, + { + "id": 30003129, + "regionId": 10000039, + "name": "VUAC-Y", + "type": "system" + }, + { + "id": 30003130, + "regionId": 10000039, + "name": "V-XANH", + "type": "system" + }, + { + "id": 30003131, + "regionId": 10000039, + "name": "450I-W", + "type": "system" + }, + { + "id": 30003132, + "regionId": 10000039, + "name": "OIOM-Y", + "type": "system" + }, + { + "id": 30003133, + "regionId": 10000039, + "name": "G-YZUX", + "type": "system" + }, + { + "id": 30003134, + "regionId": 10000039, + "name": "CZ6U-1", + "type": "system" + }, + { + "id": 30003135, + "regionId": 10000039, + "name": "D-PNP9", + "type": "system" + }, + { + "id": 30003136, + "regionId": 10000039, + "name": "E1UU-3", + "type": "system" + }, + { + "id": 30003137, + "regionId": 10000039, + "name": "P-3XVV", + "type": "system" + }, + { + "id": 30003138, + "regionId": 10000039, + "name": "BY-MSY", + "type": "system" + }, + { + "id": 30003139, + "regionId": 10000039, + "name": "6EK-BV", + "type": "system" + }, + { + "id": 30003140, + "regionId": 10000039, + "name": "IR-FDV", + "type": "system" + }, + { + "id": 30003141, + "regionId": 10000039, + "name": "NIZJ-0", + "type": "system" + }, + { + "id": 30003142, + "regionId": 10000039, + "name": "J-RVGD", + "type": "system" + }, + { + "id": 30003143, + "regionId": 10000039, + "name": "V1ZC-S", + "type": "system" + }, + { + "id": 30003144, + "regionId": 10000039, + "name": "H-T40Z", + "type": "system" + }, + { + "id": 30003145, + "regionId": 10000039, + "name": "6-TYRX", + "type": "system" + }, + { + "id": 30003146, + "regionId": 10000039, + "name": "Q1-R7K", + "type": "system" + }, + { + "id": 30003147, + "regionId": 10000039, + "name": "111-F1", + "type": "system" + }, + { + "id": 30003148, + "regionId": 10000039, + "name": "JD-TYH", + "type": "system" + }, + { + "id": 30003149, + "regionId": 10000039, + "name": "02V-BK", + "type": "system" + }, + { + "id": 30003150, + "regionId": 10000039, + "name": "A5MT-B", + "type": "system" + }, + { + "id": 30003151, + "regionId": 10000039, + "name": "R-ARKN", + "type": "system" + }, + { + "id": 30003152, + "regionId": 10000039, + "name": "SN9S-N", + "type": "system" + }, + { + "id": 30003153, + "regionId": 10000039, + "name": "MS2-V8", + "type": "system" + }, + { + "id": 30003154, + "regionId": 10000039, + "name": "Z-MO29", + "type": "system" + }, + { + "id": 30003155, + "regionId": 10000039, + "name": "G-JC9R", + "type": "system" + }, + { + "id": 30003156, + "regionId": 10000039, + "name": "DIBH-Q", + "type": "system" + }, + { + "id": 30003157, + "regionId": 10000039, + "name": "DNEP-Y", + "type": "system" + }, + { + "id": 30003158, + "regionId": 10000039, + "name": "YAP-TN", + "type": "system" + }, + { + "id": 30003159, + "regionId": 10000039, + "name": "PE-H02", + "type": "system" + }, + { + "id": 30003160, + "regionId": 10000039, + "name": "H-YHYM", + "type": "system" + }, + { + "id": 30003161, + "regionId": 10000039, + "name": "G-4H4C", + "type": "system" + }, + { + "id": 30003162, + "regionId": 10000039, + "name": "HHE5-L", + "type": "system" + }, + { + "id": 30003163, + "regionId": 10000039, + "name": "P9F-ZG", + "type": "system" + }, + { + "id": 30003164, + "regionId": 10000039, + "name": "QFGB-E", + "type": "system" + }, + { + "id": 30003165, + "regionId": 10000039, + "name": "7P-J38", + "type": "system" + }, + { + "id": 30003166, + "regionId": 10000039, + "name": "WT-2J9", + "type": "system" + }, + { + "id": 30003167, + "regionId": 10000039, + "name": "PK-PHZ", + "type": "system" + }, + { + "id": 30003168, + "regionId": 10000039, + "name": "L-M6JK", + "type": "system" + }, + { + "id": 30003169, + "regionId": 10000039, + "name": "C-PEWN", + "type": "system" + }, + { + "id": 30003170, + "regionId": 10000039, + "name": "DL-CDY", + "type": "system" + }, + { + "id": 30003171, + "regionId": 10000039, + "name": "29YH-V", + "type": "system" + }, + { + "id": 30003172, + "regionId": 10000039, + "name": "LG-RO2", + "type": "system" + }, + { + "id": 30003173, + "regionId": 10000039, + "name": "X-HISR", + "type": "system" + }, + { + "id": 30003174, + "regionId": 10000039, + "name": "QS-530", + "type": "system" + }, + { + "id": 30003175, + "regionId": 10000039, + "name": "VR-YRV", + "type": "system" + }, + { + "id": 30003176, + "regionId": 10000039, + "name": "IPX-H5", + "type": "system" + }, + { + "id": 30003177, + "regionId": 10000039, + "name": "KSM-1T", + "type": "system" + }, + { + "id": 30003178, + "regionId": 10000039, + "name": "YRV-MZ", + "type": "system" + }, + { + "id": 30003179, + "regionId": 10000039, + "name": "6SB-BN", + "type": "system" + }, + { + "id": 30003180, + "regionId": 10000039, + "name": "B1D-KU", + "type": "system" + }, + { + "id": 30003181, + "regionId": 10000039, + "name": "QFIU-K", + "type": "system" + }, + { + "id": 30003182, + "regionId": 10000039, + "name": "2R-KLH", + "type": "system" + }, + { + "id": 30003183, + "regionId": 10000040, + "name": "QB-AE6", + "type": "system" + }, + { + "id": 30003184, + "regionId": 10000040, + "name": "G-W1ND", + "type": "system" + }, + { + "id": 30003185, + "regionId": 10000040, + "name": "MZLW-9", + "type": "system" + }, + { + "id": 30003186, + "regionId": 10000040, + "name": "ND-X7X", + "type": "system" + }, + { + "id": 30003187, + "regionId": 10000040, + "name": "DGDT-3", + "type": "system" + }, + { + "id": 30003188, + "regionId": 10000040, + "name": "2-WNTD", + "type": "system" + }, + { + "id": 30003189, + "regionId": 10000040, + "name": "83-YGI", + "type": "system" + }, + { + "id": 30003190, + "regionId": 10000040, + "name": "KH-EWC", + "type": "system" + }, + { + "id": 30003191, + "regionId": 10000040, + "name": "3VL6-I", + "type": "system" + }, + { + "id": 30003192, + "regionId": 10000040, + "name": "F-816R", + "type": "system" + }, + { + "id": 30003193, + "regionId": 10000040, + "name": "DS3-6A", + "type": "system" + }, + { + "id": 30003194, + "regionId": 10000040, + "name": "V0-H4L", + "type": "system" + }, + { + "id": 30003195, + "regionId": 10000040, + "name": "T-HMWP", + "type": "system" + }, + { + "id": 30003196, + "regionId": 10000040, + "name": "DYS-CG", + "type": "system" + }, + { + "id": 30003197, + "regionId": 10000040, + "name": "MTGF-2", + "type": "system" + }, + { + "id": 30003198, + "regionId": 10000040, + "name": "0-QP56", + "type": "system" + }, + { + "id": 30003199, + "regionId": 10000040, + "name": "GTQ-C9", + "type": "system" + }, + { + "id": 30003200, + "regionId": 10000040, + "name": "M-NWLB", + "type": "system" + }, + { + "id": 30003201, + "regionId": 10000040, + "name": "ORB4-J", + "type": "system" + }, + { + "id": 30003202, + "regionId": 10000040, + "name": "GGMF-J", + "type": "system" + }, + { + "id": 30003203, + "regionId": 10000040, + "name": "IG-4OF", + "type": "system" + }, + { + "id": 30003204, + "regionId": 10000040, + "name": "LQQH-J", + "type": "system" + }, + { + "id": 30003205, + "regionId": 10000040, + "name": "W5-VBR", + "type": "system" + }, + { + "id": 30003206, + "regionId": 10000040, + "name": "J-D5U7", + "type": "system" + }, + { + "id": 30003207, + "regionId": 10000040, + "name": "Y-770C", + "type": "system" + }, + { + "id": 30003208, + "regionId": 10000040, + "name": "X-Z4JW", + "type": "system" + }, + { + "id": 30003209, + "regionId": 10000040, + "name": "R8WV-7", + "type": "system" + }, + { + "id": 30003210, + "regionId": 10000040, + "name": "6U-MFQ", + "type": "system" + }, + { + "id": 30003211, + "regionId": 10000040, + "name": "1EO-OE", + "type": "system" + }, + { + "id": 30003212, + "regionId": 10000040, + "name": "YQTK-R", + "type": "system" + }, + { + "id": 30003213, + "regionId": 10000040, + "name": "FZCR-3", + "type": "system" + }, + { + "id": 30003214, + "regionId": 10000040, + "name": "5-9L3H", + "type": "system" + }, + { + "id": 30003215, + "regionId": 10000040, + "name": "1-HDQ4", + "type": "system" + }, + { + "id": 30003216, + "regionId": 10000040, + "name": "WVMS-X", + "type": "system" + }, + { + "id": 30003217, + "regionId": 10000040, + "name": "7-UVMT", + "type": "system" + }, + { + "id": 30003218, + "regionId": 10000040, + "name": "R-ZESX", + "type": "system" + }, + { + "id": 30003219, + "regionId": 10000040, + "name": "IO-R2S", + "type": "system" + }, + { + "id": 30003220, + "regionId": 10000040, + "name": "HF-K3O", + "type": "system" + }, + { + "id": 30003221, + "regionId": 10000040, + "name": "QE2-FS", + "type": "system" + }, + { + "id": 30003222, + "regionId": 10000040, + "name": "Q-ITV5", + "type": "system" + }, + { + "id": 30003223, + "regionId": 10000040, + "name": "5JEZ-I", + "type": "system" + }, + { + "id": 30003224, + "regionId": 10000040, + "name": "XEF6-Z", + "type": "system" + }, + { + "id": 30003225, + "regionId": 10000040, + "name": "SON-TW", + "type": "system" + }, + { + "id": 30003226, + "regionId": 10000040, + "name": "V-X0KM", + "type": "system" + }, + { + "id": 30003227, + "regionId": 10000040, + "name": "U9SE-N", + "type": "system" + }, + { + "id": 30003228, + "regionId": 10000040, + "name": "XXZ-3W", + "type": "system" + }, + { + "id": 30003229, + "regionId": 10000040, + "name": "RF-X7V", + "type": "system" + }, + { + "id": 30003230, + "regionId": 10000040, + "name": "BQ0-UU", + "type": "system" + }, + { + "id": 30003231, + "regionId": 10000040, + "name": "3-JG3X", + "type": "system" + }, + { + "id": 30003232, + "regionId": 10000040, + "name": "GK3-RX", + "type": "system" + }, + { + "id": 30003233, + "regionId": 10000040, + "name": "1P-QWR", + "type": "system" + }, + { + "id": 30003234, + "regionId": 10000040, + "name": "FJ-GUR", + "type": "system" + }, + { + "id": 30003235, + "regionId": 10000040, + "name": "UGR-J2", + "type": "system" + }, + { + "id": 30003236, + "regionId": 10000040, + "name": "QZ-DIZ", + "type": "system" + }, + { + "id": 30003237, + "regionId": 10000040, + "name": "Y-0HVF", + "type": "system" + }, + { + "id": 30003238, + "regionId": 10000040, + "name": "21M1-B", + "type": "system" + }, + { + "id": 30003239, + "regionId": 10000040, + "name": "KED-2O", + "type": "system" + }, + { + "id": 30003240, + "regionId": 10000040, + "name": "U-RELP", + "type": "system" + }, + { + "id": 30003241, + "regionId": 10000040, + "name": "IAMJ-Q", + "type": "system" + }, + { + "id": 30003242, + "regionId": 10000040, + "name": "E6Q-LE", + "type": "system" + }, + { + "id": 30003243, + "regionId": 10000040, + "name": "HO4E-Q", + "type": "system" + }, + { + "id": 30003244, + "regionId": 10000040, + "name": "QY2Y-N", + "type": "system" + }, + { + "id": 30003245, + "regionId": 10000040, + "name": "X-9ZZR", + "type": "system" + }, + { + "id": 30003246, + "regionId": 10000040, + "name": "RO-AIQ", + "type": "system" + }, + { + "id": 30003247, + "regionId": 10000040, + "name": "VZEG-B", + "type": "system" + }, + { + "id": 30003248, + "regionId": 10000040, + "name": "P-ZWKH", + "type": "system" + }, + { + "id": 30003249, + "regionId": 10000040, + "name": "9G5J-1", + "type": "system" + }, + { + "id": 30003250, + "regionId": 10000040, + "name": "B-ETDW", + "type": "system" + }, + { + "id": 30003251, + "regionId": 10000040, + "name": "0PU2-R", + "type": "system" + }, + { + "id": 30003252, + "regionId": 10000040, + "name": "XM-RMD", + "type": "system" + }, + { + "id": 30003253, + "regionId": 10000040, + "name": "91-KD8", + "type": "system" + }, + { + "id": 30003254, + "regionId": 10000040, + "name": "OZ-DS5", + "type": "system" + }, + { + "id": 30003255, + "regionId": 10000040, + "name": "LA2-KV", + "type": "system" + }, + { + "id": 30003256, + "regionId": 10000040, + "name": "WW-OVQ", + "type": "system" + }, + { + "id": 30003257, + "regionId": 10000040, + "name": "S7WI-F", + "type": "system" + }, + { + "id": 30003258, + "regionId": 10000040, + "name": "1-BK1Q", + "type": "system" + }, + { + "id": 30003259, + "regionId": 10000040, + "name": "X-CYNC", + "type": "system" + }, + { + "id": 30003260, + "regionId": 10000040, + "name": "RJBC-I", + "type": "system" + }, + { + "id": 30003261, + "regionId": 10000040, + "name": "H-MHWF", + "type": "system" + }, + { + "id": 30003262, + "regionId": 10000040, + "name": "PND-SI", + "type": "system" + }, + { + "id": 30003263, + "regionId": 10000040, + "name": "XKM-DE", + "type": "system" + }, + { + "id": 30003264, + "regionId": 10000040, + "name": "JXQJ-B", + "type": "system" + }, + { + "id": 30003265, + "regionId": 10000040, + "name": "Y-BIPM", + "type": "system" + }, + { + "id": 30003266, + "regionId": 10000040, + "name": "QYT-X8", + "type": "system" + }, + { + "id": 30003267, + "regionId": 10000040, + "name": "5-IH57", + "type": "system" + }, + { + "id": 30003268, + "regionId": 10000041, + "name": "MHC-R3", + "type": "system" + }, + { + "id": 30003269, + "regionId": 10000041, + "name": "F67E-Q", + "type": "system" + }, + { + "id": 30003270, + "regionId": 10000041, + "name": "6E-578", + "type": "system" + }, + { + "id": 30003271, + "regionId": 10000041, + "name": "Poitot", + "type": "system" + }, + { + "id": 30003272, + "regionId": 10000041, + "name": "ZVN5-H", + "type": "system" + }, + { + "id": 30003273, + "regionId": 10000041, + "name": "ATY-2U", + "type": "system" + }, + { + "id": 30003274, + "regionId": 10000041, + "name": "X-BV98", + "type": "system" + }, + { + "id": 30003275, + "regionId": 10000041, + "name": "2X-PQG", + "type": "system" + }, + { + "id": 30003276, + "regionId": 10000041, + "name": "FD-MLJ", + "type": "system" + }, + { + "id": 30003277, + "regionId": 10000041, + "name": "PF-346", + "type": "system" + }, + { + "id": 30003278, + "regionId": 10000041, + "name": "X-M2LR", + "type": "system" + }, + { + "id": 30003279, + "regionId": 10000041, + "name": "K5-JRD", + "type": "system" + }, + { + "id": 30003280, + "regionId": 10000041, + "name": "6-CZ49", + "type": "system" + }, + { + "id": 30003281, + "regionId": 10000041, + "name": "EZA-FM", + "type": "system" + }, + { + "id": 30003282, + "regionId": 10000041, + "name": "8-JYPM", + "type": "system" + }, + { + "id": 30003283, + "regionId": 10000041, + "name": "PVH8-0", + "type": "system" + }, + { + "id": 30003284, + "regionId": 10000041, + "name": "M2-CF1", + "type": "system" + }, + { + "id": 30003285, + "regionId": 10000041, + "name": "JH-M2W", + "type": "system" + }, + { + "id": 30003286, + "regionId": 10000041, + "name": "PC9-AY", + "type": "system" + }, + { + "id": 30003287, + "regionId": 10000041, + "name": "T22-QI", + "type": "system" + }, + { + "id": 30003288, + "regionId": 10000041, + "name": "X-PYH5", + "type": "system" + }, + { + "id": 30003289, + "regionId": 10000041, + "name": "ZN0-SR", + "type": "system" + }, + { + "id": 30003290, + "regionId": 10000041, + "name": "5-DSFH", + "type": "system" + }, + { + "id": 30003291, + "regionId": 10000041, + "name": "AK-QBU", + "type": "system" + }, + { + "id": 30003292, + "regionId": 10000041, + "name": "QWF-6P", + "type": "system" + }, + { + "id": 30003293, + "regionId": 10000041, + "name": "AAS-8R", + "type": "system" + }, + { + "id": 30003294, + "regionId": 10000041, + "name": "V4-L0X", + "type": "system" + }, + { + "id": 30003295, + "regionId": 10000041, + "name": "PFP-GU", + "type": "system" + }, + { + "id": 30003296, + "regionId": 10000041, + "name": "0EK-NJ", + "type": "system" + }, + { + "id": 30003297, + "regionId": 10000041, + "name": "1-NKVT", + "type": "system" + }, + { + "id": 30003298, + "regionId": 10000041, + "name": "UM-Q7F", + "type": "system" + }, + { + "id": 30003299, + "regionId": 10000041, + "name": "T-LIWS", + "type": "system" + }, + { + "id": 30003300, + "regionId": 10000041, + "name": "KTHT-O", + "type": "system" + }, + { + "id": 30003301, + "regionId": 10000041, + "name": "97X-CH", + "type": "system" + }, + { + "id": 30003302, + "regionId": 10000041, + "name": "5-T0PZ", + "type": "system" + }, + { + "id": 30003303, + "regionId": 10000041, + "name": "6R-PWU", + "type": "system" + }, + { + "id": 30003304, + "regionId": 10000041, + "name": "2Q-I6Q", + "type": "system" + }, + { + "id": 30003305, + "regionId": 10000041, + "name": "A-ZLHX", + "type": "system" + }, + { + "id": 30003306, + "regionId": 10000041, + "name": "UTKS-5", + "type": "system" + }, + { + "id": 30003307, + "regionId": 10000041, + "name": "Y9G-KS", + "type": "system" + }, + { + "id": 30003308, + "regionId": 10000041, + "name": "I-YGGI", + "type": "system" + }, + { + "id": 30003309, + "regionId": 10000041, + "name": "VV-VCR", + "type": "system" + }, + { + "id": 30003310, + "regionId": 10000041, + "name": "5-75MB", + "type": "system" + }, + { + "id": 30003311, + "regionId": 10000041, + "name": "IIRH-G", + "type": "system" + }, + { + "id": 30003312, + "regionId": 10000041, + "name": "35-RK9", + "type": "system" + }, + { + "id": 30003313, + "regionId": 10000041, + "name": "XS-XAY", + "type": "system" + }, + { + "id": 30003314, + "regionId": 10000041, + "name": "DP34-U", + "type": "system" + }, + { + "id": 30003315, + "regionId": 10000041, + "name": "617I-I", + "type": "system" + }, + { + "id": 30003316, + "regionId": 10000041, + "name": "6-U2M8", + "type": "system" + }, + { + "id": 30003317, + "regionId": 10000041, + "name": "I0AB-R", + "type": "system" + }, + { + "id": 30003318, + "regionId": 10000041, + "name": "MXYS-8", + "type": "system" + }, + { + "id": 30003319, + "regionId": 10000041, + "name": "A-3ES3", + "type": "system" + }, + { + "id": 30003320, + "regionId": 10000041, + "name": "8V-SJJ", + "type": "system" + }, + { + "id": 30003321, + "regionId": 10000041, + "name": "5-FGQI", + "type": "system" + }, + { + "id": 30003322, + "regionId": 10000041, + "name": "3KNK-A", + "type": "system" + }, + { + "id": 30003323, + "regionId": 10000041, + "name": "TXW-EI", + "type": "system" + }, + { + "id": 30003324, + "regionId": 10000041, + "name": "3MOG-V", + "type": "system" + }, + { + "id": 30003325, + "regionId": 10000041, + "name": "NG-C6Y", + "type": "system" + }, + { + "id": 30003326, + "regionId": 10000041, + "name": "XYY-IA", + "type": "system" + }, + { + "id": 30003327, + "regionId": 10000041, + "name": "BMNV-P", + "type": "system" + }, + { + "id": 30003328, + "regionId": 10000041, + "name": "BY-S36", + "type": "system" + }, + { + "id": 30003329, + "regionId": 10000041, + "name": "31-MLU", + "type": "system" + }, + { + "id": 30003330, + "regionId": 10000041, + "name": "0LTQ-C", + "type": "system" + }, + { + "id": 30003331, + "regionId": 10000041, + "name": "A9D-R0", + "type": "system" + }, + { + "id": 30003332, + "regionId": 10000041, + "name": "2P-4LS", + "type": "system" + }, + { + "id": 30003333, + "regionId": 10000041, + "name": "RF-GGF", + "type": "system" + }, + { + "id": 30003334, + "regionId": 10000041, + "name": "LSC4-P", + "type": "system" + }, + { + "id": 30003335, + "regionId": 10000041, + "name": "A-SJ8X", + "type": "system" + }, + { + "id": 30003336, + "regionId": 10000041, + "name": "10UZ-P", + "type": "system" + }, + { + "id": 30003337, + "regionId": 10000041, + "name": "EN-VOD", + "type": "system" + }, + { + "id": 30003338, + "regionId": 10000041, + "name": "9GYL-O", + "type": "system" + }, + { + "id": 30003339, + "regionId": 10000041, + "name": "VLGD-R", + "type": "system" + }, + { + "id": 30003340, + "regionId": 10000041, + "name": "S-GKKR", + "type": "system" + }, + { + "id": 30003341, + "regionId": 10000041, + "name": "9U-TTJ", + "type": "system" + }, + { + "id": 30003342, + "regionId": 10000041, + "name": "Y-W6GF", + "type": "system" + }, + { + "id": 30003343, + "regionId": 10000041, + "name": "KFR-ZE", + "type": "system" + }, + { + "id": 30003344, + "regionId": 10000041, + "name": "KLYN-8", + "type": "system" + }, + { + "id": 30003345, + "regionId": 10000041, + "name": "D85-VD", + "type": "system" + }, + { + "id": 30003346, + "regionId": 10000041, + "name": "5-VKCN", + "type": "system" + }, + { + "id": 30003347, + "regionId": 10000041, + "name": "U0V6-T", + "type": "system" + }, + { + "id": 30003348, + "regionId": 10000041, + "name": "5KS-AB", + "type": "system" + }, + { + "id": 30003349, + "regionId": 10000041, + "name": "0T-AMZ", + "type": "system" + }, + { + "id": 30003350, + "regionId": 10000041, + "name": "57-YRU", + "type": "system" + }, + { + "id": 30003351, + "regionId": 10000041, + "name": "4L-E5P", + "type": "system" + }, + { + "id": 30003352, + "regionId": 10000041, + "name": "UFXF-C", + "type": "system" + }, + { + "id": 30003353, + "regionId": 10000041, + "name": "RLL-9R", + "type": "system" + }, + { + "id": 30003354, + "regionId": 10000041, + "name": "51-5XG", + "type": "system" + }, + { + "id": 30003355, + "regionId": 10000041, + "name": "EF-F36", + "type": "system" + }, + { + "id": 30003356, + "regionId": 10000041, + "name": "3-IN0V", + "type": "system" + }, + { + "id": 30003357, + "regionId": 10000041, + "name": "Z-QENW", + "type": "system" + }, + { + "id": 30003358, + "regionId": 10000041, + "name": "D-B7YK", + "type": "system" + }, + { + "id": 30003359, + "regionId": 10000041, + "name": "DUV-5Y", + "type": "system" + }, + { + "id": 30003360, + "regionId": 10000041, + "name": "GRNJ-3", + "type": "system" + }, + { + "id": 30003361, + "regionId": 10000041, + "name": "VSIG-K", + "type": "system" + }, + { + "id": 30003362, + "regionId": 10000041, + "name": "RSS-KA", + "type": "system" + }, + { + "id": 30003363, + "regionId": 10000041, + "name": "CIS-7X", + "type": "system" + }, + { + "id": 30003364, + "regionId": 10000041, + "name": "DCHR-L", + "type": "system" + }, + { + "id": 30003365, + "regionId": 10000041, + "name": "EU0I-T", + "type": "system" + }, + { + "id": 30003366, + "regionId": 10000041, + "name": "4-JWWQ", + "type": "system" + }, + { + "id": 30003367, + "regionId": 10000041, + "name": "G-6SXJ", + "type": "system" + }, + { + "id": 30003368, + "regionId": 10000041, + "name": "S-U8A4", + "type": "system" + }, + { + "id": 30003369, + "regionId": 10000041, + "name": "ZV-72W", + "type": "system" + }, + { + "id": 30003370, + "regionId": 10000041, + "name": "2G38-I", + "type": "system" + }, + { + "id": 30003371, + "regionId": 10000041, + "name": "CY-ZLP", + "type": "system" + }, + { + "id": 30003372, + "regionId": 10000041, + "name": "U4-Q2V", + "type": "system" + }, + { + "id": 30003373, + "regionId": 10000041, + "name": "98Q-8O", + "type": "system" + }, + { + "id": 30003374, + "regionId": 10000042, + "name": "Arlulf", + "type": "system" + }, + { + "id": 30003375, + "regionId": 10000042, + "name": "Brundakur", + "type": "system" + }, + { + "id": 30003376, + "regionId": 10000042, + "name": "Stirht", + "type": "system" + }, + { + "id": 30003377, + "regionId": 10000042, + "name": "Illuin", + "type": "system" + }, + { + "id": 30003378, + "regionId": 10000042, + "name": "Nedegulf", + "type": "system" + }, + { + "id": 30003379, + "regionId": 10000042, + "name": "Aldilur", + "type": "system" + }, + { + "id": 30003380, + "regionId": 10000042, + "name": "Alf", + "type": "system" + }, + { + "id": 30003381, + "regionId": 10000042, + "name": "Eust", + "type": "system" + }, + { + "id": 30003382, + "regionId": 10000042, + "name": "Flost", + "type": "system" + }, + { + "id": 30003383, + "regionId": 10000042, + "name": "Todrir", + "type": "system" + }, + { + "id": 30003384, + "regionId": 10000042, + "name": "Asgeir", + "type": "system" + }, + { + "id": 30003385, + "regionId": 10000042, + "name": "Evuldgenzo", + "type": "system" + }, + { + "id": 30003386, + "regionId": 10000042, + "name": "Ongund", + "type": "system" + }, + { + "id": 30003387, + "regionId": 10000042, + "name": "Jondik", + "type": "system" + }, + { + "id": 30003388, + "regionId": 10000042, + "name": "Olbra", + "type": "system" + }, + { + "id": 30003389, + "regionId": 10000042, + "name": "Altrinur", + "type": "system" + }, + { + "id": 30003390, + "regionId": 10000042, + "name": "Vilur", + "type": "system" + }, + { + "id": 30003391, + "regionId": 10000042, + "name": "Reset", + "type": "system" + }, + { + "id": 30003392, + "regionId": 10000042, + "name": "Eygfe", + "type": "system" + }, + { + "id": 30003393, + "regionId": 10000042, + "name": "Eiluvodi", + "type": "system" + }, + { + "id": 30003394, + "regionId": 10000042, + "name": "Freatlidur", + "type": "system" + }, + { + "id": 30003395, + "regionId": 10000042, + "name": "Roleinn", + "type": "system" + }, + { + "id": 30003396, + "regionId": 10000042, + "name": "Maturat", + "type": "system" + }, + { + "id": 30003397, + "regionId": 10000042, + "name": "Bongveber", + "type": "system" + }, + { + "id": 30003398, + "regionId": 10000042, + "name": "Anbald", + "type": "system" + }, + { + "id": 30003399, + "regionId": 10000042, + "name": "Vorsk", + "type": "system" + }, + { + "id": 30003400, + "regionId": 10000042, + "name": "Hjortur", + "type": "system" + }, + { + "id": 30003401, + "regionId": 10000042, + "name": "Egbonbet", + "type": "system" + }, + { + "id": 30003402, + "regionId": 10000042, + "name": "Totkubad", + "type": "system" + }, + { + "id": 30003403, + "regionId": 10000042, + "name": "Meimungen", + "type": "system" + }, + { + "id": 30003404, + "regionId": 10000042, + "name": "Agtver", + "type": "system" + }, + { + "id": 30003405, + "regionId": 10000042, + "name": "Datulen", + "type": "system" + }, + { + "id": 30003406, + "regionId": 10000042, + "name": "Situner", + "type": "system" + }, + { + "id": 30003407, + "regionId": 10000042, + "name": "Tamekamur", + "type": "system" + }, + { + "id": 30003408, + "regionId": 10000042, + "name": "Evettullur", + "type": "system" + }, + { + "id": 30003409, + "regionId": 10000042, + "name": "Leurtmar", + "type": "system" + }, + { + "id": 30003410, + "regionId": 10000042, + "name": "Ryddinjorn", + "type": "system" + }, + { + "id": 30003411, + "regionId": 10000042, + "name": "Arlek", + "type": "system" + }, + { + "id": 30003412, + "regionId": 10000042, + "name": "Elgoi", + "type": "system" + }, + { + "id": 30003413, + "regionId": 10000042, + "name": "Eram", + "type": "system" + }, + { + "id": 30003414, + "regionId": 10000042, + "name": "Yrmori", + "type": "system" + }, + { + "id": 30003415, + "regionId": 10000042, + "name": "Aldagolf", + "type": "system" + }, + { + "id": 30003416, + "regionId": 10000042, + "name": "Aldrat", + "type": "system" + }, + { + "id": 30003417, + "regionId": 10000042, + "name": "Urnhard", + "type": "system" + }, + { + "id": 30003418, + "regionId": 10000042, + "name": "Hardbako", + "type": "system" + }, + { + "id": 30003419, + "regionId": 10000042, + "name": "Erstur", + "type": "system" + }, + { + "id": 30003420, + "regionId": 10000042, + "name": "Fredagod", + "type": "system" + }, + { + "id": 30003421, + "regionId": 10000042, + "name": "Libold", + "type": "system" + }, + { + "id": 30003422, + "regionId": 10000042, + "name": "Wirdalen", + "type": "system" + }, + { + "id": 30003423, + "regionId": 10000042, + "name": "Nein", + "type": "system" + }, + { + "id": 30003424, + "regionId": 10000042, + "name": "Enden", + "type": "system" + }, + { + "id": 30003425, + "regionId": 10000042, + "name": "Erstet", + "type": "system" + }, + { + "id": 30003426, + "regionId": 10000042, + "name": "Anstard", + "type": "system" + }, + { + "id": 30003427, + "regionId": 10000042, + "name": "Osvestmunnur", + "type": "system" + }, + { + "id": 30003428, + "regionId": 10000042, + "name": "Hilfhurmur", + "type": "system" + }, + { + "id": 30003429, + "regionId": 10000042, + "name": "Geffur", + "type": "system" + }, + { + "id": 30003430, + "regionId": 10000042, + "name": "Oppold", + "type": "system" + }, + { + "id": 30003431, + "regionId": 10000042, + "name": "Tratokard", + "type": "system" + }, + { + "id": 30003432, + "regionId": 10000042, + "name": "Lumegen", + "type": "system" + }, + { + "id": 30003433, + "regionId": 10000042, + "name": "Gedugaud", + "type": "system" + }, + { + "id": 30003434, + "regionId": 10000042, + "name": "Polstodur", + "type": "system" + }, + { + "id": 30003435, + "regionId": 10000042, + "name": "Hebisa", + "type": "system" + }, + { + "id": 30003436, + "regionId": 10000042, + "name": "Tollus", + "type": "system" + }, + { + "id": 30003437, + "regionId": 10000042, + "name": "Ogoten", + "type": "system" + }, + { + "id": 30003438, + "regionId": 10000042, + "name": "Earled", + "type": "system" + }, + { + "id": 30003439, + "regionId": 10000042, + "name": "Aderkan", + "type": "system" + }, + { + "id": 30003440, + "regionId": 10000042, + "name": "Ansher", + "type": "system" + }, + { + "id": 30003441, + "regionId": 10000042, + "name": "Earwik", + "type": "system" + }, + { + "id": 30003442, + "regionId": 10000042, + "name": "Finanar", + "type": "system" + }, + { + "id": 30003443, + "regionId": 10000042, + "name": "Moselgi", + "type": "system" + }, + { + "id": 30003444, + "regionId": 10000042, + "name": "Mateber", + "type": "system" + }, + { + "id": 30003445, + "regionId": 10000042, + "name": "Iluin", + "type": "system" + }, + { + "id": 30003446, + "regionId": 10000042, + "name": "Ofage", + "type": "system" + }, + { + "id": 30003447, + "regionId": 10000042, + "name": "Josekorn", + "type": "system" + }, + { + "id": 30003448, + "regionId": 10000042, + "name": "Nifflung", + "type": "system" + }, + { + "id": 30003449, + "regionId": 10000042, + "name": "Hakeri", + "type": "system" + }, + { + "id": 30003450, + "regionId": 10000042, + "name": "Oraekja", + "type": "system" + }, + { + "id": 30003451, + "regionId": 10000042, + "name": "Dantbeinn", + "type": "system" + }, + { + "id": 30003452, + "regionId": 10000042, + "name": "Irgrus", + "type": "system" + }, + { + "id": 30003453, + "regionId": 10000042, + "name": "Orduin", + "type": "system" + }, + { + "id": 30003454, + "regionId": 10000042, + "name": "Engosi", + "type": "system" + }, + { + "id": 30003455, + "regionId": 10000042, + "name": "Atonder", + "type": "system" + }, + { + "id": 30003456, + "regionId": 10000042, + "name": "Hotrardik", + "type": "system" + }, + { + "id": 30003457, + "regionId": 10000042, + "name": "Ridoner", + "type": "system" + }, + { + "id": 30003458, + "regionId": 10000042, + "name": "Klaevik", + "type": "system" + }, + { + "id": 30003459, + "regionId": 10000042, + "name": "Lirerim", + "type": "system" + }, + { + "id": 30003460, + "regionId": 10000042, + "name": "Offikatlin", + "type": "system" + }, + { + "id": 30003461, + "regionId": 10000042, + "name": "Diromitur", + "type": "system" + }, + { + "id": 30003462, + "regionId": 10000042, + "name": "Eldjaerin", + "type": "system" + }, + { + "id": 30003463, + "regionId": 10000042, + "name": "Erlendur", + "type": "system" + }, + { + "id": 30003464, + "regionId": 10000042, + "name": "Aldik", + "type": "system" + }, + { + "id": 30003465, + "regionId": 10000042, + "name": "Tabbetzur", + "type": "system" + }, + { + "id": 30003466, + "regionId": 10000042, + "name": "Eurgrana", + "type": "system" + }, + { + "id": 30003467, + "regionId": 10000042, + "name": "Frulegur", + "type": "system" + }, + { + "id": 30003468, + "regionId": 10000042, + "name": "Hroduko", + "type": "system" + }, + { + "id": 30003469, + "regionId": 10000042, + "name": "Hodrold", + "type": "system" + }, + { + "id": 30003470, + "regionId": 10000042, + "name": "Odebeinn", + "type": "system" + }, + { + "id": 30003471, + "regionId": 10000042, + "name": "Konora", + "type": "system" + }, + { + "id": 30003472, + "regionId": 10000042, + "name": "Erindur", + "type": "system" + }, + { + "id": 30003473, + "regionId": 10000043, + "name": "Fahruni", + "type": "system" + }, + { + "id": 30003474, + "regionId": 10000043, + "name": "Sahda", + "type": "system" + }, + { + "id": 30003475, + "regionId": 10000043, + "name": "Naguton", + "type": "system" + }, + { + "id": 30003476, + "regionId": 10000043, + "name": "Ealur", + "type": "system" + }, + { + "id": 30003477, + "regionId": 10000043, + "name": "Shajarleg", + "type": "system" + }, + { + "id": 30003478, + "regionId": 10000043, + "name": "Basan", + "type": "system" + }, + { + "id": 30003479, + "regionId": 10000043, + "name": "Akila", + "type": "system" + }, + { + "id": 30003480, + "regionId": 10000043, + "name": "Amod", + "type": "system" + }, + { + "id": 30003481, + "regionId": 10000043, + "name": "Unefsih", + "type": "system" + }, + { + "id": 30003482, + "regionId": 10000043, + "name": "Mista", + "type": "system" + }, + { + "id": 30003483, + "regionId": 10000043, + "name": "Valmu", + "type": "system" + }, + { + "id": 30003484, + "regionId": 10000043, + "name": "Sibot", + "type": "system" + }, + { + "id": 30003485, + "regionId": 10000043, + "name": "Andabiar", + "type": "system" + }, + { + "id": 30003486, + "regionId": 10000043, + "name": "Kheram", + "type": "system" + }, + { + "id": 30003487, + "regionId": 10000043, + "name": "Arbaz", + "type": "system" + }, + { + "id": 30003488, + "regionId": 10000043, + "name": "Penirgman", + "type": "system" + }, + { + "id": 30003489, + "regionId": 10000043, + "name": "Chaven", + "type": "system" + }, + { + "id": 30003490, + "regionId": 10000043, + "name": "Khopa", + "type": "system" + }, + { + "id": 30003491, + "regionId": 10000043, + "name": "Ashab", + "type": "system" + }, + { + "id": 30003492, + "regionId": 10000043, + "name": "Orkashu", + "type": "system" + }, + { + "id": 30003493, + "regionId": 10000043, + "name": "Youl", + "type": "system" + }, + { + "id": 30003494, + "regionId": 10000043, + "name": "Ekid", + "type": "system" + }, + { + "id": 30003495, + "regionId": 10000070, + "name": "Raravoss", + "type": "system" + }, + { + "id": 30003496, + "regionId": 10000043, + "name": "Nakri", + "type": "system" + }, + { + "id": 30003497, + "regionId": 10000043, + "name": "Zaimeth", + "type": "system" + }, + { + "id": 30003498, + "regionId": 10000043, + "name": "Sharhelund", + "type": "system" + }, + { + "id": 30003499, + "regionId": 10000043, + "name": "Mai", + "type": "system" + }, + { + "id": 30003500, + "regionId": 10000043, + "name": "Sharji", + "type": "system" + }, + { + "id": 30003501, + "regionId": 10000043, + "name": "Kudi", + "type": "system" + }, + { + "id": 30003502, + "regionId": 10000043, + "name": "Bahromab", + "type": "system" + }, + { + "id": 30003503, + "regionId": 10000043, + "name": "Madirmilire", + "type": "system" + }, + { + "id": 30003504, + "regionId": 10000070, + "name": "Niarja", + "type": "system" + }, + { + "id": 30003505, + "regionId": 10000043, + "name": "Fabum", + "type": "system" + }, + { + "id": 30003506, + "regionId": 10000043, + "name": "Saana", + "type": "system" + }, + { + "id": 30003507, + "regionId": 10000043, + "name": "Teshi", + "type": "system" + }, + { + "id": 30003508, + "regionId": 10000043, + "name": "Sayartchen", + "type": "system" + }, + { + "id": 30003509, + "regionId": 10000043, + "name": "Gosalav", + "type": "system" + }, + { + "id": 30003510, + "regionId": 10000043, + "name": "Sorzielang", + "type": "system" + }, + { + "id": 30003511, + "regionId": 10000043, + "name": "Somouh", + "type": "system" + }, + { + "id": 30003512, + "regionId": 10000043, + "name": "Abaim", + "type": "system" + }, + { + "id": 30003513, + "regionId": 10000043, + "name": "Ides", + "type": "system" + }, + { + "id": 30003514, + "regionId": 10000043, + "name": "Yeeramoun", + "type": "system" + }, + { + "id": 30003515, + "regionId": 10000043, + "name": "Anila", + "type": "system" + }, + { + "id": 30003516, + "regionId": 10000043, + "name": "Pedel", + "type": "system" + }, + { + "id": 30003517, + "regionId": 10000043, + "name": "Etav", + "type": "system" + }, + { + "id": 30003518, + "regionId": 10000043, + "name": "Saheri", + "type": "system" + }, + { + "id": 30003519, + "regionId": 10000043, + "name": "Lahnina", + "type": "system" + }, + { + "id": 30003520, + "regionId": 10000043, + "name": "Mahrokht", + "type": "system" + }, + { + "id": 30003521, + "regionId": 10000043, + "name": "Alkabsi", + "type": "system" + }, + { + "id": 30003522, + "regionId": 10000043, + "name": "SarumPrime", + "type": "system" + }, + { + "id": 30003523, + "regionId": 10000043, + "name": "Hama", + "type": "system" + }, + { + "id": 30003524, + "regionId": 10000043, + "name": "Irnal", + "type": "system" + }, + { + "id": 30003525, + "regionId": 10000043, + "name": "Bagodan", + "type": "system" + }, + { + "id": 30003526, + "regionId": 10000043, + "name": "Murzi", + "type": "system" + }, + { + "id": 30003527, + "regionId": 10000043, + "name": "Chesoh", + "type": "system" + }, + { + "id": 30003528, + "regionId": 10000043, + "name": "Herila", + "type": "system" + }, + { + "id": 30003529, + "regionId": 10000043, + "name": "Chemilip", + "type": "system" + }, + { + "id": 30003530, + "regionId": 10000043, + "name": "Raravath", + "type": "system" + }, + { + "id": 30003531, + "regionId": 10000043, + "name": "Hisoufad", + "type": "system" + }, + { + "id": 30003532, + "regionId": 10000043, + "name": "Jesoyeh", + "type": "system" + }, + { + "id": 30003533, + "regionId": 10000043, + "name": "Hahda", + "type": "system" + }, + { + "id": 30003534, + "regionId": 10000043, + "name": "Namaili", + "type": "system" + }, + { + "id": 30003535, + "regionId": 10000043, + "name": "Afivad", + "type": "system" + }, + { + "id": 30003536, + "regionId": 10000043, + "name": "Uzigh", + "type": "system" + }, + { + "id": 30003537, + "regionId": 10000043, + "name": "Erzoh", + "type": "system" + }, + { + "id": 30003538, + "regionId": 10000043, + "name": "Merz", + "type": "system" + }, + { + "id": 30003539, + "regionId": 10000043, + "name": "Miakie", + "type": "system" + }, + { + "id": 30003540, + "regionId": 10000043, + "name": "Sirkahri", + "type": "system" + }, + { + "id": 30003541, + "regionId": 10000043, + "name": "Faswiba", + "type": "system" + }, + { + "id": 30003542, + "regionId": 10000043, + "name": "Hayumtom", + "type": "system" + }, + { + "id": 30003543, + "regionId": 10000043, + "name": "Zanka", + "type": "system" + }, + { + "id": 30003544, + "regionId": 10000043, + "name": "Galeh", + "type": "system" + }, + { + "id": 30003545, + "regionId": 10000043, + "name": "Yuhelia", + "type": "system" + }, + { + "id": 30003546, + "regionId": 10000043, + "name": "Maiah", + "type": "system" + }, + { + "id": 30003547, + "regionId": 10000043, + "name": "Hamse", + "type": "system" + }, + { + "id": 30003548, + "regionId": 10000043, + "name": "Barira", + "type": "system" + }, + { + "id": 30003549, + "regionId": 10000043, + "name": "Lashkai", + "type": "system" + }, + { + "id": 30003550, + "regionId": 10000043, + "name": "Zhilshinou", + "type": "system" + }, + { + "id": 30003551, + "regionId": 10000043, + "name": "Jaswelu", + "type": "system" + }, + { + "id": 30003552, + "regionId": 10000043, + "name": "Ana", + "type": "system" + }, + { + "id": 30003553, + "regionId": 10000043, + "name": "Warouh", + "type": "system" + }, + { + "id": 30003554, + "regionId": 10000043, + "name": "Jambu", + "type": "system" + }, + { + "id": 30003555, + "regionId": 10000043, + "name": "Bittanshal", + "type": "system" + }, + { + "id": 30003556, + "regionId": 10000043, + "name": "Arton", + "type": "system" + }, + { + "id": 30003557, + "regionId": 10000043, + "name": "Sieh", + "type": "system" + }, + { + "id": 30003558, + "regionId": 10000043, + "name": "Madimal", + "type": "system" + }, + { + "id": 30003559, + "regionId": 10000043, + "name": "Mamet", + "type": "system" + }, + { + "id": 30003560, + "regionId": 10000043, + "name": "Hoshoun", + "type": "system" + }, + { + "id": 30003561, + "regionId": 10000043, + "name": "Biphi", + "type": "system" + }, + { + "id": 30003562, + "regionId": 10000043, + "name": "Ziriert", + "type": "system" + }, + { + "id": 30003563, + "regionId": 10000043, + "name": "Misaba", + "type": "system" + }, + { + "id": 30003564, + "regionId": 10000043, + "name": "Rephirib", + "type": "system" + }, + { + "id": 30003565, + "regionId": 10000044, + "name": "Conomette", + "type": "system" + }, + { + "id": 30003566, + "regionId": 10000044, + "name": "Aimoguier", + "type": "system" + }, + { + "id": 30003567, + "regionId": 10000044, + "name": "Yveve", + "type": "system" + }, + { + "id": 30003568, + "regionId": 10000044, + "name": "Meunvon", + "type": "system" + }, + { + "id": 30003569, + "regionId": 10000044, + "name": "Cadelanne", + "type": "system" + }, + { + "id": 30003570, + "regionId": 10000044, + "name": "Elore", + "type": "system" + }, + { + "id": 30003571, + "regionId": 10000044, + "name": "Anckee", + "type": "system" + }, + { + "id": 30003572, + "regionId": 10000044, + "name": "Vevelonel", + "type": "system" + }, + { + "id": 30003573, + "regionId": 10000044, + "name": "Pertnineere", + "type": "system" + }, + { + "id": 30003574, + "regionId": 10000044, + "name": "Boystin", + "type": "system" + }, + { + "id": 30003575, + "regionId": 10000044, + "name": "Lour", + "type": "system" + }, + { + "id": 30003576, + "regionId": 10000044, + "name": "Maire", + "type": "system" + }, + { + "id": 30003577, + "regionId": 10000044, + "name": "Oerse", + "type": "system" + }, + { + "id": 30003578, + "regionId": 10000044, + "name": "Octanneve", + "type": "system" + }, + { + "id": 30003579, + "regionId": 10000044, + "name": "Larryn", + "type": "system" + }, + { + "id": 30003580, + "regionId": 10000044, + "name": "Niballe", + "type": "system" + }, + { + "id": 30003581, + "regionId": 10000044, + "name": "Postouvin", + "type": "system" + }, + { + "id": 30003582, + "regionId": 10000044, + "name": "Odinesyn", + "type": "system" + }, + { + "id": 30003583, + "regionId": 10000044, + "name": "Weraroix", + "type": "system" + }, + { + "id": 30003584, + "regionId": 10000044, + "name": "Sarline", + "type": "system" + }, + { + "id": 30003585, + "regionId": 10000044, + "name": "Aeter", + "type": "system" + }, + { + "id": 30003586, + "regionId": 10000044, + "name": "Gererique", + "type": "system" + }, + { + "id": 30003587, + "regionId": 10000044, + "name": "Harner", + "type": "system" + }, + { + "id": 30003588, + "regionId": 10000044, + "name": "Yvaeroure", + "type": "system" + }, + { + "id": 30003589, + "regionId": 10000044, + "name": "Vecodie", + "type": "system" + }, + { + "id": 30003590, + "regionId": 10000044, + "name": "Arasare", + "type": "system" + }, + { + "id": 30003591, + "regionId": 10000044, + "name": "Yvelet", + "type": "system" + }, + { + "id": 30003592, + "regionId": 10000044, + "name": "Lazer", + "type": "system" + }, + { + "id": 30003593, + "regionId": 10000044, + "name": "Stoure", + "type": "system" + }, + { + "id": 30003594, + "regionId": 10000044, + "name": "Heluene", + "type": "system" + }, + { + "id": 30003595, + "regionId": 10000044, + "name": "Arittant", + "type": "system" + }, + { + "id": 30003596, + "regionId": 10000044, + "name": "Oruse", + "type": "system" + }, + { + "id": 30003597, + "regionId": 10000044, + "name": "Hare", + "type": "system" + }, + { + "id": 30003598, + "regionId": 10000044, + "name": "Ogaria", + "type": "system" + }, + { + "id": 30003599, + "regionId": 10000044, + "name": "Faurulle", + "type": "system" + }, + { + "id": 30003600, + "regionId": 10000044, + "name": "Agaullores", + "type": "system" + }, + { + "id": 30003601, + "regionId": 10000044, + "name": "Babirmoult", + "type": "system" + }, + { + "id": 30003602, + "regionId": 10000044, + "name": "Ratillose", + "type": "system" + }, + { + "id": 30003603, + "regionId": 10000044, + "name": "Ondree", + "type": "system" + }, + { + "id": 30003604, + "regionId": 10000044, + "name": "Pochelympe", + "type": "system" + }, + { + "id": 30003605, + "regionId": 10000044, + "name": "Eggheron", + "type": "system" + }, + { + "id": 30003606, + "regionId": 10000044, + "name": "Toustain", + "type": "system" + }, + { + "id": 30003607, + "regionId": 10000044, + "name": "Straloin", + "type": "system" + }, + { + "id": 30003608, + "regionId": 10000045, + "name": "H1-ESN", + "type": "system" + }, + { + "id": 30003609, + "regionId": 10000045, + "name": "3DR-CR", + "type": "system" + }, + { + "id": 30003610, + "regionId": 10000045, + "name": "RLTG-3", + "type": "system" + }, + { + "id": 30003611, + "regionId": 10000045, + "name": "S-EVIQ", + "type": "system" + }, + { + "id": 30003612, + "regionId": 10000045, + "name": "EOY-BG", + "type": "system" + }, + { + "id": 30003613, + "regionId": 10000045, + "name": "PNS7-J", + "type": "system" + }, + { + "id": 30003614, + "regionId": 10000045, + "name": "IG-ZAM", + "type": "system" + }, + { + "id": 30003615, + "regionId": 10000045, + "name": "0-UVHJ", + "type": "system" + }, + { + "id": 30003616, + "regionId": 10000045, + "name": "NCG-PW", + "type": "system" + }, + { + "id": 30003617, + "regionId": 10000045, + "name": "1QH-0K", + "type": "system" + }, + { + "id": 30003618, + "regionId": 10000045, + "name": "ZH3-BS", + "type": "system" + }, + { + "id": 30003619, + "regionId": 10000045, + "name": "ZJ-QOO", + "type": "system" + }, + { + "id": 30003620, + "regionId": 10000045, + "name": "ZXA-V6", + "type": "system" + }, + { + "id": 30003621, + "regionId": 10000045, + "name": "I1-BE8", + "type": "system" + }, + { + "id": 30003622, + "regionId": 10000045, + "name": "W8O-19", + "type": "system" + }, + { + "id": 30003623, + "regionId": 10000045, + "name": "U1TX-A", + "type": "system" + }, + { + "id": 30003624, + "regionId": 10000045, + "name": "1BWK-S", + "type": "system" + }, + { + "id": 30003625, + "regionId": 10000045, + "name": "KMV-CQ", + "type": "system" + }, + { + "id": 30003626, + "regionId": 10000045, + "name": "RKE-CP", + "type": "system" + }, + { + "id": 30003627, + "regionId": 10000045, + "name": "NV-3KA", + "type": "system" + }, + { + "id": 30003628, + "regionId": 10000045, + "name": "S-1LIO", + "type": "system" + }, + { + "id": 30003629, + "regionId": 10000045, + "name": "S-KSWL", + "type": "system" + }, + { + "id": 30003630, + "regionId": 10000045, + "name": "5-O8B1", + "type": "system" + }, + { + "id": 30003631, + "regionId": 10000045, + "name": "R-YWID", + "type": "system" + }, + { + "id": 30003632, + "regionId": 10000045, + "name": "30-D5G", + "type": "system" + }, + { + "id": 30003633, + "regionId": 10000045, + "name": "HB-FSO", + "type": "system" + }, + { + "id": 30003634, + "regionId": 10000045, + "name": "J1-KJP", + "type": "system" + }, + { + "id": 30003635, + "regionId": 10000045, + "name": "KW-1MV", + "type": "system" + }, + { + "id": 30003636, + "regionId": 10000045, + "name": "G06-8Y", + "type": "system" + }, + { + "id": 30003637, + "regionId": 10000045, + "name": "U-O2DA", + "type": "system" + }, + { + "id": 30003638, + "regionId": 10000045, + "name": "WV-0R2", + "type": "system" + }, + { + "id": 30003639, + "regionId": 10000045, + "name": "SZ6-TA", + "type": "system" + }, + { + "id": 30003640, + "regionId": 10000045, + "name": "6-AOLS", + "type": "system" + }, + { + "id": 30003641, + "regionId": 10000045, + "name": "IKTD-P", + "type": "system" + }, + { + "id": 30003642, + "regionId": 10000045, + "name": "33CE-7", + "type": "system" + }, + { + "id": 30003643, + "regionId": 10000045, + "name": "L-P3XM", + "type": "system" + }, + { + "id": 30003644, + "regionId": 10000045, + "name": "DCJ-ZT", + "type": "system" + }, + { + "id": 30003645, + "regionId": 10000045, + "name": "O36A-P", + "type": "system" + }, + { + "id": 30003646, + "regionId": 10000045, + "name": "Z-LO6I", + "type": "system" + }, + { + "id": 30003647, + "regionId": 10000045, + "name": "0M-103", + "type": "system" + }, + { + "id": 30003648, + "regionId": 10000045, + "name": "6OYQ-Z", + "type": "system" + }, + { + "id": 30003649, + "regionId": 10000045, + "name": "HE5T-A", + "type": "system" + }, + { + "id": 30003650, + "regionId": 10000045, + "name": "A-1IJ9", + "type": "system" + }, + { + "id": 30003651, + "regionId": 10000045, + "name": "Y-YHZQ", + "type": "system" + }, + { + "id": 30003652, + "regionId": 10000045, + "name": "Z-SR1I", + "type": "system" + }, + { + "id": 30003653, + "regionId": 10000045, + "name": "GW7P-8", + "type": "system" + }, + { + "id": 30003654, + "regionId": 10000045, + "name": "SF-XJS", + "type": "system" + }, + { + "id": 30003655, + "regionId": 10000045, + "name": "A1RR-M", + "type": "system" + }, + { + "id": 30003656, + "regionId": 10000045, + "name": "AR-5SY", + "type": "system" + }, + { + "id": 30003657, + "regionId": 10000045, + "name": "OE-4HB", + "type": "system" + }, + { + "id": 30003658, + "regionId": 10000045, + "name": "ZK-YQ3", + "type": "system" + }, + { + "id": 30003659, + "regionId": 10000045, + "name": "MZPH-W", + "type": "system" + }, + { + "id": 30003660, + "regionId": 10000045, + "name": "W0X-MG", + "type": "system" + }, + { + "id": 30003661, + "regionId": 10000045, + "name": "JI-1UQ", + "type": "system" + }, + { + "id": 30003662, + "regionId": 10000045, + "name": "EN-GTB", + "type": "system" + }, + { + "id": 30003663, + "regionId": 10000045, + "name": "U5-XW7", + "type": "system" + }, + { + "id": 30003664, + "regionId": 10000045, + "name": "JSI-LL", + "type": "system" + }, + { + "id": 30003665, + "regionId": 10000045, + "name": "M-UC0S", + "type": "system" + }, + { + "id": 30003666, + "regionId": 10000045, + "name": "V7-MID", + "type": "system" + }, + { + "id": 30003667, + "regionId": 10000045, + "name": "SY0W-2", + "type": "system" + }, + { + "id": 30003668, + "regionId": 10000045, + "name": "2-3Q2G", + "type": "system" + }, + { + "id": 30003669, + "regionId": 10000045, + "name": "Q1U-IU", + "type": "system" + }, + { + "id": 30003670, + "regionId": 10000045, + "name": "C-XNUA", + "type": "system" + }, + { + "id": 30003671, + "regionId": 10000045, + "name": "7D-PAT", + "type": "system" + }, + { + "id": 30003672, + "regionId": 10000045, + "name": "V-LDEJ", + "type": "system" + }, + { + "id": 30003673, + "regionId": 10000045, + "name": "T-K10W", + "type": "system" + }, + { + "id": 30003674, + "regionId": 10000045, + "name": "P-UCRP", + "type": "system" + }, + { + "id": 30003675, + "regionId": 10000045, + "name": "3-QYVE", + "type": "system" + }, + { + "id": 30003676, + "regionId": 10000046, + "name": "C8-CHY", + "type": "system" + }, + { + "id": 30003677, + "regionId": 10000046, + "name": "E-9ORY", + "type": "system" + }, + { + "id": 30003678, + "regionId": 10000046, + "name": "CR-IFM", + "type": "system" + }, + { + "id": 30003679, + "regionId": 10000046, + "name": "HHK-VL", + "type": "system" + }, + { + "id": 30003680, + "regionId": 10000046, + "name": "P-33KR", + "type": "system" + }, + { + "id": 30003681, + "regionId": 10000046, + "name": "DO6H-Q", + "type": "system" + }, + { + "id": 30003682, + "regionId": 10000046, + "name": "DW-T2I", + "type": "system" + }, + { + "id": 30003683, + "regionId": 10000046, + "name": "O-CNPR", + "type": "system" + }, + { + "id": 30003684, + "regionId": 10000046, + "name": "L-SCBU", + "type": "system" + }, + { + "id": 30003685, + "regionId": 10000046, + "name": "VRH-H7", + "type": "system" + }, + { + "id": 30003686, + "regionId": 10000046, + "name": "O1Y-ED", + "type": "system" + }, + { + "id": 30003687, + "regionId": 10000046, + "name": "K4YZ-Y", + "type": "system" + }, + { + "id": 30003688, + "regionId": 10000046, + "name": "X36Y-G", + "type": "system" + }, + { + "id": 30003689, + "regionId": 10000046, + "name": "L-C3O7", + "type": "system" + }, + { + "id": 30003690, + "regionId": 10000046, + "name": "YKSC-A", + "type": "system" + }, + { + "id": 30003691, + "regionId": 10000046, + "name": "FIO1-8", + "type": "system" + }, + { + "id": 30003692, + "regionId": 10000046, + "name": "C-OK0R", + "type": "system" + }, + { + "id": 30003693, + "regionId": 10000046, + "name": "0-ARFO", + "type": "system" + }, + { + "id": 30003694, + "regionId": 10000046, + "name": "E9KD-N", + "type": "system" + }, + { + "id": 30003695, + "regionId": 10000046, + "name": "8W-OSE", + "type": "system" + }, + { + "id": 30003696, + "regionId": 10000046, + "name": "WQY-IQ", + "type": "system" + }, + { + "id": 30003697, + "regionId": 10000046, + "name": "C4C-Z4", + "type": "system" + }, + { + "id": 30003698, + "regionId": 10000046, + "name": "GME-PQ", + "type": "system" + }, + { + "id": 30003699, + "regionId": 10000046, + "name": "MPPA-A", + "type": "system" + }, + { + "id": 30003700, + "regionId": 10000046, + "name": "X5-UME", + "type": "system" + }, + { + "id": 30003701, + "regionId": 10000046, + "name": "I-UUI5", + "type": "system" + }, + { + "id": 30003702, + "regionId": 10000046, + "name": "8QMO-E", + "type": "system" + }, + { + "id": 30003703, + "regionId": 10000047, + "name": "G-5EN2", + "type": "system" + }, + { + "id": 30003704, + "regionId": 10000047, + "name": "9-F0B2", + "type": "system" + }, + { + "id": 30003705, + "regionId": 10000047, + "name": "YWS0-Z", + "type": "system" + }, + { + "id": 30003706, + "regionId": 10000047, + "name": "4B-NQN", + "type": "system" + }, + { + "id": 30003707, + "regionId": 10000047, + "name": "9UY4-H", + "type": "system" + }, + { + "id": 30003708, + "regionId": 10000047, + "name": "49GC-R", + "type": "system" + }, + { + "id": 30003709, + "regionId": 10000047, + "name": "D-GTMI", + "type": "system" + }, + { + "id": 30003710, + "regionId": 10000047, + "name": "FSW-3C", + "type": "system" + }, + { + "id": 30003711, + "regionId": 10000047, + "name": "FX-7EM", + "type": "system" + }, + { + "id": 30003712, + "regionId": 10000047, + "name": "MH9C-S", + "type": "system" + }, + { + "id": 30003713, + "regionId": 10000047, + "name": "G7AQ-7", + "type": "system" + }, + { + "id": 30003714, + "regionId": 10000047, + "name": "QBL-BV", + "type": "system" + }, + { + "id": 30003715, + "regionId": 10000047, + "name": "T-RPFU", + "type": "system" + }, + { + "id": 30003716, + "regionId": 10000047, + "name": "I7S-1S", + "type": "system" + }, + { + "id": 30003717, + "regionId": 10000047, + "name": "U-HYMT", + "type": "system" + }, + { + "id": 30003718, + "regionId": 10000047, + "name": "FC-3YI", + "type": "system" + }, + { + "id": 30003719, + "regionId": 10000047, + "name": "QR-K85", + "type": "system" + }, + { + "id": 30003720, + "regionId": 10000047, + "name": "5IO8-U", + "type": "system" + }, + { + "id": 30003721, + "regionId": 10000047, + "name": "DP-JD4", + "type": "system" + }, + { + "id": 30003722, + "regionId": 10000047, + "name": "OXIY-V", + "type": "system" + }, + { + "id": 30003723, + "regionId": 10000047, + "name": "H6-CX8", + "type": "system" + }, + { + "id": 30003724, + "regionId": 10000047, + "name": "D61A-G", + "type": "system" + }, + { + "id": 30003725, + "regionId": 10000047, + "name": "Shintaht", + "type": "system" + }, + { + "id": 30003726, + "regionId": 10000047, + "name": "Y-MPWL", + "type": "system" + }, + { + "id": 30003727, + "regionId": 10000047, + "name": "D-6WS1", + "type": "system" + }, + { + "id": 30003728, + "regionId": 10000047, + "name": "SI-I89", + "type": "system" + }, + { + "id": 30003729, + "regionId": 10000047, + "name": "KBP7-G", + "type": "system" + }, + { + "id": 30003730, + "regionId": 10000047, + "name": "B-WPLZ", + "type": "system" + }, + { + "id": 30003731, + "regionId": 10000047, + "name": "XHQ-7V", + "type": "system" + }, + { + "id": 30003732, + "regionId": 10000047, + "name": "E-YCML", + "type": "system" + }, + { + "id": 30003733, + "regionId": 10000047, + "name": "TU-O0T", + "type": "system" + }, + { + "id": 30003734, + "regionId": 10000047, + "name": "Y9-MDG", + "type": "system" + }, + { + "id": 30003735, + "regionId": 10000047, + "name": "PI5-39", + "type": "system" + }, + { + "id": 30003736, + "regionId": 10000047, + "name": "GN7-XY", + "type": "system" + }, + { + "id": 30003737, + "regionId": 10000047, + "name": "F-DTOO", + "type": "system" + }, + { + "id": 30003738, + "regionId": 10000047, + "name": "5KG-PY", + "type": "system" + }, + { + "id": 30003739, + "regionId": 10000047, + "name": "QO-SRI", + "type": "system" + }, + { + "id": 30003740, + "regionId": 10000047, + "name": "INQ-WR", + "type": "system" + }, + { + "id": 30003741, + "regionId": 10000047, + "name": "S9X-AX", + "type": "system" + }, + { + "id": 30003742, + "regionId": 10000047, + "name": "TU-RI6", + "type": "system" + }, + { + "id": 30003743, + "regionId": 10000047, + "name": "08Z-JJ", + "type": "system" + }, + { + "id": 30003744, + "regionId": 10000047, + "name": "X-4WZD", + "type": "system" + }, + { + "id": 30003745, + "regionId": 10000047, + "name": "6-OQJV", + "type": "system" + }, + { + "id": 30003746, + "regionId": 10000047, + "name": "AY-YCU", + "type": "system" + }, + { + "id": 30003747, + "regionId": 10000047, + "name": "ZT-LPU", + "type": "system" + }, + { + "id": 30003748, + "regionId": 10000047, + "name": "3GXF-U", + "type": "system" + }, + { + "id": 30003749, + "regionId": 10000047, + "name": "VKI-T7", + "type": "system" + }, + { + "id": 30003750, + "regionId": 10000047, + "name": "8P9-BM", + "type": "system" + }, + { + "id": 30003751, + "regionId": 10000047, + "name": "F-YH5B", + "type": "system" + }, + { + "id": 30003752, + "regionId": 10000047, + "name": "H-GKI6", + "type": "system" + }, + { + "id": 30003753, + "regionId": 10000047, + "name": "YQB-22", + "type": "system" + }, + { + "id": 30003754, + "regionId": 10000047, + "name": "2-TEGJ", + "type": "system" + }, + { + "id": 30003755, + "regionId": 10000047, + "name": "MVCJ-E", + "type": "system" + }, + { + "id": 30003756, + "regionId": 10000047, + "name": "AY-24I", + "type": "system" + }, + { + "id": 30003757, + "regionId": 10000047, + "name": "BK4-YC", + "type": "system" + }, + { + "id": 30003758, + "regionId": 10000047, + "name": "K1I1-J", + "type": "system" + }, + { + "id": 30003759, + "regionId": 10000047, + "name": "LF-2KP", + "type": "system" + }, + { + "id": 30003760, + "regionId": 10000047, + "name": "JEIV-E", + "type": "system" + }, + { + "id": 30003761, + "regionId": 10000047, + "name": "O-Y5JQ", + "type": "system" + }, + { + "id": 30003762, + "regionId": 10000047, + "name": "DNR-7M", + "type": "system" + }, + { + "id": 30003763, + "regionId": 10000047, + "name": "N-RMSH", + "type": "system" + }, + { + "id": 30003764, + "regionId": 10000047, + "name": "K1Y-5H", + "type": "system" + }, + { + "id": 30003765, + "regionId": 10000047, + "name": "IWZ3-C", + "type": "system" + }, + { + "id": 30003766, + "regionId": 10000047, + "name": "1-1I53", + "type": "system" + }, + { + "id": 30003767, + "regionId": 10000047, + "name": "N8XA-L", + "type": "system" + }, + { + "id": 30003768, + "regionId": 10000047, + "name": "18-GZM", + "type": "system" + }, + { + "id": 30003769, + "regionId": 10000047, + "name": "R3-K7K", + "type": "system" + }, + { + "id": 30003770, + "regionId": 10000047, + "name": "X-R3NM", + "type": "system" + }, + { + "id": 30003771, + "regionId": 10000047, + "name": "8B-VLX", + "type": "system" + }, + { + "id": 30003772, + "regionId": 10000047, + "name": "G-B22J", + "type": "system" + }, + { + "id": 30003773, + "regionId": 10000047, + "name": "X6AB-Y", + "type": "system" + }, + { + "id": 30003774, + "regionId": 10000047, + "name": "2V-CS5", + "type": "system" + }, + { + "id": 30003775, + "regionId": 10000047, + "name": "H9-J8N", + "type": "system" + }, + { + "id": 30003776, + "regionId": 10000047, + "name": "HP-6Z6", + "type": "system" + }, + { + "id": 30003777, + "regionId": 10000047, + "name": "GA9P-0", + "type": "system" + }, + { + "id": 30003778, + "regionId": 10000047, + "name": "7YWV-S", + "type": "system" + }, + { + "id": 30003779, + "regionId": 10000047, + "name": "TXJ-II", + "type": "system" + }, + { + "id": 30003780, + "regionId": 10000047, + "name": "C1-HAB", + "type": "system" + }, + { + "id": 30003781, + "regionId": 10000047, + "name": "3KB-J0", + "type": "system" + }, + { + "id": 30003782, + "regionId": 10000047, + "name": "0B-HLZ", + "type": "system" + }, + { + "id": 30003783, + "regionId": 10000047, + "name": "Z-RFE3", + "type": "system" + }, + { + "id": 30003784, + "regionId": 10000047, + "name": "I-MGAB", + "type": "system" + }, + { + "id": 30003785, + "regionId": 10000047, + "name": "18XA-C", + "type": "system" + }, + { + "id": 30003786, + "regionId": 10000047, + "name": "3D-CQU", + "type": "system" + }, + { + "id": 30003787, + "regionId": 10000048, + "name": "Agoze", + "type": "system" + }, + { + "id": 30003788, + "regionId": 10000048, + "name": "Intaki", + "type": "system" + }, + { + "id": 30003789, + "regionId": 10000048, + "name": "Brarel", + "type": "system" + }, + { + "id": 30003790, + "regionId": 10000048, + "name": "Vey", + "type": "system" + }, + { + "id": 30003791, + "regionId": 10000048, + "name": "Annancale", + "type": "system" + }, + { + "id": 30003792, + "regionId": 10000048, + "name": "Ostingele", + "type": "system" + }, + { + "id": 30003793, + "regionId": 10000048, + "name": "Harroule", + "type": "system" + }, + { + "id": 30003794, + "regionId": 10000048, + "name": "Stacmon", + "type": "system" + }, + { + "id": 30003795, + "regionId": 10000048, + "name": "Covryn", + "type": "system" + }, + { + "id": 30003796, + "regionId": 10000048, + "name": "Iges", + "type": "system" + }, + { + "id": 30003797, + "regionId": 10000048, + "name": "Dastryns", + "type": "system" + }, + { + "id": 30003798, + "regionId": 10000048, + "name": "Slays", + "type": "system" + }, + { + "id": 30003799, + "regionId": 10000048, + "name": "Uphallant", + "type": "system" + }, + { + "id": 30003800, + "regionId": 10000048, + "name": "Alperaute", + "type": "system" + }, + { + "id": 30003801, + "regionId": 10000048, + "name": "Aunsou", + "type": "system" + }, + { + "id": 30003802, + "regionId": 10000048, + "name": "Cumemare", + "type": "system" + }, + { + "id": 30003803, + "regionId": 10000048, + "name": "Reynire", + "type": "system" + }, + { + "id": 30003804, + "regionId": 10000048, + "name": "Pain", + "type": "system" + }, + { + "id": 30003805, + "regionId": 10000048, + "name": "Gare", + "type": "system" + }, + { + "id": 30003806, + "regionId": 10000048, + "name": "Pelille", + "type": "system" + }, + { + "id": 30003807, + "regionId": 10000048, + "name": "Dour", + "type": "system" + }, + { + "id": 30003808, + "regionId": 10000048, + "name": "Grispire", + "type": "system" + }, + { + "id": 30003809, + "regionId": 10000048, + "name": "Brellystier", + "type": "system" + }, + { + "id": 30003810, + "regionId": 10000048, + "name": "Vivanier", + "type": "system" + }, + { + "id": 30003811, + "regionId": 10000048, + "name": "Algasienan", + "type": "system" + }, + { + "id": 30003812, + "regionId": 10000048, + "name": "Osmallanais", + "type": "system" + }, + { + "id": 30003813, + "regionId": 10000048, + "name": "Ivorider", + "type": "system" + }, + { + "id": 30003814, + "regionId": 10000048, + "name": "Mollin", + "type": "system" + }, + { + "id": 30003815, + "regionId": 10000048, + "name": "Iffrue", + "type": "system" + }, + { + "id": 30003816, + "regionId": 10000048, + "name": "Vilinnon", + "type": "system" + }, + { + "id": 30003817, + "regionId": 10000048, + "name": "Ommaerrer", + "type": "system" + }, + { + "id": 30003818, + "regionId": 10000048, + "name": "Aulbres", + "type": "system" + }, + { + "id": 30003819, + "regionId": 10000048, + "name": "Barleguet", + "type": "system" + }, + { + "id": 30003820, + "regionId": 10000048, + "name": "Vestouve", + "type": "system" + }, + { + "id": 30003821, + "regionId": 10000048, + "name": "Ausmaert", + "type": "system" + }, + { + "id": 30003822, + "regionId": 10000048, + "name": "Espigoure", + "type": "system" + }, + { + "id": 30003823, + "regionId": 10000048, + "name": "Kenninck", + "type": "system" + }, + { + "id": 30003824, + "regionId": 10000048, + "name": "Archavoinet", + "type": "system" + }, + { + "id": 30003825, + "regionId": 10000048, + "name": "Eugales", + "type": "system" + }, + { + "id": 30003826, + "regionId": 10000048, + "name": "Frarie", + "type": "system" + }, + { + "id": 30003827, + "regionId": 10000048, + "name": "Aubenall", + "type": "system" + }, + { + "id": 30003828, + "regionId": 10000048, + "name": "Moclinamaud", + "type": "system" + }, + { + "id": 30003829, + "regionId": 10000048, + "name": "Renarelle", + "type": "system" + }, + { + "id": 30003830, + "regionId": 10000048, + "name": "Orvolle", + "type": "system" + }, + { + "id": 30003831, + "regionId": 10000048, + "name": "Osmeden", + "type": "system" + }, + { + "id": 30003832, + "regionId": 10000048, + "name": "Adacyne", + "type": "system" + }, + { + "id": 30003833, + "regionId": 10000048, + "name": "Oulley", + "type": "system" + }, + { + "id": 30003834, + "regionId": 10000048, + "name": "Chardalane", + "type": "system" + }, + { + "id": 30003835, + "regionId": 10000048, + "name": "Maut", + "type": "system" + }, + { + "id": 30003836, + "regionId": 10000048, + "name": "Vlillirier", + "type": "system" + }, + { + "id": 30003837, + "regionId": 10000048, + "name": "Aldranette", + "type": "system" + }, + { + "id": 30003838, + "regionId": 10000048, + "name": "Oicx", + "type": "system" + }, + { + "id": 30003839, + "regionId": 10000048, + "name": "Evaulon", + "type": "system" + }, + { + "id": 30003840, + "regionId": 10000048, + "name": "Anchauttes", + "type": "system" + }, + { + "id": 30003841, + "regionId": 10000048, + "name": "Alsavoinon", + "type": "system" + }, + { + "id": 30003842, + "regionId": 10000048, + "name": "Esesier", + "type": "system" + }, + { + "id": 30003843, + "regionId": 10000048, + "name": "Avaux", + "type": "system" + }, + { + "id": 30003844, + "regionId": 10000048, + "name": "Gallusiene", + "type": "system" + }, + { + "id": 30003845, + "regionId": 10000048, + "name": "Ruerrotta", + "type": "system" + }, + { + "id": 30003846, + "regionId": 10000048, + "name": "Hedoubel", + "type": "system" + }, + { + "id": 30003847, + "regionId": 10000048, + "name": "Amoen", + "type": "system" + }, + { + "id": 30003848, + "regionId": 10000048, + "name": "Amasiree", + "type": "system" + }, + { + "id": 30003849, + "regionId": 10000048, + "name": "Aubonnie", + "type": "system" + }, + { + "id": 30003850, + "regionId": 10000048, + "name": "Alparena", + "type": "system" + }, + { + "id": 30003851, + "regionId": 10000048, + "name": "Reschard", + "type": "system" + }, + { + "id": 30003852, + "regionId": 10000048, + "name": "Arderonne", + "type": "system" + }, + { + "id": 30003853, + "regionId": 10000048, + "name": "Mercomesier", + "type": "system" + }, + { + "id": 30003854, + "regionId": 10000048, + "name": "Alamel", + "type": "system" + }, + { + "id": 30003855, + "regionId": 10000048, + "name": "Mantenault", + "type": "system" + }, + { + "id": 30003856, + "regionId": 10000048, + "name": "Athounon", + "type": "system" + }, + { + "id": 30003857, + "regionId": 10000048, + "name": "Odamia", + "type": "system" + }, + { + "id": 30003858, + "regionId": 10000049, + "name": "Gousoviba", + "type": "system" + }, + { + "id": 30003859, + "regionId": 10000049, + "name": "Neyi", + "type": "system" + }, + { + "id": 30003860, + "regionId": 10000049, + "name": "Kihtaled", + "type": "system" + }, + { + "id": 30003861, + "regionId": 10000049, + "name": "Ipref", + "type": "system" + }, + { + "id": 30003862, + "regionId": 10000049, + "name": "Agil", + "type": "system" + }, + { + "id": 30003863, + "regionId": 10000049, + "name": "KhanidPrime", + "type": "system" + }, + { + "id": 30003864, + "regionId": 10000049, + "name": "Jachanu", + "type": "system" + }, + { + "id": 30003865, + "regionId": 10000049, + "name": "Sazre", + "type": "system" + }, + { + "id": 30003866, + "regionId": 10000049, + "name": "Bukah", + "type": "system" + }, + { + "id": 30003867, + "regionId": 10000049, + "name": "Ervekam", + "type": "system" + }, + { + "id": 30003868, + "regionId": 10000049, + "name": "Mashtarmem", + "type": "system" + }, + { + "id": 30003869, + "regionId": 10000049, + "name": "Sehsasez", + "type": "system" + }, + { + "id": 30003870, + "regionId": 10000049, + "name": "Osis", + "type": "system" + }, + { + "id": 30003871, + "regionId": 10000049, + "name": "Geztic", + "type": "system" + }, + { + "id": 30003872, + "regionId": 10000049, + "name": "Yezara", + "type": "system" + }, + { + "id": 30003873, + "regionId": 10000049, + "name": "Kahah", + "type": "system" + }, + { + "id": 30003874, + "regionId": 10000049, + "name": "Saloti", + "type": "system" + }, + { + "id": 30003875, + "regionId": 10000049, + "name": "Hishai", + "type": "system" + }, + { + "id": 30003876, + "regionId": 10000049, + "name": "Molea", + "type": "system" + }, + { + "id": 30003877, + "regionId": 10000049, + "name": "Gidali", + "type": "system" + }, + { + "id": 30003878, + "regionId": 10000049, + "name": "Palas", + "type": "system" + }, + { + "id": 30003879, + "regionId": 10000049, + "name": "Safshela", + "type": "system" + }, + { + "id": 30003880, + "regionId": 10000049, + "name": "Reteka", + "type": "system" + }, + { + "id": 30003881, + "regionId": 10000049, + "name": "Moniyyuku", + "type": "system" + }, + { + "id": 30003882, + "regionId": 10000049, + "name": "Lansez", + "type": "system" + }, + { + "id": 30003883, + "regionId": 10000049, + "name": "Keberz", + "type": "system" + }, + { + "id": 30003884, + "regionId": 10000049, + "name": "Nourbal", + "type": "system" + }, + { + "id": 30003885, + "regionId": 10000049, + "name": "Arzanni", + "type": "system" + }, + { + "id": 30003886, + "regionId": 10000049, + "name": "Ashmarir", + "type": "system" + }, + { + "id": 30003887, + "regionId": 10000049, + "name": "Kaira", + "type": "system" + }, + { + "id": 30003888, + "regionId": 10000049, + "name": "Badivefi", + "type": "system" + }, + { + "id": 30003889, + "regionId": 10000049, + "name": "Talidal", + "type": "system" + }, + { + "id": 30003890, + "regionId": 10000049, + "name": "Ashi", + "type": "system" + }, + { + "id": 30003891, + "regionId": 10000049, + "name": "Tzashrah", + "type": "system" + }, + { + "id": 30003892, + "regionId": 10000049, + "name": "Efa", + "type": "system" + }, + { + "id": 30003893, + "regionId": 10000049, + "name": "Moro", + "type": "system" + }, + { + "id": 30003894, + "regionId": 10000049, + "name": "Sabusi", + "type": "system" + }, + { + "id": 30003895, + "regionId": 10000049, + "name": "Ainsan", + "type": "system" + }, + { + "id": 30003896, + "regionId": 10000049, + "name": "Claini", + "type": "system" + }, + { + "id": 30003897, + "regionId": 10000049, + "name": "Gehi", + "type": "system" + }, + { + "id": 30003898, + "regionId": 10000049, + "name": "Seshala", + "type": "system" + }, + { + "id": 30003899, + "regionId": 10000049, + "name": "Vezila", + "type": "system" + }, + { + "id": 30003900, + "regionId": 10000049, + "name": "Ham", + "type": "system" + }, + { + "id": 30003901, + "regionId": 10000049, + "name": "Upt", + "type": "system" + }, + { + "id": 30003902, + "regionId": 10000049, + "name": "Hemouner", + "type": "system" + }, + { + "id": 30003903, + "regionId": 10000049, + "name": "Afnakat", + "type": "system" + }, + { + "id": 30003904, + "regionId": 10000049, + "name": "Col", + "type": "system" + }, + { + "id": 30003905, + "regionId": 10000049, + "name": "Chamemi", + "type": "system" + }, + { + "id": 30003906, + "regionId": 10000049, + "name": "Firbha", + "type": "system" + }, + { + "id": 30003907, + "regionId": 10000049, + "name": "Tegheon", + "type": "system" + }, + { + "id": 30003908, + "regionId": 10000049, + "name": "Bashyam", + "type": "system" + }, + { + "id": 30003909, + "regionId": 10000049, + "name": "Parses", + "type": "system" + }, + { + "id": 30003910, + "regionId": 10000049, + "name": "Balanaz", + "type": "system" + }, + { + "id": 30003911, + "regionId": 10000049, + "name": "Edani", + "type": "system" + }, + { + "id": 30003912, + "regionId": 10000049, + "name": "Danera", + "type": "system" + }, + { + "id": 30003913, + "regionId": 10000049, + "name": "Bomana", + "type": "system" + }, + { + "id": 30003914, + "regionId": 10000049, + "name": "Rahabeda", + "type": "system" + }, + { + "id": 30003915, + "regionId": 10000049, + "name": "Aurejet", + "type": "system" + }, + { + "id": 30003916, + "regionId": 10000049, + "name": "Rilera", + "type": "system" + }, + { + "id": 30003917, + "regionId": 10000049, + "name": "Amafi", + "type": "system" + }, + { + "id": 30003918, + "regionId": 10000049, + "name": "Hakana", + "type": "system" + }, + { + "id": 30003919, + "regionId": 10000049, + "name": "Ashkoo", + "type": "system" + }, + { + "id": 30003920, + "regionId": 10000049, + "name": "Baratar", + "type": "system" + }, + { + "id": 30003921, + "regionId": 10000049, + "name": "Arzieh", + "type": "system" + }, + { + "id": 30003922, + "regionId": 10000049, + "name": "Nahrneder", + "type": "system" + }, + { + "id": 30003923, + "regionId": 10000049, + "name": "Nandeza", + "type": "system" + }, + { + "id": 30003924, + "regionId": 10000049, + "name": "Dimoohan", + "type": "system" + }, + { + "id": 30003925, + "regionId": 10000049, + "name": "Chitiamem", + "type": "system" + }, + { + "id": 30003926, + "regionId": 10000049, + "name": "Kuhri", + "type": "system" + }, + { + "id": 30003927, + "regionId": 10000049, + "name": "Zahefeus", + "type": "system" + }, + { + "id": 30003928, + "regionId": 10000049, + "name": "Zephan", + "type": "system" + }, + { + "id": 30003929, + "regionId": 10000049, + "name": "Neda", + "type": "system" + }, + { + "id": 30003930, + "regionId": 10000049, + "name": "Goudiyah", + "type": "system" + }, + { + "id": 30003931, + "regionId": 10000049, + "name": "Sassecho", + "type": "system" + }, + { + "id": 30003932, + "regionId": 10000049, + "name": "Timudan", + "type": "system" + }, + { + "id": 30003933, + "regionId": 10000049, + "name": "Ibani", + "type": "system" + }, + { + "id": 30003934, + "regionId": 10000049, + "name": "Cabeki", + "type": "system" + }, + { + "id": 30003935, + "regionId": 10000049, + "name": "Irmalin", + "type": "system" + }, + { + "id": 30003936, + "regionId": 10000049, + "name": "Nakis", + "type": "system" + }, + { + "id": 30003937, + "regionId": 10000049, + "name": "Hezere", + "type": "system" + }, + { + "id": 30003938, + "regionId": 10000049, + "name": "Fanathor", + "type": "system" + }, + { + "id": 30003939, + "regionId": 10000049, + "name": "Zirsem", + "type": "system" + }, + { + "id": 30003940, + "regionId": 10000049, + "name": "Pout", + "type": "system" + }, + { + "id": 30003941, + "regionId": 10000049, + "name": "Rafeme", + "type": "system" + }, + { + "id": 30003942, + "regionId": 10000050, + "name": "A2-V27", + "type": "system" + }, + { + "id": 30003943, + "regionId": 10000050, + "name": "T8H-66", + "type": "system" + }, + { + "id": 30003944, + "regionId": 10000050, + "name": "A3-LOG", + "type": "system" + }, + { + "id": 30003945, + "regionId": 10000050, + "name": "7V-KHW", + "type": "system" + }, + { + "id": 30003946, + "regionId": 10000050, + "name": "O3L-95", + "type": "system" + }, + { + "id": 30003947, + "regionId": 10000050, + "name": "0-WT2D", + "type": "system" + }, + { + "id": 30003948, + "regionId": 10000050, + "name": "7GCD-P", + "type": "system" + }, + { + "id": 30003949, + "regionId": 10000050, + "name": "G-3BOG", + "type": "system" + }, + { + "id": 30003950, + "regionId": 10000050, + "name": "K7D-II", + "type": "system" + }, + { + "id": 30003951, + "regionId": 10000050, + "name": "L-6BE1", + "type": "system" + }, + { + "id": 30003952, + "regionId": 10000050, + "name": "1M4-FK", + "type": "system" + }, + { + "id": 30003953, + "regionId": 10000050, + "name": "V-LEKM", + "type": "system" + }, + { + "id": 30003954, + "regionId": 10000050, + "name": "9ES-SI", + "type": "system" + }, + { + "id": 30003955, + "regionId": 10000050, + "name": "UQY-IK", + "type": "system" + }, + { + "id": 30003956, + "regionId": 10000050, + "name": "60M-TG", + "type": "system" + }, + { + "id": 30003957, + "regionId": 10000050, + "name": "0TKF-6", + "type": "system" + }, + { + "id": 30003958, + "regionId": 10000050, + "name": "TV8-HS", + "type": "system" + }, + { + "id": 30003959, + "regionId": 10000050, + "name": "VT-G2P", + "type": "system" + }, + { + "id": 30003960, + "regionId": 10000050, + "name": "YOP-0T", + "type": "system" + }, + { + "id": 30003961, + "regionId": 10000050, + "name": "9-HM04", + "type": "system" + }, + { + "id": 30003962, + "regionId": 10000050, + "name": "MKD-O8", + "type": "system" + }, + { + "id": 30003963, + "regionId": 10000050, + "name": "GOP-GE", + "type": "system" + }, + { + "id": 30003964, + "regionId": 10000050, + "name": "SKR-SP", + "type": "system" + }, + { + "id": 30003965, + "regionId": 10000050, + "name": "V-3U8T", + "type": "system" + }, + { + "id": 30003966, + "regionId": 10000050, + "name": "T8T-RA", + "type": "system" + }, + { + "id": 30003967, + "regionId": 10000050, + "name": "A-BO4V", + "type": "system" + }, + { + "id": 30003968, + "regionId": 10000050, + "name": "W-IX39", + "type": "system" + }, + { + "id": 30003969, + "regionId": 10000050, + "name": "K-B8DK", + "type": "system" + }, + { + "id": 30003970, + "regionId": 10000050, + "name": "L-6W1J", + "type": "system" + }, + { + "id": 30003971, + "regionId": 10000050, + "name": "P4-3TJ", + "type": "system" + }, + { + "id": 30003972, + "regionId": 10000050, + "name": "K-Z0V4", + "type": "system" + }, + { + "id": 30003973, + "regionId": 10000050, + "name": "LNVW-K", + "type": "system" + }, + { + "id": 30003974, + "regionId": 10000050, + "name": "8B-SAJ", + "type": "system" + }, + { + "id": 30003975, + "regionId": 10000050, + "name": "Q2-N6W", + "type": "system" + }, + { + "id": 30003976, + "regionId": 10000050, + "name": "C-9RRR", + "type": "system" + }, + { + "id": 30003977, + "regionId": 10000050, + "name": "A-5F4A", + "type": "system" + }, + { + "id": 30003978, + "regionId": 10000050, + "name": "P-ZMZV", + "type": "system" + }, + { + "id": 30003979, + "regionId": 10000050, + "name": "9CG6-H", + "type": "system" + }, + { + "id": 30003980, + "regionId": 10000050, + "name": "NDII-Q", + "type": "system" + }, + { + "id": 30003981, + "regionId": 10000050, + "name": "UYU-VV", + "type": "system" + }, + { + "id": 30003982, + "regionId": 10000050, + "name": "K-L690", + "type": "system" + }, + { + "id": 30003983, + "regionId": 10000050, + "name": "W6V-VM", + "type": "system" + }, + { + "id": 30003984, + "regionId": 10000050, + "name": "OGY-6D", + "type": "system" + }, + { + "id": 30003985, + "regionId": 10000050, + "name": "8-SNUD", + "type": "system" + }, + { + "id": 30003986, + "regionId": 10000050, + "name": "H-4R6Z", + "type": "system" + }, + { + "id": 30003987, + "regionId": 10000050, + "name": "IGE-NE", + "type": "system" + }, + { + "id": 30003988, + "regionId": 10000050, + "name": "UVHO-F", + "type": "system" + }, + { + "id": 30003989, + "regionId": 10000050, + "name": "Z-XX2J", + "type": "system" + }, + { + "id": 30003990, + "regionId": 10000050, + "name": "YW-SYT", + "type": "system" + }, + { + "id": 30003991, + "regionId": 10000050, + "name": "Z-UZZN", + "type": "system" + }, + { + "id": 30003992, + "regionId": 10000050, + "name": "DS-LO3", + "type": "system" + }, + { + "id": 30003993, + "regionId": 10000050, + "name": "BX2-ZX", + "type": "system" + }, + { + "id": 30003994, + "regionId": 10000050, + "name": "RF-CN3", + "type": "system" + }, + { + "id": 30003995, + "regionId": 10000050, + "name": "C-7SBM", + "type": "system" + }, + { + "id": 30003996, + "regionId": 10000050, + "name": "ZAU-JW", + "type": "system" + }, + { + "id": 30003997, + "regionId": 10000050, + "name": "YF-6L1", + "type": "system" + }, + { + "id": 30003998, + "regionId": 10000050, + "name": "K-YI1L", + "type": "system" + }, + { + "id": 30003999, + "regionId": 10000050, + "name": "KEJY-U", + "type": "system" + }, + { + "id": 30004000, + "regionId": 10000050, + "name": "3BK-O7", + "type": "system" + }, + { + "id": 30004001, + "regionId": 10000050, + "name": "8-GE2P", + "type": "system" + }, + { + "id": 30004002, + "regionId": 10000050, + "name": "QXQ-I6", + "type": "system" + }, + { + "id": 30004003, + "regionId": 10000050, + "name": "L3-I3K", + "type": "system" + }, + { + "id": 30004004, + "regionId": 10000050, + "name": "3-JCJT", + "type": "system" + }, + { + "id": 30004005, + "regionId": 10000050, + "name": "W-IIYI", + "type": "system" + }, + { + "id": 30004006, + "regionId": 10000050, + "name": "AO-N1P", + "type": "system" + }, + { + "id": 30004007, + "regionId": 10000050, + "name": "4-GJT1", + "type": "system" + }, + { + "id": 30004008, + "regionId": 10000050, + "name": "5V-BJI", + "type": "system" + }, + { + "id": 30004009, + "regionId": 10000050, + "name": "49-U6U", + "type": "system" + }, + { + "id": 30004010, + "regionId": 10000050, + "name": "M1BZ-2", + "type": "system" + }, + { + "id": 30004011, + "regionId": 10000050, + "name": "N-M1A3", + "type": "system" + }, + { + "id": 30004012, + "regionId": 10000050, + "name": "8QT-H4", + "type": "system" + }, + { + "id": 30004013, + "regionId": 10000050, + "name": "F2OY-X", + "type": "system" + }, + { + "id": 30004014, + "regionId": 10000050, + "name": "4-2UXV", + "type": "system" + }, + { + "id": 30004015, + "regionId": 10000050, + "name": "RKM-GE", + "type": "system" + }, + { + "id": 30004016, + "regionId": 10000050, + "name": "DG-L7S", + "type": "system" + }, + { + "id": 30004017, + "regionId": 10000050, + "name": "K4-RFZ", + "type": "system" + }, + { + "id": 30004018, + "regionId": 10000050, + "name": "L-FVHR", + "type": "system" + }, + { + "id": 30004019, + "regionId": 10000050, + "name": "3-FKCZ", + "type": "system" + }, + { + "id": 30004020, + "regionId": 10000050, + "name": "ED-L9T", + "type": "system" + }, + { + "id": 30004021, + "regionId": 10000050, + "name": "LS-V29", + "type": "system" + }, + { + "id": 30004022, + "regionId": 10000050, + "name": "9SBB-9", + "type": "system" + }, + { + "id": 30004023, + "regionId": 10000050, + "name": "I1Y-IU", + "type": "system" + }, + { + "id": 30004024, + "regionId": 10000050, + "name": "U-HYZN", + "type": "system" + }, + { + "id": 30004025, + "regionId": 10000050, + "name": "8-YNBE", + "type": "system" + }, + { + "id": 30004026, + "regionId": 10000050, + "name": "YQX-7U", + "type": "system" + }, + { + "id": 30004027, + "regionId": 10000050, + "name": "QY1E-N", + "type": "system" + }, + { + "id": 30004028, + "regionId": 10000050, + "name": "E-VKJV", + "type": "system" + }, + { + "id": 30004029, + "regionId": 10000050, + "name": "BX-VEX", + "type": "system" + }, + { + "id": 30004030, + "regionId": 10000050, + "name": "B-7DFU", + "type": "system" + }, + { + "id": 30004031, + "regionId": 10000050, + "name": "ZXJ-71", + "type": "system" + }, + { + "id": 30004032, + "regionId": 10000050, + "name": "F-NXLQ", + "type": "system" + }, + { + "id": 30004033, + "regionId": 10000050, + "name": "ES-Q0W", + "type": "system" + }, + { + "id": 30004034, + "regionId": 10000050, + "name": "H74-B0", + "type": "system" + }, + { + "id": 30004035, + "regionId": 10000050, + "name": "NU4-2G", + "type": "system" + }, + { + "id": 30004036, + "regionId": 10000050, + "name": "3D5K-R", + "type": "system" + }, + { + "id": 30004037, + "regionId": 10000051, + "name": "1-3HWZ", + "type": "system" + }, + { + "id": 30004038, + "regionId": 10000051, + "name": "XT-R36", + "type": "system" + }, + { + "id": 30004039, + "regionId": 10000051, + "name": "5-MLDT", + "type": "system" + }, + { + "id": 30004040, + "regionId": 10000051, + "name": "B-DBYQ", + "type": "system" + }, + { + "id": 30004041, + "regionId": 10000051, + "name": "QXW-PV", + "type": "system" + }, + { + "id": 30004042, + "regionId": 10000051, + "name": "DY-F70", + "type": "system" + }, + { + "id": 30004043, + "regionId": 10000051, + "name": "FD53-H", + "type": "system" + }, + { + "id": 30004044, + "regionId": 10000051, + "name": "O-ZXUV", + "type": "system" + }, + { + "id": 30004045, + "regionId": 10000051, + "name": "77-KDQ", + "type": "system" + }, + { + "id": 30004046, + "regionId": 10000051, + "name": "F7C-H0", + "type": "system" + }, + { + "id": 30004047, + "regionId": 10000051, + "name": "TN-T7T", + "type": "system" + }, + { + "id": 30004048, + "regionId": 10000051, + "name": "1-NW2G", + "type": "system" + }, + { + "id": 30004049, + "regionId": 10000051, + "name": "O-IVNH", + "type": "system" + }, + { + "id": 30004050, + "regionId": 10000051, + "name": "O-0HW8", + "type": "system" + }, + { + "id": 30004051, + "regionId": 10000051, + "name": "YI-8ZM", + "type": "system" + }, + { + "id": 30004052, + "regionId": 10000051, + "name": "OU-X3P", + "type": "system" + }, + { + "id": 30004053, + "regionId": 10000051, + "name": "6-4V20", + "type": "system" + }, + { + "id": 30004054, + "regionId": 10000051, + "name": "Q-UA3C", + "type": "system" + }, + { + "id": 30004055, + "regionId": 10000051, + "name": "W-4NUU", + "type": "system" + }, + { + "id": 30004056, + "regionId": 10000051, + "name": "8R-RTB", + "type": "system" + }, + { + "id": 30004057, + "regionId": 10000051, + "name": "6Z9-0M", + "type": "system" + }, + { + "id": 30004058, + "regionId": 10000051, + "name": "FQ9W-C", + "type": "system" + }, + { + "id": 30004059, + "regionId": 10000051, + "name": "9-4RP2", + "type": "system" + }, + { + "id": 30004060, + "regionId": 10000051, + "name": "O-BDXB", + "type": "system" + }, + { + "id": 30004061, + "regionId": 10000051, + "name": "G8AD-C", + "type": "system" + }, + { + "id": 30004062, + "regionId": 10000051, + "name": "XZH-4X", + "type": "system" + }, + { + "id": 30004063, + "regionId": 10000051, + "name": "Z-Y7R7", + "type": "system" + }, + { + "id": 30004064, + "regionId": 10000051, + "name": "MJYW-3", + "type": "system" + }, + { + "id": 30004065, + "regionId": 10000051, + "name": "PPG-XC", + "type": "system" + }, + { + "id": 30004066, + "regionId": 10000051, + "name": "QA1-BT", + "type": "system" + }, + { + "id": 30004067, + "regionId": 10000051, + "name": "5S-KNL", + "type": "system" + }, + { + "id": 30004068, + "regionId": 10000051, + "name": "00TY-J", + "type": "system" + }, + { + "id": 30004069, + "regionId": 10000051, + "name": "XG-D1L", + "type": "system" + }, + { + "id": 30004070, + "regionId": 10000051, + "name": "6RCQ-V", + "type": "system" + }, + { + "id": 30004071, + "regionId": 10000051, + "name": "28O-JY", + "type": "system" + }, + { + "id": 30004072, + "regionId": 10000051, + "name": "CX7-70", + "type": "system" + }, + { + "id": 30004073, + "regionId": 10000051, + "name": "6ON-RW", + "type": "system" + }, + { + "id": 30004074, + "regionId": 10000051, + "name": "U65-CN", + "type": "system" + }, + { + "id": 30004075, + "regionId": 10000051, + "name": "X-M9ON", + "type": "system" + }, + { + "id": 30004076, + "regionId": 10000051, + "name": "P5-KCC", + "type": "system" + }, + { + "id": 30004077, + "regionId": 10000052, + "name": "Hiroudeh", + "type": "system" + }, + { + "id": 30004078, + "regionId": 10000052, + "name": "Dresi", + "type": "system" + }, + { + "id": 30004079, + "regionId": 10000052, + "name": "Aphend", + "type": "system" + }, + { + "id": 30004080, + "regionId": 10000052, + "name": "Romi", + "type": "system" + }, + { + "id": 30004081, + "regionId": 10000052, + "name": "Zororzih", + "type": "system" + }, + { + "id": 30004082, + "regionId": 10000052, + "name": "Aharalel", + "type": "system" + }, + { + "id": 30004083, + "regionId": 10000052, + "name": "Gensela", + "type": "system" + }, + { + "id": 30004084, + "regionId": 10000052, + "name": "Ghesis", + "type": "system" + }, + { + "id": 30004085, + "regionId": 10000052, + "name": "Gamdis", + "type": "system" + }, + { + "id": 30004086, + "regionId": 10000052, + "name": "Joamma", + "type": "system" + }, + { + "id": 30004087, + "regionId": 10000052, + "name": "Gonan", + "type": "system" + }, + { + "id": 30004088, + "regionId": 10000052, + "name": "Joramok", + "type": "system" + }, + { + "id": 30004089, + "regionId": 10000052, + "name": "Neburab", + "type": "system" + }, + { + "id": 30004090, + "regionId": 10000052, + "name": "Aband", + "type": "system" + }, + { + "id": 30004091, + "regionId": 10000052, + "name": "Uanim", + "type": "system" + }, + { + "id": 30004092, + "regionId": 10000052, + "name": "Murini", + "type": "system" + }, + { + "id": 30004093, + "regionId": 10000052, + "name": "Askonak", + "type": "system" + }, + { + "id": 30004094, + "regionId": 10000052, + "name": "Nordar", + "type": "system" + }, + { + "id": 30004095, + "regionId": 10000052, + "name": "KadorPrime", + "type": "system" + }, + { + "id": 30004096, + "regionId": 10000052, + "name": "Khafis", + "type": "system" + }, + { + "id": 30004097, + "regionId": 10000052, + "name": "Dantan", + "type": "system" + }, + { + "id": 30004098, + "regionId": 10000052, + "name": "Turba", + "type": "system" + }, + { + "id": 30004099, + "regionId": 10000052, + "name": "Sonama", + "type": "system" + }, + { + "id": 30004100, + "regionId": 10000052, + "name": "Halibai", + "type": "system" + }, + { + "id": 30004101, + "regionId": 10000052, + "name": "Suner", + "type": "system" + }, + { + "id": 30004102, + "regionId": 10000052, + "name": "Inis-Ilix", + "type": "system" + }, + { + "id": 30004103, + "regionId": 10000052, + "name": "Kothe", + "type": "system" + }, + { + "id": 30004104, + "regionId": 10000052, + "name": "Ansasos", + "type": "system" + }, + { + "id": 30004105, + "regionId": 10000052, + "name": "Dehrokh", + "type": "system" + }, + { + "id": 30004106, + "regionId": 10000052, + "name": "Bordan", + "type": "system" + }, + { + "id": 30004107, + "regionId": 10000052, + "name": "Zimmem", + "type": "system" + }, + { + "id": 30004108, + "regionId": 10000052, + "name": "Chaneya", + "type": "system" + }, + { + "id": 30004109, + "regionId": 10000052, + "name": "Oberen", + "type": "system" + }, + { + "id": 30004110, + "regionId": 10000052, + "name": "Finid", + "type": "system" + }, + { + "id": 30004111, + "regionId": 10000052, + "name": "Yarebap", + "type": "system" + }, + { + "id": 30004112, + "regionId": 10000052, + "name": "Mandoo", + "type": "system" + }, + { + "id": 30004113, + "regionId": 10000052, + "name": "Miah", + "type": "system" + }, + { + "id": 30004114, + "regionId": 10000052, + "name": "Peyiri", + "type": "system" + }, + { + "id": 30004115, + "regionId": 10000052, + "name": "Kamda", + "type": "system" + }, + { + "id": 30004116, + "regionId": 10000052, + "name": "Rayeret", + "type": "system" + }, + { + "id": 30004117, + "regionId": 10000052, + "name": "Bushemal", + "type": "system" + }, + { + "id": 30004118, + "regionId": 10000052, + "name": "Ardhis", + "type": "system" + }, + { + "id": 30004119, + "regionId": 10000052, + "name": "Gasavak", + "type": "system" + }, + { + "id": 30004120, + "regionId": 10000052, + "name": "Iaokit", + "type": "system" + }, + { + "id": 30004121, + "regionId": 10000052, + "name": "Menri", + "type": "system" + }, + { + "id": 30004122, + "regionId": 10000052, + "name": "Chanoun", + "type": "system" + }, + { + "id": 30004123, + "regionId": 10000052, + "name": "Garisas", + "type": "system" + }, + { + "id": 30004124, + "regionId": 10000052, + "name": "Aphi", + "type": "system" + }, + { + "id": 30004125, + "regionId": 10000052, + "name": "Jakri", + "type": "system" + }, + { + "id": 30004126, + "regionId": 10000052, + "name": "Nidupad", + "type": "system" + }, + { + "id": 30004127, + "regionId": 10000052, + "name": "Zimse", + "type": "system" + }, + { + "id": 30004128, + "regionId": 10000052, + "name": "Koona", + "type": "system" + }, + { + "id": 30004129, + "regionId": 10000052, + "name": "Munory", + "type": "system" + }, + { + "id": 30004130, + "regionId": 10000052, + "name": "Hostakoh", + "type": "system" + }, + { + "id": 30004131, + "regionId": 10000052, + "name": "Yooh", + "type": "system" + }, + { + "id": 30004132, + "regionId": 10000052, + "name": "Jeshideh", + "type": "system" + }, + { + "id": 30004133, + "regionId": 10000052, + "name": "Hilmar", + "type": "system" + }, + { + "id": 30004134, + "regionId": 10000052, + "name": "Kasi", + "type": "system" + }, + { + "id": 30004135, + "regionId": 10000052, + "name": "Shura", + "type": "system" + }, + { + "id": 30004136, + "regionId": 10000052, + "name": "Mod", + "type": "system" + }, + { + "id": 30004137, + "regionId": 10000052, + "name": "Omam", + "type": "system" + }, + { + "id": 30004138, + "regionId": 10000052, + "name": "Bersyrim", + "type": "system" + }, + { + "id": 30004139, + "regionId": 10000052, + "name": "Sechmaren", + "type": "system" + }, + { + "id": 30004140, + "regionId": 10000052, + "name": "Zinoo", + "type": "system" + }, + { + "id": 30004141, + "regionId": 10000052, + "name": "Hiremir", + "type": "system" + }, + { + "id": 30004142, + "regionId": 10000052, + "name": "Hikansog", + "type": "system" + }, + { + "id": 30004143, + "regionId": 10000052, + "name": "Syrikos", + "type": "system" + }, + { + "id": 30004144, + "regionId": 10000052, + "name": "Yebouz", + "type": "system" + }, + { + "id": 30004145, + "regionId": 10000052, + "name": "Hapala", + "type": "system" + }, + { + "id": 30004146, + "regionId": 10000052, + "name": "Salah", + "type": "system" + }, + { + "id": 30004147, + "regionId": 10000052, + "name": "Akhmoh", + "type": "system" + }, + { + "id": 30004148, + "regionId": 10000052, + "name": "Jennim", + "type": "system" + }, + { + "id": 30004149, + "regionId": 10000052, + "name": "Elmed", + "type": "system" + }, + { + "id": 30004150, + "regionId": 10000052, + "name": "Shaggoth", + "type": "system" + }, + { + "id": 30004151, + "regionId": 10000052, + "name": "Ustnia", + "type": "system" + }, + { + "id": 30004152, + "regionId": 10000052, + "name": "Kooreng", + "type": "system" + }, + { + "id": 30004153, + "regionId": 10000052, + "name": "Minin", + "type": "system" + }, + { + "id": 30004154, + "regionId": 10000052, + "name": "Yehnifi", + "type": "system" + }, + { + "id": 30004155, + "regionId": 10000052, + "name": "Shemah", + "type": "system" + }, + { + "id": 30004156, + "regionId": 10000052, + "name": "Asrios", + "type": "system" + }, + { + "id": 30004157, + "regionId": 10000052, + "name": "Ithar", + "type": "system" + }, + { + "id": 30004158, + "regionId": 10000052, + "name": "Telang", + "type": "system" + }, + { + "id": 30004159, + "regionId": 10000052, + "name": "Lazara", + "type": "system" + }, + { + "id": 30004160, + "regionId": 10000052, + "name": "Zorrabed", + "type": "system" + }, + { + "id": 30004161, + "regionId": 10000053, + "name": "FV-YEA", + "type": "system" + }, + { + "id": 30004162, + "regionId": 10000053, + "name": "J-A5QD", + "type": "system" + }, + { + "id": 30004163, + "regionId": 10000053, + "name": "BI0Y-X", + "type": "system" + }, + { + "id": 30004164, + "regionId": 10000053, + "name": "SK7-G6", + "type": "system" + }, + { + "id": 30004165, + "regionId": 10000053, + "name": "4-PCHD", + "type": "system" + }, + { + "id": 30004166, + "regionId": 10000053, + "name": "5-3722", + "type": "system" + }, + { + "id": 30004167, + "regionId": 10000053, + "name": "GQLB-V", + "type": "system" + }, + { + "id": 30004168, + "regionId": 10000053, + "name": "5E-EZC", + "type": "system" + }, + { + "id": 30004169, + "regionId": 10000053, + "name": "9KE-IT", + "type": "system" + }, + { + "id": 30004170, + "regionId": 10000053, + "name": "P-NRD3", + "type": "system" + }, + { + "id": 30004171, + "regionId": 10000053, + "name": "Y-RAW3", + "type": "system" + }, + { + "id": 30004172, + "regionId": 10000053, + "name": "S-W8CF", + "type": "system" + }, + { + "id": 30004173, + "regionId": 10000053, + "name": "X-41DA", + "type": "system" + }, + { + "id": 30004174, + "regionId": 10000053, + "name": "YVSL-2", + "type": "system" + }, + { + "id": 30004175, + "regionId": 10000053, + "name": "5E6I-W", + "type": "system" + }, + { + "id": 30004176, + "regionId": 10000053, + "name": "KIG9-K", + "type": "system" + }, + { + "id": 30004177, + "regionId": 10000053, + "name": "I-CMZA", + "type": "system" + }, + { + "id": 30004178, + "regionId": 10000053, + "name": "H23-B5", + "type": "system" + }, + { + "id": 30004179, + "regionId": 10000053, + "name": "A-0IIQ", + "type": "system" + }, + { + "id": 30004180, + "regionId": 10000053, + "name": "CBY8-J", + "type": "system" + }, + { + "id": 30004181, + "regionId": 10000053, + "name": "E-BYOS", + "type": "system" + }, + { + "id": 30004182, + "regionId": 10000053, + "name": "ETXT-F", + "type": "system" + }, + { + "id": 30004183, + "regionId": 10000053, + "name": "MK-YNM", + "type": "system" + }, + { + "id": 30004184, + "regionId": 10000053, + "name": "2-9Z6V", + "type": "system" + }, + { + "id": 30004185, + "regionId": 10000053, + "name": "5HN-D6", + "type": "system" + }, + { + "id": 30004186, + "regionId": 10000053, + "name": "E-B957", + "type": "system" + }, + { + "id": 30004187, + "regionId": 10000053, + "name": "P-H5IY", + "type": "system" + }, + { + "id": 30004188, + "regionId": 10000053, + "name": "4A-6NI", + "type": "system" + }, + { + "id": 30004189, + "regionId": 10000053, + "name": "1M7-RK", + "type": "system" + }, + { + "id": 30004190, + "regionId": 10000053, + "name": "87-1PM", + "type": "system" + }, + { + "id": 30004191, + "regionId": 10000053, + "name": "C2-1B5", + "type": "system" + }, + { + "id": 30004192, + "regionId": 10000053, + "name": "JE-VLG", + "type": "system" + }, + { + "id": 30004193, + "regionId": 10000053, + "name": "5ED-4E", + "type": "system" + }, + { + "id": 30004194, + "regionId": 10000053, + "name": "B-U299", + "type": "system" + }, + { + "id": 30004195, + "regionId": 10000053, + "name": "DN58-U", + "type": "system" + }, + { + "id": 30004196, + "regionId": 10000053, + "name": "VAF1-P", + "type": "system" + }, + { + "id": 30004197, + "regionId": 10000053, + "name": "FV1-RQ", + "type": "system" + }, + { + "id": 30004198, + "regionId": 10000053, + "name": "QT-EBC", + "type": "system" + }, + { + "id": 30004199, + "regionId": 10000053, + "name": "O-F4SN", + "type": "system" + }, + { + "id": 30004200, + "regionId": 10000053, + "name": "CUT-0V", + "type": "system" + }, + { + "id": 30004201, + "regionId": 10000053, + "name": "9-WEMC", + "type": "system" + }, + { + "id": 30004202, + "regionId": 10000053, + "name": "U6R-F9", + "type": "system" + }, + { + "id": 30004203, + "regionId": 10000053, + "name": "L-Z9NB", + "type": "system" + }, + { + "id": 30004204, + "regionId": 10000053, + "name": "EJ-5X2", + "type": "system" + }, + { + "id": 30004205, + "regionId": 10000053, + "name": "HXK-J6", + "type": "system" + }, + { + "id": 30004206, + "regionId": 10000053, + "name": "4LNE-M", + "type": "system" + }, + { + "id": 30004207, + "regionId": 10000053, + "name": "DK0-N8", + "type": "system" + }, + { + "id": 30004208, + "regionId": 10000053, + "name": "E0DR-G", + "type": "system" + }, + { + "id": 30004209, + "regionId": 10000053, + "name": "KI2-S3", + "type": "system" + }, + { + "id": 30004210, + "regionId": 10000053, + "name": "CHP-76", + "type": "system" + }, + { + "id": 30004211, + "regionId": 10000053, + "name": "T-67F8", + "type": "system" + }, + { + "id": 30004212, + "regionId": 10000053, + "name": "58Z-IH", + "type": "system" + }, + { + "id": 30004213, + "regionId": 10000053, + "name": "M-VACR", + "type": "system" + }, + { + "id": 30004214, + "regionId": 10000053, + "name": "0B-VOJ", + "type": "system" + }, + { + "id": 30004215, + "regionId": 10000053, + "name": "J-QOKQ", + "type": "system" + }, + { + "id": 30004216, + "regionId": 10000053, + "name": "4GSZ-1", + "type": "system" + }, + { + "id": 30004217, + "regionId": 10000053, + "name": "E-EFAM", + "type": "system" + }, + { + "id": 30004218, + "regionId": 10000053, + "name": "SBEN-Q", + "type": "system" + }, + { + "id": 30004219, + "regionId": 10000053, + "name": "9-7SRQ", + "type": "system" + }, + { + "id": 30004220, + "regionId": 10000053, + "name": "VEQ-3V", + "type": "system" + }, + { + "id": 30004221, + "regionId": 10000053, + "name": "4T-VDE", + "type": "system" + }, + { + "id": 30004222, + "regionId": 10000053, + "name": "D9Z-VY", + "type": "system" + }, + { + "id": 30004223, + "regionId": 10000053, + "name": "MO-YDG", + "type": "system" + }, + { + "id": 30004224, + "regionId": 10000053, + "name": "42SU-L", + "type": "system" + }, + { + "id": 30004225, + "regionId": 10000053, + "name": "RGU1-T", + "type": "system" + }, + { + "id": 30004226, + "regionId": 10000053, + "name": "1GT-MA", + "type": "system" + }, + { + "id": 30004227, + "regionId": 10000053, + "name": "VY-866", + "type": "system" + }, + { + "id": 30004228, + "regionId": 10000053, + "name": "HB-5L3", + "type": "system" + }, + { + "id": 30004229, + "regionId": 10000053, + "name": "Q-VTWJ", + "type": "system" + }, + { + "id": 30004230, + "regionId": 10000054, + "name": "Van", + "type": "system" + }, + { + "id": 30004231, + "regionId": 10000054, + "name": "Shakasi", + "type": "system" + }, + { + "id": 30004232, + "regionId": 10000054, + "name": "Zayi", + "type": "system" + }, + { + "id": 30004233, + "regionId": 10000054, + "name": "Shirshocin", + "type": "system" + }, + { + "id": 30004234, + "regionId": 10000054, + "name": "Maalna", + "type": "system" + }, + { + "id": 30004235, + "regionId": 10000054, + "name": "Maseera", + "type": "system" + }, + { + "id": 30004236, + "regionId": 10000054, + "name": "Yehaba", + "type": "system" + }, + { + "id": 30004237, + "regionId": 10000054, + "name": "Kenahehab", + "type": "system" + }, + { + "id": 30004238, + "regionId": 10000054, + "name": "Gens", + "type": "system" + }, + { + "id": 30004239, + "regionId": 10000054, + "name": "Kamih", + "type": "system" + }, + { + "id": 30004240, + "regionId": 10000054, + "name": "Hier", + "type": "system" + }, + { + "id": 30004241, + "regionId": 10000054, + "name": "Jasson", + "type": "system" + }, + { + "id": 30004242, + "regionId": 10000054, + "name": "Sadana", + "type": "system" + }, + { + "id": 30004243, + "regionId": 10000054, + "name": "Isid", + "type": "system" + }, + { + "id": 30004244, + "regionId": 10000054, + "name": "Onanam", + "type": "system" + }, + { + "id": 30004245, + "regionId": 10000054, + "name": "Udianoor", + "type": "system" + }, + { + "id": 30004246, + "regionId": 10000054, + "name": "Vehan", + "type": "system" + }, + { + "id": 30004247, + "regionId": 10000054, + "name": "Marmeha", + "type": "system" + }, + { + "id": 30004248, + "regionId": 10000054, + "name": "Haimeh", + "type": "system" + }, + { + "id": 30004249, + "regionId": 10000054, + "name": "Avada", + "type": "system" + }, + { + "id": 30004250, + "regionId": 10000054, + "name": "Chibi", + "type": "system" + }, + { + "id": 30004251, + "regionId": 10000054, + "name": "Mishi", + "type": "system" + }, + { + "id": 30004252, + "regionId": 10000054, + "name": "Bazadod", + "type": "system" + }, + { + "id": 30004253, + "regionId": 10000054, + "name": "Pahineh", + "type": "system" + }, + { + "id": 30004254, + "regionId": 10000054, + "name": "Fihrneh", + "type": "system" + }, + { + "id": 30004255, + "regionId": 10000054, + "name": "Parouz", + "type": "system" + }, + { + "id": 30004256, + "regionId": 10000054, + "name": "Edilkam", + "type": "system" + }, + { + "id": 30004257, + "regionId": 10000054, + "name": "Hakatiz", + "type": "system" + }, + { + "id": 30004258, + "regionId": 10000054, + "name": "Khnar", + "type": "system" + }, + { + "id": 30004259, + "regionId": 10000054, + "name": "Ertoo", + "type": "system" + }, + { + "id": 30004260, + "regionId": 10000054, + "name": "Yiratal", + "type": "system" + }, + { + "id": 30004261, + "regionId": 10000054, + "name": "Balas", + "type": "system" + }, + { + "id": 30004262, + "regionId": 10000054, + "name": "Pemsah", + "type": "system" + }, + { + "id": 30004263, + "regionId": 10000054, + "name": "Feshur", + "type": "system" + }, + { + "id": 30004264, + "regionId": 10000054, + "name": "Hoseen", + "type": "system" + }, + { + "id": 30004265, + "regionId": 10000054, + "name": "Yekh", + "type": "system" + }, + { + "id": 30004266, + "regionId": 10000054, + "name": "Gesh", + "type": "system" + }, + { + "id": 30004267, + "regionId": 10000054, + "name": "Nema", + "type": "system" + }, + { + "id": 30004268, + "regionId": 10000054, + "name": "Shenda", + "type": "system" + }, + { + "id": 30004269, + "regionId": 10000054, + "name": "Rashagh", + "type": "system" + }, + { + "id": 30004270, + "regionId": 10000054, + "name": "Sazilid", + "type": "system" + }, + { + "id": 30004271, + "regionId": 10000054, + "name": "Afrah", + "type": "system" + }, + { + "id": 30004272, + "regionId": 10000054, + "name": "Sota", + "type": "system" + }, + { + "id": 30004273, + "regionId": 10000054, + "name": "Soliara", + "type": "system" + }, + { + "id": 30004274, + "regionId": 10000054, + "name": "Nielez", + "type": "system" + }, + { + "id": 30004275, + "regionId": 10000054, + "name": "Tukanas", + "type": "system" + }, + { + "id": 30004276, + "regionId": 10000054, + "name": "Fageras", + "type": "system" + }, + { + "id": 30004277, + "regionId": 10000054, + "name": "Ajna", + "type": "system" + }, + { + "id": 30004278, + "regionId": 10000054, + "name": "Sheri", + "type": "system" + }, + { + "id": 30004279, + "regionId": 10000054, + "name": "Ahraghen", + "type": "system" + }, + { + "id": 30004280, + "regionId": 10000054, + "name": "Nalnifan", + "type": "system" + }, + { + "id": 30004281, + "regionId": 10000054, + "name": "Jerhesh", + "type": "system" + }, + { + "id": 30004282, + "regionId": 10000054, + "name": "Getrenjesa", + "type": "system" + }, + { + "id": 30004283, + "regionId": 10000054, + "name": "Shafrak", + "type": "system" + }, + { + "id": 30004284, + "regionId": 10000054, + "name": "Defsunun", + "type": "system" + }, + { + "id": 30004285, + "regionId": 10000054, + "name": "Zazamye", + "type": "system" + }, + { + "id": 30004286, + "regionId": 10000054, + "name": "Yahyerer", + "type": "system" + }, + { + "id": 30004287, + "regionId": 10000054, + "name": "Esubara", + "type": "system" + }, + { + "id": 30004288, + "regionId": 10000054, + "name": "Ghekon", + "type": "system" + }, + { + "id": 30004289, + "regionId": 10000054, + "name": "Vaini", + "type": "system" + }, + { + "id": 30004290, + "regionId": 10000054, + "name": "Zaveral", + "type": "system" + }, + { + "id": 30004291, + "regionId": 10000054, + "name": "Anohel", + "type": "system" + }, + { + "id": 30004292, + "regionId": 10000054, + "name": "Soza", + "type": "system" + }, + { + "id": 30004293, + "regionId": 10000054, + "name": "Pserz", + "type": "system" + }, + { + "id": 30004294, + "regionId": 10000054, + "name": "Illi", + "type": "system" + }, + { + "id": 30004295, + "regionId": 10000054, + "name": "Keba", + "type": "system" + }, + { + "id": 30004296, + "regionId": 10000054, + "name": "Bapraya", + "type": "system" + }, + { + "id": 30004297, + "regionId": 10000054, + "name": "Efu", + "type": "system" + }, + { + "id": 30004298, + "regionId": 10000054, + "name": "Tisot", + "type": "system" + }, + { + "id": 30004299, + "regionId": 10000054, + "name": "Sakht", + "type": "system" + }, + { + "id": 30004300, + "regionId": 10000054, + "name": "Naga", + "type": "system" + }, + { + "id": 30004301, + "regionId": 10000054, + "name": "Anath", + "type": "system" + }, + { + "id": 30004302, + "regionId": 10000054, + "name": "Omigiav", + "type": "system" + }, + { + "id": 30004303, + "regionId": 10000054, + "name": "Fobiner", + "type": "system" + }, + { + "id": 30004304, + "regionId": 10000054, + "name": "Huna", + "type": "system" + }, + { + "id": 30004305, + "regionId": 10000054, + "name": "Esaeel", + "type": "system" + }, + { + "id": 30004306, + "regionId": 10000054, + "name": "Karan", + "type": "system" + }, + { + "id": 30004307, + "regionId": 10000054, + "name": "Nouta", + "type": "system" + }, + { + "id": 30004308, + "regionId": 10000054, + "name": "Ned", + "type": "system" + }, + { + "id": 30004309, + "regionId": 10000054, + "name": "Hophib", + "type": "system" + }, + { + "id": 30004310, + "regionId": 10000055, + "name": "UQ9-3C", + "type": "system" + }, + { + "id": 30004311, + "regionId": 10000055, + "name": "DCI7-7", + "type": "system" + }, + { + "id": 30004312, + "regionId": 10000055, + "name": "J7YR-1", + "type": "system" + }, + { + "id": 30004313, + "regionId": 10000055, + "name": "PKG4-7", + "type": "system" + }, + { + "id": 30004314, + "regionId": 10000055, + "name": "EWN-2U", + "type": "system" + }, + { + "id": 30004315, + "regionId": 10000055, + "name": "VL3I-M", + "type": "system" + }, + { + "id": 30004316, + "regionId": 10000055, + "name": "KMC-WI", + "type": "system" + }, + { + "id": 30004317, + "regionId": 10000055, + "name": "4-48K1", + "type": "system" + }, + { + "id": 30004318, + "regionId": 10000055, + "name": "NTV0-1", + "type": "system" + }, + { + "id": 30004319, + "regionId": 10000055, + "name": "C-HCGU", + "type": "system" + }, + { + "id": 30004320, + "regionId": 10000055, + "name": "XW-2XP", + "type": "system" + }, + { + "id": 30004321, + "regionId": 10000055, + "name": "Q-FEEJ", + "type": "system" + }, + { + "id": 30004322, + "regionId": 10000055, + "name": "0P9Z-I", + "type": "system" + }, + { + "id": 30004323, + "regionId": 10000055, + "name": "AH-B84", + "type": "system" + }, + { + "id": 30004324, + "regionId": 10000055, + "name": "JTAU-5", + "type": "system" + }, + { + "id": 30004325, + "regionId": 10000055, + "name": "HB7R-F", + "type": "system" + }, + { + "id": 30004326, + "regionId": 10000055, + "name": "O-JPKH", + "type": "system" + }, + { + "id": 30004327, + "regionId": 10000055, + "name": "F-9F6Q", + "type": "system" + }, + { + "id": 30004328, + "regionId": 10000055, + "name": "B-GC1T", + "type": "system" + }, + { + "id": 30004329, + "regionId": 10000055, + "name": "V8W-QS", + "type": "system" + }, + { + "id": 30004330, + "regionId": 10000055, + "name": "JRZ-B9", + "type": "system" + }, + { + "id": 30004331, + "regionId": 10000055, + "name": "X4UV-Z", + "type": "system" + }, + { + "id": 30004332, + "regionId": 10000055, + "name": "S-B7IT", + "type": "system" + }, + { + "id": 30004333, + "regionId": 10000055, + "name": "BKG-Q2", + "type": "system" + }, + { + "id": 30004334, + "regionId": 10000055, + "name": "OJ-A8M", + "type": "system" + }, + { + "id": 30004335, + "regionId": 10000055, + "name": "CX-1XF", + "type": "system" + }, + { + "id": 30004336, + "regionId": 10000055, + "name": "3-TD6L", + "type": "system" + }, + { + "id": 30004337, + "regionId": 10000055, + "name": "Q-NJZ4", + "type": "system" + }, + { + "id": 30004338, + "regionId": 10000055, + "name": "NLPB-0", + "type": "system" + }, + { + "id": 30004339, + "regionId": 10000055, + "name": "R4O-I6", + "type": "system" + }, + { + "id": 30004340, + "regionId": 10000055, + "name": "KL3O-J", + "type": "system" + }, + { + "id": 30004341, + "regionId": 10000055, + "name": "Z-K495", + "type": "system" + }, + { + "id": 30004342, + "regionId": 10000055, + "name": "XM-4L0", + "type": "system" + }, + { + "id": 30004343, + "regionId": 10000055, + "name": "QCWA-Z", + "type": "system" + }, + { + "id": 30004344, + "regionId": 10000055, + "name": "52G-NZ", + "type": "system" + }, + { + "id": 30004345, + "regionId": 10000055, + "name": "5LJ-MD", + "type": "system" + }, + { + "id": 30004346, + "regionId": 10000055, + "name": "B8O-KJ", + "type": "system" + }, + { + "id": 30004347, + "regionId": 10000055, + "name": "6-O5GY", + "type": "system" + }, + { + "id": 30004348, + "regionId": 10000055, + "name": "KV-8SN", + "type": "system" + }, + { + "id": 30004349, + "regionId": 10000055, + "name": "UB-UQZ", + "type": "system" + }, + { + "id": 30004350, + "regionId": 10000055, + "name": "YG-82V", + "type": "system" + }, + { + "id": 30004351, + "regionId": 10000055, + "name": "8-4GQM", + "type": "system" + }, + { + "id": 30004352, + "regionId": 10000055, + "name": "T-Q2DD", + "type": "system" + }, + { + "id": 30004353, + "regionId": 10000055, + "name": "LRWD-B", + "type": "system" + }, + { + "id": 30004354, + "regionId": 10000055, + "name": "QXQ-BA", + "type": "system" + }, + { + "id": 30004355, + "regionId": 10000055, + "name": "X7R-JW", + "type": "system" + }, + { + "id": 30004356, + "regionId": 10000055, + "name": "M-HU4V", + "type": "system" + }, + { + "id": 30004357, + "regionId": 10000055, + "name": "CS-ZGD", + "type": "system" + }, + { + "id": 30004358, + "regionId": 10000055, + "name": "3-N3OO", + "type": "system" + }, + { + "id": 30004359, + "regionId": 10000055, + "name": "A-G1FM", + "type": "system" + }, + { + "id": 30004360, + "regionId": 10000055, + "name": "4-BE0M", + "type": "system" + }, + { + "id": 30004361, + "regionId": 10000055, + "name": "I-7RIS", + "type": "system" + }, + { + "id": 30004362, + "regionId": 10000055, + "name": "P7Z-R3", + "type": "system" + }, + { + "id": 30004363, + "regionId": 10000055, + "name": "ZIU-EP", + "type": "system" + }, + { + "id": 30004364, + "regionId": 10000055, + "name": "LXWN-W", + "type": "system" + }, + { + "id": 30004365, + "regionId": 10000055, + "name": "C-LP3N", + "type": "system" + }, + { + "id": 30004366, + "regionId": 10000055, + "name": "9F-7PZ", + "type": "system" + }, + { + "id": 30004367, + "regionId": 10000055, + "name": "1G-MJE", + "type": "system" + }, + { + "id": 30004368, + "regionId": 10000055, + "name": "WO-AIJ", + "type": "system" + }, + { + "id": 30004369, + "regionId": 10000055, + "name": "MA-VDX", + "type": "system" + }, + { + "id": 30004370, + "regionId": 10000055, + "name": "RO90-H", + "type": "system" + }, + { + "id": 30004371, + "regionId": 10000055, + "name": "BWI1-9", + "type": "system" + }, + { + "id": 30004372, + "regionId": 10000055, + "name": "C-LBQS", + "type": "system" + }, + { + "id": 30004373, + "regionId": 10000055, + "name": "J52-BH", + "type": "system" + }, + { + "id": 30004374, + "regionId": 10000055, + "name": "5-P1Y2", + "type": "system" + }, + { + "id": 30004375, + "regionId": 10000055, + "name": "KMQ4-V", + "type": "system" + }, + { + "id": 30004376, + "regionId": 10000055, + "name": "KJ-QWL", + "type": "system" + }, + { + "id": 30004377, + "regionId": 10000055, + "name": "SVB-RE", + "type": "system" + }, + { + "id": 30004378, + "regionId": 10000055, + "name": "C-4ZOS", + "type": "system" + }, + { + "id": 30004379, + "regionId": 10000055, + "name": "K-8SQS", + "type": "system" + }, + { + "id": 30004380, + "regionId": 10000055, + "name": "C-VGYO", + "type": "system" + }, + { + "id": 30004381, + "regionId": 10000055, + "name": "O94U-A", + "type": "system" + }, + { + "id": 30004382, + "regionId": 10000055, + "name": "XW-JHT", + "type": "system" + }, + { + "id": 30004383, + "regionId": 10000055, + "name": "NEH-CS", + "type": "system" + }, + { + "id": 30004384, + "regionId": 10000055, + "name": "4DTQ-K", + "type": "system" + }, + { + "id": 30004385, + "regionId": 10000055, + "name": "J9-5MQ", + "type": "system" + }, + { + "id": 30004386, + "regionId": 10000055, + "name": "D4R-H7", + "type": "system" + }, + { + "id": 30004387, + "regionId": 10000055, + "name": "313I-B", + "type": "system" + }, + { + "id": 30004388, + "regionId": 10000055, + "name": "EQI2-2", + "type": "system" + }, + { + "id": 30004389, + "regionId": 10000055, + "name": "Q-4DEC", + "type": "system" + }, + { + "id": 30004390, + "regionId": 10000055, + "name": "3F-JZF", + "type": "system" + }, + { + "id": 30004391, + "regionId": 10000055, + "name": "5-0WB9", + "type": "system" + }, + { + "id": 30004392, + "regionId": 10000055, + "name": "W-4FA9", + "type": "system" + }, + { + "id": 30004393, + "regionId": 10000055, + "name": "1IX-C0", + "type": "system" + }, + { + "id": 30004394, + "regionId": 10000055, + "name": "2B7A-3", + "type": "system" + }, + { + "id": 30004395, + "regionId": 10000055, + "name": "PUWL-4", + "type": "system" + }, + { + "id": 30004396, + "regionId": 10000055, + "name": "Y-1918", + "type": "system" + }, + { + "id": 30004397, + "regionId": 10000055, + "name": "9-B1DS", + "type": "system" + }, + { + "id": 30004398, + "regionId": 10000055, + "name": "ME-4IU", + "type": "system" + }, + { + "id": 30004399, + "regionId": 10000055, + "name": "BU-IU4", + "type": "system" + }, + { + "id": 30004400, + "regionId": 10000055, + "name": "I-7JR4", + "type": "system" + }, + { + "id": 30004401, + "regionId": 10000055, + "name": "CH9L-K", + "type": "system" + }, + { + "id": 30004402, + "regionId": 10000055, + "name": "QYZM-W", + "type": "system" + }, + { + "id": 30004403, + "regionId": 10000055, + "name": "3KNA-N", + "type": "system" + }, + { + "id": 30004404, + "regionId": 10000056, + "name": "UD-VZW", + "type": "system" + }, + { + "id": 30004405, + "regionId": 10000056, + "name": "3-YX2D", + "type": "system" + }, + { + "id": 30004406, + "regionId": 10000056, + "name": "V-TN6Q", + "type": "system" + }, + { + "id": 30004407, + "regionId": 10000056, + "name": "CFLF-P", + "type": "system" + }, + { + "id": 30004408, + "regionId": 10000056, + "name": "QBH5-F", + "type": "system" + }, + { + "id": 30004409, + "regionId": 10000056, + "name": "9-ZFCG", + "type": "system" + }, + { + "id": 30004410, + "regionId": 10000056, + "name": "J-TPTA", + "type": "system" + }, + { + "id": 30004411, + "regionId": 10000056, + "name": "PMV-G6", + "type": "system" + }, + { + "id": 30004412, + "regionId": 10000056, + "name": "5-IZGE", + "type": "system" + }, + { + "id": 30004413, + "regionId": 10000056, + "name": "OXC-UL", + "type": "system" + }, + { + "id": 30004414, + "regionId": 10000056, + "name": "F-8Y13", + "type": "system" + }, + { + "id": 30004415, + "regionId": 10000056, + "name": "4AZ-J8", + "type": "system" + }, + { + "id": 30004416, + "regionId": 10000056, + "name": "X6-J6R", + "type": "system" + }, + { + "id": 30004417, + "regionId": 10000056, + "name": "BGN1-O", + "type": "system" + }, + { + "id": 30004418, + "regionId": 10000056, + "name": "DUU1-K", + "type": "system" + }, + { + "id": 30004419, + "regionId": 10000056, + "name": "3L-Y9M", + "type": "system" + }, + { + "id": 30004420, + "regionId": 10000056, + "name": "BLC-X0", + "type": "system" + }, + { + "id": 30004421, + "regionId": 10000056, + "name": "K-X5AX", + "type": "system" + }, + { + "id": 30004422, + "regionId": 10000056, + "name": "BJD4-E", + "type": "system" + }, + { + "id": 30004423, + "regionId": 10000056, + "name": "TSG-NO", + "type": "system" + }, + { + "id": 30004424, + "regionId": 10000056, + "name": "O9V-R7", + "type": "system" + }, + { + "id": 30004425, + "regionId": 10000056, + "name": "Z-PNIA", + "type": "system" + }, + { + "id": 30004426, + "regionId": 10000056, + "name": "OCU4-R", + "type": "system" + }, + { + "id": 30004427, + "regionId": 10000056, + "name": "BG-W90", + "type": "system" + }, + { + "id": 30004428, + "regionId": 10000056, + "name": "Y-YGMW", + "type": "system" + }, + { + "id": 30004429, + "regionId": 10000056, + "name": "75C-WN", + "type": "system" + }, + { + "id": 30004430, + "regionId": 10000056, + "name": "I5Q2-S", + "type": "system" + }, + { + "id": 30004431, + "regionId": 10000056, + "name": "PO-3QW", + "type": "system" + }, + { + "id": 30004432, + "regionId": 10000056, + "name": "5XR-KZ", + "type": "system" + }, + { + "id": 30004433, + "regionId": 10000056, + "name": "VF-FN6", + "type": "system" + }, + { + "id": 30004434, + "regionId": 10000056, + "name": "C-0ND2", + "type": "system" + }, + { + "id": 30004435, + "regionId": 10000056, + "name": "JI-LGM", + "type": "system" + }, + { + "id": 30004436, + "regionId": 10000056, + "name": "U-BXU9", + "type": "system" + }, + { + "id": 30004437, + "regionId": 10000056, + "name": "ZXOG-O", + "type": "system" + }, + { + "id": 30004438, + "regionId": 10000056, + "name": "NW2S-A", + "type": "system" + }, + { + "id": 30004439, + "regionId": 10000056, + "name": "U-JJEW", + "type": "system" + }, + { + "id": 30004440, + "regionId": 10000056, + "name": "NX5W-U", + "type": "system" + }, + { + "id": 30004441, + "regionId": 10000056, + "name": "U1-C18", + "type": "system" + }, + { + "id": 30004442, + "regionId": 10000056, + "name": "6O-XIO", + "type": "system" + }, + { + "id": 30004443, + "regionId": 10000056, + "name": "H65-HE", + "type": "system" + }, + { + "id": 30004444, + "regionId": 10000056, + "name": "BJ-ZFD", + "type": "system" + }, + { + "id": 30004445, + "regionId": 10000056, + "name": "5ELE-A", + "type": "system" + }, + { + "id": 30004446, + "regionId": 10000056, + "name": "H-P4LB", + "type": "system" + }, + { + "id": 30004447, + "regionId": 10000056, + "name": "2UK4-N", + "type": "system" + }, + { + "id": 30004448, + "regionId": 10000056, + "name": "QK-CDG", + "type": "system" + }, + { + "id": 30004449, + "regionId": 10000056, + "name": "M-CMLV", + "type": "system" + }, + { + "id": 30004450, + "regionId": 10000056, + "name": "AZN-D2", + "type": "system" + }, + { + "id": 30004451, + "regionId": 10000056, + "name": "E-PR0S", + "type": "system" + }, + { + "id": 30004452, + "regionId": 10000056, + "name": "TR07-S", + "type": "system" + }, + { + "id": 30004453, + "regionId": 10000056, + "name": "VNGJ-U", + "type": "system" + }, + { + "id": 30004454, + "regionId": 10000056, + "name": "2-F3OE", + "type": "system" + }, + { + "id": 30004455, + "regionId": 10000056, + "name": "5-LCI7", + "type": "system" + }, + { + "id": 30004456, + "regionId": 10000056, + "name": "Y2-I3W", + "type": "system" + }, + { + "id": 30004457, + "regionId": 10000056, + "name": "VVO-R6", + "type": "system" + }, + { + "id": 30004458, + "regionId": 10000056, + "name": "CL-J9W", + "type": "system" + }, + { + "id": 30004459, + "regionId": 10000056, + "name": "YHP2-D", + "type": "system" + }, + { + "id": 30004460, + "regionId": 10000056, + "name": "J94-MU", + "type": "system" + }, + { + "id": 30004461, + "regionId": 10000056, + "name": "M2GJ-X", + "type": "system" + }, + { + "id": 30004462, + "regionId": 10000056, + "name": "JO-32L", + "type": "system" + }, + { + "id": 30004463, + "regionId": 10000056, + "name": "UB5Z-3", + "type": "system" + }, + { + "id": 30004464, + "regionId": 10000056, + "name": "MSKR-1", + "type": "system" + }, + { + "id": 30004465, + "regionId": 10000056, + "name": "GPUS-A", + "type": "system" + }, + { + "id": 30004466, + "regionId": 10000056, + "name": "3-BADZ", + "type": "system" + }, + { + "id": 30004467, + "regionId": 10000056, + "name": "23M-PX", + "type": "system" + }, + { + "id": 30004468, + "regionId": 10000056, + "name": "UTDH-N", + "type": "system" + }, + { + "id": 30004469, + "regionId": 10000056, + "name": "ZS-2LT", + "type": "system" + }, + { + "id": 30004470, + "regionId": 10000056, + "name": "DB1R-4", + "type": "system" + }, + { + "id": 30004471, + "regionId": 10000056, + "name": "P8-BKO", + "type": "system" + }, + { + "id": 30004472, + "regionId": 10000056, + "name": "RIT-A7", + "type": "system" + }, + { + "id": 30004473, + "regionId": 10000056, + "name": "R4K-8L", + "type": "system" + }, + { + "id": 30004474, + "regionId": 10000056, + "name": "GHZ-SJ", + "type": "system" + }, + { + "id": 30004475, + "regionId": 10000056, + "name": "K-J50B", + "type": "system" + }, + { + "id": 30004476, + "regionId": 10000056, + "name": "NLO-3Z", + "type": "system" + }, + { + "id": 30004477, + "regionId": 10000056, + "name": "5P-AIP", + "type": "system" + }, + { + "id": 30004478, + "regionId": 10000056, + "name": "M-PGT0", + "type": "system" + }, + { + "id": 30004479, + "regionId": 10000056, + "name": "NPD9-A", + "type": "system" + }, + { + "id": 30004480, + "regionId": 10000056, + "name": "D6SK-L", + "type": "system" + }, + { + "id": 30004481, + "regionId": 10000056, + "name": "HYPL-V", + "type": "system" + }, + { + "id": 30004482, + "regionId": 10000056, + "name": "I9-ZQZ", + "type": "system" + }, + { + "id": 30004483, + "regionId": 10000056, + "name": "0OYZ-G", + "type": "system" + }, + { + "id": 30004484, + "regionId": 10000056, + "name": "SWBV-2", + "type": "system" + }, + { + "id": 30004485, + "regionId": 10000056, + "name": "R97-CI", + "type": "system" + }, + { + "id": 30004486, + "regionId": 10000056, + "name": "6-ELQP", + "type": "system" + }, + { + "id": 30004487, + "regionId": 10000056, + "name": "OBK-K8", + "type": "system" + }, + { + "id": 30004488, + "regionId": 10000056, + "name": "KJ-V0P", + "type": "system" + }, + { + "id": 30004489, + "regionId": 10000056, + "name": "ZID-LE", + "type": "system" + }, + { + "id": 30004490, + "regionId": 10000056, + "name": "K-9UG4", + "type": "system" + }, + { + "id": 30004491, + "regionId": 10000056, + "name": "D4-2XN", + "type": "system" + }, + { + "id": 30004492, + "regionId": 10000056, + "name": "2-RSC7", + "type": "system" + }, + { + "id": 30004493, + "regionId": 10000057, + "name": "C0T-77", + "type": "system" + }, + { + "id": 30004494, + "regionId": 10000057, + "name": "RL-KT0", + "type": "system" + }, + { + "id": 30004495, + "regionId": 10000057, + "name": "UO9-YG", + "type": "system" + }, + { + "id": 30004496, + "regionId": 10000057, + "name": "ZQP-QV", + "type": "system" + }, + { + "id": 30004497, + "regionId": 10000057, + "name": "P-NUWP", + "type": "system" + }, + { + "id": 30004498, + "regionId": 10000057, + "name": "ZJQH-S", + "type": "system" + }, + { + "id": 30004499, + "regionId": 10000057, + "name": "E9G-MT", + "type": "system" + }, + { + "id": 30004500, + "regionId": 10000057, + "name": "TQ-RR8", + "type": "system" + }, + { + "id": 30004501, + "regionId": 10000057, + "name": "1L-BHT", + "type": "system" + }, + { + "id": 30004502, + "regionId": 10000057, + "name": "D5IW-F", + "type": "system" + }, + { + "id": 30004503, + "regionId": 10000057, + "name": "F-XWIN", + "type": "system" + }, + { + "id": 30004504, + "regionId": 10000057, + "name": "4C-B7X", + "type": "system" + }, + { + "id": 30004505, + "regionId": 10000057, + "name": "LGUZ-1", + "type": "system" + }, + { + "id": 30004506, + "regionId": 10000057, + "name": "BF-SDP", + "type": "system" + }, + { + "id": 30004507, + "regionId": 10000057, + "name": "F5FO-U", + "type": "system" + }, + { + "id": 30004508, + "regionId": 10000057, + "name": "5WAE-M", + "type": "system" + }, + { + "id": 30004509, + "regionId": 10000057, + "name": "0-WVQS", + "type": "system" + }, + { + "id": 30004510, + "regionId": 10000057, + "name": "0-9UHT", + "type": "system" + }, + { + "id": 30004511, + "regionId": 10000057, + "name": "M-NKZM", + "type": "system" + }, + { + "id": 30004512, + "regionId": 10000057, + "name": "H-M1BY", + "type": "system" + }, + { + "id": 30004513, + "regionId": 10000057, + "name": "J1H-R4", + "type": "system" + }, + { + "id": 30004514, + "regionId": 10000057, + "name": "J9SH-A", + "type": "system" + }, + { + "id": 30004515, + "regionId": 10000057, + "name": "JKJ-VJ", + "type": "system" + }, + { + "id": 30004516, + "regionId": 10000057, + "name": "RTX0-S", + "type": "system" + }, + { + "id": 30004517, + "regionId": 10000057, + "name": "33FN-P", + "type": "system" + }, + { + "id": 30004518, + "regionId": 10000057, + "name": "NM-OEA", + "type": "system" + }, + { + "id": 30004519, + "regionId": 10000057, + "name": "MT-2VJ", + "type": "system" + }, + { + "id": 30004520, + "regionId": 10000057, + "name": "3HQC-6", + "type": "system" + }, + { + "id": 30004521, + "regionId": 10000057, + "name": "OX-RGN", + "type": "system" + }, + { + "id": 30004522, + "regionId": 10000057, + "name": "R-OCBA", + "type": "system" + }, + { + "id": 30004523, + "regionId": 10000057, + "name": "GA-2V7", + "type": "system" + }, + { + "id": 30004524, + "regionId": 10000057, + "name": "DB-6W4", + "type": "system" + }, + { + "id": 30004525, + "regionId": 10000057, + "name": "7-692B", + "type": "system" + }, + { + "id": 30004526, + "regionId": 10000057, + "name": "L3-XYO", + "type": "system" + }, + { + "id": 30004527, + "regionId": 10000057, + "name": "AN-G54", + "type": "system" + }, + { + "id": 30004528, + "regionId": 10000057, + "name": "ZXI-K2", + "type": "system" + }, + { + "id": 30004529, + "regionId": 10000057, + "name": "T-Z6J2", + "type": "system" + }, + { + "id": 30004530, + "regionId": 10000057, + "name": "CT7-5V", + "type": "system" + }, + { + "id": 30004531, + "regionId": 10000057, + "name": "2JJ-0E", + "type": "system" + }, + { + "id": 30004532, + "regionId": 10000057, + "name": "B0C-LD", + "type": "system" + }, + { + "id": 30004533, + "regionId": 10000057, + "name": "NP6-38", + "type": "system" + }, + { + "id": 30004534, + "regionId": 10000057, + "name": "G-YT55", + "type": "system" + }, + { + "id": 30004535, + "regionId": 10000057, + "name": "IZ-AOB", + "type": "system" + }, + { + "id": 30004536, + "regionId": 10000057, + "name": "G5-EN3", + "type": "system" + }, + { + "id": 30004537, + "regionId": 10000057, + "name": "W-Z3HW", + "type": "system" + }, + { + "id": 30004538, + "regionId": 10000057, + "name": "W2F-ZH", + "type": "system" + }, + { + "id": 30004539, + "regionId": 10000057, + "name": "BMU-V1", + "type": "system" + }, + { + "id": 30004540, + "regionId": 10000057, + "name": "ZXC8-1", + "type": "system" + }, + { + "id": 30004541, + "regionId": 10000057, + "name": "LBV-Q1", + "type": "system" + }, + { + "id": 30004542, + "regionId": 10000057, + "name": "Z-40CG", + "type": "system" + }, + { + "id": 30004543, + "regionId": 10000057, + "name": "O-RIDF", + "type": "system" + }, + { + "id": 30004544, + "regionId": 10000057, + "name": "A-5M31", + "type": "system" + }, + { + "id": 30004545, + "regionId": 10000057, + "name": "BOE7-P", + "type": "system" + }, + { + "id": 30004546, + "regionId": 10000057, + "name": "E-GCX0", + "type": "system" + }, + { + "id": 30004547, + "regionId": 10000057, + "name": "VBFC-8", + "type": "system" + }, + { + "id": 30004548, + "regionId": 10000057, + "name": "YVA-F0", + "type": "system" + }, + { + "id": 30004549, + "regionId": 10000057, + "name": "0D-CHA", + "type": "system" + }, + { + "id": 30004550, + "regionId": 10000057, + "name": "A2V6-6", + "type": "system" + }, + { + "id": 30004551, + "regionId": 10000057, + "name": "VJ0-81", + "type": "system" + }, + { + "id": 30004552, + "regionId": 10000058, + "name": "XF-TQL", + "type": "system" + }, + { + "id": 30004553, + "regionId": 10000058, + "name": "4-EP12", + "type": "system" + }, + { + "id": 30004554, + "regionId": 10000058, + "name": "YZS5-4", + "type": "system" + }, + { + "id": 30004555, + "regionId": 10000058, + "name": "3WE-KY", + "type": "system" + }, + { + "id": 30004556, + "regionId": 10000058, + "name": "IR-WT1", + "type": "system" + }, + { + "id": 30004557, + "regionId": 10000058, + "name": "9-VO0Q", + "type": "system" + }, + { + "id": 30004558, + "regionId": 10000058, + "name": "A8-XBW", + "type": "system" + }, + { + "id": 30004559, + "regionId": 10000058, + "name": "PNQY-Y", + "type": "system" + }, + { + "id": 30004560, + "regionId": 10000058, + "name": "RP2-OQ", + "type": "system" + }, + { + "id": 30004561, + "regionId": 10000058, + "name": "YVBE-E", + "type": "system" + }, + { + "id": 30004562, + "regionId": 10000058, + "name": "BYXF-Q", + "type": "system" + }, + { + "id": 30004563, + "regionId": 10000058, + "name": "AC2E-3", + "type": "system" + }, + { + "id": 30004564, + "regionId": 10000058, + "name": "C-C99Z", + "type": "system" + }, + { + "id": 30004565, + "regionId": 10000058, + "name": "CL-BWB", + "type": "system" + }, + { + "id": 30004566, + "regionId": 10000058, + "name": "R3W-XU", + "type": "system" + }, + { + "id": 30004567, + "regionId": 10000058, + "name": "E-BWUU", + "type": "system" + }, + { + "id": 30004568, + "regionId": 10000058, + "name": "Y-1W01", + "type": "system" + }, + { + "id": 30004569, + "regionId": 10000058, + "name": "9R4-EJ", + "type": "system" + }, + { + "id": 30004570, + "regionId": 10000058, + "name": "SPLE-Y", + "type": "system" + }, + { + "id": 30004571, + "regionId": 10000058, + "name": "Q-XEB3", + "type": "system" + }, + { + "id": 30004572, + "regionId": 10000058, + "name": "K8L-X7", + "type": "system" + }, + { + "id": 30004573, + "regionId": 10000058, + "name": "5-D82P", + "type": "system" + }, + { + "id": 30004574, + "regionId": 10000058, + "name": "8ESL-G", + "type": "system" + }, + { + "id": 30004575, + "regionId": 10000058, + "name": "JGOW-Y", + "type": "system" + }, + { + "id": 30004576, + "regionId": 10000058, + "name": "APM-6K", + "type": "system" + }, + { + "id": 30004577, + "regionId": 10000058, + "name": "RE-C26", + "type": "system" + }, + { + "id": 30004578, + "regionId": 10000058, + "name": "AL8-V4", + "type": "system" + }, + { + "id": 30004579, + "regionId": 10000058, + "name": "KCT-0A", + "type": "system" + }, + { + "id": 30004580, + "regionId": 10000058, + "name": "N2-OQG", + "type": "system" + }, + { + "id": 30004581, + "regionId": 10000058, + "name": "OW-TPO", + "type": "system" + }, + { + "id": 30004582, + "regionId": 10000058, + "name": "9O-ORX", + "type": "system" + }, + { + "id": 30004583, + "regionId": 10000058, + "name": "IGE-RI", + "type": "system" + }, + { + "id": 30004584, + "regionId": 10000058, + "name": "Z9PP-H", + "type": "system" + }, + { + "id": 30004585, + "regionId": 10000058, + "name": "7-8S5X", + "type": "system" + }, + { + "id": 30004586, + "regionId": 10000058, + "name": "EI-O0O", + "type": "system" + }, + { + "id": 30004587, + "regionId": 10000058, + "name": "7X-02R", + "type": "system" + }, + { + "id": 30004588, + "regionId": 10000058, + "name": "D2AH-Z", + "type": "system" + }, + { + "id": 30004589, + "regionId": 10000058, + "name": "J5A-IX", + "type": "system" + }, + { + "id": 30004590, + "regionId": 10000058, + "name": "B17O-R", + "type": "system" + }, + { + "id": 30004591, + "regionId": 10000058, + "name": "6F-H3W", + "type": "system" + }, + { + "id": 30004592, + "regionId": 10000058, + "name": "H-NPXW", + "type": "system" + }, + { + "id": 30004593, + "regionId": 10000058, + "name": "L-1SW8", + "type": "system" + }, + { + "id": 30004594, + "regionId": 10000058, + "name": "U-SOH2", + "type": "system" + }, + { + "id": 30004595, + "regionId": 10000058, + "name": "DBRN-Z", + "type": "system" + }, + { + "id": 30004596, + "regionId": 10000058, + "name": "00GD-D", + "type": "system" + }, + { + "id": 30004597, + "regionId": 10000058, + "name": "C1XD-X", + "type": "system" + }, + { + "id": 30004598, + "regionId": 10000058, + "name": "G95F-H", + "type": "system" + }, + { + "id": 30004599, + "regionId": 10000058, + "name": "B32-14", + "type": "system" + }, + { + "id": 30004600, + "regionId": 10000058, + "name": "C-N4OD", + "type": "system" + }, + { + "id": 30004601, + "regionId": 10000058, + "name": "CHA2-Q", + "type": "system" + }, + { + "id": 30004602, + "regionId": 10000058, + "name": "UAYL-F", + "type": "system" + }, + { + "id": 30004603, + "regionId": 10000058, + "name": "ESC-RI", + "type": "system" + }, + { + "id": 30004604, + "regionId": 10000058, + "name": "671-ST", + "type": "system" + }, + { + "id": 30004605, + "regionId": 10000058, + "name": "A-HZYL", + "type": "system" + }, + { + "id": 30004606, + "regionId": 10000058, + "name": "H-S80W", + "type": "system" + }, + { + "id": 30004607, + "regionId": 10000058, + "name": "Z30S-A", + "type": "system" + }, + { + "id": 30004608, + "regionId": 10000058, + "name": "6VDT-H", + "type": "system" + }, + { + "id": 30004609, + "regionId": 10000058, + "name": "NDH-NV", + "type": "system" + }, + { + "id": 30004610, + "regionId": 10000058, + "name": "QV28-G", + "type": "system" + }, + { + "id": 30004611, + "regionId": 10000058, + "name": "15U-JY", + "type": "system" + }, + { + "id": 30004612, + "regionId": 10000058, + "name": "NY6-FH", + "type": "system" + }, + { + "id": 30004613, + "regionId": 10000058, + "name": "XJP-Y7", + "type": "system" + }, + { + "id": 30004614, + "regionId": 10000058, + "name": "AV-VB6", + "type": "system" + }, + { + "id": 30004615, + "regionId": 10000058, + "name": "HMF-9D", + "type": "system" + }, + { + "id": 30004616, + "regionId": 10000058, + "name": "7BX-6F", + "type": "system" + }, + { + "id": 30004617, + "regionId": 10000058, + "name": "YZ-LQL", + "type": "system" + }, + { + "id": 30004618, + "regionId": 10000058, + "name": "MN5N-X", + "type": "system" + }, + { + "id": 30004619, + "regionId": 10000058, + "name": "A-1CON", + "type": "system" + }, + { + "id": 30004620, + "regionId": 10000058, + "name": "75FA-Z", + "type": "system" + }, + { + "id": 30004621, + "regionId": 10000058, + "name": "WY-9LL", + "type": "system" + }, + { + "id": 30004622, + "regionId": 10000058, + "name": "D-Q04X", + "type": "system" + }, + { + "id": 30004623, + "regionId": 10000058, + "name": "SerpentisPrime", + "type": "system" + }, + { + "id": 30004624, + "regionId": 10000058, + "name": "P5-EFH", + "type": "system" + }, + { + "id": 30004625, + "regionId": 10000058, + "name": "L-A5XP", + "type": "system" + }, + { + "id": 30004626, + "regionId": 10000058, + "name": "D4KU-5", + "type": "system" + }, + { + "id": 30004627, + "regionId": 10000058, + "name": "YRNJ-8", + "type": "system" + }, + { + "id": 30004628, + "regionId": 10000058, + "name": "3ZTV-V", + "type": "system" + }, + { + "id": 30004629, + "regionId": 10000058, + "name": "9D6O-M", + "type": "system" + }, + { + "id": 30004630, + "regionId": 10000058, + "name": "LIWW-P", + "type": "system" + }, + { + "id": 30004631, + "regionId": 10000058, + "name": "G-UTHL", + "type": "system" + }, + { + "id": 30004632, + "regionId": 10000058, + "name": "38IA-E", + "type": "system" + }, + { + "id": 30004633, + "regionId": 10000058, + "name": "M-KXEH", + "type": "system" + }, + { + "id": 30004634, + "regionId": 10000058, + "name": "TU-Y2A", + "type": "system" + }, + { + "id": 30004635, + "regionId": 10000058, + "name": "7BIX-A", + "type": "system" + }, + { + "id": 30004636, + "regionId": 10000058, + "name": "I-CUVX", + "type": "system" + }, + { + "id": 30004637, + "regionId": 10000058, + "name": "J-RQMF", + "type": "system" + }, + { + "id": 30004638, + "regionId": 10000058, + "name": "TEG-SD", + "type": "system" + }, + { + "id": 30004639, + "regionId": 10000058, + "name": "14YI-D", + "type": "system" + }, + { + "id": 30004640, + "regionId": 10000058, + "name": "87XQ-0", + "type": "system" + }, + { + "id": 30004641, + "regionId": 10000058, + "name": "LJ-TZW", + "type": "system" + }, + { + "id": 30004642, + "regionId": 10000058, + "name": "KVN-36", + "type": "system" + }, + { + "id": 30004643, + "regionId": 10000058, + "name": "57-KJB", + "type": "system" + }, + { + "id": 30004644, + "regionId": 10000058, + "name": "V6-NY1", + "type": "system" + }, + { + "id": 30004645, + "regionId": 10000058, + "name": "OL3-78", + "type": "system" + }, + { + "id": 30004646, + "regionId": 10000058, + "name": "9DQW-W", + "type": "system" + }, + { + "id": 30004647, + "regionId": 10000058, + "name": "PXF-RF", + "type": "system" + }, + { + "id": 30004648, + "regionId": 10000058, + "name": "R-BGSU", + "type": "system" + }, + { + "id": 30004649, + "regionId": 10000058, + "name": "O-PNSN", + "type": "system" + }, + { + "id": 30004650, + "regionId": 10000058, + "name": "1-5GBW", + "type": "system" + }, + { + "id": 30004651, + "regionId": 10000058, + "name": "C-FER9", + "type": "system" + }, + { + "id": 30004652, + "regionId": 10000058, + "name": "F2-2C3", + "type": "system" + }, + { + "id": 30004653, + "regionId": 10000058, + "name": "F-88PJ", + "type": "system" + }, + { + "id": 30004654, + "regionId": 10000058, + "name": "ATQ-QS", + "type": "system" + }, + { + "id": 30004655, + "regionId": 10000058, + "name": "XUW-3X", + "type": "system" + }, + { + "id": 30004656, + "regionId": 10000058, + "name": "006-L3", + "type": "system" + }, + { + "id": 30004657, + "regionId": 10000058, + "name": "PB-0C1", + "type": "system" + }, + { + "id": 30004658, + "regionId": 10000058, + "name": "ZUE-NS", + "type": "system" + }, + { + "id": 30004659, + "regionId": 10000058, + "name": "L7-APB", + "type": "system" + }, + { + "id": 30004660, + "regionId": 10000058, + "name": "ZTS-4D", + "type": "system" + }, + { + "id": 30004661, + "regionId": 10000058, + "name": "4HS-CR", + "type": "system" + }, + { + "id": 30004662, + "regionId": 10000058, + "name": "WMH-SO", + "type": "system" + }, + { + "id": 30004663, + "regionId": 10000058, + "name": "LBGI-2", + "type": "system" + }, + { + "id": 30004664, + "regionId": 10000058, + "name": "G1CA-Y", + "type": "system" + }, + { + "id": 30004665, + "regionId": 10000058, + "name": "Y-2ANO", + "type": "system" + }, + { + "id": 30004666, + "regionId": 10000058, + "name": "Z-YN5Y", + "type": "system" + }, + { + "id": 30004667, + "regionId": 10000059, + "name": "JI-K5H", + "type": "system" + }, + { + "id": 30004668, + "regionId": 10000059, + "name": "33-JRO", + "type": "system" + }, + { + "id": 30004669, + "regionId": 10000059, + "name": "ARBX-9", + "type": "system" + }, + { + "id": 30004670, + "regionId": 10000059, + "name": "5-CSE3", + "type": "system" + }, + { + "id": 30004671, + "regionId": 10000059, + "name": "O-MCZR", + "type": "system" + }, + { + "id": 30004672, + "regionId": 10000059, + "name": "9T-APQ", + "type": "system" + }, + { + "id": 30004673, + "regionId": 10000059, + "name": "4Y-OBL", + "type": "system" + }, + { + "id": 30004674, + "regionId": 10000059, + "name": "0-MX34", + "type": "system" + }, + { + "id": 30004675, + "regionId": 10000059, + "name": "5AQ-5H", + "type": "system" + }, + { + "id": 30004676, + "regionId": 10000059, + "name": "T-ZFID", + "type": "system" + }, + { + "id": 30004677, + "regionId": 10000059, + "name": "0ZN7-G", + "type": "system" + }, + { + "id": 30004678, + "regionId": 10000059, + "name": "H8-ZTO", + "type": "system" + }, + { + "id": 30004679, + "regionId": 10000059, + "name": "YV-FDG", + "type": "system" + }, + { + "id": 30004680, + "regionId": 10000059, + "name": "LUL-WX", + "type": "system" + }, + { + "id": 30004681, + "regionId": 10000059, + "name": "8Q-UYU", + "type": "system" + }, + { + "id": 30004682, + "regionId": 10000059, + "name": "3PPT-9", + "type": "system" + }, + { + "id": 30004683, + "regionId": 10000059, + "name": "S-KU8B", + "type": "system" + }, + { + "id": 30004684, + "regionId": 10000059, + "name": "JK-GLL", + "type": "system" + }, + { + "id": 30004685, + "regionId": 10000059, + "name": "UAAU-C", + "type": "system" + }, + { + "id": 30004686, + "regionId": 10000059, + "name": "HHJD-5", + "type": "system" + }, + { + "id": 30004687, + "regionId": 10000059, + "name": "ZWV-GD", + "type": "system" + }, + { + "id": 30004688, + "regionId": 10000059, + "name": "1DDR-X", + "type": "system" + }, + { + "id": 30004689, + "regionId": 10000059, + "name": "LG-WA9", + "type": "system" + }, + { + "id": 30004690, + "regionId": 10000059, + "name": "AA-GWF", + "type": "system" + }, + { + "id": 30004691, + "regionId": 10000059, + "name": "O4T-Z5", + "type": "system" + }, + { + "id": 30004692, + "regionId": 10000059, + "name": "O-97ZG", + "type": "system" + }, + { + "id": 30004693, + "regionId": 10000059, + "name": "2I-520", + "type": "system" + }, + { + "id": 30004694, + "regionId": 10000059, + "name": "GQ2S-8", + "type": "system" + }, + { + "id": 30004695, + "regionId": 10000059, + "name": "0SUF-3", + "type": "system" + }, + { + "id": 30004696, + "regionId": 10000059, + "name": "G-M4GK", + "type": "system" + }, + { + "id": 30004697, + "regionId": 10000059, + "name": "G1D0-G", + "type": "system" + }, + { + "id": 30004698, + "regionId": 10000059, + "name": "KU3-BB", + "type": "system" + }, + { + "id": 30004699, + "regionId": 10000059, + "name": "O1Q-P1", + "type": "system" + }, + { + "id": 30004700, + "regionId": 10000059, + "name": "LD-2VL", + "type": "system" + }, + { + "id": 30004701, + "regionId": 10000059, + "name": "ZBY-0I", + "type": "system" + }, + { + "id": 30004702, + "regionId": 10000059, + "name": "MP5-KR", + "type": "system" + }, + { + "id": 30004703, + "regionId": 10000059, + "name": "O-N589", + "type": "system" + }, + { + "id": 30004704, + "regionId": 10000059, + "name": "ZDYA-G", + "type": "system" + }, + { + "id": 30004705, + "regionId": 10000059, + "name": "LX5K-W", + "type": "system" + }, + { + "id": 30004706, + "regionId": 10000060, + "name": "UHKL-N", + "type": "system" + }, + { + "id": 30004707, + "regionId": 10000060, + "name": "Z3V-1W", + "type": "system" + }, + { + "id": 30004708, + "regionId": 10000060, + "name": "A-ELE2", + "type": "system" + }, + { + "id": 30004709, + "regionId": 10000060, + "name": "KFIE-Z", + "type": "system" + }, + { + "id": 30004710, + "regionId": 10000060, + "name": "1DH-SX", + "type": "system" + }, + { + "id": 30004711, + "regionId": 10000060, + "name": "PR-8CA", + "type": "system" + }, + { + "id": 30004712, + "regionId": 10000060, + "name": "NOL-M9", + "type": "system" + }, + { + "id": 30004713, + "regionId": 10000060, + "name": "O-IOAI", + "type": "system" + }, + { + "id": 30004714, + "regionId": 10000060, + "name": "QX-LIJ", + "type": "system" + }, + { + "id": 30004715, + "regionId": 10000060, + "name": "HM-XR2", + "type": "system" + }, + { + "id": 30004716, + "regionId": 10000060, + "name": "4K-TRB", + "type": "system" + }, + { + "id": 30004717, + "regionId": 10000060, + "name": "AJI-MA", + "type": "system" + }, + { + "id": 30004718, + "regionId": 10000060, + "name": "FWST-8", + "type": "system" + }, + { + "id": 30004719, + "regionId": 10000060, + "name": "YZ9-F6", + "type": "system" + }, + { + "id": 30004720, + "regionId": 10000060, + "name": "0N-3RO", + "type": "system" + }, + { + "id": 30004721, + "regionId": 10000060, + "name": "G-TT5V", + "type": "system" + }, + { + "id": 30004722, + "regionId": 10000060, + "name": "319-3D", + "type": "system" + }, + { + "id": 30004723, + "regionId": 10000060, + "name": "I3Q-II", + "type": "system" + }, + { + "id": 30004724, + "regionId": 10000060, + "name": "RF-K9W", + "type": "system" + }, + { + "id": 30004725, + "regionId": 10000060, + "name": "E3OI-U", + "type": "system" + }, + { + "id": 30004726, + "regionId": 10000060, + "name": "IP6V-X", + "type": "system" + }, + { + "id": 30004727, + "regionId": 10000060, + "name": "R5-MM8", + "type": "system" + }, + { + "id": 30004728, + "regionId": 10000060, + "name": "1B-VKF", + "type": "system" + }, + { + "id": 30004729, + "regionId": 10000060, + "name": "T-J6HT", + "type": "system" + }, + { + "id": 30004730, + "regionId": 10000060, + "name": "D-W7F0", + "type": "system" + }, + { + "id": 30004731, + "regionId": 10000060, + "name": "JP4-AA", + "type": "system" + }, + { + "id": 30004732, + "regionId": 10000060, + "name": "FM-JK5", + "type": "system" + }, + { + "id": 30004733, + "regionId": 10000060, + "name": "PDE-U3", + "type": "system" + }, + { + "id": 30004734, + "regionId": 10000060, + "name": "23G-XC", + "type": "system" + }, + { + "id": 30004735, + "regionId": 10000060, + "name": "T5ZI-S", + "type": "system" + }, + { + "id": 30004736, + "regionId": 10000060, + "name": "4X0-8B", + "type": "system" + }, + { + "id": 30004737, + "regionId": 10000060, + "name": "Q-HESZ", + "type": "system" + }, + { + "id": 30004738, + "regionId": 10000060, + "name": "1-SMEB", + "type": "system" + }, + { + "id": 30004739, + "regionId": 10000060, + "name": "M5-CGW", + "type": "system" + }, + { + "id": 30004740, + "regionId": 10000060, + "name": "6Q-R50", + "type": "system" + }, + { + "id": 30004741, + "regionId": 10000060, + "name": "ZA9-PY", + "type": "system" + }, + { + "id": 30004742, + "regionId": 10000060, + "name": "RCI-VL", + "type": "system" + }, + { + "id": 30004743, + "regionId": 10000060, + "name": "MJXW-P", + "type": "system" + }, + { + "id": 30004744, + "regionId": 10000060, + "name": "QC-YX6", + "type": "system" + }, + { + "id": 30004745, + "regionId": 10000060, + "name": "T-M0FA", + "type": "system" + }, + { + "id": 30004746, + "regionId": 10000060, + "name": "4O-239", + "type": "system" + }, + { + "id": 30004747, + "regionId": 10000060, + "name": "LUA5-L", + "type": "system" + }, + { + "id": 30004748, + "regionId": 10000060, + "name": "T-IPZB", + "type": "system" + }, + { + "id": 30004749, + "regionId": 10000060, + "name": "Q-JQSG", + "type": "system" + }, + { + "id": 30004750, + "regionId": 10000060, + "name": "D-3GIQ", + "type": "system" + }, + { + "id": 30004751, + "regionId": 10000060, + "name": "K-6K16", + "type": "system" + }, + { + "id": 30004752, + "regionId": 10000060, + "name": "QY6-RK", + "type": "system" + }, + { + "id": 30004753, + "regionId": 10000060, + "name": "W-KQPI", + "type": "system" + }, + { + "id": 30004754, + "regionId": 10000060, + "name": "PUIG-F", + "type": "system" + }, + { + "id": 30004755, + "regionId": 10000060, + "name": "J-LPX7", + "type": "system" + }, + { + "id": 30004756, + "regionId": 10000060, + "name": "0-HDC8", + "type": "system" + }, + { + "id": 30004757, + "regionId": 10000060, + "name": "F-TE1T", + "type": "system" + }, + { + "id": 30004758, + "regionId": 10000060, + "name": "SVM-3K", + "type": "system" + }, + { + "id": 30004759, + "regionId": 10000060, + "name": "1DQ1-A", + "type": "system" + }, + { + "id": 30004760, + "regionId": 10000060, + "name": "8WA-Z6", + "type": "system" + }, + { + "id": 30004761, + "regionId": 10000060, + "name": "5BTK-M", + "type": "system" + }, + { + "id": 30004762, + "regionId": 10000060, + "name": "N-8YET", + "type": "system" + }, + { + "id": 30004763, + "regionId": 10000060, + "name": "Y-OMTZ", + "type": "system" + }, + { + "id": 30004764, + "regionId": 10000060, + "name": "3-DMQT", + "type": "system" + }, + { + "id": 30004765, + "regionId": 10000060, + "name": "MO-GZ5", + "type": "system" + }, + { + "id": 30004766, + "regionId": 10000060, + "name": "39P-1J", + "type": "system" + }, + { + "id": 30004767, + "regionId": 10000060, + "name": "HZAQ-W", + "type": "system" + }, + { + "id": 30004768, + "regionId": 10000060, + "name": "7G-QIG", + "type": "system" + }, + { + "id": 30004769, + "regionId": 10000060, + "name": "NIDJ-K", + "type": "system" + }, + { + "id": 30004770, + "regionId": 10000060, + "name": "PS-94K", + "type": "system" + }, + { + "id": 30004771, + "regionId": 10000060, + "name": "8RQJ-2", + "type": "system" + }, + { + "id": 30004772, + "regionId": 10000060, + "name": "KEE-N6", + "type": "system" + }, + { + "id": 30004773, + "regionId": 10000060, + "name": "M2-XFE", + "type": "system" + }, + { + "id": 30004774, + "regionId": 10000060, + "name": "5-CQDA", + "type": "system" + }, + { + "id": 30004775, + "regionId": 10000060, + "name": "I-E3TG", + "type": "system" + }, + { + "id": 30004776, + "regionId": 10000060, + "name": "S-6HHN", + "type": "system" + }, + { + "id": 30004777, + "regionId": 10000060, + "name": "ZXB-VC", + "type": "system" + }, + { + "id": 30004778, + "regionId": 10000060, + "name": "GY6A-L", + "type": "system" + }, + { + "id": 30004779, + "regionId": 10000060, + "name": "UEXO-Z", + "type": "system" + }, + { + "id": 30004780, + "regionId": 10000060, + "name": "9O-8W1", + "type": "system" + }, + { + "id": 30004781, + "regionId": 10000060, + "name": "8F-TK3", + "type": "system" + }, + { + "id": 30004782, + "regionId": 10000060, + "name": "PF-KUQ", + "type": "system" + }, + { + "id": 30004783, + "regionId": 10000060, + "name": "N8D9-Z", + "type": "system" + }, + { + "id": 30004784, + "regionId": 10000060, + "name": "F-9PXR", + "type": "system" + }, + { + "id": 30004785, + "regionId": 10000060, + "name": "Y5C-YD", + "type": "system" + }, + { + "id": 30004786, + "regionId": 10000060, + "name": "31X-RE", + "type": "system" + }, + { + "id": 30004787, + "regionId": 10000060, + "name": "Q-02UL", + "type": "system" + }, + { + "id": 30004788, + "regionId": 10000060, + "name": "7UTB-F", + "type": "system" + }, + { + "id": 30004789, + "regionId": 10000060, + "name": "5-6QW7", + "type": "system" + }, + { + "id": 30004790, + "regionId": 10000060, + "name": "7-K6UE", + "type": "system" + }, + { + "id": 30004791, + "regionId": 10000060, + "name": "C6Y-ZF", + "type": "system" + }, + { + "id": 30004792, + "regionId": 10000060, + "name": "6Z-CKS", + "type": "system" + }, + { + "id": 30004793, + "regionId": 10000060, + "name": "G-M5L3", + "type": "system" + }, + { + "id": 30004794, + "regionId": 10000060, + "name": "KBAK-I", + "type": "system" + }, + { + "id": 30004795, + "regionId": 10000060, + "name": "M-SRKS", + "type": "system" + }, + { + "id": 30004796, + "regionId": 10000060, + "name": "9GNS-2", + "type": "system" + }, + { + "id": 30004797, + "regionId": 10000060, + "name": "YAW-7M", + "type": "system" + }, + { + "id": 30004798, + "regionId": 10000060, + "name": "C3N-3S", + "type": "system" + }, + { + "id": 30004799, + "regionId": 10000060, + "name": "CX8-6K", + "type": "system" + }, + { + "id": 30004800, + "regionId": 10000060, + "name": "LWX-93", + "type": "system" + }, + { + "id": 30004801, + "regionId": 10000060, + "name": "1-2J4P", + "type": "system" + }, + { + "id": 30004802, + "regionId": 10000060, + "name": "M0O-JG", + "type": "system" + }, + { + "id": 30004803, + "regionId": 10000061, + "name": "WB-AYY", + "type": "system" + }, + { + "id": 30004804, + "regionId": 10000061, + "name": "BW-WJ2", + "type": "system" + }, + { + "id": 30004805, + "regionId": 10000061, + "name": "S4-9DN", + "type": "system" + }, + { + "id": 30004806, + "regionId": 10000061, + "name": "DT-PXH", + "type": "system" + }, + { + "id": 30004807, + "regionId": 10000061, + "name": "UALX-3", + "type": "system" + }, + { + "id": 30004808, + "regionId": 10000061, + "name": "3L3N-X", + "type": "system" + }, + { + "id": 30004809, + "regionId": 10000061, + "name": "Y-ORBJ", + "type": "system" + }, + { + "id": 30004810, + "regionId": 10000061, + "name": "6-IAFR", + "type": "system" + }, + { + "id": 30004811, + "regionId": 10000061, + "name": "4-P4FE", + "type": "system" + }, + { + "id": 30004812, + "regionId": 10000061, + "name": "RH0-EG", + "type": "system" + }, + { + "id": 30004813, + "regionId": 10000061, + "name": "D-9UEV", + "type": "system" + }, + { + "id": 30004814, + "regionId": 10000061, + "name": "H-HWQR", + "type": "system" + }, + { + "id": 30004815, + "regionId": 10000061, + "name": "QRBN-M", + "type": "system" + }, + { + "id": 30004816, + "regionId": 10000061, + "name": "78R-PI", + "type": "system" + }, + { + "id": 30004817, + "regionId": 10000061, + "name": "ZD1-Z2", + "type": "system" + }, + { + "id": 30004818, + "regionId": 10000061, + "name": "C-FD0D", + "type": "system" + }, + { + "id": 30004819, + "regionId": 10000061, + "name": "S-9RCJ", + "type": "system" + }, + { + "id": 30004820, + "regionId": 10000061, + "name": "ZMV9-A", + "type": "system" + }, + { + "id": 30004821, + "regionId": 10000061, + "name": "FE-6YQ", + "type": "system" + }, + { + "id": 30004822, + "regionId": 10000061, + "name": "W-16DY", + "type": "system" + }, + { + "id": 30004823, + "regionId": 10000061, + "name": "M-4KDB", + "type": "system" + }, + { + "id": 30004824, + "regionId": 10000061, + "name": "C3-0YD", + "type": "system" + }, + { + "id": 30004825, + "regionId": 10000061, + "name": "PDF-3Z", + "type": "system" + }, + { + "id": 30004826, + "regionId": 10000061, + "name": "9-MJVQ", + "type": "system" + }, + { + "id": 30004827, + "regionId": 10000061, + "name": "L2GN-K", + "type": "system" + }, + { + "id": 30004828, + "regionId": 10000061, + "name": "4-IT9G", + "type": "system" + }, + { + "id": 30004829, + "regionId": 10000061, + "name": "PEK-8Z", + "type": "system" + }, + { + "id": 30004830, + "regionId": 10000061, + "name": "2PG-KN", + "type": "system" + }, + { + "id": 30004831, + "regionId": 10000061, + "name": "ABE-M2", + "type": "system" + }, + { + "id": 30004832, + "regionId": 10000061, + "name": "IL-YTR", + "type": "system" + }, + { + "id": 30004833, + "regionId": 10000061, + "name": "KW-OAM", + "type": "system" + }, + { + "id": 30004834, + "regionId": 10000061, + "name": "U2U5-A", + "type": "system" + }, + { + "id": 30004835, + "regionId": 10000061, + "name": "EQWO-Y", + "type": "system" + }, + { + "id": 30004836, + "regionId": 10000061, + "name": "JK-Q77", + "type": "system" + }, + { + "id": 30004837, + "regionId": 10000061, + "name": "QI9-42", + "type": "system" + }, + { + "id": 30004838, + "regionId": 10000061, + "name": "YF-P4X", + "type": "system" + }, + { + "id": 30004839, + "regionId": 10000061, + "name": "JI1-SY", + "type": "system" + }, + { + "id": 30004840, + "regionId": 10000061, + "name": "X-1QGA", + "type": "system" + }, + { + "id": 30004841, + "regionId": 10000061, + "name": "CCE-0J", + "type": "system" + }, + { + "id": 30004842, + "regionId": 10000061, + "name": "T2-V8F", + "type": "system" + }, + { + "id": 30004843, + "regionId": 10000061, + "name": "0VK-43", + "type": "system" + }, + { + "id": 30004844, + "regionId": 10000061, + "name": "TY2X-C", + "type": "system" + }, + { + "id": 30004845, + "regionId": 10000061, + "name": "Q0G-L8", + "type": "system" + }, + { + "id": 30004846, + "regionId": 10000061, + "name": "Q5KZ-W", + "type": "system" + }, + { + "id": 30004847, + "regionId": 10000061, + "name": "WE-KK2", + "type": "system" + }, + { + "id": 30004848, + "regionId": 10000061, + "name": "B8HU-Z", + "type": "system" + }, + { + "id": 30004849, + "regionId": 10000061, + "name": "16AM-3", + "type": "system" + }, + { + "id": 30004850, + "regionId": 10000061, + "name": "A-REKV", + "type": "system" + }, + { + "id": 30004851, + "regionId": 10000061, + "name": "BB-EKF", + "type": "system" + }, + { + "id": 30004852, + "regionId": 10000061, + "name": "DZ6-I5", + "type": "system" + }, + { + "id": 30004853, + "regionId": 10000061, + "name": "R-XDKM", + "type": "system" + }, + { + "id": 30004854, + "regionId": 10000061, + "name": "G1-0UI", + "type": "system" + }, + { + "id": 30004855, + "regionId": 10000061, + "name": "QCDG-H", + "type": "system" + }, + { + "id": 30004856, + "regionId": 10000061, + "name": "XUDX-A", + "type": "system" + }, + { + "id": 30004857, + "regionId": 10000061, + "name": "QLU-P0", + "type": "system" + }, + { + "id": 30004858, + "regionId": 10000061, + "name": "OQTY-Z", + "type": "system" + }, + { + "id": 30004859, + "regionId": 10000061, + "name": "Y-EQ0C", + "type": "system" + }, + { + "id": 30004860, + "regionId": 10000061, + "name": "7M4C-F", + "type": "system" + }, + { + "id": 30004861, + "regionId": 10000061, + "name": "MS1-KJ", + "type": "system" + }, + { + "id": 30004862, + "regionId": 10000061, + "name": "8-BEW8", + "type": "system" + }, + { + "id": 30004863, + "regionId": 10000061, + "name": "NZW-ZO", + "type": "system" + }, + { + "id": 30004864, + "regionId": 10000061, + "name": "WSK-1A", + "type": "system" + }, + { + "id": 30004865, + "regionId": 10000061, + "name": "5-NZNW", + "type": "system" + }, + { + "id": 30004866, + "regionId": 10000061, + "name": "NR8S-Y", + "type": "system" + }, + { + "id": 30004867, + "regionId": 10000061, + "name": "F-ZBO0", + "type": "system" + }, + { + "id": 30004868, + "regionId": 10000061, + "name": "3Q1T-O", + "type": "system" + }, + { + "id": 30004869, + "regionId": 10000061, + "name": "8-4KME", + "type": "system" + }, + { + "id": 30004870, + "regionId": 10000061, + "name": "T6GY-Y", + "type": "system" + }, + { + "id": 30004871, + "regionId": 10000061, + "name": "R1-IMO", + "type": "system" + }, + { + "id": 30004872, + "regionId": 10000061, + "name": "7KIK-H", + "type": "system" + }, + { + "id": 30004873, + "regionId": 10000061, + "name": "B-6STA", + "type": "system" + }, + { + "id": 30004874, + "regionId": 10000061, + "name": "0P-U0Q", + "type": "system" + }, + { + "id": 30004875, + "regionId": 10000061, + "name": "XGH-SH", + "type": "system" + }, + { + "id": 30004876, + "regionId": 10000061, + "name": "G-D0N3", + "type": "system" + }, + { + "id": 30004877, + "regionId": 10000061, + "name": "T-AKQZ", + "type": "system" + }, + { + "id": 30004878, + "regionId": 10000061, + "name": "46DP-O", + "type": "system" + }, + { + "id": 30004879, + "regionId": 10000061, + "name": "9-980U", + "type": "system" + }, + { + "id": 30004880, + "regionId": 10000061, + "name": "EMIG-F", + "type": "system" + }, + { + "id": 30004881, + "regionId": 10000061, + "name": "M-RPN3", + "type": "system" + }, + { + "id": 30004882, + "regionId": 10000061, + "name": "ZO-P5K", + "type": "system" + }, + { + "id": 30004883, + "regionId": 10000061, + "name": "JV1V-O", + "type": "system" + }, + { + "id": 30004884, + "regionId": 10000062, + "name": "9MWZ-B", + "type": "system" + }, + { + "id": 30004885, + "regionId": 10000062, + "name": "LS-QLX", + "type": "system" + }, + { + "id": 30004886, + "regionId": 10000062, + "name": "S-XZHU", + "type": "system" + }, + { + "id": 30004887, + "regionId": 10000062, + "name": "CO-7BI", + "type": "system" + }, + { + "id": 30004888, + "regionId": 10000062, + "name": "ZJG-7D", + "type": "system" + }, + { + "id": 30004889, + "regionId": 10000062, + "name": "C-WPWH", + "type": "system" + }, + { + "id": 30004890, + "regionId": 10000062, + "name": "VULA-I", + "type": "system" + }, + { + "id": 30004891, + "regionId": 10000062, + "name": "R2TJ-1", + "type": "system" + }, + { + "id": 30004892, + "regionId": 10000062, + "name": "G-B3PR", + "type": "system" + }, + { + "id": 30004893, + "regionId": 10000062, + "name": "73-JQO", + "type": "system" + }, + { + "id": 30004894, + "regionId": 10000062, + "name": "XPUM-L", + "type": "system" + }, + { + "id": 30004895, + "regionId": 10000062, + "name": "KR8-27", + "type": "system" + }, + { + "id": 30004896, + "regionId": 10000062, + "name": "LQ-AHE", + "type": "system" + }, + { + "id": 30004897, + "regionId": 10000062, + "name": "LOI-L1", + "type": "system" + }, + { + "id": 30004898, + "regionId": 10000062, + "name": "Y-MSJN", + "type": "system" + }, + { + "id": 30004899, + "regionId": 10000062, + "name": "MJ-X5V", + "type": "system" + }, + { + "id": 30004900, + "regionId": 10000062, + "name": "3FKU-H", + "type": "system" + }, + { + "id": 30004901, + "regionId": 10000062, + "name": "M9-FIB", + "type": "system" + }, + { + "id": 30004902, + "regionId": 10000062, + "name": "D2EZ-X", + "type": "system" + }, + { + "id": 30004903, + "regionId": 10000062, + "name": "DJK-67", + "type": "system" + }, + { + "id": 30004904, + "regionId": 10000062, + "name": "AXDX-F", + "type": "system" + }, + { + "id": 30004905, + "regionId": 10000062, + "name": "J-4FNO", + "type": "system" + }, + { + "id": 30004906, + "regionId": 10000062, + "name": "PEM-LC", + "type": "system" + }, + { + "id": 30004907, + "regionId": 10000062, + "name": "X-EHHD", + "type": "system" + }, + { + "id": 30004908, + "regionId": 10000062, + "name": "6T3I-L", + "type": "system" + }, + { + "id": 30004909, + "regionId": 10000062, + "name": "QSF-EJ", + "type": "system" + }, + { + "id": 30004910, + "regionId": 10000062, + "name": "L-AS00", + "type": "system" + }, + { + "id": 30004911, + "regionId": 10000062, + "name": "NZPK-G", + "type": "system" + }, + { + "id": 30004912, + "regionId": 10000062, + "name": "K-1OY3", + "type": "system" + }, + { + "id": 30004913, + "regionId": 10000062, + "name": "MMUF-8", + "type": "system" + }, + { + "id": 30004914, + "regionId": 10000062, + "name": "99-0GS", + "type": "system" + }, + { + "id": 30004915, + "regionId": 10000062, + "name": "X-3AUU", + "type": "system" + }, + { + "id": 30004916, + "regionId": 10000062, + "name": "H90-C9", + "type": "system" + }, + { + "id": 30004917, + "regionId": 10000062, + "name": "0DD-MH", + "type": "system" + }, + { + "id": 30004918, + "regionId": 10000062, + "name": "RI-JB1", + "type": "system" + }, + { + "id": 30004919, + "regionId": 10000062, + "name": "NQH-MR", + "type": "system" + }, + { + "id": 30004920, + "regionId": 10000062, + "name": "1I6F-9", + "type": "system" + }, + { + "id": 30004921, + "regionId": 10000062, + "name": "Z-7OK1", + "type": "system" + }, + { + "id": 30004922, + "regionId": 10000062, + "name": "UEP0-A", + "type": "system" + }, + { + "id": 30004923, + "regionId": 10000062, + "name": "66-PMM", + "type": "system" + }, + { + "id": 30004924, + "regionId": 10000062, + "name": "OKEO-X", + "type": "system" + }, + { + "id": 30004925, + "regionId": 10000062, + "name": "7-8EOE", + "type": "system" + }, + { + "id": 30004926, + "regionId": 10000062, + "name": "7L9-ZC", + "type": "system" + }, + { + "id": 30004927, + "regionId": 10000063, + "name": "L-YMYU", + "type": "system" + }, + { + "id": 30004928, + "regionId": 10000063, + "name": "35-JWD", + "type": "system" + }, + { + "id": 30004929, + "regionId": 10000063, + "name": "F-M1FU", + "type": "system" + }, + { + "id": 30004930, + "regionId": 10000063, + "name": "0-NTIS", + "type": "system" + }, + { + "id": 30004931, + "regionId": 10000063, + "name": "VR-YIQ", + "type": "system" + }, + { + "id": 30004932, + "regionId": 10000063, + "name": "XZ-SKZ", + "type": "system" + }, + { + "id": 30004933, + "regionId": 10000063, + "name": "I6M-9U", + "type": "system" + }, + { + "id": 30004934, + "regionId": 10000063, + "name": "MG0-RD", + "type": "system" + }, + { + "id": 30004935, + "regionId": 10000063, + "name": "TPAR-G", + "type": "system" + }, + { + "id": 30004936, + "regionId": 10000063, + "name": "VYO-68", + "type": "system" + }, + { + "id": 30004937, + "regionId": 10000063, + "name": "TCAG-3", + "type": "system" + }, + { + "id": 30004938, + "regionId": 10000063, + "name": "UR-E46", + "type": "system" + }, + { + "id": 30004939, + "regionId": 10000063, + "name": "CW9-1Y", + "type": "system" + }, + { + "id": 30004940, + "regionId": 10000063, + "name": "1-NJLK", + "type": "system" + }, + { + "id": 30004941, + "regionId": 10000063, + "name": "Y-CWQY", + "type": "system" + }, + { + "id": 30004942, + "regionId": 10000063, + "name": "8KR9-5", + "type": "system" + }, + { + "id": 30004943, + "regionId": 10000063, + "name": "VQE-CN", + "type": "system" + }, + { + "id": 30004944, + "regionId": 10000063, + "name": "L5D-ZL", + "type": "system" + }, + { + "id": 30004945, + "regionId": 10000063, + "name": "G-C8QO", + "type": "system" + }, + { + "id": 30004946, + "regionId": 10000063, + "name": "EIMJ-M", + "type": "system" + }, + { + "id": 30004947, + "regionId": 10000063, + "name": "0A-KZ0", + "type": "system" + }, + { + "id": 30004948, + "regionId": 10000063, + "name": "E-DOF2", + "type": "system" + }, + { + "id": 30004949, + "regionId": 10000063, + "name": "48I1-X", + "type": "system" + }, + { + "id": 30004950, + "regionId": 10000063, + "name": "0OTX-J", + "type": "system" + }, + { + "id": 30004951, + "regionId": 10000063, + "name": "3OP-3E", + "type": "system" + }, + { + "id": 30004952, + "regionId": 10000063, + "name": "JZL-VB", + "type": "system" + }, + { + "id": 30004953, + "regionId": 10000063, + "name": "RJ3H-0", + "type": "system" + }, + { + "id": 30004954, + "regionId": 10000063, + "name": "08S-39", + "type": "system" + }, + { + "id": 30004955, + "regionId": 10000063, + "name": "ZU-MS3", + "type": "system" + }, + { + "id": 30004956, + "regionId": 10000063, + "name": "HIX4-H", + "type": "system" + }, + { + "id": 30004957, + "regionId": 10000063, + "name": "GR-J8B", + "type": "system" + }, + { + "id": 30004958, + "regionId": 10000063, + "name": "OY0-2T", + "type": "system" + }, + { + "id": 30004959, + "regionId": 10000063, + "name": "E2-RDQ", + "type": "system" + }, + { + "id": 30004960, + "regionId": 10000063, + "name": "TN25-J", + "type": "system" + }, + { + "id": 30004961, + "regionId": 10000063, + "name": "PA-VE3", + "type": "system" + }, + { + "id": 30004962, + "regionId": 10000063, + "name": "G-Q5JU", + "type": "system" + }, + { + "id": 30004963, + "regionId": 10000063, + "name": "RYQC-I", + "type": "system" + }, + { + "id": 30004964, + "regionId": 10000063, + "name": "1E-W5I", + "type": "system" + }, + { + "id": 30004965, + "regionId": 10000063, + "name": "Z-M5A1", + "type": "system" + }, + { + "id": 30004966, + "regionId": 10000063, + "name": "MVUO-F", + "type": "system" + }, + { + "id": 30004967, + "regionId": 10000064, + "name": "Luminaire", + "type": "system" + }, + { + "id": 30004968, + "regionId": 10000064, + "name": "Mies", + "type": "system" + }, + { + "id": 30004969, + "regionId": 10000064, + "name": "Oursulaert", + "type": "system" + }, + { + "id": 30004970, + "regionId": 10000064, + "name": "Renyn", + "type": "system" + }, + { + "id": 30004971, + "regionId": 10000064, + "name": "Duripant", + "type": "system" + }, + { + "id": 30004972, + "regionId": 10000064, + "name": "Algogille", + "type": "system" + }, + { + "id": 30004973, + "regionId": 10000064, + "name": "Caslemon", + "type": "system" + }, + { + "id": 30004974, + "regionId": 10000064, + "name": "Jolevier", + "type": "system" + }, + { + "id": 30004975, + "regionId": 10000064, + "name": "Mesybier", + "type": "system" + }, + { + "id": 30004976, + "regionId": 10000064, + "name": "Charmerout", + "type": "system" + }, + { + "id": 30004977, + "regionId": 10000064, + "name": "Yvangier", + "type": "system" + }, + { + "id": 30004978, + "regionId": 10000064, + "name": "Pemene", + "type": "system" + }, + { + "id": 30004979, + "regionId": 10000064, + "name": "Heydieles", + "type": "system" + }, + { + "id": 30004980, + "regionId": 10000064, + "name": "Fliet", + "type": "system" + }, + { + "id": 30004981, + "regionId": 10000064, + "name": "Actee", + "type": "system" + }, + { + "id": 30004982, + "regionId": 10000064, + "name": "Indregulle", + "type": "system" + }, + { + "id": 30004983, + "regionId": 10000064, + "name": "Amane", + "type": "system" + }, + { + "id": 30004984, + "regionId": 10000064, + "name": "Abune", + "type": "system" + }, + { + "id": 30004985, + "regionId": 10000064, + "name": "Deven", + "type": "system" + }, + { + "id": 30004986, + "regionId": 10000064, + "name": "Estaunitte", + "type": "system" + }, + { + "id": 30004987, + "regionId": 10000064, + "name": "Deninard", + "type": "system" + }, + { + "id": 30004988, + "regionId": 10000064, + "name": "Hulmate", + "type": "system" + }, + { + "id": 30004989, + "regionId": 10000064, + "name": "Annages", + "type": "system" + }, + { + "id": 30004990, + "regionId": 10000064, + "name": "Onne", + "type": "system" + }, + { + "id": 30004991, + "regionId": 10000064, + "name": "Vitrauze", + "type": "system" + }, + { + "id": 30004992, + "regionId": 10000064, + "name": "Palmon", + "type": "system" + }, + { + "id": 30004993, + "regionId": 10000064, + "name": "Villore", + "type": "system" + }, + { + "id": 30004994, + "regionId": 10000064, + "name": "Arant", + "type": "system" + }, + { + "id": 30004995, + "regionId": 10000064, + "name": "Allamotte", + "type": "system" + }, + { + "id": 30004996, + "regionId": 10000064, + "name": "Obalyu", + "type": "system" + }, + { + "id": 30004997, + "regionId": 10000064, + "name": "Vifrevaert", + "type": "system" + }, + { + "id": 30004998, + "regionId": 10000064, + "name": "Parts", + "type": "system" + }, + { + "id": 30004999, + "regionId": 10000064, + "name": "Ladistier", + "type": "system" + }, + { + "id": 30005000, + "regionId": 10000064, + "name": "OldManStar", + "type": "system" + }, + { + "id": 30005001, + "regionId": 10000064, + "name": "Arnon", + "type": "system" + }, + { + "id": 30005002, + "regionId": 10000064, + "name": "Laurvier", + "type": "system" + }, + { + "id": 30005003, + "regionId": 10000064, + "name": "Adirain", + "type": "system" + }, + { + "id": 30005004, + "regionId": 10000064, + "name": "Attyn", + "type": "system" + }, + { + "id": 30005005, + "regionId": 10000070, + "name": "Ignebaener", + "type": "system" + }, + { + "id": 30005006, + "regionId": 10000064, + "name": "Aere", + "type": "system" + }, + { + "id": 30005007, + "regionId": 10000064, + "name": "Lisbaetanne", + "type": "system" + }, + { + "id": 30005008, + "regionId": 10000064, + "name": "Aeschee", + "type": "system" + }, + { + "id": 30005009, + "regionId": 10000064, + "name": "Allebin", + "type": "system" + }, + { + "id": 30005010, + "regionId": 10000064, + "name": "Atlulle", + "type": "system" + }, + { + "id": 30005011, + "regionId": 10000064, + "name": "Droselory", + "type": "system" + }, + { + "id": 30005012, + "regionId": 10000064, + "name": "Haine", + "type": "system" + }, + { + "id": 30005013, + "regionId": 10000064, + "name": "Perckhevin", + "type": "system" + }, + { + "id": 30005014, + "regionId": 10000064, + "name": "Isenan", + "type": "system" + }, + { + "id": 30005015, + "regionId": 10000064, + "name": "Synchelle", + "type": "system" + }, + { + "id": 30005016, + "regionId": 10000064, + "name": "Wysalan", + "type": "system" + }, + { + "id": 30005017, + "regionId": 10000064, + "name": "Yona", + "type": "system" + }, + { + "id": 30005018, + "regionId": 10000064, + "name": "Noghere", + "type": "system" + }, + { + "id": 30005019, + "regionId": 10000064, + "name": "Aporulie", + "type": "system" + }, + { + "id": 30005020, + "regionId": 10000064, + "name": "Seyllin", + "type": "system" + }, + { + "id": 30005021, + "regionId": 10000064, + "name": "Adrel", + "type": "system" + }, + { + "id": 30005022, + "regionId": 10000064, + "name": "Ane", + "type": "system" + }, + { + "id": 30005023, + "regionId": 10000064, + "name": "Clorteler", + "type": "system" + }, + { + "id": 30005024, + "regionId": 10000064, + "name": "Atlangeins", + "type": "system" + }, + { + "id": 30005025, + "regionId": 10000064, + "name": "Derririntel", + "type": "system" + }, + { + "id": 30005026, + "regionId": 10000064, + "name": "Cat", + "type": "system" + }, + { + "id": 30005027, + "regionId": 10000064, + "name": "Ommare", + "type": "system" + }, + { + "id": 30005028, + "regionId": 10000064, + "name": "Andole", + "type": "system" + }, + { + "id": 30005029, + "regionId": 10000070, + "name": "Vale", + "type": "system" + }, + { + "id": 30005030, + "regionId": 10000065, + "name": "Fensi", + "type": "system" + }, + { + "id": 30005031, + "regionId": 10000065, + "name": "Nebian", + "type": "system" + }, + { + "id": 30005032, + "regionId": 10000065, + "name": "Khabara", + "type": "system" + }, + { + "id": 30005033, + "regionId": 10000065, + "name": "Jeni", + "type": "system" + }, + { + "id": 30005034, + "regionId": 10000065, + "name": "Bridi", + "type": "system" + }, + { + "id": 30005035, + "regionId": 10000065, + "name": "Ami", + "type": "system" + }, + { + "id": 30005036, + "regionId": 10000065, + "name": "Amdonen", + "type": "system" + }, + { + "id": 30005037, + "regionId": 10000065, + "name": "Mora", + "type": "system" + }, + { + "id": 30005038, + "regionId": 10000065, + "name": "Kor-AzorPrime", + "type": "system" + }, + { + "id": 30005039, + "regionId": 10000065, + "name": "Leva", + "type": "system" + }, + { + "id": 30005040, + "regionId": 10000065, + "name": "Nishah", + "type": "system" + }, + { + "id": 30005041, + "regionId": 10000065, + "name": "Masanuh", + "type": "system" + }, + { + "id": 30005042, + "regionId": 10000065, + "name": "Sehmy", + "type": "system" + }, + { + "id": 30005043, + "regionId": 10000065, + "name": "Nakregde", + "type": "system" + }, + { + "id": 30005044, + "regionId": 10000065, + "name": "Danyana", + "type": "system" + }, + { + "id": 30005045, + "regionId": 10000065, + "name": "Nahyeen", + "type": "system" + }, + { + "id": 30005046, + "regionId": 10000065, + "name": "Jinkah", + "type": "system" + }, + { + "id": 30005047, + "regionId": 10000065, + "name": "Nibainkier", + "type": "system" + }, + { + "id": 30005048, + "regionId": 10000065, + "name": "Polfaly", + "type": "system" + }, + { + "id": 30005049, + "regionId": 10000065, + "name": "Andrub", + "type": "system" + }, + { + "id": 30005050, + "regionId": 10000065, + "name": "Kulu", + "type": "system" + }, + { + "id": 30005051, + "regionId": 10000065, + "name": "Choga", + "type": "system" + }, + { + "id": 30005052, + "regionId": 10000065, + "name": "Soumi", + "type": "system" + }, + { + "id": 30005053, + "regionId": 10000065, + "name": "Imih", + "type": "system" + }, + { + "id": 30005054, + "regionId": 10000065, + "name": "Nare", + "type": "system" + }, + { + "id": 30005055, + "regionId": 10000065, + "name": "Zinkon", + "type": "system" + }, + { + "id": 30005056, + "regionId": 10000065, + "name": "Kizama", + "type": "system" + }, + { + "id": 30005057, + "regionId": 10000065, + "name": "Shaha", + "type": "system" + }, + { + "id": 30005058, + "regionId": 10000065, + "name": "Neesher", + "type": "system" + }, + { + "id": 30005059, + "regionId": 10000065, + "name": "Misha", + "type": "system" + }, + { + "id": 30005060, + "regionId": 10000065, + "name": "Ordion", + "type": "system" + }, + { + "id": 30005061, + "regionId": 10000065, + "name": "Perbhe", + "type": "system" + }, + { + "id": 30005062, + "regionId": 10000065, + "name": "Abath", + "type": "system" + }, + { + "id": 30005063, + "regionId": 10000065, + "name": "Schmaeel", + "type": "system" + }, + { + "id": 30005064, + "regionId": 10000065, + "name": "Mafra", + "type": "system" + }, + { + "id": 30005065, + "regionId": 10000065, + "name": "Arzi", + "type": "system" + }, + { + "id": 30005066, + "regionId": 10000065, + "name": "Kerying", + "type": "system" + }, + { + "id": 30005067, + "regionId": 10000065, + "name": "Zorenyen", + "type": "system" + }, + { + "id": 30005068, + "regionId": 10000065, + "name": "Oguser", + "type": "system" + }, + { + "id": 30005069, + "regionId": 10000065, + "name": "Nahol", + "type": "system" + }, + { + "id": 30005070, + "regionId": 10000065, + "name": "Tadadan", + "type": "system" + }, + { + "id": 30005071, + "regionId": 10000065, + "name": "Tralasa", + "type": "system" + }, + { + "id": 30005072, + "regionId": 10000065, + "name": "Gademam", + "type": "system" + }, + { + "id": 30005073, + "regionId": 10000065, + "name": "Pananan", + "type": "system" + }, + { + "id": 30005074, + "regionId": 10000065, + "name": "Daran", + "type": "system" + }, + { + "id": 30005075, + "regionId": 10000065, + "name": "Latari", + "type": "system" + }, + { + "id": 30005076, + "regionId": 10000065, + "name": "Shokal", + "type": "system" + }, + { + "id": 30005077, + "regionId": 10000065, + "name": "Atarli", + "type": "system" + }, + { + "id": 30005078, + "regionId": 10000065, + "name": "Keproh", + "type": "system" + }, + { + "id": 30005079, + "regionId": 10000065, + "name": "Zatamaka", + "type": "system" + }, + { + "id": 30005080, + "regionId": 10000065, + "name": "Rannoze", + "type": "system" + }, + { + "id": 30005081, + "regionId": 10000065, + "name": "Piri", + "type": "system" + }, + { + "id": 30005082, + "regionId": 10000065, + "name": "Enal", + "type": "system" + }, + { + "id": 30005083, + "regionId": 10000065, + "name": "Jedandan", + "type": "system" + }, + { + "id": 30005084, + "regionId": 10000065, + "name": "Miroona", + "type": "system" + }, + { + "id": 30005085, + "regionId": 10000065, + "name": "Ranni", + "type": "system" + }, + { + "id": 30005086, + "regionId": 10000065, + "name": "Arza", + "type": "system" + }, + { + "id": 30005087, + "regionId": 10000065, + "name": "Liparer", + "type": "system" + }, + { + "id": 30005088, + "regionId": 10000066, + "name": "B-B0ME", + "type": "system" + }, + { + "id": 30005089, + "regionId": 10000066, + "name": "TDP-T3", + "type": "system" + }, + { + "id": 30005090, + "regionId": 10000066, + "name": "H-HGGJ", + "type": "system" + }, + { + "id": 30005091, + "regionId": 10000066, + "name": "OJT-J3", + "type": "system" + }, + { + "id": 30005092, + "regionId": 10000066, + "name": "A9-F18", + "type": "system" + }, + { + "id": 30005093, + "regionId": 10000066, + "name": "DE-IHK", + "type": "system" + }, + { + "id": 30005094, + "regionId": 10000066, + "name": "AY9X-Q", + "type": "system" + }, + { + "id": 30005095, + "regionId": 10000066, + "name": "XU7-CH", + "type": "system" + }, + { + "id": 30005096, + "regionId": 10000066, + "name": "2V-ZHM", + "type": "system" + }, + { + "id": 30005097, + "regionId": 10000066, + "name": "V-3K7C", + "type": "system" + }, + { + "id": 30005098, + "regionId": 10000066, + "name": "AK-L0Z", + "type": "system" + }, + { + "id": 30005099, + "regionId": 10000066, + "name": "R-AG7W", + "type": "system" + }, + { + "id": 30005100, + "regionId": 10000066, + "name": "E-WMT7", + "type": "system" + }, + { + "id": 30005101, + "regionId": 10000066, + "name": "FLK-LJ", + "type": "system" + }, + { + "id": 30005102, + "regionId": 10000066, + "name": "0FG-KS", + "type": "system" + }, + { + "id": 30005103, + "regionId": 10000066, + "name": "F-5WYK", + "type": "system" + }, + { + "id": 30005104, + "regionId": 10000066, + "name": "EF-QZK", + "type": "system" + }, + { + "id": 30005105, + "regionId": 10000066, + "name": "RZ3O-K", + "type": "system" + }, + { + "id": 30005106, + "regionId": 10000066, + "name": "LW-YEW", + "type": "system" + }, + { + "id": 30005107, + "regionId": 10000066, + "name": "HB-KSF", + "type": "system" + }, + { + "id": 30005108, + "regionId": 10000066, + "name": "EH2I-P", + "type": "system" + }, + { + "id": 30005109, + "regionId": 10000066, + "name": "OP7-BP", + "type": "system" + }, + { + "id": 30005110, + "regionId": 10000066, + "name": "5ZU-VG", + "type": "system" + }, + { + "id": 30005111, + "regionId": 10000066, + "name": "6-1T6Z", + "type": "system" + }, + { + "id": 30005112, + "regionId": 10000066, + "name": "R-AYGT", + "type": "system" + }, + { + "id": 30005113, + "regionId": 10000066, + "name": "G-GRSZ", + "type": "system" + }, + { + "id": 30005114, + "regionId": 10000066, + "name": "6-8QLA", + "type": "system" + }, + { + "id": 30005115, + "regionId": 10000066, + "name": "5T-A3D", + "type": "system" + }, + { + "id": 30005116, + "regionId": 10000066, + "name": "H-FOYG", + "type": "system" + }, + { + "id": 30005117, + "regionId": 10000066, + "name": "1A8-6G", + "type": "system" + }, + { + "id": 30005118, + "regionId": 10000066, + "name": "PE-SAM", + "type": "system" + }, + { + "id": 30005119, + "regionId": 10000066, + "name": "RY-2FX", + "type": "system" + }, + { + "id": 30005120, + "regionId": 10000066, + "name": "K-3PQW", + "type": "system" + }, + { + "id": 30005121, + "regionId": 10000066, + "name": "4-M1TY", + "type": "system" + }, + { + "id": 30005122, + "regionId": 10000066, + "name": "C6CG-W", + "type": "system" + }, + { + "id": 30005123, + "regionId": 10000066, + "name": "H-29TM", + "type": "system" + }, + { + "id": 30005124, + "regionId": 10000066, + "name": "KOI8-Z", + "type": "system" + }, + { + "id": 30005125, + "regionId": 10000066, + "name": "D-QJR9", + "type": "system" + }, + { + "id": 30005126, + "regionId": 10000066, + "name": "U4-V3J", + "type": "system" + }, + { + "id": 30005127, + "regionId": 10000066, + "name": "B9N2-2", + "type": "system" + }, + { + "id": 30005128, + "regionId": 10000066, + "name": "6Q4-X6", + "type": "system" + }, + { + "id": 30005129, + "regionId": 10000066, + "name": "BEG-RL", + "type": "system" + }, + { + "id": 30005130, + "regionId": 10000066, + "name": "972C-1", + "type": "system" + }, + { + "id": 30005131, + "regionId": 10000066, + "name": "U-W436", + "type": "system" + }, + { + "id": 30005132, + "regionId": 10000066, + "name": "Z-ENUD", + "type": "system" + }, + { + "id": 30005133, + "regionId": 10000066, + "name": "MJ-5F9", + "type": "system" + }, + { + "id": 30005134, + "regionId": 10000066, + "name": "M5NO-B", + "type": "system" + }, + { + "id": 30005135, + "regionId": 10000066, + "name": "JZ-UQC", + "type": "system" + }, + { + "id": 30005136, + "regionId": 10000066, + "name": "JPEZ-R", + "type": "system" + }, + { + "id": 30005137, + "regionId": 10000066, + "name": "9WVY-F", + "type": "system" + }, + { + "id": 30005138, + "regionId": 10000066, + "name": "7M4-4C", + "type": "system" + }, + { + "id": 30005139, + "regionId": 10000066, + "name": "2-YO2K", + "type": "system" + }, + { + "id": 30005140, + "regionId": 10000066, + "name": "M-SG47", + "type": "system" + }, + { + "id": 30005141, + "regionId": 10000066, + "name": "SR-10Z", + "type": "system" + }, + { + "id": 30005142, + "regionId": 10000066, + "name": "W-KXEX", + "type": "system" + }, + { + "id": 30005143, + "regionId": 10000066, + "name": "TAL1-3", + "type": "system" + }, + { + "id": 30005144, + "regionId": 10000066, + "name": "QHY-RU", + "type": "system" + }, + { + "id": 30005145, + "regionId": 10000066, + "name": "7AH-SF", + "type": "system" + }, + { + "id": 30005146, + "regionId": 10000066, + "name": "7MMJ-3", + "type": "system" + }, + { + "id": 30005147, + "regionId": 10000066, + "name": "PVF-N9", + "type": "system" + }, + { + "id": 30005148, + "regionId": 10000066, + "name": "9-EXU9", + "type": "system" + }, + { + "id": 30005149, + "regionId": 10000066, + "name": "4-1ECP", + "type": "system" + }, + { + "id": 30005150, + "regionId": 10000066, + "name": "UYOC-1", + "type": "system" + }, + { + "id": 30005151, + "regionId": 10000066, + "name": "5-U12M", + "type": "system" + }, + { + "id": 30005152, + "regionId": 10000066, + "name": "5V-Q1R", + "type": "system" + }, + { + "id": 30005153, + "regionId": 10000066, + "name": "M4-KX5", + "type": "system" + }, + { + "id": 30005154, + "regionId": 10000066, + "name": "4F9Y-3", + "type": "system" + }, + { + "id": 30005155, + "regionId": 10000066, + "name": "MS-RXH", + "type": "system" + }, + { + "id": 30005156, + "regionId": 10000066, + "name": "U-3FKL", + "type": "system" + }, + { + "id": 30005157, + "regionId": 10000066, + "name": "0XN-SK", + "type": "system" + }, + { + "id": 30005158, + "regionId": 10000066, + "name": "J9A-BH", + "type": "system" + }, + { + "id": 30005159, + "regionId": 10000066, + "name": "4F6-VZ", + "type": "system" + }, + { + "id": 30005160, + "regionId": 10000066, + "name": "B-7LYC", + "type": "system" + }, + { + "id": 30005161, + "regionId": 10000066, + "name": "JM0A-4", + "type": "system" + }, + { + "id": 30005162, + "regionId": 10000066, + "name": "PT-2KR", + "type": "system" + }, + { + "id": 30005163, + "regionId": 10000066, + "name": "L-POLO", + "type": "system" + }, + { + "id": 30005164, + "regionId": 10000066, + "name": "8B-A4E", + "type": "system" + }, + { + "id": 30005165, + "regionId": 10000066, + "name": "49V-E4", + "type": "system" + }, + { + "id": 30005166, + "regionId": 10000066, + "name": "3LL-O0", + "type": "system" + }, + { + "id": 30005167, + "regionId": 10000066, + "name": "A1F-22", + "type": "system" + }, + { + "id": 30005168, + "regionId": 10000066, + "name": "9-ZA4Z", + "type": "system" + }, + { + "id": 30005169, + "regionId": 10000066, + "name": "IU-E9T", + "type": "system" + }, + { + "id": 30005170, + "regionId": 10000066, + "name": "NGM-OK", + "type": "system" + }, + { + "id": 30005171, + "regionId": 10000066, + "name": "O-QKSM", + "type": "system" + }, + { + "id": 30005172, + "regionId": 10000066, + "name": "QKQ3-L", + "type": "system" + }, + { + "id": 30005173, + "regionId": 10000066, + "name": "VWES-Y", + "type": "system" + }, + { + "id": 30005174, + "regionId": 10000066, + "name": "SY-OLX", + "type": "system" + }, + { + "id": 30005175, + "regionId": 10000066, + "name": "XY-ZCI", + "type": "system" + }, + { + "id": 30005176, + "regionId": 10000066, + "name": "7JRA-G", + "type": "system" + }, + { + "id": 30005177, + "regionId": 10000066, + "name": "W-CSFY", + "type": "system" + }, + { + "id": 30005178, + "regionId": 10000066, + "name": "PFV-ZH", + "type": "system" + }, + { + "id": 30005179, + "regionId": 10000066, + "name": "L5Y4-M", + "type": "system" + }, + { + "id": 30005180, + "regionId": 10000066, + "name": "9IZ-HU", + "type": "system" + }, + { + "id": 30005181, + "regionId": 10000066, + "name": "OBV-YC", + "type": "system" + }, + { + "id": 30005182, + "regionId": 10000066, + "name": "2AUL-X", + "type": "system" + }, + { + "id": 30005183, + "regionId": 10000066, + "name": "F-HQWV", + "type": "system" + }, + { + "id": 30005184, + "regionId": 10000066, + "name": "F-A3TR", + "type": "system" + }, + { + "id": 30005185, + "regionId": 10000066, + "name": "PA-ALN", + "type": "system" + }, + { + "id": 30005186, + "regionId": 10000066, + "name": "01B-88", + "type": "system" + }, + { + "id": 30005187, + "regionId": 10000066, + "name": "F18-AY", + "type": "system" + }, + { + "id": 30005188, + "regionId": 10000066, + "name": "RZ8A-P", + "type": "system" + }, + { + "id": 30005189, + "regionId": 10000066, + "name": "MTO2-2", + "type": "system" + }, + { + "id": 30005190, + "regionId": 10000066, + "name": "C3I-D5", + "type": "system" + }, + { + "id": 30005191, + "regionId": 10000066, + "name": "0-U2M4", + "type": "system" + }, + { + "id": 30005192, + "regionId": 10000067, + "name": "Shera", + "type": "system" + }, + { + "id": 30005193, + "regionId": 10000067, + "name": "Lor", + "type": "system" + }, + { + "id": 30005194, + "regionId": 10000067, + "name": "Cleyd", + "type": "system" + }, + { + "id": 30005195, + "regionId": 10000067, + "name": "Vecamia", + "type": "system" + }, + { + "id": 30005196, + "regionId": 10000067, + "name": "Ahbazon", + "type": "system" + }, + { + "id": 30005197, + "regionId": 10000067, + "name": "Atreen", + "type": "system" + }, + { + "id": 30005198, + "regionId": 10000067, + "name": "Pakhshi", + "type": "system" + }, + { + "id": 30005199, + "regionId": 10000067, + "name": "Tar", + "type": "system" + }, + { + "id": 30005200, + "regionId": 10000067, + "name": "Tekaima", + "type": "system" + }, + { + "id": 30005201, + "regionId": 10000067, + "name": "Manarq", + "type": "system" + }, + { + "id": 30005202, + "regionId": 10000067, + "name": "Emsar", + "type": "system" + }, + { + "id": 30005203, + "regionId": 10000067, + "name": "Ourapheh", + "type": "system" + }, + { + "id": 30005204, + "regionId": 10000067, + "name": "Yulai", + "type": "system" + }, + { + "id": 30005205, + "regionId": 10000067, + "name": "Tarta", + "type": "system" + }, + { + "id": 30005206, + "regionId": 10000067, + "name": "Kemerk", + "type": "system" + }, + { + "id": 30005207, + "regionId": 10000067, + "name": "Nardiarang", + "type": "system" + }, + { + "id": 30005208, + "regionId": 10000067, + "name": "Ziasad", + "type": "system" + }, + { + "id": 30005209, + "regionId": 10000067, + "name": "Sibe", + "type": "system" + }, + { + "id": 30005210, + "regionId": 10000067, + "name": "Makhwasan", + "type": "system" + }, + { + "id": 30005211, + "regionId": 10000067, + "name": "Zarer", + "type": "system" + }, + { + "id": 30005212, + "regionId": 10000067, + "name": "Toon", + "type": "system" + }, + { + "id": 30005213, + "regionId": 10000067, + "name": "Hesarid", + "type": "system" + }, + { + "id": 30005214, + "regionId": 10000067, + "name": "Ashokon", + "type": "system" + }, + { + "id": 30005215, + "regionId": 10000067, + "name": "Avyuh", + "type": "system" + }, + { + "id": 30005216, + "regionId": 10000067, + "name": "Apanake", + "type": "system" + }, + { + "id": 30005217, + "regionId": 10000067, + "name": "Sheroo", + "type": "system" + }, + { + "id": 30005218, + "regionId": 10000067, + "name": "Sosh", + "type": "system" + }, + { + "id": 30005219, + "regionId": 10000067, + "name": "Sigga", + "type": "system" + }, + { + "id": 30005220, + "regionId": 10000067, + "name": "Keseya", + "type": "system" + }, + { + "id": 30005221, + "regionId": 10000067, + "name": "Zoohen", + "type": "system" + }, + { + "id": 30005222, + "regionId": 10000067, + "name": "Serren", + "type": "system" + }, + { + "id": 30005223, + "regionId": 10000067, + "name": "Hadji", + "type": "system" + }, + { + "id": 30005224, + "regionId": 10000067, + "name": "Assez", + "type": "system" + }, + { + "id": 30005225, + "regionId": 10000067, + "name": "Alal", + "type": "system" + }, + { + "id": 30005226, + "regionId": 10000067, + "name": "Dom-Aphis", + "type": "system" + }, + { + "id": 30005227, + "regionId": 10000067, + "name": "Iderion", + "type": "system" + }, + { + "id": 30005228, + "regionId": 10000067, + "name": "Chamja", + "type": "system" + }, + { + "id": 30005229, + "regionId": 10000067, + "name": "Diaderi", + "type": "system" + }, + { + "id": 30005230, + "regionId": 10000067, + "name": "Manatirid", + "type": "system" + }, + { + "id": 30005231, + "regionId": 10000067, + "name": "Pashanai", + "type": "system" + }, + { + "id": 30005232, + "regionId": 10000067, + "name": "Pamah", + "type": "system" + }, + { + "id": 30005233, + "regionId": 10000067, + "name": "Leran", + "type": "system" + }, + { + "id": 30005234, + "regionId": 10000067, + "name": "Beke", + "type": "system" + }, + { + "id": 30005235, + "regionId": 10000067, + "name": "Malma", + "type": "system" + }, + { + "id": 30005236, + "regionId": 10000067, + "name": "Noranim", + "type": "system" + }, + { + "id": 30005237, + "regionId": 10000067, + "name": "Chej", + "type": "system" + }, + { + "id": 30005238, + "regionId": 10000067, + "name": "Menai", + "type": "system" + }, + { + "id": 30005239, + "regionId": 10000067, + "name": "Aring", + "type": "system" + }, + { + "id": 30005240, + "regionId": 10000067, + "name": "Gayar", + "type": "system" + }, + { + "id": 30005241, + "regionId": 10000067, + "name": "Petidu", + "type": "system" + }, + { + "id": 30005242, + "regionId": 10000067, + "name": "Naka", + "type": "system" + }, + { + "id": 30005243, + "regionId": 10000067, + "name": "Madomi", + "type": "system" + }, + { + "id": 30005244, + "regionId": 10000067, + "name": "Gergish", + "type": "system" + }, + { + "id": 30005245, + "regionId": 10000067, + "name": "Tahli", + "type": "system" + }, + { + "id": 30005246, + "regionId": 10000067, + "name": "Imya", + "type": "system" + }, + { + "id": 30005247, + "regionId": 10000067, + "name": "Kobam", + "type": "system" + }, + { + "id": 30005248, + "regionId": 10000067, + "name": "Hirizan", + "type": "system" + }, + { + "id": 30005249, + "regionId": 10000067, + "name": "Anyed", + "type": "system" + }, + { + "id": 30005250, + "regionId": 10000067, + "name": "Habu", + "type": "system" + }, + { + "id": 30005251, + "regionId": 10000067, + "name": "Asanot", + "type": "system" + }, + { + "id": 30005252, + "regionId": 10000067, + "name": "Anzalaisio", + "type": "system" + }, + { + "id": 30005253, + "regionId": 10000067, + "name": "Chiga", + "type": "system" + }, + { + "id": 30005254, + "regionId": 10000067, + "name": "Abhan", + "type": "system" + }, + { + "id": 30005255, + "regionId": 10000067, + "name": "Saphthar", + "type": "system" + }, + { + "id": 30005256, + "regionId": 10000067, + "name": "Itrin", + "type": "system" + }, + { + "id": 30005257, + "regionId": 10000067, + "name": "Bantish", + "type": "system" + }, + { + "id": 30005258, + "regionId": 10000067, + "name": "Korridi", + "type": "system" + }, + { + "id": 30005259, + "regionId": 10000067, + "name": "Lela", + "type": "system" + }, + { + "id": 30005260, + "regionId": 10000067, + "name": "Keri", + "type": "system" + }, + { + "id": 30005261, + "regionId": 10000067, + "name": "Antem", + "type": "system" + }, + { + "id": 30005262, + "regionId": 10000067, + "name": "Djimame", + "type": "system" + }, + { + "id": 30005263, + "regionId": 10000067, + "name": "Mozzidit", + "type": "system" + }, + { + "id": 30005264, + "regionId": 10000067, + "name": "Angur", + "type": "system" + }, + { + "id": 30005265, + "regionId": 10000067, + "name": "Hangond", + "type": "system" + }, + { + "id": 30005266, + "regionId": 10000067, + "name": "Access", + "type": "system" + }, + { + "id": 30005267, + "regionId": 10000067, + "name": "Bherdasopt", + "type": "system" + }, + { + "id": 30005268, + "regionId": 10000067, + "name": "Gonditsa", + "type": "system" + }, + { + "id": 30005269, + "regionId": 10000067, + "name": "Simela", + "type": "system" + }, + { + "id": 30005270, + "regionId": 10000067, + "name": "Shalne", + "type": "system" + }, + { + "id": 30005271, + "regionId": 10000067, + "name": "Shapisin", + "type": "system" + }, + { + "id": 30005272, + "regionId": 10000067, + "name": "Olin", + "type": "system" + }, + { + "id": 30005273, + "regionId": 10000067, + "name": "Galnafsad", + "type": "system" + }, + { + "id": 30005274, + "regionId": 10000067, + "name": "Otakod", + "type": "system" + }, + { + "id": 30005275, + "regionId": 10000067, + "name": "Azedi", + "type": "system" + }, + { + "id": 30005276, + "regionId": 10000067, + "name": "Sharza", + "type": "system" + }, + { + "id": 30005277, + "regionId": 10000067, + "name": "Pirna", + "type": "system" + }, + { + "id": 30005278, + "regionId": 10000067, + "name": "Seshi", + "type": "system" + }, + { + "id": 30005279, + "regionId": 10000067, + "name": "Anara", + "type": "system" + }, + { + "id": 30005280, + "regionId": 10000067, + "name": "Partod", + "type": "system" + }, + { + "id": 30005281, + "regionId": 10000067, + "name": "Exit", + "type": "system" + }, + { + "id": 30005282, + "regionId": 10000067, + "name": "Gateway", + "type": "system" + }, + { + "id": 30005283, + "regionId": 10000067, + "name": "CentralPoint", + "type": "system" + }, + { + "id": 30005284, + "regionId": 10000067, + "name": "PromisedLand", + "type": "system" + }, + { + "id": 30005285, + "regionId": 10000067, + "name": "DeadEnd", + "type": "system" + }, + { + "id": 30005286, + "regionId": 10000067, + "name": "NewEden", + "type": "system" + }, + { + "id": 30005287, + "regionId": 10000067, + "name": "Canard", + "type": "system" + }, + { + "id": 30005288, + "regionId": 10000067, + "name": "Girani-Fa", + "type": "system" + }, + { + "id": 30005289, + "regionId": 10000067, + "name": "Nasreri", + "type": "system" + }, + { + "id": 30005290, + "regionId": 10000067, + "name": "Heorah", + "type": "system" + }, + { + "id": 30005291, + "regionId": 10000067, + "name": "Ebasez", + "type": "system" + }, + { + "id": 30005292, + "regionId": 10000067, + "name": "Agal", + "type": "system" + }, + { + "id": 30005293, + "regionId": 10000067, + "name": "Doza", + "type": "system" + }, + { + "id": 30005294, + "regionId": 10000067, + "name": "Bania", + "type": "system" + }, + { + "id": 30005295, + "regionId": 10000068, + "name": "Murethand", + "type": "system" + }, + { + "id": 30005296, + "regionId": 10000068, + "name": "Melmaniel", + "type": "system" + }, + { + "id": 30005297, + "regionId": 10000068, + "name": "Ouelletta", + "type": "system" + }, + { + "id": 30005298, + "regionId": 10000068, + "name": "Costolle", + "type": "system" + }, + { + "id": 30005299, + "regionId": 10000068, + "name": "Muetralle", + "type": "system" + }, + { + "id": 30005300, + "regionId": 10000068, + "name": "Loes", + "type": "system" + }, + { + "id": 30005301, + "regionId": 10000068, + "name": "Tourier", + "type": "system" + }, + { + "id": 30005302, + "regionId": 10000068, + "name": "Alenia", + "type": "system" + }, + { + "id": 30005303, + "regionId": 10000068, + "name": "Merolles", + "type": "system" + }, + { + "id": 30005304, + "regionId": 10000068, + "name": "Alentene", + "type": "system" + }, + { + "id": 30005305, + "regionId": 10000068, + "name": "Cistuvaert", + "type": "system" + }, + { + "id": 30005306, + "regionId": 10000068, + "name": "Vaere", + "type": "system" + }, + { + "id": 30005307, + "regionId": 10000068, + "name": "Aidart", + "type": "system" + }, + { + "id": 30005308, + "regionId": 10000068, + "name": "Jufvitte", + "type": "system" + }, + { + "id": 30005309, + "regionId": 10000068, + "name": "Ansalle", + "type": "system" + }, + { + "id": 30005310, + "regionId": 10000068, + "name": "Scheenins", + "type": "system" + }, + { + "id": 30005311, + "regionId": 10000068, + "name": "Amygnon", + "type": "system" + }, + { + "id": 30005312, + "regionId": 10000068, + "name": "Gisleres", + "type": "system" + }, + { + "id": 30005313, + "regionId": 10000068, + "name": "Ellmay", + "type": "system" + }, + { + "id": 30005314, + "regionId": 10000068, + "name": "Theruesse", + "type": "system" + }, + { + "id": 30005315, + "regionId": 10000068, + "name": "Eletta", + "type": "system" + }, + { + "id": 30005316, + "regionId": 10000068, + "name": "Luse", + "type": "system" + }, + { + "id": 30005317, + "regionId": 10000068, + "name": "Ekuenbiron", + "type": "system" + }, + { + "id": 30005318, + "regionId": 10000068, + "name": "Vay", + "type": "system" + }, + { + "id": 30005319, + "regionId": 10000068, + "name": "Raneilles", + "type": "system" + }, + { + "id": 30005320, + "regionId": 10000068, + "name": "Hevrice", + "type": "system" + }, + { + "id": 30005321, + "regionId": 10000068, + "name": "Jovainnon", + "type": "system" + }, + { + "id": 30005322, + "regionId": 10000068, + "name": "Scolluzer", + "type": "system" + }, + { + "id": 30005323, + "regionId": 10000068, + "name": "Sortet", + "type": "system" + }, + { + "id": 30005324, + "regionId": 10000068, + "name": "Claulenne", + "type": "system" + }, + { + "id": 30005325, + "regionId": 10000068, + "name": "Masalle", + "type": "system" + }, + { + "id": 30005326, + "regionId": 10000068, + "name": "Annelle", + "type": "system" + }, + { + "id": 30005327, + "regionId": 10000068, + "name": "Chesiette", + "type": "system" + }, + { + "id": 30005328, + "regionId": 10000068, + "name": "Reblier", + "type": "system" + }, + { + "id": 30005329, + "regionId": 10000068, + "name": "Amoderia", + "type": "system" + }, + { + "id": 30005330, + "regionId": 10000068, + "name": "Arraron", + "type": "system" + }, + { + "id": 30005331, + "regionId": 10000068, + "name": "Chantrousse", + "type": "system" + }, + { + "id": 30005332, + "regionId": 10000068, + "name": "Osmomonne", + "type": "system" + }, + { + "id": 30005333, + "regionId": 10000068, + "name": "Stou", + "type": "system" + }, + { + "id": 30005334, + "regionId": 10000068, + "name": "Tierijev", + "type": "system" + }, + { + "id": 30010141, + "regionId": 10000070, + "name": "Sakenta", + "type": "system" + }, + { + "id": 30011392, + "regionId": 10000016, + "name": "Jouvulen", + "type": "system" + }, + { + "id": 30011407, + "regionId": 10000016, + "name": "Akiainavas", + "type": "system" + }, + { + "id": 30011672, + "regionId": 10000020, + "name": "Kerepa", + "type": "system" + }, + { + "id": 30012505, + "regionId": 10000030, + "name": "Malukker", + "type": "system" + }, + { + "id": 30012547, + "regionId": 10000030, + "name": "Hadaugago", + "type": "system" + }, + { + "id": 30012715, + "regionId": 10000032, + "name": "Odotte", + "type": "system" + }, + { + "id": 30013410, + "regionId": 10000042, + "name": "Abrat", + "type": "system" + }, + { + "id": 30013489, + "regionId": 10000043, + "name": "Deepari", + "type": "system" + }, + { + "id": 30014971, + "regionId": 10000064, + "name": "Couster", + "type": "system" + }, + { + "id": 30015042, + "regionId": 10000052, + "name": "Akhwa", + "type": "system" + }, + { + "id": 30015305, + "regionId": 10000068, + "name": "Adallier", + "type": "system" + }, + { + "id": 30020141, + "regionId": 10000070, + "name": "Senda", + "type": "system" + }, + { + "id": 30021392, + "regionId": 10000016, + "name": "Kappas", + "type": "system" + }, + { + "id": 30021407, + "regionId": 10000002, + "name": "Aokannitoh", + "type": "system" + }, + { + "id": 30021672, + "regionId": 10000020, + "name": "Pasha", + "type": "system" + }, + { + "id": 30022505, + "regionId": 10000042, + "name": "Orgron", + "type": "system" + }, + { + "id": 30022547, + "regionId": 10000030, + "name": "Krilmokenur", + "type": "system" + }, + { + "id": 30022715, + "regionId": 10000032, + "name": "Oirtlair", + "type": "system" + }, + { + "id": 30023410, + "regionId": 10000042, + "name": "Embod", + "type": "system" + }, + { + "id": 30023489, + "regionId": 10000043, + "name": "Fora", + "type": "system" + }, + { + "id": 30024971, + "regionId": 10000064, + "name": "Hecarrin", + "type": "system" + }, + { + "id": 30025042, + "regionId": 10000065, + "name": "Annad", + "type": "system" + }, + { + "id": 30025305, + "regionId": 10000068, + "name": "Channace", + "type": "system" + }, + { + "id": 30030141, + "regionId": 10000002, + "name": "Uitra", + "type": "system" + }, + { + "id": 30031392, + "regionId": 10000070, + "name": "Komo", + "type": "system" + }, + { + "id": 30031407, + "regionId": 10000016, + "name": "Hitanishio", + "type": "system" + }, + { + "id": 30031672, + "regionId": 10000020, + "name": "Safilbab", + "type": "system" + }, + { + "id": 30032505, + "regionId": 10000030, + "name": "Todeko", + "type": "system" + }, + { + "id": 30032547, + "regionId": 10000030, + "name": "Larkugei", + "type": "system" + }, + { + "id": 30032715, + "regionId": 10000032, + "name": "Olelon", + "type": "system" + }, + { + "id": 30033410, + "regionId": 10000042, + "name": "Erego", + "type": "system" + }, + { + "id": 30033489, + "regionId": 10000043, + "name": "Hanan", + "type": "system" + }, + { + "id": 30034971, + "regionId": 10000064, + "name": "Henebene", + "type": "system" + }, + { + "id": 30035042, + "regionId": 10000065, + "name": "Chaktaren", + "type": "system" + }, + { + "id": 30035305, + "regionId": 10000068, + "name": "Clacille", + "type": "system" + }, + { + "id": 30040141, + "regionId": 10000070, + "name": "Urhinichi", + "type": "system" + }, + { + "id": 30041392, + "regionId": 10000033, + "name": "Laah", + "type": "system" + }, + { + "id": 30041407, + "regionId": 10000016, + "name": "Ichinumi", + "type": "system" + }, + { + "id": 30041672, + "regionId": 10000020, + "name": "Seitam", + "type": "system" + }, + { + "id": 30042505, + "regionId": 10000030, + "name": "Usteli", + "type": "system" + }, + { + "id": 30042547, + "regionId": 10000030, + "name": "Loguttur", + "type": "system" + }, + { + "id": 30042715, + "regionId": 10000032, + "name": "Trossere", + "type": "system" + }, + { + "id": 30043410, + "regionId": 10000042, + "name": "Fildar", + "type": "system" + }, + { + "id": 30043489, + "regionId": 10000043, + "name": "Horir", + "type": "system" + }, + { + "id": 30044971, + "regionId": 10000064, + "name": "Mesokel", + "type": "system" + }, + { + "id": 30045042, + "regionId": 10000065, + "name": "Conoban", + "type": "system" + }, + { + "id": 30045305, + "regionId": 10000068, + "name": "Clellinon", + "type": "system" + }, + { + "id": 30045306, + "regionId": 10000069, + "name": "Hykanima", + "type": "system" + }, + { + "id": 30045307, + "regionId": 10000069, + "name": "Okagaiken", + "type": "system" + }, + { + "id": 30045308, + "regionId": 10000069, + "name": "Kehjari", + "type": "system" + }, + { + "id": 30045309, + "regionId": 10000069, + "name": "Villasen", + "type": "system" + }, + { + "id": 30045310, + "regionId": 10000069, + "name": "Sarenemi", + "type": "system" + }, + { + "id": 30045311, + "regionId": 10000069, + "name": "Ashitsu", + "type": "system" + }, + { + "id": 30045312, + "regionId": 10000069, + "name": "Korasen", + "type": "system" + }, + { + "id": 30045313, + "regionId": 10000069, + "name": "Ienakkamon", + "type": "system" + }, + { + "id": 30045314, + "regionId": 10000069, + "name": "Kinakka", + "type": "system" + }, + { + "id": 30045315, + "regionId": 10000069, + "name": "Raihbaka", + "type": "system" + }, + { + "id": 30045316, + "regionId": 10000069, + "name": "Innia", + "type": "system" + }, + { + "id": 30045317, + "regionId": 10000069, + "name": "Iralaja", + "type": "system" + }, + { + "id": 30045318, + "regionId": 10000069, + "name": "Martoh", + "type": "system" + }, + { + "id": 30045319, + "regionId": 10000069, + "name": "Eha", + "type": "system" + }, + { + "id": 30045320, + "regionId": 10000069, + "name": "Pavanakka", + "type": "system" + }, + { + "id": 30045321, + "regionId": 10000069, + "name": "Uchomida", + "type": "system" + }, + { + "id": 30045322, + "regionId": 10000069, + "name": "Samanuni", + "type": "system" + }, + { + "id": 30045323, + "regionId": 10000069, + "name": "Astoh", + "type": "system" + }, + { + "id": 30045324, + "regionId": 10000069, + "name": "Onnamon", + "type": "system" + }, + { + "id": 30045325, + "regionId": 10000069, + "name": "Rohamaa", + "type": "system" + }, + { + "id": 30045326, + "regionId": 10000069, + "name": "Uuhulanen", + "type": "system" + }, + { + "id": 30045327, + "regionId": 10000069, + "name": "Tsuruma", + "type": "system" + }, + { + "id": 30045328, + "regionId": 10000070, + "name": "Ahtila", + "type": "system" + }, + { + "id": 30045329, + "regionId": 10000070, + "name": "Ichoriya", + "type": "system" + }, + { + "id": 30045330, + "regionId": 10000069, + "name": "Okkamon", + "type": "system" + }, + { + "id": 30045331, + "regionId": 10000069, + "name": "Vaaralen", + "type": "system" + }, + { + "id": 30045332, + "regionId": 10000069, + "name": "Asakai", + "type": "system" + }, + { + "id": 30045333, + "regionId": 10000069, + "name": "Prism", + "type": "system" + }, + { + "id": 30045334, + "regionId": 10000069, + "name": "Mushikegi", + "type": "system" + }, + { + "id": 30045335, + "regionId": 10000069, + "name": "Teskanen", + "type": "system" + }, + { + "id": 30045336, + "regionId": 10000069, + "name": "Elunala", + "type": "system" + }, + { + "id": 30045337, + "regionId": 10000069, + "name": "Ikoskio", + "type": "system" + }, + { + "id": 30045338, + "regionId": 10000069, + "name": "Hikkoken", + "type": "system" + }, + { + "id": 30045339, + "regionId": 10000069, + "name": "Enaluri", + "type": "system" + }, + { + "id": 30045340, + "regionId": 10000069, + "name": "Aivonen", + "type": "system" + }, + { + "id": 30045341, + "regionId": 10000069, + "name": "Hallanen", + "type": "system" + }, + { + "id": 30045342, + "regionId": 10000069, + "name": "Akidagi", + "type": "system" + }, + { + "id": 30045343, + "regionId": 10000069, + "name": "Immuri", + "type": "system" + }, + { + "id": 30045344, + "regionId": 10000069, + "name": "Nennamaila", + "type": "system" + }, + { + "id": 30045345, + "regionId": 10000069, + "name": "Hirri", + "type": "system" + }, + { + "id": 30045346, + "regionId": 10000069, + "name": "Kedama", + "type": "system" + }, + { + "id": 30045347, + "regionId": 10000069, + "name": "Oinasiken", + "type": "system" + }, + { + "id": 30045348, + "regionId": 10000069, + "name": "Notoras", + "type": "system" + }, + { + "id": 30045349, + "regionId": 10000069, + "name": "Rakapas", + "type": "system" + }, + { + "id": 30045350, + "regionId": 10000069, + "name": "Teimo", + "type": "system" + }, + { + "id": 30045351, + "regionId": 10000069, + "name": "Iwisoda", + "type": "system" + }, + { + "id": 30045352, + "regionId": 10000069, + "name": "Nisuwa", + "type": "system" + }, + { + "id": 30045353, + "regionId": 10000069, + "name": "Pynekastoh", + "type": "system" + }, + { + "id": 30045354, + "regionId": 10000069, + "name": "Reitsato", + "type": "system" + }, + { + "id": 30100000, + "regionId": 10001000, + "name": "Zarzakh", + "type": "system" + }, + { + "id": 10000001, + "name": "Derelik", + "type": "region" + }, + { + "id": 10000002, + "name": "TheForge", + "type": "region" + }, + { + "id": 10000003, + "name": "ValeoftheSilent", + "type": "region" + }, + { + "id": 10000004, + "name": "UUA-F4", + "type": "region" + }, + { + "id": 10000005, + "name": "Detorid", + "type": "region" + }, + { + "id": 10000006, + "name": "WickedCreek", + "type": "region" + }, + { + "id": 10000007, + "name": "Cache", + "type": "region" + }, + { + "id": 10000008, + "name": "ScaldingPass", + "type": "region" + }, + { + "id": 10000009, + "name": "Insmother", + "type": "region" + }, + { + "id": 10000010, + "name": "Tribute", + "type": "region" + }, + { + "id": 10000011, + "name": "GreatWildlands", + "type": "region" + }, + { + "id": 10000012, + "name": "Curse", + "type": "region" + }, + { + "id": 10000013, + "name": "Malpais", + "type": "region" + }, + { + "id": 10000014, + "name": "Catch", + "type": "region" + }, + { + "id": 10000015, + "name": "Venal", + "type": "region" + }, + { + "id": 10000016, + "name": "Lonetrek", + "type": "region" + }, + { + "id": 10000017, + "name": "J7HZ-F", + "type": "region" + }, + { + "id": 10000018, + "name": "TheSpire", + "type": "region" + }, + { + "id": 10000019, + "name": "A821-A", + "type": "region" + }, + { + "id": 10000020, + "name": "Tash-Murkon", + "type": "region" + }, + { + "id": 10000021, + "name": "OuterPassage", + "type": "region" + }, + { + "id": 10000022, + "name": "Stain", + "type": "region" + }, + { + "id": 10000023, + "name": "PureBlind", + "type": "region" + }, + { + "id": 10000025, + "name": "Immensea", + "type": "region" + }, + { + "id": 10000027, + "name": "EtheriumReach", + "type": "region" + }, + { + "id": 10000028, + "name": "MoldenHeath", + "type": "region" + }, + { + "id": 10000029, + "name": "Geminate", + "type": "region" + }, + { + "id": 10000030, + "name": "Heimatar", + "type": "region" + }, + { + "id": 10000031, + "name": "Impass", + "type": "region" + }, + { + "id": 10000032, + "name": "SinqLaison", + "type": "region" + }, + { + "id": 10000033, + "name": "TheCitadel", + "type": "region" + }, + { + "id": 10000034, + "name": "TheKalevalaExpanse", + "type": "region" + }, + { + "id": 10000035, + "name": "Deklein", + "type": "region" + }, + { + "id": 10000036, + "name": "Devoid", + "type": "region" + }, + { + "id": 10000037, + "name": "Everyshore", + "type": "region" + }, + { + "id": 10000038, + "name": "TheBleakLands", + "type": "region" + }, + { + "id": 10000039, + "name": "Esoteria", + "type": "region" + }, + { + "id": 10000040, + "name": "Oasa", + "type": "region" + }, + { + "id": 10000041, + "name": "Syndicate", + "type": "region" + }, + { + "id": 10000042, + "name": "Metropolis", + "type": "region" + }, + { + "id": 10000043, + "name": "Domain", + "type": "region" + }, + { + "id": 10000044, + "name": "Solitude", + "type": "region" + }, + { + "id": 10000045, + "name": "Tenal", + "type": "region" + }, + { + "id": 10000046, + "name": "Fade", + "type": "region" + }, + { + "id": 10000047, + "name": "Providence", + "type": "region" + }, + { + "id": 10000048, + "name": "Placid", + "type": "region" + }, + { + "id": 10000049, + "name": "Khanid", + "type": "region" + }, + { + "id": 10000050, + "name": "Querious", + "type": "region" + }, + { + "id": 10000051, + "name": "CloudRing", + "type": "region" + }, + { + "id": 10000052, + "name": "Kador", + "type": "region" + }, + { + "id": 10000053, + "name": "CobaltEdge", + "type": "region" + }, + { + "id": 10000054, + "name": "Aridia", + "type": "region" + }, + { + "id": 10000055, + "name": "Branch", + "type": "region" + }, + { + "id": 10000056, + "name": "Feythabolis", + "type": "region" + }, + { + "id": 10000057, + "name": "OuterRing", + "type": "region" + }, + { + "id": 10000058, + "name": "Fountain", + "type": "region" + }, + { + "id": 10000059, + "name": "ParagonSoul", + "type": "region" + }, + { + "id": 10000060, + "name": "Delve", + "type": "region" + }, + { + "id": 10000061, + "name": "Tenerifis", + "type": "region" + }, + { + "id": 10000062, + "name": "Omist", + "type": "region" + }, + { + "id": 10000063, + "name": "PeriodBasis", + "type": "region" + }, + { + "id": 10000064, + "name": "Essence", + "type": "region" + }, + { + "id": 10000065, + "name": "Kor-Azor", + "type": "region" + }, + { + "id": 10000066, + "name": "PerrigenFalls", + "type": "region" + }, + { + "id": 10000067, + "name": "Genesis", + "type": "region" + }, + { + "id": 10000068, + "name": "VergeVendor", + "type": "region" + }, + { + "id": 10000069, + "name": "BlackRise", + "type": "region" + }, + { + "id": 10000070, + "name": "Pochven", + "type": "region" + } +] \ No newline at end of file diff --git a/src/lib/models/useConstants.ts b/src/lib/models/useConstants.ts new file mode 100644 index 0000000..b0fd183 --- /dev/null +++ b/src/lib/models/useConstants.ts @@ -0,0 +1,114 @@ +import moment from 'moment'; + +export const FILTER_PRESET_KEYS = { + none: 'none', + character: 'character', + corporation: 'corporation', + recent: 'recent', + highsec: 'highsec', + lowsec: 'lowsec', + nullsec: 'nullsec', + wspace: 'wspace', + abyssal: 'abyssal', + biggest: 'biggest', + solo: 'solo', + npc: 'npc', + over5b: 'over5b', + over10b: 'over10b', + citadels: 'citadels', + t1: 't1', + t2: 't2', + t3: 't3', + frigates: 'frigates', + destroyers: 'destroyers', + cruisers: 'cruisers', + battlecruisers: 'battlecruisers', + battleships: 'battleships', + capitals: 'capitals', + freighters: 'freighters', + supercapitals: 'supercapitals', + titans: 'titans' +}; + +export const FILTER_PRESETS: { [key: string]: { label: string; filter: (params?: any) => object } } = { + [FILTER_PRESET_KEYS.none]: { + label: 'None', + filter: () => { + return {}; + } + }, + [FILTER_PRESET_KEYS.character]: { + label: 'Character', + filter: (params: { id: number; name: string }) => { + return { + involved_entities: [ + { + entity_type: 'character', + entity_id: params.id, + entity_name: params.name, + involved_as: 'both' + } + ] + }; + } + }, + [FILTER_PRESET_KEYS.corporation]: { + label: 'Corporation', + filter: (params: { id: number; name: string }) => { + return { + involved_entities: [ + { + entity_type: 'corporation', + entity_id: params.id, + entity_name: params.name, + involved_as: 'both' + } + ] + }; + } + }, + [FILTER_PRESET_KEYS.recent]: { + label: 'Recent', + filter: () => { + return { + kill_time: { + // note these need to be unix timestamps + lowest: moment().subtract(7, 'days').unix() + } + }; + } + }, + [FILTER_PRESET_KEYS.highsec]: { + label: 'Highsec', + filter: () => { + return { + system_security: { + lowest: 0.5, + highest: 1.0 + } + }; + } + }, + [FILTER_PRESET_KEYS.lowsec]: { + label: 'Lowsec', + filter: () => { + return { + system_security: { + lowest: 0.0, + highest: 0.4 + } + }; + } + }, + [FILTER_PRESET_KEYS.nullsec]: { + label: 'Nullsec', + filter: () => { + return { + system_security: { + lowest: -1.0, + highest: 0.0 + } + }; + } + } +}; diff --git a/src/lib/models/useKillmails.ts b/src/lib/models/useKillmails.ts index f00f58c..07affce 100644 --- a/src/lib/models/useKillmails.ts +++ b/src/lib/models/useKillmails.ts @@ -1,38 +1,92 @@ import type { KillmailFilters } from '$lib/types/killmailFilters'; import type { Killmail } from '$lib/types/Killmail'; import { killmailFilters, killmails } from '$lib/stores/killmails'; +import { FILTER_PRESETS } from '$lib/models/useConstants'; +import { get } from 'svelte/store'; +import { stompConnection } from '$lib/Stomp.ts'; + +const messageQueue: Killmail[] = []; +let isPaused = false; +let pauseTimeout: NodeJS.Timeout; +let subscriptionEnabled = false; export const useKillmails = () => { const setup = () => { let currentFilters: KillmailFilters; killmailFilters.subscribe((value) => { - if(checkFilters(currentFilters, value)) { + if (checkFilters(currentFilters, value)) { currentFilters = value; getKillmails(currentFilters); } }); + + const subscriptionTopic = 'all'; // for now we hardcode this. TODO better sub logic? + const topic = '/exchange/killmail_topic_exchange/' + subscriptionTopic; + stompConnection(topic, stompHandler); + }; + + const enableSubscription = (enabled: boolean) => { + subscriptionEnabled = enabled; }; const setFilters = (newFilters: KillmailFilters) => { killmailFilters.set(newFilters); }; - const getKillmails = async (currentFilters: KillmailFilters) => { + const setFilterPreset = (preset: string, params: any = {}) => { + const newFilters = FILTER_PRESETS[preset].filter(params); + + setFilters(newFilters); + }; + + const getKillmails = async ( + currentFilters: KillmailFilters, + options?: { + limit?: number; + skip?: number; + } + ) => { try { - const url = `https://eve-kill.com/api/killlist/latest/`; + const url = `https://eve-kill.com/api/query`; + + // const params = assembleParams(currentFilters); + const params = { + type: 'simple', + filter: { + ...currentFilters + }, + options: { + limit: 10, // how many things should be returned. min 1, max 1000 + skip: 0, // for pagination. makes it skip the first x results + sort: { kill_time: -1 } + // TODO + } + }; + + if (options) { + params.options = { + ...params.options, + ...options + }; + } + + console.log('Filter params:', params); const response = await fetch(url, { method: 'POST', - body: JSON.stringify(currentFilters), + body: JSON.stringify(params), headers: { 'Content-Type': 'application/json' } }); - const data: Killmail[] = await response.json(); + const data = await response.json(); - killmails.set(data); + killmails.set({ + data: data.killmails, + pagination: data.pagination + }); } catch (error) { console.error(error); } @@ -40,18 +94,109 @@ export const useKillmails = () => { const checkFilters = (oldFilters: KillmailFilters, newFilters: KillmailFilters) => { // First up, the filters are the same, we return false - if (oldFilters === newFilters) { return false; } return true; - } + }; + + const getPage = (page: number) => { + const currentPage = get(killmails).pagination.page; + const limit = get(killmails).pagination.limit; + + // so we want to calculate the target skip based on the limit and the target page + const targetSkip = page * limit; + + const currentFilters = get(killmailFilters); + + if (page === currentPage) { + return; + } + + const options = { + limit, + skip: targetSkip + }; + + getKillmails(currentFilters, options); + }; + const stompHandler = (message: Killmail) => { + if (!subscriptionEnabled) { + return; + } + + // if we are paused, we want to add it to the queue + if (isPaused) { + messageQueue.push(message); + return; + } + + addKillmail(message); + }; + + const addKillmail = (message: Killmail) => { + // so the subscription message is a killmail + + // here is the tricky bit. we want to know if the killmail matches the current filters + // const currentFilters = get(killmailFilters); + // TODO + + // we only want to add it if the killmail isn't in the data already + if (get(killmails).data.find((killmail) => killmail.killmail_id === message.killmail_id)) { + return; + } + + // we also want to skip adding it if we are at a page greater than 1 + if (get(killmails).pagination.page > 1) { + return; + } + + // we want to make sure that the length of the data stays within the limit + // if we are at the limit, we want to remove the last item + killmails.update((value) => { + const newData = [message, ...value.data]; + + if (newData.length > value.pagination.limit) { + newData.pop(); + } + + value.data = newData; + return value; + }); + }; + + const pauseHandlingMessages = () => { + clearTimeout(pauseTimeout); + // the idea here is we want to pause the handling of incoming messages + // while paused, we will add the messages to a queue + + isPaused = true; + pauseTimeout = setTimeout(() => { + processQueue(); + isPaused = false; + }, 5000); + }; + + const processQueue = () => { + while (messageQueue.length > 0) { + const message = messageQueue.shift(); + if (message) { + addKillmail(message); + } else { + break; + } + } + }; return { setup, setFilters, - getKillmails + setFilterPreset, + getKillmails, + getPage, + pauseHandlingMessages, + enableSubscription }; }; diff --git a/src/lib/models/useSearch.ts b/src/lib/models/useSearch.ts index bc00922..e9824b4 100644 --- a/src/lib/models/useSearch.ts +++ b/src/lib/models/useSearch.ts @@ -1,17 +1,29 @@ +import locationData from '$lib/data/locations.json'; + import { getUpstreamUrl } from '$lib/Config.ts'; export const useSearch = () => { - const search = async (searchTerm: string) => { - // Perform search - const upstreamUrl = getUpstreamUrl(); + const search = async (searchTerm: string) => { + // Perform search + const upstreamUrl = getUpstreamUrl(); + + const response = await fetch(`${upstreamUrl}/api/search/${searchTerm}`); + const results = await response.json(); + + return results.hits; + }; - const response = await fetch(`${upstreamUrl}/api/search/${searchTerm}`); - const results = await response.json(); + const searchLocations = async (searchTerm: string) => { + // Perform search + const results = locationData.filter((location: any) => { + return location.name.toLowerCase().includes(searchTerm.toLowerCase()); + }); - return results.hits; - } + return results; + }; - return { - search, - } -} \ No newline at end of file + return { + search, + searchLocations + }; +}; diff --git a/src/lib/stores/killmails.ts b/src/lib/stores/killmails.ts index 7265c07..4eaab9d 100644 --- a/src/lib/stores/killmails.ts +++ b/src/lib/stores/killmails.ts @@ -1,47 +1,19 @@ import { writable } from 'svelte/store'; import type { KillmailFilters } from '$lib/types/killmailFilters'; -import type { Killmail } from '$lib/types/Killmail'; +import type { KillmailData } from '$lib/types/KillmailData'; export const killmailFilters = writable({ - dateRange: { - start: null, - end: null - }, - victim: { - character_id: null, - corporation_id: null, - alliance_id: null, - faction_id: null, - ship_type_id: null, - ship_group_id: null - }, - attacker: { - character_id: null, - corporation_id: null, - alliance_id: null, - faction_id: null, - ship_type_id: null, - ship_group_id: null - }, - location: { - region_id: null, - constellation_id: null, - system_id: null - }, - killedShip: { - ship_type_id: null, - ship_group_id: null, - total_isk_value_greater_than: null, - total_isk_value_less_than: null, - ship_isk_value_greater_than: null, - ship_isk_value_less_than: null - }, - misc: { - point_value_greater_than: null, - point_value_less_than: null, - flags: [] - } + killmail_id: undefined, + war_id: undefined, + is_npc: undefined, + is_solo: undefined, + region_id: undefined, + system_id: undefined, + system_security: undefined, + total_value: undefined, + kill_time: undefined, + involved_entities: undefined }); -export const killmails = writable([]); +export const killmails = writable(); diff --git a/src/lib/types/Killmail.ts b/src/lib/types/Killmail.ts index 5357e8f..13f6f39 100644 --- a/src/lib/types/Killmail.ts +++ b/src/lib/types/Killmail.ts @@ -13,7 +13,7 @@ export interface Killmail { total_value: number; is_npc: boolean; is_solo: boolean; - kill_time: string; + kill_time: number; last_modified: string; near: string; point_value: number; diff --git a/src/lib/types/KillmailData.ts b/src/lib/types/KillmailData.ts new file mode 100644 index 0000000..5ef9417 --- /dev/null +++ b/src/lib/types/KillmailData.ts @@ -0,0 +1,7 @@ +import type { Killmail } from './Killmail'; +import type { Pagination } from './Pagination'; + +export interface KillmailData { + data: Killmail[]; + pagination: Pagination; +} diff --git a/src/lib/types/Pagination.ts b/src/lib/types/Pagination.ts new file mode 100644 index 0000000..8d87be5 --- /dev/null +++ b/src/lib/types/Pagination.ts @@ -0,0 +1,5 @@ +export interface Pagination { + count: number; + limit: number; + page: number; +} diff --git a/src/lib/types/killmailFilters.ts b/src/lib/types/killmailFilters.ts index f71f107..863550d 100644 --- a/src/lib/types/killmailFilters.ts +++ b/src/lib/types/killmailFilters.ts @@ -1,40 +1,29 @@ export interface KillmailFilters { - dateRange: { - start: string | null; - end: string | null; + killmail_id?: number; + war_id?: number; + is_npc?: boolean; + is_solo?: boolean; + region_id?: number; + system_id?: number; + system_security?: { + lowest?: number; + highest?: number; }; - victim: { - characterId: number | null; - corporationId: number | null; - allianceId: number | null; - factionId: number | null; - shipTypeId: number | null; - shipGroupId: number | null; + total_value?: { + lowest?: number; + highest?: number; }; - attacker: { - characterId: number | null; - corporationId: number | null; - allianceId: number | null; - factionId: number | null; - shipTypeId: number | null; - shipGroupId: number | null; - }; - location: { - regionId: number | null; - constellationId: number | null; - systemId: number | null; - }; - killedShip: { - shipTypeId: number | null; - shipGroupId: number | null; - totalIskValueGreaterThan: number | null; - totalIskValueLessThan: number | null; - shipIskValueGreaterThan: number | null; - shipIskValueLessThan: number | null; - }; - misc: { - pointValueGreaterThan: number | null; - pointValueLessThan: number | null; - flags: string[]; + kill_time?: { + lowest?: string; + highest?: string; }; + involved_entities?: { + entity_type?: string; + entity_id?: number; + entity_name?: string; + involved_as: string; + ship_id?: number; + ship_group_id?: number; + weapon_type_id?: number; + }[]; } diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 9938ee7..e63b945 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -13,8 +13,6 @@ import { useKillmails } from '$lib/models/useKillmails'; const { setup: setupKillmails } = useKillmails(); - // setupKillmails(); - let defaultKeywords = 'eve-online, eve, ccp, ccp games, kills, killmail, killmails, killboard, eve kill, eve-kill, eve-kill.net, eve-kill.com'; let combinedKeywords = $page.data.meta?.keywords ? `${defaultKeywords}, ${$page.data.meta.keywords}` : defaultKeywords; let defaultTitle = 'EVE-KILL'; @@ -38,7 +36,7 @@ }); onMount(() => { - // setupKillmails(); + setupKillmails(); }); diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index f5b9c21..dd687a8 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -9,6 +9,10 @@ import Systems from '$lib/components/TopBoxes/Systems.svelte'; import Constellations from '$lib/components/TopBoxes/Constellations.svelte'; import Regions from '$lib/components/TopBoxes/Regions.svelte'; + import { onMount } from 'svelte'; + + import { useKillmails } from '$lib/models/useKillmails'; + const { setFilterPreset } = useKillmails(); const upstreamUrl = getUpstreamUrl(); @@ -23,6 +27,10 @@ const topSystemsUrl = `${upstreamUrl}/api/stats/topsolarsystems/10`; const topConstellationsUrl = `${upstreamUrl}/api/stats/topconstellations/10`; const topRegionsUrl = `${upstreamUrl}/api/stats/topregions/10`; + + onMount(() => { + setFilterPreset('none'); + });
@@ -59,6 +67,6 @@
- +
diff --git a/src/routes/alliance/[id=number]/kills.svelte b/src/routes/alliance/[id=number]/kills.svelte index e49e5f9..cd8fe1e 100644 --- a/src/routes/alliance/[id=number]/kills.svelte +++ b/src/routes/alliance/[id=number]/kills.svelte @@ -9,4 +9,4 @@ let filter = { field: 'attackers.alliance_id', value: alliance.alliance_id }; - + diff --git a/src/routes/alliance/[id=number]/losses.svelte b/src/routes/alliance/[id=number]/losses.svelte index 69c3a98..184604e 100644 --- a/src/routes/alliance/[id=number]/losses.svelte +++ b/src/routes/alliance/[id=number]/losses.svelte @@ -9,4 +9,4 @@ let filter = { field: 'victim.alliance_id', value: alliance.alliance_id }; - + diff --git a/src/routes/battle/kill/[id=number]/+page.svelte b/src/routes/battle/kill/[id=number]/+page.svelte index 02dc387..3fc5efb 100644 --- a/src/routes/battle/kill/[id=number]/+page.svelte +++ b/src/routes/battle/kill/[id=number]/+page.svelte @@ -33,7 +33,6 @@ let battleUrl = `${upstreamUrl}/api/battles/killmail/${killmail_id}`; const response = await fetch(battleUrl); battle = await response.json(); - console.log(battle); // Fetch the killmails killmails = await fetchKillmails(battle.start_time, battle.end_time, [battle.system_id]); diff --git a/src/routes/character/[id=number]/+page.svelte b/src/routes/character/[id=number]/+page.svelte index d6d879b..686c737 100644 --- a/src/routes/character/[id=number]/+page.svelte +++ b/src/routes/character/[id=number]/+page.svelte @@ -1,49 +1,37 @@ @@ -53,78 +41,50 @@ -
- +
+ + + + + +
- {#if activeComponent} - + {#if currentTab === TAB_IDS.dashboard} + + {:else if currentTab === TAB_IDS.killFeed} + + {:else if currentTab === TAB_IDS.corporationHistory} + + {:else if currentTab === TAB_IDS.stats} + {/if}
{/if} - - diff --git a/src/routes/character/[id=number]/combined.svelte b/src/routes/character/[id=number]/combined.svelte index c8e56a6..153b6d7 100644 --- a/src/routes/character/[id=number]/combined.svelte +++ b/src/routes/character/[id=number]/combined.svelte @@ -2,12 +2,28 @@ import { getUpstreamUrl } from '$lib/Config'; import type { Character } from '$lib/types/Character.js'; import KillList from '$lib/components/KillList.svelte'; + import { onMount } from 'svelte'; export let data: any; let character: Character = data.character; const upstreamUrl = getUpstreamUrl(); let killlistUrl = `${upstreamUrl}/api/killlist/combined/character_id/${character.character_id}`; let subscriptionTopic = `character.${character.character_id}`; let filter = { field: 'victim.character_id', value: character.character_id }; + + import { useKillmails } from '$lib/models/useKillmails'; + const { setFilterPreset } = useKillmails(); + + onMount(() => { + setFilterPreset('character', { id: character.character_id }); + }); - + diff --git a/src/routes/character/[id=number]/kills.svelte b/src/routes/character/[id=number]/kills.svelte index 84fc1ef..d805301 100644 --- a/src/routes/character/[id=number]/kills.svelte +++ b/src/routes/character/[id=number]/kills.svelte @@ -10,4 +10,4 @@ let filter = { field: 'attackers.character_id', value: character.character_id }; - + diff --git a/src/routes/character/[id=number]/losses.svelte b/src/routes/character/[id=number]/losses.svelte index 1c7c709..e42c6c5 100644 --- a/src/routes/character/[id=number]/losses.svelte +++ b/src/routes/character/[id=number]/losses.svelte @@ -10,4 +10,4 @@ let filter = { field: 'victim.character_id', value: character.character_id }; - + diff --git a/src/routes/corporation/[id=number]/+page.svelte b/src/routes/corporation/[id=number]/+page.svelte index 9b401f2..2fb0308 100644 --- a/src/routes/corporation/[id=number]/+page.svelte +++ b/src/routes/corporation/[id=number]/+page.svelte @@ -1,5 +1,5 @@ {#if corporation} @@ -55,10 +62,22 @@
- Corporation: {corporation.name} + Corporation: {corporation.name}
- Alliance: {corporation.alliance_name} - Faction: {corporation.faction_name} + Alliance: {corporation.alliance_name} + Faction: {corporation.faction_name}
@@ -105,16 +124,40 @@ diff --git a/src/routes/corporation/[id=number]/kills.svelte b/src/routes/corporation/[id=number]/kills.svelte index 70d1eb6..c3a0342 100644 --- a/src/routes/corporation/[id=number]/kills.svelte +++ b/src/routes/corporation/[id=number]/kills.svelte @@ -9,4 +9,4 @@ let filter = { field: 'attackers.corporation_id', value: corporation.corporation_id }; - + diff --git a/src/routes/corporation/[id=number]/losses.svelte b/src/routes/corporation/[id=number]/losses.svelte index 8d2c6b0..b479c71 100644 --- a/src/routes/corporation/[id=number]/losses.svelte +++ b/src/routes/corporation/[id=number]/losses.svelte @@ -9,4 +9,4 @@ let filter = { field: 'victim.corporation_id', value: corporation.corporation_id }; - + diff --git a/src/routes/kills/[type=killlistTypes]/+page.svelte b/src/routes/kills/[type=killlistTypes]/+page.svelte index 6e8e4a5..1111c58 100644 --- a/src/routes/kills/[type=killlistTypes]/+page.svelte +++ b/src/routes/kills/[type=killlistTypes]/+page.svelte @@ -23,6 +23,6 @@
- +
diff --git a/tailwind.config.js b/tailwind.config.js index 6e68f08..482ad64 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -8,13 +8,17 @@ const basePrimaryColor = '#0084ff'; const baseSecondaryColor = '#ffb300'; const overlayOpacity = 0.2; +const baseGreen = '#00ff00'; +const baseRed = '#ff0000'; + /** @type {import('tailwindcss').Config} */ const config = { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { colors: { slate: colors.slate, - red: colors.red, + red: generateColors(baseBackgroundColor, baseRed, 0.1), + green: generateColors(baseBackgroundColor, baseGreen, 0.1), primary: generateColors(baseBackgroundColor, basePrimaryColor, overlayOpacity), secondary: generateColors(baseBackgroundColor, baseSecondaryColor, overlayOpacity), background: generateBackgroundColors(baseBackgroundColor), @@ -74,7 +78,12 @@ const config = { md: 'calc(var(--radius) - 2px)', sm: 'calc(var(--radius) - 4px)' } - } + }, + safelist: [ + { + pattern: /bg-(green|red)-.*/ + } + ] }, plugins: [ function ({ addBase, theme }) {